2015-05-22 Eric Botcazou <ebotcazou@adacore.com>
[official-gcc.git] / gcc / ada / sinfo.ads
blob5ced3564aa8df43df00e8b9fa608228f264a2d1f
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT COMPILER COMPONENTS --
4 -- --
5 -- S I N F O --
6 -- --
7 -- S p e c --
8 -- --
9 -- Copyright (C) 1992-2015, Free Software Foundation, Inc. --
10 -- --
11 -- GNAT is free software; you can redistribute it and/or modify it under --
12 -- terms of the GNU General Public License as published by the Free Soft- --
13 -- ware Foundation; either version 3, or (at your option) any later ver- --
14 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE. --
17 -- --
18 -- As a special exception under Section 7 of GPL version 3, you are granted --
19 -- additional permissions described in the GCC Runtime Library Exception, --
20 -- version 3.1, as published by the Free Software Foundation. --
21 -- --
22 -- You should have received a copy of the GNU General Public License and --
23 -- a copy of the GCC Runtime Library Exception along with this program; --
24 -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
25 -- <http://www.gnu.org/licenses/>. --
26 -- --
27 -- GNAT was originally developed by the GNAT team at New York University. --
28 -- Extensive contributions were provided by Ada Core Technologies Inc. --
29 -- --
30 ------------------------------------------------------------------------------
32 -- This package defines the structure of the abstract syntax tree. The Tree
33 -- package provides a basic tree structure. Sinfo describes how this structure
34 -- is used to represent the syntax of an Ada program.
36 -- The grammar in the RM is followed very closely in the tree design, and is
37 -- repeated as part of this source file.
39 -- The tree contains not only the full syntactic representation of the
40 -- program, but also the results of semantic analysis. In particular, the
41 -- nodes for defining identifiers, defining character literals and defining
42 -- operator symbols, collectively referred to as entities, represent what
43 -- would normally be regarded as the symbol table information. In addition a
44 -- number of the tree nodes contain semantic information.
46 -- WARNING: Several files are automatically generated from this package.
47 -- See below for details.
49 with Namet; use Namet;
50 with Types; use Types;
51 with Uintp; use Uintp;
52 with Urealp; use Urealp;
54 package Sinfo is
56 ---------------------------------
57 -- Making Changes to This File --
58 ---------------------------------
60 -- If changes are made to this file, a number of related steps must be
61 -- carried out to ensure consistency. First, if a field access function is
62 -- added, it appears in these places:
64 -- In sinfo.ads:
65 -- The documentation associated with the field (if semantic)
66 -- The documentation associated with the node
67 -- The spec of the access function
68 -- The spec of the set procedure
69 -- The entries in Is_Syntactic_Field
70 -- The pragma Inline for the access function
71 -- The pragma Inline for the set procedure
72 -- In sinfo.adb:
73 -- The body of the access function
74 -- The body of the set procedure
76 -- The field chosen must be consistent in all places, and, for a node that
77 -- is a subexpression, must not overlap any of the standard expression
78 -- fields.
80 -- In addition, if any of the standard expression fields is changed, then
81 -- the utility program which creates the Treeprs spec (in file treeprs.ads)
82 -- must be updated appropriately, since it special cases expression fields.
84 -- If a new tree node is added, then the following changes are made:
86 -- Add it to the documentation in the appropriate place
87 -- Add its fields to this documentation section
88 -- Define it in the appropriate classification in Node_Kind
89 -- Add an entry in Is_Syntactic_Field
90 -- In the body (sinfo), add entries to the access functions for all
91 -- its fields (except standard expression fields) to include the new
92 -- node in the checks.
93 -- Add an appropriate section to the case statement in sprint.adb
94 -- Add an appropriate section to the case statement in sem.adb
95 -- Add an appropriate section to the case statement in exp_util.adb
96 -- (Insert_Actions procedure)
97 -- For a subexpression, add an appropriate section to the case
98 -- statement in sem_eval.adb
99 -- For a subexpression, add an appropriate section to the case
100 -- statement in sem_res.adb
102 -- All back ends must be made aware of the new node kind.
104 -- Finally, four utility programs must be run:
106 -- (Optional.) Run CSinfo to check that you have made the changes
107 -- consistently. It checks most of the rules given above. This utility
108 -- reads sinfo.ads and sinfo.adb and generates a report to standard
109 -- output. This step is optional because XSinfo runs CSinfo.
111 -- Run XSinfo to create sinfo.h, the corresponding C header. This
112 -- utility reads sinfo.ads and generates sinfo.h. Note that it does
113 -- not need to read sinfo.adb, since the contents of the body are
114 -- algorithmically determinable from the spec.
116 -- Run XTreeprs to create treeprs.ads, an updated version of the module
117 -- that is used to drive the tree print routine. This utility reads (but
118 -- does not modify) treeprs.adt, the template that provides the basic
119 -- structure of the file, and then fills in the data from the comments
120 -- in sinfo.ads.
122 -- Run XNmake to create nmake.ads and nmake.adb, the package body and
123 -- spec of the Nmake package which contains functions for constructing
124 -- nodes.
126 -- The above steps are done automatically by the build scripts when you do
127 -- a full bootstrap.
129 -- Note: sometime we could write a utility that actually generated the body
130 -- of sinfo from the spec instead of simply checking it, since, as noted
131 -- above, the contents of the body can be determined from the spec.
133 --------------------------------
134 -- Implicit Nodes in the Tree --
135 --------------------------------
137 -- Generally the structure of the tree very closely follows the grammar as
138 -- defined in the RM. However, certain nodes are omitted to save space and
139 -- simplify semantic processing. Two general classes of such omitted nodes
140 -- are as follows:
142 -- If the only possibilities for a non-terminal are one or more other
143 -- non-terminals (i.e. the rule is a "skinny" rule), then usually the
144 -- corresponding node is omitted from the tree, and the target construct
145 -- appears directly. For example, a real type definition is either
146 -- floating point definition or a fixed point definition. No explicit node
147 -- appears for real type definition. Instead either the floating point
148 -- definition or fixed point definition appears directly.
150 -- If a non-terminal corresponds to a list of some other non-terminal
151 -- (possibly with separating punctuation), then usually it is omitted from
152 -- the tree, and a list of components appears instead. For example,
153 -- sequence of statements does not appear explicitly in the tree. Instead
154 -- a list of statements appears directly.
156 -- Some additional cases of omitted nodes occur and are documented
157 -- individually. In particular, many nodes are omitted in the tree
158 -- generated for an expression.
160 -------------------------------------------
161 -- Handling of Defining Identifier Lists --
162 -------------------------------------------
164 -- In several declarative forms in the syntax, lists of defining
165 -- identifiers appear (object declarations, component declarations, number
166 -- declarations etc.)
168 -- The semantics of such statements are equivalent to a series of identical
169 -- declarations of single defining identifiers (except that conformance
170 -- checks require the same grouping of identifiers in the parameter case).
172 -- To simplify semantic processing, the parser breaks down such multiple
173 -- declaration cases into sequences of single declarations, duplicating
174 -- type and initialization information as required. The flags More_Ids and
175 -- Prev_Ids are used to record the original form of the source in the case
176 -- where the original source used a list of names, More_Ids being set on
177 -- all but the last name and Prev_Ids being set on all but the first name.
178 -- These flags are used to reconstruct the original source (e.g. in the
179 -- Sprint package), and also are included in the conformance checks, but
180 -- otherwise have no semantic significance.
182 -- Note: the reason that we use More_Ids and Prev_Ids rather than
183 -- First_Name and Last_Name flags is so that the flags are off in the
184 -- normal one identifier case, which minimizes tree print output.
186 -----------------------
187 -- Use of Node Lists --
188 -----------------------
190 -- With a few exceptions, if a construction of the form {non-terminal}
191 -- appears in the tree, lists are used in the corresponding tree node (see
192 -- package Nlists for handling of node lists). In this case a field of the
193 -- parent node points to a list of nodes for the non-terminal. The field
194 -- name for such fields has a plural name which always ends in "s". For
195 -- example, a case statement has a field Alternatives pointing to list of
196 -- case statement alternative nodes.
198 -- Only fields pointing to lists have names ending in "s", so generally the
199 -- structure is strongly typed, fields not ending in s point to single
200 -- nodes, and fields ending in s point to lists.
202 -- The following example shows how a traversal of a list is written. We
203 -- suppose here that Stmt points to a N_Case_Statement node which has a
204 -- list field called Alternatives:
206 -- Alt := First (Alternatives (Stmt));
207 -- while Present (Alt) loop
208 -- ..
209 -- -- processing for case statement alternative Alt
210 -- ..
211 -- Alt := Next (Alt);
212 -- end loop;
214 -- The Present function tests for Empty, which in this case signals the end
215 -- of the list. First returns Empty immediately if the list is empty.
216 -- Present is defined in Atree, First and Next are defined in Nlists.
218 -- The exceptions to this rule occur with {DEFINING_IDENTIFIERS} in all
219 -- contexts, which is handled as described in the previous section, and
220 -- with {,library_unit_NAME} in the N_With_Clause mode, which is handled
221 -- using the First_Name and Last_Name flags, as further detailed in the
222 -- description of the N_With_Clause node.
224 -------------
225 -- Pragmas --
226 -------------
228 -- Pragmas can appear in many different context, but are not included in
229 -- the grammar. Still they must appear in the tree, so they can be properly
230 -- processed.
232 -- Two approaches are used. In some cases, an extra field is defined in an
233 -- appropriate node that contains a list of pragmas appearing in the
234 -- expected context. For example pragmas can appear before an
235 -- Accept_Alternative in a Selective_Accept_Statement, and these pragmas
236 -- appear in the Pragmas_Before field of the N_Accept_Alternative node.
238 -- The other approach is to simply allow pragmas to appear in syntactic
239 -- lists where the grammar (of course) does not include the possibility.
240 -- For example, the Variants field of an N_Variant_Part node points to a
241 -- list that can contain both N_Pragma and N_Variant nodes.
243 -- To make processing easier in the latter case, the Nlists package
244 -- provides a set of routines (First_Non_Pragma, Last_Non_Pragma,
245 -- Next_Non_Pragma, Prev_Non_Pragma) that allow such lists to be handled
246 -- ignoring all pragmas.
248 -- In the case of the variants list, we can either write:
250 -- Variant := First (Variants (N));
251 -- while Present (Variant) loop
252 -- ...
253 -- Variant := Next (Variant);
254 -- end loop;
256 -- or
258 -- Variant := First_Non_Pragma (Variants (N));
259 -- while Present (Variant) loop
260 -- ...
261 -- Variant := Next_Non_Pragma (Variant);
262 -- end loop;
264 -- In the first form of the loop, Variant can either be an N_Pragma or an
265 -- N_Variant node. In the second form, Variant can only be N_Variant since
266 -- all pragmas are skipped.
268 ---------------------
269 -- Optional Fields --
270 ---------------------
272 -- Fields which correspond to a section of the syntax enclosed in square
273 -- brackets are generally omitted (and the corresponding field set to Empty
274 -- for a node, or No_List for a list). The documentation of such fields
275 -- notes these cases. One exception to this rule occurs in the case of
276 -- possibly empty statement sequences (such as the sequence of statements
277 -- in an entry call alternative). Such cases appear in the syntax rules as
278 -- [SEQUENCE_OF_STATEMENTS] and the fields corresponding to such optional
279 -- statement sequences always contain an empty list (not No_List) if no
280 -- statements are present.
282 -- Note: the utility program that constructs the body and spec of the Nmake
283 -- package relies on the format of the comments to determine if a field
284 -- should have a default value in the corresponding make routine. The rule
285 -- is that if the first line of the description of the field contains the
286 -- string "(set to xxx if", then a default value of xxx is provided for
287 -- this field in the corresponding Make_yyy routine.
289 -----------------------------------
290 -- Note on Body/Spec Terminology --
291 -----------------------------------
293 -- In informal discussions about Ada, it is customary to refer to package
294 -- and subprogram specs and bodies. However, this is not technically
295 -- correct, what is normally referred to as a spec or specification is in
296 -- fact a package declaration or subprogram declaration. We are careful in
297 -- GNAT to use the correct terminology and in particular, the full word
298 -- specification is never used as an incorrect substitute for declaration.
299 -- The structure and terminology used in the tree also reflects the grammar
300 -- and thus uses declaration and specification in the technically correct
301 -- manner.
303 -- However, there are contexts in which the informal terminology is useful.
304 -- We have the word "body" to refer to the Interp_Etype declared by the
305 -- declaration of a unit body, and in some contexts we need similar term to
306 -- refer to the entity declared by the package or subprogram declaration,
307 -- and simply using declaration can be confusing since the body also has a
308 -- declaration.
310 -- An example of such a context is the link between the package body and
311 -- its declaration. With_Declaration is confusing, since the package body
312 -- itself is a declaration.
314 -- To deal with this problem, we reserve the informal term Spec, i.e. the
315 -- popular abbreviation used in this context, to refer to the entity
316 -- declared by the package or subprogram declaration. So in the above
317 -- example case, the field in the body is called With_Spec.
319 -- Another important context for the use of the word Spec is in error
320 -- messages, where a hyper-correct use of declaration would be confusing to
321 -- a typical Ada programmer, and even for an expert programmer can cause
322 -- confusion since the body has a declaration as well.
324 -- So, to summarize:
326 -- Declaration always refers to the syntactic entity that is called
327 -- a declaration. In particular, subprogram declaration
328 -- and package declaration are used to describe the
329 -- syntactic entity that includes the semicolon.
331 -- Specification always refers to the syntactic entity that is called
332 -- a specification. In particular, the terms procedure
333 -- specification, function specification, package
334 -- specification, subprogram specification always refer
335 -- to the syntactic entity that has no semicolon.
337 -- Spec is an informal term, used to refer to the entity
338 -- that is declared by a task declaration, protected
339 -- declaration, generic declaration, subprogram
340 -- declaration or package declaration.
342 -- This convention is followed throughout the GNAT documentation
343 -- both internal and external, and in all error message text.
345 ------------------------
346 -- Internal Use Nodes --
347 ------------------------
349 -- These are Node_Kind settings used in the internal implementation which
350 -- are not logically part of the specification.
352 -- N_Unused_At_Start
353 -- Completely unused entry at the start of the enumeration type. This
354 -- is inserted so that no legitimate value is zero, which helps to get
355 -- better debugging behavior, since zero is a likely uninitialized value).
357 -- N_Unused_At_End
358 -- Completely unused entry at the end of the enumeration type. This is
359 -- handy so that arrays with Node_Kind as the index type have an extra
360 -- entry at the end (see for example the use of the Pchar_Pos_Array in
361 -- Treepr, where the extra entry provides the limit value when dealing with
362 -- the last used entry in the array).
364 -----------------------------------------
365 -- Note on the settings of Sloc fields --
366 -----------------------------------------
368 -- The Sloc field of nodes that come from the source is set by the parser.
369 -- For internal nodes, and nodes generated during expansion the Sloc is
370 -- usually set in the call to the constructor for the node. In general the
371 -- Sloc value chosen for an internal node is the Sloc of the source node
372 -- whose processing is responsible for the expansion. For example, the Sloc
373 -- of an inherited primitive operation is the Sloc of the corresponding
374 -- derived type declaration.
376 -- For the nodes of a generic instantiation, the Sloc value is encoded to
377 -- represent both the original Sloc in the generic unit, and the Sloc of
378 -- the instantiation itself. See Sinput.ads for details.
380 -- Subprogram instances create two callable entities: one is the visible
381 -- subprogram instance, and the other is an anonymous subprogram nested
382 -- within a wrapper package that contains the renamings for the actuals.
383 -- Both of these entities have the Sloc of the defining entity in the
384 -- instantiation node. This simplifies some ASIS queries.
386 -----------------------
387 -- Field Definitions --
388 -----------------------
390 -- In the following node definitions, all fields, both syntactic and
391 -- semantic, are documented. The one exception is in the case of entities
392 -- (defining identifiers, character literals and operator symbols), where
393 -- the usage of the fields depends on the entity kind. Entity fields are
394 -- fully documented in the separate package Einfo.
396 -- In the node definitions, three common sets of fields are abbreviated to
397 -- save both space in the documentation, and also space in the string
398 -- (defined in Tree_Print_Strings) used to print trees. The following
399 -- abbreviations are used:
401 -- Note: the utility program that creates the Treeprs spec (in the file
402 -- xtreeprs.adb) knows about the special fields here, so it must be
403 -- modified if any change is made to these fields.
405 -- "plus fields for binary operator"
406 -- Chars (Name1) Name_Id for the operator
407 -- Left_Opnd (Node2) left operand expression
408 -- Right_Opnd (Node3) right operand expression
409 -- Entity (Node4-Sem) defining entity for operator
410 -- Associated_Node (Node4-Sem) for generic processing
411 -- Do_Overflow_Check (Flag17-Sem) set if overflow check needed
412 -- Has_Private_View (Flag11-Sem) set in generic units.
414 -- "plus fields for unary operator"
415 -- Chars (Name1) Name_Id for the operator
416 -- Right_Opnd (Node3) right operand expression
417 -- Entity (Node4-Sem) defining entity for operator
418 -- Associated_Node (Node4-Sem) for generic processing
419 -- Do_Overflow_Check (Flag17-Sem) set if overflow check needed
420 -- Has_Private_View (Flag11-Sem) set in generic units.
422 -- "plus fields for expression"
423 -- Paren_Count number of parentheses levels
424 -- Etype (Node5-Sem) type of the expression
425 -- Is_Overloaded (Flag5-Sem) >1 type interpretation exists
426 -- Is_Static_Expression (Flag6-Sem) set for static expression
427 -- Raises_Constraint_Error (Flag7-Sem) evaluation raises CE
428 -- Must_Not_Freeze (Flag8-Sem) set if must not freeze
429 -- Do_Range_Check (Flag9-Sem) set if a range check needed
430 -- Has_Dynamic_Length_Check (Flag10-Sem) set if length check inserted
431 -- Has_Dynamic_Range_Check (Flag12-Sem) set if range check inserted
432 -- Assignment_OK (Flag15-Sem) set if modification is OK
433 -- Is_Controlling_Actual (Flag16-Sem) set for controlling argument
435 -- Note: see under (EXPRESSION) for further details on the use of
436 -- the Paren_Count field to record the number of parentheses levels.
438 -- Node_Kind is the type used in the Nkind field to indicate the node kind.
439 -- The actual definition of this type is given later (the reason for this
440 -- is that we want the descriptions ordered by logical chapter in the RM,
441 -- but the type definition is reordered to facilitate the definition of
442 -- some subtype ranges. The individual descriptions of the nodes show how
443 -- the various fields are used in each node kind, as well as providing
444 -- logical names for the fields. Functions and procedures are provided for
445 -- accessing and setting these fields using these logical names.
447 -----------------------
448 -- Gigi Restrictions --
449 -----------------------
451 -- The tree passed to Gigi is more restricted than the general tree form.
452 -- For example, as a result of expansion, most of the tasking nodes can
453 -- never appear. For each node to which either a complete or partial
454 -- restriction applies, a note entitled "Gigi restriction" appears which
455 -- documents the restriction.
457 -- Note that most of these restrictions apply only to trees generated when
458 -- code is being generated, since they involved expander actions that
459 -- destroy the tree.
461 ---------------
462 -- ASIS Mode --
463 ---------------
465 -- When a file is compiled in ASIS mode (-gnatct), expansion is skipped,
466 -- and the analysis must generate a tree in a form that meets all ASIS
467 -- requirements.
469 -- ASIS must be able to recover the original tree that corresponds to the
470 -- source. It relies heavily on Original_Node for this purpose, which as
471 -- described in Atree, records the history when a node is rewritten. ASIS
472 -- uses Original_Node to recover the original node before the Rewrite.
474 -- At least in ASIS mode (not really important in non-ASIS mode), when
475 -- N1 is rewritten as N2:
477 -- The subtree rooted by the original node N1 should be fully decorated,
478 -- i.e. all semantic fields noted in sinfo.ads should be set properly
479 -- and any referenced entities should be complete (with exceptions for
480 -- representation information, noted below).
482 -- For all the direct descendants of N1 (original node) their Parent
483 -- links should point not to N1, but to N2 (rewriting node).
485 -- The Parent links of rewritten nodes (N1 in this example) are set in
486 -- some cases (to point to the rewritten parent), but in other cases
487 -- they are set to Empty. This needs sorting out ??? It would be much
488 -- cleaner if they could always be set in the original node ???
490 -- There are a few cases when ASIS has to use not the original, but the
491 -- rewritten tree structures. This happens when because of some important
492 -- technical reasons it is impossible or very hard to have the original
493 -- structure properly decorated by semantic information, and the rewritten
494 -- structure fully reproduces the original source. Below is the (incomplete
495 -- for the moment???) list of such exceptions:
497 -- Generic specifications and generic bodies
498 -- Function calls that use prefixed notation (Operand.Operation [(...)])
500 -- Representation Information
502 -- For the purposes of the data description annex, the representation
503 -- information for source declared entities must be complete in the
504 -- ASIS tree.
506 -- This requires that the front end call the back end (gigi/gcc) in
507 -- a special "back annotate only" mode to obtain information on layout
508 -- from the back end.
510 -- For the purposes of this special "back annotate only" mode, the
511 -- requirements that would normally need to be met to generate code
512 -- are relaxed as follows:
514 -- Anonymous types need not have full representation information (e.g.
515 -- sizes need not be set for types where the front end would normally
516 -- set the sizes), since anonymous types can be ignored in this mode.
518 -- In this mode, gigi will see at least fragments of a fully annotated
519 -- unexpanded tree. This means that it will encounter nodes it does
520 -- not normally handle (such as stubs, task bodies etc). It should
521 -- simply ignore these nodes, since they are not relevant to the task
522 -- of back annotating representation information.
524 ----------------
525 -- Ghost Mode --
526 ----------------
528 -- When a declaration is subject to pragma Ghost, it establishes a Ghost
529 -- region depending on the Ghost assertion policy in effect at the point
530 -- of declaration. This region is temporal and starts right before the
531 -- analysis of the Ghost declaration and ends after its expansion. The
532 -- values of global variable Opt.Ghost_Mode are as follows:
534 -- 1. Check - All static semantics as defined in SPARK RM 6.9 are in
535 -- effect.
537 -- 2. Ignore - Same as Check, ignored Ghost code is not present in ALI
538 -- files, object files as well as the final executable.
540 -- To achieve the runtime semantics of "Ignore", the compiler marks each
541 -- node created during an ignored Ghost region and signals all enclosing
542 -- scopes that such a node resides within. The compilation unit where the
543 -- node resides is also added to an auxiliary table for post processing.
545 -- After the analysis and expansion of all compilation units takes place
546 -- as well as the instantiation of all inlined [generic] bodies, the GNAT
547 -- driver initiates a separate pass which removes all ignored Ghost code
548 -- from all units stored in the auxiliary table.
550 --------------------
551 -- GNATprove Mode --
552 --------------------
554 -- When a file is compiled in GNATprove mode (-gnatd.F), a very light
555 -- expansion is performed and the analysis must generate a tree in a
556 -- form that meets additional requirements.
558 -- This light expansion does two transformations of the tree that cannot
559 -- be postponed till after semantic analysis:
561 -- 1. Replace object renamings by renamed object. This requires the
562 -- introduction of temporaries at the point of the renaming, which
563 -- must be properly analyzed.
565 -- 2. Fully qualify entity names. This is needed to generate suitable
566 -- local effects and call-graphs in ALI files, with the completely
567 -- qualified names (in particular the suffix to distinguish homonyms).
569 -- The tree after this light expansion should be fully analyzed
570 -- semantically, which sometimes requires the insertion of semantic
571 -- pre-analysis, for example for subprogram contracts and pragma
572 -- check/assert. In particular, all expression must have their proper type,
573 -- and semantic links should be set between tree nodes (partial to full
574 -- view, etc.) Some kinds of nodes should be either absent, or can be
575 -- ignored by the formal verification backend:
577 -- N_Object_Renaming_Declaration: can be ignored safely
578 -- N_Expression_Function: absent (rewritten)
579 -- N_Expression_With_Actions: absent (not generated)
581 -- SPARK cross-references are generated from the regular cross-references
582 -- (used for browsing and code understanding) and additional references
583 -- collected during semantic analysis, in particular on all dereferences.
584 -- These SPARK cross-references are output in a separate section of ALI
585 -- files, as described in spark_xrefs.adb. They are the basis for the
586 -- computation of data dependences in GNATprove. This implies that all
587 -- cross-references should be generated in this mode, even those that would
588 -- not make sense from a user point-of-view, and that cross-references that
589 -- do not lead to data dependences for subprograms can be safely ignored.
591 -- GNATprove relies on the following front end behaviors:
593 -- 1. The first declarations in the list of visible declarations of
594 -- a package declaration for a generic instance, up to the first
595 -- declaration which comes from source, should correspond to
596 -- the "mappings nodes" between formal and actual generic parameters.
598 -- 2. In addition pragma Debug statements are removed from the tree
599 -- (rewritten to NULL stmt), since they should be ignored in formal
600 -- verification.
602 -- 3. An error is also issued for missing subunits, similar to the
603 -- warning issued when generating code, to avoid formal verification
604 -- of a partial unit.
606 -- 4. Unconstrained types are not replaced by constrained types whose
607 -- bounds are generated from an expression: Expand_Subtype_From_Expr
608 -- should be a no-op.
610 -- 5. Errors (instead of warnings) are issued on compile-time-known
611 -- constraint errors even though such cases do not correspond to
612 -- illegalities in the Ada RM (this is simply another case where
613 -- GNATprove implements a subset of the full language).
615 -- However, there are a few exceptions to this rule for cases where
616 -- we want to allow the GNATprove analysis to proceed (e.g. range
617 -- checks on empty ranges, which typically appear in deactivated
618 -- code in a particular configuration).
620 -- 6. Subtypes should match in the AST, even after a generic is
621 -- instantiated. In particular, GNATprove relies on the fact that,
622 -- on a selected component, the type of the selected component is
623 -- the type of the corresponding component in the prefix of the
624 -- selected component.
626 -- Note that, in some cases, we know that this rule is broken by the
627 -- frontend. In particular, if the selected component is a packed
628 -- array depending on a discriminant of a unconstrained formal object
629 -- parameter of a generic.
631 -----------------------
632 -- Check Flag Fields --
633 -----------------------
635 -- The following flag fields appear in expression nodes:
637 -- Do_Division_Check
638 -- Do_Overflow_Check
639 -- Do_Range_Check
641 -- These three flags are always set by the front end during semantic
642 -- analysis, on expression nodes that may trigger the corresponding
643 -- check. The front end then inserts or not the check during expansion. In
644 -- particular, these flags should also be correctly set in ASIS mode and
645 -- GNATprove mode.
647 -- Note: the expander always takes care of the Do_Range check case,
648 -- so this flag will never be set in the expanded tree passed to the
649 -- back end code generator.
651 -- Note that this accounts for all nodes that trigger the corresponding
652 -- checks, except for range checks on subtype_indications, which may be
653 -- required to check that a range_constraint is compatible with the given
654 -- subtype (RM 3.2.2(11)).
656 -- The following flag fields appear in various nodes:
658 -- Do_Accessibility_Check
659 -- Do_Discriminant_Check
660 -- Do_Length_Check
661 -- Do_Storage_Check
662 -- Do_Tag_Check
664 -- These flags are used in some specific cases by the front end, either
665 -- during semantic analysis or during expansion, and cannot be expected
666 -- to be set on all nodes that trigger the corresponding check.
668 ------------------------
669 -- Common Flag Fields --
670 ------------------------
672 -- The following flag fields appear in all nodes:
674 -- Analyzed
675 -- This flag is used to indicate that a node (and all its children have
676 -- been analyzed. It is used to avoid reanalysis of a node that has
677 -- already been analyzed, both for efficiency and functional correctness
678 -- reasons.
680 -- Comes_From_Source
681 -- This flag is set if the node comes directly from an explicit construct
682 -- in the source. It is normally on for any nodes built by the scanner or
683 -- parser from the source program, with the exception that in a few cases
684 -- the parser adds nodes to normalize the representation (in particular
685 -- a null statement is added to a package body if there is no begin/end
686 -- initialization section.
688 -- Most nodes inserted by the analyzer or expander are not considered
689 -- as coming from source, so the flag is off for such nodes. In a few
690 -- cases, the expander constructs nodes closely equivalent to nodes
691 -- from the source program (e.g. the allocator built for build-in-place
692 -- case), and the Comes_From_Source flag is deliberately set.
694 -- Error_Posted
695 -- This flag is used to avoid multiple error messages being posted on or
696 -- referring to the same node. This flag is set if an error message
697 -- refers to a node or is posted on its source location, and has the
698 -- effect of inhibiting further messages involving this same node.
700 -----------------------
701 -- Modify_Tree_For_C --
702 -----------------------
704 -- If the flag Opt.Modify_Tree_For_C is set True, then the tree is modified
705 -- in ways that help match the semantics better with C, easing the task of
706 -- interfacing to C code generators (other than GCC, where the work is done
707 -- in gigi, and there is no point in changing that), and also making life
708 -- easier for Cprint in generating C source code.
710 -- The current modifications implemented are as follows:
712 -- N_Op_Rotate_Left, N_Op_Rotate_Right, N_Shift_Right_Arithmetic nodes
713 -- are eliminated from the tree (since these operations do not exist in
714 -- C), and the operations are rewritten in terms of logical shifts and
715 -- other logical operations that do exist in C. See Exp_Ch4 expansion
716 -- routines for these operators for details of the transformations made.
718 -- The right operand of N_Op_Shift_Right and N_Op_Shift_Left is always
719 -- less than the word size (since other values are not well-defined in
720 -- C). This is done using an explicit test if necessary.
722 -- Min and Max attributes are expanded into equivalent if expressions,
723 -- dealing properly with side effect issues.
725 -- Mod for signed integer types is expanded into equivalent expressions
726 -- using Rem (which is % in C) and other C-available operators.
728 -- The Actions list of an Expression_With_Actions node does not contain
729 -- any declarations,(so that DO X, .. Y IN Z becomes (X, .. Y, Z) in C).
731 ------------------------------------
732 -- Description of Semantic Fields --
733 ------------------------------------
735 -- The meaning of the syntactic fields is generally clear from their names
736 -- without any further description, since the names are chosen to
737 -- correspond very closely to the syntax in the reference manual. This
738 -- section describes the usage of the semantic fields, which are used to
739 -- contain additional information determined during semantic analysis.
741 -- ABE_Is_Certain (Flag18-Sem)
742 -- This flag is set in an instantiation node or a call node is determined
743 -- to be sure to raise an ABE. This is used to trigger special handling
744 -- of such cases, particularly in the instantiation case where we avoid
745 -- instantiating the body if this flag is set. This flag is also present
746 -- in an N_Formal_Package_Declaration_Node since formal package
747 -- declarations are treated like instantiations, but it is always set to
748 -- False in this context.
750 -- Accept_Handler_Records (List5-Sem)
751 -- This field is present only in an N_Accept_Alternative node. It is used
752 -- to temporarily hold the exception handler records from an accept
753 -- statement in a selective accept. These exception handlers will
754 -- eventually be placed in the Handler_Records list of the procedure
755 -- built for this accept (see Expand_N_Selective_Accept procedure in
756 -- Exp_Ch9 for further details).
758 -- Access_Types_To_Process (Elist2-Sem)
759 -- Present in N_Freeze_Entity nodes for Incomplete or private types.
760 -- Contains the list of access types which may require specific treatment
761 -- when the nature of the type completion is completely known. An example
762 -- of such treatment is the generation of the associated_final_chain.
764 -- Actions (List1-Sem)
765 -- This field contains a sequence of actions that are associated with the
766 -- node holding the field. See the individual node types for details of
767 -- how this field is used, as well as the description of the specific use
768 -- for a particular node type.
770 -- Activation_Chain_Entity (Node3-Sem)
771 -- This is used in tree nodes representing task activators (blocks,
772 -- subprogram bodies, package declarations, and task bodies). It is
773 -- initially Empty, and then gets set to point to the entity for the
774 -- declared Activation_Chain variable when the first task is declared.
775 -- When tasks are declared in the corresponding declarative region this
776 -- entity is located by name (its name is always _Chain) and the declared
777 -- tasks are added to the chain. Note that N_Extended_Return_Statement
778 -- does not have this attribute, although it does have an activation
779 -- chain. This chain is used to store the tasks temporarily, and is not
780 -- used for activating them. On successful completion of the return
781 -- statement, the tasks are moved to the caller's chain, and the caller
782 -- activates them.
784 -- Acts_As_Spec (Flag4-Sem)
785 -- A flag set in the N_Subprogram_Body node for a subprogram body which
786 -- is acting as its own spec, except in the case of a library level
787 -- subprogram, in which case the flag is set on the parent compilation
788 -- unit node instead.
790 -- Actual_Designated_Subtype (Node4-Sem)
791 -- Present in N_Free_Statement and N_Explicit_Dereference nodes. If gigi
792 -- needs to known the dynamic constrained subtype of the designated
793 -- object, this attribute is set to that type. This is done for
794 -- N_Free_Statements for access-to-classwide types and access to
795 -- unconstrained packed array types, and for N_Explicit_Dereference when
796 -- the designated type is an unconstrained packed array and the
797 -- dereference is the prefix of a 'Size attribute reference.
799 -- Address_Warning_Posted (Flag18-Sem)
800 -- Present in N_Attribute_Definition nodes. Set to indicate that we have
801 -- posted a warning for the address clause regarding size or alignment
802 -- issues. Used to inhibit multiple redundant messages.
804 -- Aggregate_Bounds (Node3-Sem)
805 -- Present in array N_Aggregate nodes. If the bounds of the aggregate are
806 -- known at compile time, this field points to an N_Range node with those
807 -- bounds. Otherwise Empty.
809 -- All_Others (Flag11-Sem)
810 -- Present in an N_Others_Choice node. This flag is set for an others
811 -- exception where all exceptions are to be caught, even those that are
812 -- not normally handled (in particular the tasking abort signal). This
813 -- is used for translation of the at end handler into a normal exception
814 -- handler.
816 -- Aspect_Rep_Item (Node2-Sem)
817 -- Present in N_Aspect_Specification nodes. Points to the corresponding
818 -- pragma/attribute definition node used to process the aspect.
820 -- Assignment_OK (Flag15-Sem)
821 -- This flag is set in a subexpression node for an object, indicating
822 -- that the associated object can be modified, even if this would not
823 -- normally be permissible (either by direct assignment, or by being
824 -- passed as an out or in-out parameter). This is used by the expander
825 -- for a number of purposes, including initialization of constants and
826 -- limited type objects (such as tasks), setting discriminant fields,
827 -- setting tag values, etc. N_Object_Declaration nodes also have this
828 -- flag defined. Here it is used to indicate that an initialization
829 -- expression is valid, even where it would normally not be allowed
830 -- (e.g. where the type involved is limited). It is also used to stop
831 -- a Force_Evaluation call for an unchecked conversion, but this usage
832 -- is unclear and not documented ???
834 -- Associated_Node (Node4-Sem)
835 -- Present in nodes that can denote an entity: identifiers, character
836 -- literals, operator symbols, expanded names, operator nodes, and
837 -- attribute reference nodes (all these nodes have an Entity field).
838 -- This field is also present in N_Aggregate, N_Selected_Component, and
839 -- N_Extension_Aggregate nodes. This field is used in generic processing
840 -- to create links between the generic template and the generic copy.
841 -- See Sem_Ch12.Get_Associated_Node for full details. Note that this
842 -- field overlaps Entity, which is fine, since, as explained in Sem_Ch12,
843 -- the normal function of Entity is not required at the point where the
844 -- Associated_Node is set. Note also, that in generic templates, this
845 -- means that the Entity field does not necessarily point to an Entity.
846 -- Since the back end is expected to ignore generic templates, this is
847 -- harmless.
849 -- Atomic_Sync_Required (Flag14-Sem)
850 -- This flag is set on a node for which atomic synchronization is
851 -- required for the corresponding reference or modification.
853 -- At_End_Proc (Node1)
854 -- This field is present in an N_Handled_Sequence_Of_Statements node.
855 -- It contains an identifier reference for the cleanup procedure to be
856 -- called. See description of this node for further details.
858 -- Backwards_OK (Flag6-Sem)
859 -- A flag present in the N_Assignment_Statement node. It is used only
860 -- if the type being assigned is an array type, and is set if analysis
861 -- determines that it is definitely safe to do the copy backwards, i.e.
862 -- starting at the highest addressed element. This is the case if either
863 -- the operands do not overlap, or they may overlap, but if they do,
864 -- then the left operand is at a higher address than the right operand.
866 -- Note: If neither of the flags Forwards_OK or Backwards_OK is set, it
867 -- means that the front end could not determine that either direction is
868 -- definitely safe, and a runtime check may be required if the backend
869 -- cannot figure it out. If both flags Forwards_OK and Backwards_OK are
870 -- set, it means that the front end can assure no overlap of operands.
872 -- Body_To_Inline (Node3-Sem)
873 -- Present in subprogram declarations. Denotes analyzed but unexpanded
874 -- body of subprogram, to be used when inlining calls. Present when the
875 -- subprogram has an Inline pragma and inlining is enabled. If the
876 -- declaration is completed by a renaming_as_body, and the renamed en-
877 -- tity is a subprogram, the Body_To_Inline is the name of that entity,
878 -- which is used directly in later calls to the original subprogram.
880 -- Body_Required (Flag13-Sem)
881 -- A flag that appears in the N_Compilation_Unit node indicating that
882 -- the corresponding unit requires a body. For the package case, this
883 -- indicates that a completion is required. In Ada 95, if the flag is not
884 -- set for the package case, then a body may not be present. In Ada 83,
885 -- if the flag is not set for the package case, then body is optional.
886 -- For a subprogram declaration, the flag is set except in the case where
887 -- a pragma Import or Interface applies, in which case no body is
888 -- permitted (in Ada 83 or Ada 95).
890 -- By_Ref (Flag5-Sem)
891 -- Present in N_Simple_Return_Statement and N_Extended_Return_Statement,
892 -- this flag is set when the returned expression is already allocated on
893 -- the secondary stack and thus the result is passed by reference rather
894 -- than copied another time.
896 -- Cleanup_Actions (List5-Sem)
897 -- Present in block statements created for transient blocks, contains
898 -- additional cleanup actions carried over from the transient scope.
900 -- Check_Address_Alignment (Flag11-Sem)
901 -- A flag present in N_Attribute_Definition clause for a 'Address
902 -- attribute definition. This flag is set if a dynamic check should be
903 -- generated at the freeze point for the entity to which this address
904 -- clause applies. The reason that we need this flag is that we want to
905 -- check for range checks being suppressed at the point where the
906 -- attribute definition clause is given, rather than testing this at the
907 -- freeze point.
909 -- Comes_From_Extended_Return_Statement (Flag18-Sem)
910 -- Present in N_Simple_Return_Statement nodes. True if this node was
911 -- constructed as part of the N_Extended_Return_Statement expansion.
913 -- Compile_Time_Known_Aggregate (Flag18-Sem)
914 -- Present in N_Aggregate nodes. Set for aggregates which can be fully
915 -- evaluated at compile time without raising constraint error. Such
916 -- aggregates can be passed as is the back end without any expansion.
917 -- See Exp_Aggr for specific conditions under which this flag gets set.
919 -- Componentwise_Assignment (Flag14-Sem)
920 -- Present in N_Assignment_Statement nodes. Set for a record assignment
921 -- where all that needs doing is to expand it into component-by-component
922 -- assignments. This is used internally for the case of tagged types with
923 -- rep clauses, where we need to avoid recursion (we don't want to try to
924 -- generate a call to the primitive operation, because this is the case
925 -- where we are compiling the primitive operation). Note that when we are
926 -- expanding component assignments in this case, we never assign the _tag
927 -- field, but we recursively assign components of the parent type.
929 -- Condition_Actions (List3-Sem)
930 -- This field appears in else-if nodes and in the iteration scheme node
931 -- for while loops. This field is only used during semantic processing to
932 -- temporarily hold actions inserted into the tree. In the tree passed
933 -- to gigi, the condition actions field is always set to No_List. For
934 -- details on how this field is used, see the routine Insert_Actions in
935 -- package Exp_Util, and also the expansion routines for the relevant
936 -- nodes.
938 -- Context_Pending (Flag16-Sem)
939 -- This field appears in Compilation_Unit nodes, to indicate that the
940 -- context of the unit is being compiled. Used to detect circularities
941 -- that are not otherwise detected by the loading mechanism. Such
942 -- circularities can occur in the presence of limited and non-limited
943 -- with_clauses that mention the same units.
945 -- Controlling_Argument (Node1-Sem)
946 -- This field is set in procedure and function call nodes if the call
947 -- is a dispatching call (it is Empty for a non-dispatching call). It
948 -- indicates the source of the call's controlling tag. For procedure
949 -- calls, the Controlling_Argument is one of the actuals. For function
950 -- that has a dispatching result, it is an entity in the context of the
951 -- call that can provide a tag, or else it is the tag of the root type
952 -- of the class. It can also specify a tag directly rather than being a
953 -- tagged object. The latter is needed by the implementations of AI-239
954 -- and AI-260.
956 -- Conversion_OK (Flag14-Sem)
957 -- A flag set on type conversion nodes to indicate that the conversion
958 -- is to be considered as being valid, even though it is the case that
959 -- the conversion is not valid Ada. This is used for attributes Enum_Rep,
960 -- Fixed_Value and Integer_Value, for internal conversions done for
961 -- fixed-point operations, and for certain conversions for calls to
962 -- initialization procedures. If Conversion_OK is set, then Etype must be
963 -- set (the analyzer assumes that Etype has been set). For the case of
964 -- fixed-point operands, it also indicates that the conversion is to be
965 -- direct conversion of the underlying integer result, with no regard to
966 -- the small operand.
968 -- Convert_To_Return_False (Flag13-Sem)
969 -- Present in N_Raise_Expression nodes that appear in the body of the
970 -- special predicateM function used to test a predicate in the context
971 -- of a membership test, where raise expression results in returning a
972 -- value of False rather than raising an exception.
974 -- Corresponding_Aspect (Node3-Sem)
975 -- Present in N_Pragma node. Used to point back to the source aspect from
976 -- the corresponding pragma. This field is Empty for source pragmas.
978 -- Corresponding_Body (Node5-Sem)
979 -- This field is set in subprogram declarations, package declarations,
980 -- entry declarations of protected types, and in generic units. It points
981 -- to the defining entity for the corresponding body (NOT the node for
982 -- the body itself).
984 -- Corresponding_Formal_Spec (Node3-Sem)
985 -- This field is set in subprogram renaming declarations, where it points
986 -- to the defining entity for a formal subprogram in the case where the
987 -- renaming corresponds to a generic formal subprogram association in an
988 -- instantiation. The field is Empty if the renaming does not correspond
989 -- to such a formal association.
991 -- Corresponding_Generic_Association (Node5-Sem)
992 -- This field is defined for object declarations and object renaming
993 -- declarations. It is set for the declarations within an instance that
994 -- map generic formals to their actuals. If set, the field points to
995 -- a generic_association which is the original parent of the expression
996 -- or name appearing in the declaration. This simplifies ASIS queries.
998 -- Corresponding_Integer_Value (Uint4-Sem)
999 -- This field is set in real literals of fixed-point types (it is not
1000 -- used for floating-point types). It contains the integer value used
1001 -- to represent the fixed-point value. It is also set on the universal
1002 -- real literals used to represent bounds of fixed-point base types
1003 -- and their first named subtypes.
1005 -- Corresponding_Spec (Node5-Sem)
1006 -- This field is set in subprogram, package, task, and protected body
1007 -- nodes, where it points to the defining entity in the corresponding
1008 -- spec. The attribute is also set in N_With_Clause nodes where it points
1009 -- to the defining entity for the with'ed spec, and in a subprogram
1010 -- renaming declaration when it is a Renaming_As_Body. The field is Empty
1011 -- if there is no corresponding spec, as in the case of a subprogram body
1012 -- that serves as its own spec.
1014 -- In Ada 2012, Corresponding_Spec is set on expression functions that
1015 -- complete a subprogram declaration.
1017 -- Corresponding_Spec_Of_Stub (Node2-Sem)
1018 -- This field is present in subprogram, package, task and protected body
1019 -- stubs where it points to the corresponding spec of the stub. Due to
1020 -- clashes in the structure of nodes, we cannot use Corresponding_Spec.
1022 -- Corresponding_Stub (Node3-Sem)
1023 -- This field is present in an N_Subunit node. It holds the node in
1024 -- the parent unit that is the stub declaration for the subunit. It is
1025 -- set when analysis of the stub forces loading of the proper body. If
1026 -- expansion of the proper body creates new declarative nodes, they are
1027 -- inserted at the point of the corresponding_stub.
1029 -- Dcheck_Function (Node5-Sem)
1030 -- This field is present in an N_Variant node, It references the entity
1031 -- for the discriminant checking function for the variant.
1033 -- Default_Expression (Node5-Sem)
1034 -- This field is Empty if there is no default expression. If there is a
1035 -- simple default expression (one with no side effects), then this field
1036 -- simply contains a copy of the Expression field (both point to the tree
1037 -- for the default expression). Default_Expression is used for
1038 -- conformance checking.
1040 -- Default_Storage_Pool (Node3-Sem)
1041 -- This field is present in N_Compilation_Unit_Aux nodes. It is set to a
1042 -- copy of Opt.Default_Pool at the end of the compilation unit. See
1043 -- package Opt for details. This is used for inheriting the
1044 -- Default_Storage_Pool in child units.
1046 -- Discr_Check_Funcs_Built (Flag11-Sem)
1047 -- This flag is present in N_Full_Type_Declaration nodes. It is set when
1048 -- discriminant checking functions are constructed. The purpose is to
1049 -- avoid attempting to set these functions more than once.
1051 -- Do_Accessibility_Check (Flag13-Sem)
1052 -- This flag is set on N_Parameter_Specification nodes to indicate
1053 -- that an accessibility check is required for the parameter. It is
1054 -- not yet decided who takes care of this check (TBD ???).
1056 -- Do_Discriminant_Check (Flag1-Sem)
1057 -- This flag is set on N_Selected_Component nodes to indicate that a
1058 -- discriminant check is required using the discriminant check routine
1059 -- associated with the selector. The actual check is generated by the
1060 -- expander when processing selected components. In the case of
1061 -- Unchecked_Union, the flag is also set, but no discriminant check
1062 -- routine is associated with the selector, and the expander does not
1063 -- generate a check. This flag is also present in assignment statements
1064 -- (and set if the assignment requires a discriminant check), and in type
1065 -- conversion nodes (and set if the conversion requires a check).
1067 -- Do_Division_Check (Flag13-Sem)
1068 -- This flag is set on a division operator (/ mod rem) to indicate
1069 -- that a zero divide check is required. The actual check is dealt
1070 -- with by the backend (all the front end does is to set the flag).
1072 -- Do_Length_Check (Flag4-Sem)
1073 -- This flag is set in an N_Assignment_Statement, N_Op_And, N_Op_Or,
1074 -- N_Op_Xor, or N_Type_Conversion node to indicate that a length check
1075 -- is required. It is not determined who deals with this flag (???).
1077 -- Do_Overflow_Check (Flag17-Sem)
1078 -- This flag is set on an operator where an overflow check is required on
1079 -- the operation. The actual check is dealt with by the backend (all the
1080 -- front end does is to set the flag). The other cases where this flag is
1081 -- used is on a Type_Conversion node and for attribute reference nodes.
1082 -- For a type conversion, it means that the conversion is from one base
1083 -- type to another, and the value may not fit in the target base type.
1084 -- See also the description of Do_Range_Check for this case. The only
1085 -- attribute references which use this flag are Pred and Succ, where it
1086 -- means that the result should be checked for going outside the base
1087 -- range. Note that this flag is not set for modular types. This flag is
1088 -- also set on if and case expression nodes if we are operating in either
1089 -- MINIMIZED or ELIMINATED overflow checking mode (to make sure that we
1090 -- properly process overflow checking for dependent expressions).
1092 -- Do_Range_Check (Flag9-Sem)
1093 -- This flag is set on an expression which appears in a context where a
1094 -- range check is required. The target type is clear from the context.
1095 -- The contexts in which this flag can appear are the following:
1097 -- Right side of an assignment. In this case the target type is
1098 -- taken from the left side of the assignment, which is referenced
1099 -- by the Name of the N_Assignment_Statement node.
1101 -- Subscript expressions in an indexed component. In this case the
1102 -- target type is determined from the type of the array, which is
1103 -- referenced by the Prefix of the N_Indexed_Component node.
1105 -- Argument expression for a parameter, appearing either directly in
1106 -- the Parameter_Associations list of a call or as the Expression of an
1107 -- N_Parameter_Association node that appears in this list. In either
1108 -- case, the check is against the type of the formal. Note that the
1109 -- flag is relevant only in IN and IN OUT parameters, and will be
1110 -- ignored for OUT parameters, where no check is required in the call,
1111 -- and if a check is required on the return, it is generated explicitly
1112 -- with a type conversion.
1114 -- Initialization expression for the initial value in an object
1115 -- declaration. In this case the Do_Range_Check flag is set on
1116 -- the initialization expression, and the check is against the
1117 -- range of the type of the object being declared. This includes the
1118 -- cases of expressions providing default discriminant values, and
1119 -- expressions used to initialize record components.
1121 -- The expression of a type conversion. In this case the range check is
1122 -- against the target type of the conversion. See also the use of
1123 -- Do_Overflow_Check on a type conversion. The distinction is that the
1124 -- overflow check protects against a value that is outside the range of
1125 -- the target base type, whereas a range check checks that the
1126 -- resulting value (which is a value of the base type of the target
1127 -- type), satisfies the range constraint of the target type.
1129 -- Note: when a range check is required in contexts other than those
1130 -- listed above (e.g. in a return statement), an additional type
1131 -- conversion node is introduced to represent the required check.
1133 -- A special case arises for the arguments of the Pred/Succ attributes.
1134 -- Here the range check needed is against First + 1 .. Last (Pred) or
1135 -- First .. Last - 1 (Succ) of the corresponding base type. Essentially
1136 -- these checks are what would be performed within the implicit body of
1137 -- the functions that correspond to these attributes. In these cases,
1138 -- the Do_Range check flag is set on the argument to the attribute
1139 -- function, and the back end must special case the appropriate range
1140 -- to check against.
1142 -- Do_Storage_Check (Flag17-Sem)
1143 -- This flag is set in an N_Allocator node to indicate that a storage
1144 -- check is required for the allocation, or in an N_Subprogram_Body node
1145 -- to indicate that a stack check is required in the subprogram prologue.
1146 -- The N_Allocator case is handled by the routine that expands the call
1147 -- to the runtime routine. The N_Subprogram_Body case is handled by the
1148 -- backend, and all the semantics does is set the flag.
1150 -- Do_Tag_Check (Flag13-Sem)
1151 -- This flag is set on an N_Assignment_Statement, N_Function_Call,
1152 -- N_Procedure_Call_Statement, N_Type_Conversion,
1153 -- N_Simple_Return_Statement, or N_Extended_Return_Statement
1154 -- node to indicate that the tag check can be suppressed. It is not
1155 -- yet decided how this flag is used (TBD ???).
1157 -- Elaborate_Present (Flag4-Sem)
1158 -- This flag is set in the N_With_Clause node to indicate that pragma
1159 -- Elaborate pragma appears for the with'ed units.
1161 -- Elaborate_All_Desirable (Flag9-Sem)
1162 -- This flag is set in the N_With_Clause mode to indicate that the static
1163 -- elaboration processing has determined that an Elaborate_All pragma is
1164 -- desirable for correct elaboration for this unit.
1166 -- Elaborate_All_Present (Flag14-Sem)
1167 -- This flag is set in the N_With_Clause node to indicate that a
1168 -- pragma Elaborate_All pragma appears for the with'ed units.
1170 -- Elaborate_Desirable (Flag11-Sem)
1171 -- This flag is set in the N_With_Clause mode to indicate that the static
1172 -- elaboration processing has determined that an Elaborate pragma is
1173 -- desirable for correct elaboration for this unit.
1175 -- Else_Actions (List3-Sem)
1176 -- This field is present in if expression nodes. During code
1177 -- expansion we use the Insert_Actions procedure (in Exp_Util) to insert
1178 -- actions at an appropriate place in the tree to get elaborated at the
1179 -- right time. For if expressions, we have to be sure that the actions
1180 -- for the Else branch are only elaborated if the condition is False.
1181 -- The Else_Actions field is used as a temporary parking place for
1182 -- these actions. The final tree is always rewritten to eliminate the
1183 -- need for this field, so in the tree passed to Gigi, this field is
1184 -- always set to No_List.
1186 -- Enclosing_Variant (Node2-Sem)
1187 -- This field is present in the N_Variant node and identifies the Node_Id
1188 -- corresponding to the immediately enclosing variant when the variant is
1189 -- nested, and N_Empty otherwise. Set during semantic processing of the
1190 -- variant part of a record type.
1192 -- Entity (Node4-Sem)
1193 -- Appears in all direct names (identifiers, character literals, and
1194 -- operator symbols), as well as expanded names, and attributes that
1195 -- denote entities, such as 'Class. Points to entity for corresponding
1196 -- defining occurrence. Set after name resolution. For identifiers in a
1197 -- WITH list, the corresponding defining occurrence is in a separately
1198 -- compiled file, and Entity must be set by the library Load procedure.
1200 -- Note: During name resolution, the value in Entity may be temporarily
1201 -- incorrect (e.g. during overload resolution, Entity is initially set to
1202 -- the first possible correct interpretation, and then later modified if
1203 -- necessary to contain the correct value after resolution).
1205 -- Note: This field overlaps Associated_Node, which is used during
1206 -- generic processing (see Sem_Ch12 for details). Note also that in
1207 -- generic templates, this means that the Entity field does not always
1208 -- point to an Entity. Since the back end is expected to ignore generic
1209 -- templates, this is harmless.
1211 -- Note: This field also appears in N_Attribute_Definition_Clause nodes.
1212 -- It is used only for stream attributes definition clauses. In this
1213 -- case, it denotes a (possibly dummy) subprogram entity that is declared
1214 -- conceptually at the point of the clause. Thus the visibility of the
1215 -- attribute definition clause (in the sense of 8.3(23) as amended by
1216 -- AI-195) can be checked by testing the visibility of that subprogram.
1218 -- Note: Normally the Entity field of an identifier points to the entity
1219 -- for the corresponding defining identifier, and hence the Chars field
1220 -- of an identifier will match the Chars field of the entity. However,
1221 -- there is no requirement that these match, and there are obscure cases
1222 -- of generated code where they do not match.
1224 -- Note: Ada 2012 aspect specifications require additional links between
1225 -- identifiers and various attributes. These attributes can be of
1226 -- arbitrary types, and the entity field of identifiers that denote
1227 -- aspects must be used to store arbitrary expressions for later semantic
1228 -- checks. See section on aspect specifications for details.
1230 -- Entity_Or_Associated_Node (Node4-Sem)
1231 -- A synonym for both Entity and Associated_Node. Used by convention in
1232 -- the code when referencing this field in cases where it is not known
1233 -- whether the field contains an Entity or an Associated_Node.
1235 -- Etype (Node5-Sem)
1236 -- Appears in all expression nodes, all direct names, and all entities.
1237 -- Points to the entity for the related type. Set after type resolution.
1238 -- Normally this is the actual subtype of the expression. However, in
1239 -- certain contexts such as the right side of an assignment, subscripts,
1240 -- arguments to calls, returned value in a function, initial value etc.
1241 -- it is the desired target type. In the event that this is different
1242 -- from the actual type, the Do_Range_Check flag will be set if a range
1243 -- check is required. Note: if the Is_Overloaded flag is set, then Etype
1244 -- points to an essentially arbitrary choice from the possible set of
1245 -- types.
1247 -- Exception_Junk (Flag8-Sem)
1248 -- This flag is set in a various nodes appearing in a statement sequence
1249 -- to indicate that the corresponding node is an artifact of the
1250 -- generated code for exception handling, and should be ignored when
1251 -- analyzing the control flow of the relevant sequence of statements
1252 -- (e.g. to check that it does not end with a bad return statement).
1254 -- Exception_Label (Node5-Sem)
1255 -- Appears in N_Push_xxx_Label nodes. Points to the entity of the label
1256 -- to be used for transforming the corresponding exception into a goto,
1257 -- or contains Empty, if this exception is not to be transformed. Also
1258 -- appears in N_Exception_Handler nodes, where, if set, it indicates
1259 -- that there may be a local raise for the handler, so that expansion
1260 -- to allow a goto is required (and this field contains the label for
1261 -- this goto). See Exp_Ch11.Expand_Local_Exception_Handlers for details.
1263 -- Expansion_Delayed (Flag11-Sem)
1264 -- Set on aggregates and extension aggregates that need a top-down rather
1265 -- than bottom-up expansion. Typically aggregate expansion happens bottom
1266 -- up. For nested aggregates the expansion is delayed until the enclosing
1267 -- aggregate itself is expanded, e.g. in the context of a declaration. To
1268 -- delay it we set this flag. This is done to avoid creating a temporary
1269 -- for each level of a nested aggregates, and also to prevent the
1270 -- premature generation of constraint checks. This is also a requirement
1271 -- if we want to generate the proper attachment to the internal
1272 -- finalization lists (for record with controlled components). Top down
1273 -- expansion of aggregates is also used for in-place array aggregate
1274 -- assignment or initialization. When the full context is known, the
1275 -- target of the assignment or initialization is used to generate the
1276 -- left-hand side of individual assignment to each sub-component.
1278 -- First_Inlined_Subprogram (Node3-Sem)
1279 -- Present in the N_Compilation_Unit node for the main program. Points
1280 -- to a chain of entities for subprograms that are to be inlined. The
1281 -- Next_Inlined_Subprogram field of these entities is used as a link
1282 -- pointer with Empty marking the end of the list. This field is Empty
1283 -- if there are no inlined subprograms or inlining is not active.
1285 -- First_Named_Actual (Node4-Sem)
1286 -- Present in procedure call statement and function call nodes, and also
1287 -- in Intrinsic nodes. Set during semantic analysis to point to the first
1288 -- named parameter where parameters are ordered by declaration order (as
1289 -- opposed to the actual order in the call which may be different due to
1290 -- named associations). Note: this field points to the explicit actual
1291 -- parameter itself, not the N_Parameter_Association node (its parent).
1293 -- First_Real_Statement (Node2-Sem)
1294 -- Present in N_Handled_Sequence_Of_Statements node. Normally set to
1295 -- Empty. Used only when declarations are moved into the statement part
1296 -- of a construct as a result of wrapping an AT END handler that is
1297 -- required to cover the declarations. In this case, this field is used
1298 -- to remember the location in the statements list of the first real
1299 -- statement, i.e. the statement that used to be first in the statement
1300 -- list before the declarations were prepended.
1302 -- First_Subtype_Link (Node5-Sem)
1303 -- Present in N_Freeze_Entity node for an anonymous base type that is
1304 -- implicitly created by the declaration of a first subtype. It points
1305 -- to the entity for the first subtype.
1307 -- Float_Truncate (Flag11-Sem)
1308 -- A flag present in type conversion nodes. This is used for float to
1309 -- integer conversions where truncation is required rather than rounding.
1311 -- Forwards_OK (Flag5-Sem)
1312 -- A flag present in the N_Assignment_Statement node. It is used only
1313 -- if the type being assigned is an array type, and is set if analysis
1314 -- determines that it is definitely safe to do the copy forwards, i.e.
1315 -- starting at the lowest addressed element. This is the case if either
1316 -- the operands do not overlap, or they may overlap, but if they do,
1317 -- then the left operand is at a lower address than the right operand.
1319 -- Note: If neither of the flags Forwards_OK or Backwards_OK is set, it
1320 -- means that the front end could not determine that either direction is
1321 -- definitely safe, and a runtime check may be required if the backend
1322 -- cannot figure it out. If both flags Forwards_OK and Backwards_OK are
1323 -- set, it means that the front end can assure no overlap of operands.
1325 -- From_Aspect_Specification (Flag13-Sem)
1326 -- Processing of aspect specifications typically results in insertion in
1327 -- the tree of corresponding pragma or attribute definition clause nodes.
1328 -- These generated nodes have the From_Aspect_Specification flag set to
1329 -- indicate that they came from aspect specifications originally.
1331 -- From_At_End (Flag4-Sem)
1332 -- This flag is set on an N_Raise_Statement node if it corresponds to
1333 -- the reraise statement generated as the last statement of an AT END
1334 -- handler when SJLJ exception handling is active. It is used to stop
1335 -- a bogus violation of restriction (No_Exception_Propagation), bogus
1336 -- because if the restriction is set, the reraise is not generated.
1338 -- From_At_Mod (Flag4-Sem)
1339 -- This flag is set on the attribute definition clause node that is
1340 -- generated by a transformation of an at mod phrase in a record
1341 -- representation clause. This is used to give slightly different (Ada 83
1342 -- compatible) semantics to such a clause, namely it is used to specify a
1343 -- minimum acceptable alignment for the base type and all subtypes. In
1344 -- Ada 95 terms, the actual alignment of the base type and all subtypes
1345 -- must be a multiple of the given value, and the representation clause
1346 -- is considered to be type specific instead of subtype specific.
1348 -- From_Conditional_Expression (Flag1-Sem)
1349 -- This flag is set on if and case statements generated by the expansion
1350 -- of if and case expressions respectively. The flag is used to suppress
1351 -- any finalization of controlled objects found within these statements.
1353 -- From_Default (Flag6-Sem)
1354 -- This flag is set on the subprogram renaming declaration created in an
1355 -- instance for a formal subprogram, when the formal is declared with a
1356 -- box, and there is no explicit actual. If the flag is present, the
1357 -- declaration is treated as an implicit reference to the formal in the
1358 -- ali file.
1360 -- Generalized_Indexing (Node4-Sem)
1361 -- Present in N_Indexed_Component nodes. Set for Indexed_Component nodes
1362 -- that are Ada 2012 container indexing operations. The value of the
1363 -- attribute is a function call (possibly dereferenced) that corresponds
1364 -- to the proper expansion of the source indexing operation. Before
1365 -- expansion, the source node is rewritten as the resolved generalized
1366 -- indexing. In ASIS mode, the expansion does not take place, so that
1367 -- the source is preserved and properly annotated with types.
1369 -- Generic_Parent (Node5-Sem)
1370 -- Generic_Parent is defined on declaration nodes that are instances. The
1371 -- value of Generic_Parent is the generic entity from which the instance
1372 -- is obtained. Generic_Parent is also defined for the renaming
1373 -- declarations and object declarations created for the actuals in an
1374 -- instantiation. The generic parent of such a declaration is the
1375 -- corresponding generic association in the Instantiation node.
1377 -- Generic_Parent_Type (Node4-Sem)
1378 -- Generic_Parent_Type is defined on Subtype_Declaration nodes for the
1379 -- actuals of formal private and derived types. Within the instance, the
1380 -- operations on the actual are those inherited from the parent. For a
1381 -- formal private type, the parent type is the generic type itself. The
1382 -- Generic_Parent_Type is also used in an instance to determine whether a
1383 -- private operation overrides an inherited one.
1385 -- Handler_List_Entry (Node2-Sem)
1386 -- This field is present in N_Object_Declaration nodes. It is set only
1387 -- for the Handler_Record entry generated for an exception in zero cost
1388 -- exception handling mode. It references the corresponding item in the
1389 -- handler list, and is used to delete this entry if the corresponding
1390 -- handler is deleted during optimization. For further details on why
1391 -- this is required, see Exp_Ch11.Remove_Handler_Entries.
1393 -- Has_Dereference_Action (Flag13-Sem)
1394 -- This flag is present in N_Explicit_Dereference nodes. It is set to
1395 -- indicate that the expansion has aready produced a call to primitive
1396 -- Dereference of a System.Checked_Pools.Checked_Pool implementation.
1397 -- Such dereference actions are produced for debugging purposes.
1399 -- Has_Dynamic_Length_Check (Flag10-Sem)
1400 -- This flag is present in all expression nodes. It is set to indicate
1401 -- that one of the routines in unit Checks has generated a length check
1402 -- action which has been inserted at the flagged node. This is used to
1403 -- avoid the generation of duplicate checks.
1405 -- Has_Dynamic_Range_Check (Flag12-Sem)
1406 -- This flag is present in N_Subtype_Declaration nodes and on all
1407 -- expression nodes. It is set to indicate that one of the routines in
1408 -- unit Checks has generated a range check action which has been inserted
1409 -- at the flagged node. This is used to avoid the generation of duplicate
1410 -- checks. Why does this occur on N_Subtype_Declaration nodes, what does
1411 -- it mean in that context???
1413 -- Has_Local_Raise (Flag8-Sem)
1414 -- Present in exception handler nodes. Set if the handler can be entered
1415 -- via a local raise that gets transformed to a goto statement. This will
1416 -- always be set if Local_Raise_Statements is non-empty, but can also be
1417 -- set as a result of generation of N_Raise_xxx nodes, or flags set in
1418 -- nodes requiring generation of back end checks.
1420 -- Has_No_Elaboration_Code (Flag17-Sem)
1421 -- A flag that appears in the N_Compilation_Unit node to indicate whether
1422 -- or not elaboration code is present for this unit. It is initially set
1423 -- true for subprogram specs and bodies and for all generic units and
1424 -- false for non-generic package specs and bodies. Gigi may set the flag
1425 -- in the non-generic package case if it determines that no elaboration
1426 -- code is generated. Note that this flag is not related to the
1427 -- Is_Preelaborated status, there can be preelaborated packages that
1428 -- generate elaboration code, and non-preelaborated packages which do
1429 -- not generate elaboration code.
1431 -- Has_Pragma_Suppress_All (Flag14-Sem)
1432 -- This flag is set in an N_Compilation_Unit node if the Suppress_All
1433 -- pragma appears anywhere in the unit. This accommodates the rather
1434 -- strange placement rules of other compilers (DEC permits it at the
1435 -- end of a unit, and Rational allows it as a program unit pragma). We
1436 -- allow it anywhere at all, and consider it equivalent to a pragma
1437 -- Suppress (All_Checks) appearing at the start of the configuration
1438 -- pragmas for the unit.
1440 -- Has_Private_View (Flag11-Sem)
1441 -- A flag present in generic nodes that have an entity, to indicate that
1442 -- the node has a private type. Used to exchange private and full
1443 -- declarations if the visibility at instantiation is different from the
1444 -- visibility at generic definition.
1446 -- Has_Relative_Deadline_Pragma (Flag9-Sem)
1447 -- A flag present in N_Subprogram_Body and N_Task_Definition nodes to
1448 -- flag the presence of a pragma Relative_Deadline.
1450 -- Has_Self_Reference (Flag13-Sem)
1451 -- Present in N_Aggregate and N_Extension_Aggregate. Indicates that one
1452 -- of the expressions contains an access attribute reference to the
1453 -- enclosing type. Such a self-reference can only appear in default-
1454 -- initialized aggregate for a record type.
1456 -- Has_SP_Choice (Flag15-Sem)
1457 -- Present in all nodes containing a Discrete_Choices field (N_Variant,
1458 -- N_Case_Expression_Alternative, N_Case_Statement_Alternative). Set to
1459 -- True if the Discrete_Choices list has at least one occurrence of a
1460 -- statically predicated subtype.
1462 -- Has_Storage_Size_Pragma (Flag5-Sem)
1463 -- A flag present in an N_Task_Definition node to flag the presence of a
1464 -- Storage_Size pragma.
1466 -- Has_Wide_Character (Flag11-Sem)
1467 -- Present in string literals, set if any wide character (i.e. character
1468 -- code outside the Character range but within Wide_Character range)
1469 -- appears in the string. Used to implement pragma preference rules.
1471 -- Has_Wide_Wide_Character (Flag13-Sem)
1472 -- Present in string literals, set if any wide character (i.e. character
1473 -- code outside the Wide_Character range) appears in the string. Used to
1474 -- implement pragma preference rules.
1476 -- Header_Size_Added (Flag11-Sem)
1477 -- Present in N_Attribute_Reference nodes, set only for attribute
1478 -- Max_Size_In_Storage_Elements. The flag indicates that the size of the
1479 -- hidden list header used by the runtime finalization support has been
1480 -- added to the size of the prefix. The flag also prevents the infinite
1481 -- expansion of the same attribute in the said context.
1483 -- Hidden_By_Use_Clause (Elist4-Sem)
1484 -- An entity list present in use clauses that appear within
1485 -- instantiations. For the resolution of local entities, entities
1486 -- introduced by these use clauses have priority over global ones, and
1487 -- outer entities must be explicitly hidden/restored on exit.
1489 -- Implicit_With (Flag16-Sem)
1490 -- This flag is set in the N_With_Clause node that is implicitly
1491 -- generated for runtime units that are loaded by the expander, and also
1492 -- for package System, if it is loaded implicitly by a use of the
1493 -- 'Address or 'Tag attribute. ???There are other implicit with clauses
1494 -- as well.
1496 -- Implicit_With_From_Instantiation (Flag12-Sem)
1497 -- Set in N_With_Clause nodes from generic instantiations.
1499 -- Import_Interface_Present (Flag16-Sem)
1500 -- This flag is set in an Interface or Import pragma if a matching
1501 -- pragma of the other kind is also present. This is used to avoid
1502 -- generating some unwanted error messages.
1504 -- Includes_Infinities (Flag11-Sem)
1505 -- This flag is present in N_Range nodes. It is set for the range of
1506 -- unconstrained float types defined in Standard, which include not only
1507 -- the given range of values, but also legitimately can include infinite
1508 -- values. This flag is false for any float type for which an explicit
1509 -- range is given by the programmer, even if that range is identical to
1510 -- the range for Float.
1512 -- Incomplete_View (Node2-Sem)
1513 -- Present in full type declarations that are completions of incomplete
1514 -- type declarations. Denotes the corresponding incomplete type
1515 -- declaration. Used to simplify the retrieval of primitive operations
1516 -- that may be declared between the partial and the full view of an
1517 -- untagged type.
1519 -- Inherited_Discriminant (Flag13-Sem)
1520 -- This flag is present in N_Component_Association nodes. It indicates
1521 -- that a given component association in an extension aggregate is the
1522 -- value obtained from a constraint on an ancestor. Used to prevent
1523 -- double expansion when the aggregate has expansion delayed.
1525 -- Instance_Spec (Node5-Sem)
1526 -- This field is present in generic instantiation nodes, and also in
1527 -- formal package declaration nodes (formal package declarations are
1528 -- treated in a manner very similar to package instantiations). It points
1529 -- to the node for the spec of the instance, inserted as part of the
1530 -- semantic processing for instantiations in Sem_Ch12.
1532 -- Is_Accessibility_Actual (Flag13-Sem)
1533 -- Present in N_Parameter_Association nodes. True if the parameter is
1534 -- an extra actual that carries the accessibility level of the actual
1535 -- for an access parameter, in a function that dispatches on result and
1536 -- is called in a dispatching context. Used to prevent a formal/actual
1537 -- mismatch when the call is rewritten as a dispatching call.
1539 -- Is_Asynchronous_Call_Block (Flag7-Sem)
1540 -- A flag set in a Block_Statement node to indicate that it is the
1541 -- expansion of an asynchronous entry call. Such a block needs cleanup
1542 -- handler to assure that the call is cancelled.
1544 -- Is_Boolean_Aspect (Flag16-Sem)
1545 -- Present in N_Aspect_Specification node. Set if the aspect is for a
1546 -- boolean aspect (i.e. Aspect_Id is in Boolean_Aspect subtype).
1548 -- Is_Checked (Flag11-Sem)
1549 -- Present in N_Aspect_Specification and N_Pragma nodes. Set for an
1550 -- assertion aspect or pragma, or check pragma for an assertion, that
1551 -- is to be checked at run time. If either Is_Checked or Is_Ignored
1552 -- is set (they cannot both be set), then this means that the status of
1553 -- the pragma has been checked at the appropriate point and should not
1554 -- be further modified (in some cases these flags are copied when a
1555 -- pragma is rewritten).
1557 -- Is_Component_Left_Opnd (Flag13-Sem)
1558 -- Is_Component_Right_Opnd (Flag14-Sem)
1559 -- Present in concatenation nodes, to indicate that the corresponding
1560 -- operand is of the component type of the result. Used in resolving
1561 -- concatenation nodes in instances.
1563 -- Is_Controlling_Actual (Flag16-Sem)
1564 -- This flag is set on in an expression that is a controlling argument in
1565 -- a dispatching call. It is off in all other cases. See Sem_Disp for
1566 -- details of its use.
1568 -- Is_Delayed_Aspect (Flag14-Sem)
1569 -- Present in N_Pragma and N_Attribute_Definition_Clause nodes which
1570 -- come from aspect specifications, where the evaluation of the aspect
1571 -- must be delayed to the freeze point. This flag is also set True in
1572 -- the corresponding N_Aspect_Specification node.
1574 -- Is_Disabled (Flag15-Sem)
1575 -- A flag set in an N_Aspect_Specification or N_Pragma node if there was
1576 -- a Check_Policy or Assertion_Policy (or in the case of a Debug_Pragma)
1577 -- a Debug_Policy pragma that resulted in totally disabling the flagged
1578 -- aspect or policy as a result of using the GNAT-defined policy DISABLE.
1579 -- If this flag is set, the aspect or policy is not analyzed for semantic
1580 -- correctness, so any expressions etc will not be marked as analyzed.
1582 -- Is_Dynamic_Coextension (Flag18-Sem)
1583 -- Present in allocator nodes, to indicate that this is an allocator
1584 -- for an access discriminant of a dynamically allocated object. The
1585 -- coextension must be deallocated and finalized at the same time as
1586 -- the enclosing object.
1588 -- Is_Entry_Barrier_Function (Flag8-Sem)
1589 -- This flag is set in an N_Subprogram_Body node which is the expansion
1590 -- of an entry barrier from a protected entry body. It is used for the
1591 -- circuitry checking for incorrect use of Current_Task.
1593 -- Is_Expanded_Build_In_Place_Call (Flag11-Sem)
1594 -- This flag is set in an N_Function_Call node to indicate that the extra
1595 -- actuals to support a build-in-place style of call have been added to
1596 -- the call.
1598 -- Is_Finalization_Wrapper (Flag9-Sem);
1599 -- This flag is present in N_Block_Statement nodes. It is set when the
1600 -- block acts as a wrapper of a handled construct which has controlled
1601 -- objects. The wrapper prevents interference between exception handlers
1602 -- and At_End handlers.
1604 -- Is_Generic_Contract_Pragma (Flag2-Sem)
1605 -- This flag is present in N_Pragma nodes. It is set when the pragma is
1606 -- a source construct, applies to a generic unit or its body and denotes
1607 -- one of the following contract-related annotations:
1608 -- Abstract_State
1609 -- Contract_Cases
1610 -- Depends
1611 -- Extensions_Visible
1612 -- Global
1613 -- Initial_Condition
1614 -- Initializes
1615 -- Post
1616 -- Post_Class
1617 -- Postcondition
1618 -- Pre
1619 -- Pre_Class
1620 -- Precondition
1621 -- Refined_Depends
1622 -- Refined_Global
1623 -- Refined_Post
1624 -- Refined_State
1625 -- Test_Case
1627 -- Is_Ignored (Flag9-Sem)
1628 -- A flag set in an N_Aspect_Specification or N_Pragma node if there was
1629 -- a Check_Policy or Assertion_Policy (or in the case of a Debug_Pragma)
1630 -- a Debug_Policy pragma that specified a policy of IGNORE, DISABLE, or
1631 -- OFF, for the pragma/aspect. If there was a Policy pragma specifying
1632 -- a Policy of ON or CHECK, then this flag is reset. If no Policy pragma
1633 -- gives a policy for the aspect or pragma, then there are two cases. For
1634 -- an assertion aspect or pragma (one of the assertion kinds allowed in
1635 -- an Assertion_Policy pragma), then Is_Ignored is set if assertions are
1636 -- ignored because of the absence of a -gnata switch. For any other
1637 -- aspects or pragmas, the flag is off. If this flag is set, the
1638 -- aspect/pragma is fully analyzed and checked for other syntactic
1639 -- and semantic errors, but it does not have any semantic effect.
1641 -- Is_In_Discriminant_Check (Flag11-Sem)
1642 -- This flag is present in a selected component, and is used to indicate
1643 -- that the reference occurs within a discriminant check. The
1644 -- significance is that optimizations based on assuming that the
1645 -- discriminant check has a correct value cannot be performed in this
1646 -- case (or the discriminant check may be optimized away).
1648 -- Is_Inherited (Flag4-Sem)
1649 -- This flag is set in an N_Pragma node that appears in a N_Contract node
1650 -- to indicate that the pragma has been inherited from a parent context.
1652 -- Is_Machine_Number (Flag11-Sem)
1653 -- This flag is set in an N_Real_Literal node to indicate that the value
1654 -- is a machine number. This avoids some unnecessary cases of converting
1655 -- real literals to machine numbers.
1657 -- Is_Null_Loop (Flag16-Sem)
1658 -- This flag is set in an N_Loop_Statement node if the corresponding loop
1659 -- can be determined to be null at compile time. This is used to remove
1660 -- the loop entirely at expansion time.
1662 -- Is_Overloaded (Flag5-Sem)
1663 -- A flag present in all expression nodes. Used temporarily during
1664 -- overloading determination. The setting of this flag is not relevant
1665 -- once overloading analysis is complete.
1667 -- Is_Power_Of_2_For_Shift (Flag13-Sem)
1668 -- A flag present only in N_Op_Expon nodes. It is set when the
1669 -- exponentiation is of the form 2 ** N, where the type of N is an
1670 -- unsigned integral subtype whose size does not exceed the size of
1671 -- Standard_Integer (i.e. a type that can be safely converted to
1672 -- Natural), and the exponentiation appears as the right operand of an
1673 -- integer multiplication or an integer division where the dividend is
1674 -- unsigned. It is also required that overflow checking is off for both
1675 -- the exponentiation and the multiply/divide node. If this set of
1676 -- conditions holds, and the flag is set, then the division or
1677 -- multiplication can be (and is) converted to a shift.
1679 -- Is_Prefixed_Call (Flag17-Sem)
1680 -- This flag is set in a selected component within a generic unit, if
1681 -- it resolves to a prefixed call to a primitive operation. The flag
1682 -- is used to prevent accidental overloadings in an instance, when a
1683 -- primitive operation and a private record component may be homographs.
1685 -- Is_Protected_Subprogram_Body (Flag7-Sem)
1686 -- A flag set in a Subprogram_Body block to indicate that it is the
1687 -- implementation of a protected subprogram. Such a body needs cleanup
1688 -- handler to make sure that the associated protected object is unlocked
1689 -- when the subprogram completes.
1691 -- Is_Static_Coextension (Flag14-Sem)
1692 -- Present in N_Allocator nodes. Set if the allocator is a coextension
1693 -- of an object allocated on the stack rather than the heap.
1695 -- Is_Static_Expression (Flag6-Sem)
1696 -- Indicates that an expression is a static expression according to the
1697 -- rules in (RM 4.9). Note that it is possible for this flag to be set
1698 -- when Raises_Constraint_Error is also set. In practice almost all cases
1699 -- where a static expression is required do not allow an expression which
1700 -- raises Constraint_Error, so almost always, callers should call the
1701 -- Is_Ok_Static_Expression routine instead of testing this flag. See
1702 -- spec of package Sem_Eval for full details on the use of this flag.
1704 -- Is_Subprogram_Descriptor (Flag16-Sem)
1705 -- Present in N_Object_Declaration, and set only for the object
1706 -- declaration generated for a subprogram descriptor in fast exception
1707 -- mode. See Exp_Ch11 for details of use.
1709 -- Is_Task_Allocation_Block (Flag6-Sem)
1710 -- A flag set in a Block_Statement node to indicate that it is the
1711 -- expansion of a task allocator, or the allocator of an object
1712 -- containing tasks. Such a block requires a cleanup handler to call
1713 -- Expunge_Unactivated_Tasks to complete any tasks that have been
1714 -- allocated but not activated when the allocator completes abnormally.
1716 -- Is_Task_Master (Flag5-Sem)
1717 -- A flag set in a Subprogram_Body, Block_Statement or Task_Body node to
1718 -- indicate that the construct is a task master (i.e. has declared tasks
1719 -- or declares an access to a task type).
1721 -- Itype (Node1-Sem)
1722 -- Used in N_Itype_Reference node to reference an itype for which it is
1723 -- important to ensure that it is defined. See description of this node
1724 -- for further details.
1726 -- Kill_Range_Check (Flag11-Sem)
1727 -- Used in an N_Unchecked_Type_Conversion node to indicate that the
1728 -- result should not be subjected to range checks. This is used for the
1729 -- implementation of Normalize_Scalars.
1731 -- Label_Construct (Node2-Sem)
1732 -- Used in an N_Implicit_Label_Declaration node. Refers to an N_Label,
1733 -- N_Block_Statement or N_Loop_Statement node to which the label
1734 -- declaration applies. This attribute is used both in the compiler and
1735 -- in the implementation of ASIS queries. The field is left empty for the
1736 -- special labels generated as part of expanding raise statements with a
1737 -- local exception handler.
1739 -- Library_Unit (Node4-Sem)
1740 -- In a stub node, Library_Unit points to the compilation unit node of
1741 -- the corresponding subunit.
1743 -- In a with clause node, Library_Unit points to the spec of the with'ed
1744 -- unit.
1746 -- In a compilation unit node, the usage depends on the unit type:
1748 -- For a library unit body, Library_Unit points to the compilation unit
1749 -- node of the corresponding spec, unless it's a subprogram body with
1750 -- Acts_As_Spec set, in which case it points to itself.
1752 -- For a spec, Library_Unit points to the compilation unit node of the
1753 -- corresponding body, if present. The body will be present if the spec
1754 -- is or contains generics that we needed to instantiate. Similarly, the
1755 -- body will be present if we needed it for inlining purposes. Thus, if
1756 -- we have a spec/body pair, both of which are present, they point to
1757 -- each other via Library_Unit.
1759 -- For a subunit, Library_Unit points to the compilation unit node of
1760 -- the parent body.
1761 -- ??? not (always) true, in (at least some, maybe all?) cases it points
1762 -- to the corresponding spec for the parent body.
1764 -- Note that this field is not used to hold the parent pointer for child
1765 -- unit (which might in any case need to use it for some other purpose as
1766 -- described above). Instead for a child unit, implicit with's are
1767 -- generated for all parents.
1769 -- Local_Raise_Statements (Elist1)
1770 -- This field is present in exception handler nodes. It is set to
1771 -- No_Elist in the normal case. If there is at least one raise statement
1772 -- which can potentially be handled as a local raise, then this field
1773 -- points to a list of raise nodes, which are calls to a routine to raise
1774 -- an exception. These are raise nodes which can be optimized into gotos
1775 -- if the handler turns out to meet the conditions which permit this
1776 -- transformation. Note that this does NOT include instances of the
1777 -- N_Raise_xxx_Error nodes since the transformation of these nodes is
1778 -- handled by the back end (using the N_Push/N_Pop mechanism).
1780 -- Loop_Actions (List2-Sem)
1781 -- A list present in Component_Association nodes in array aggregates.
1782 -- Used to collect actions that must be executed within the loop because
1783 -- they may need to be evaluated anew each time through.
1785 -- Limited_View_Installed (Flag18-Sem)
1786 -- Present in With_Clauses and in package specifications. If set on
1787 -- with_clause, it indicates that this clause has created the current
1788 -- limited view of the designated package. On a package specification, it
1789 -- indicates that the limited view has already been created because the
1790 -- package is mentioned in a limited_with_clause in the closure of the
1791 -- unit being compiled.
1793 -- Local_Raise_Not_OK (Flag7-Sem)
1794 -- Present in N_Exception_Handler nodes. Set if the handler contains
1795 -- a construct (reraise statement, or call to subprogram in package
1796 -- GNAT.Current_Exception) that makes the handler unsuitable as a target
1797 -- for a local raise (one that could otherwise be converted to a goto).
1799 -- Must_Be_Byte_Aligned (Flag14-Sem)
1800 -- This flag is present in N_Attribute_Reference nodes. It can be set
1801 -- only for the Address and Unrestricted_Access attributes. If set it
1802 -- means that the object for which the address/access is given must be on
1803 -- a byte (more accurately a storage unit) boundary. If necessary, a copy
1804 -- of the object is to be made before taking the address (this copy is in
1805 -- the current scope on the stack frame). This is used for certain cases
1806 -- of code generated by the expander that passes parameters by address.
1808 -- The reason the copy is not made by the front end is that the back end
1809 -- has more information about type layout and may be able to (but is not
1810 -- guaranteed to) prevent making unnecessary copies.
1812 -- Must_Not_Freeze (Flag8-Sem)
1813 -- A flag present in all expression nodes. Normally expressions cause
1814 -- freezing as described in the RM. If this flag is set, then this is
1815 -- inhibited. This is used by the analyzer and expander to label nodes
1816 -- that are created by semantic analysis or expansion and which must not
1817 -- cause freezing even though they normally would. This flag is also
1818 -- present in an N_Subtype_Indication node, since we also use these in
1819 -- calls to Freeze_Expression.
1821 -- Next_Entity (Node2-Sem)
1822 -- Present in defining identifiers, defining character literals and
1823 -- defining operator symbols (i.e. in all entities). The entities of a
1824 -- scope are chained, and this field is used as the forward pointer for
1825 -- this list. See Einfo for further details.
1827 -- Next_Exit_Statement (Node3-Sem)
1828 -- Present in N_Exit_Statement nodes. The exit statements for a loop are
1829 -- chained (in reverse order of appearance) from the First_Exit_Statement
1830 -- field of the E_Loop entity for the loop. Next_Exit_Statement points to
1831 -- the next entry on this chain (Empty = end of list).
1833 -- Next_Implicit_With (Node3-Sem)
1834 -- Present in N_With_Clause. Part of a chain of with_clauses generated
1835 -- in rtsfind to indicate implicit dependencies on predefined units. Used
1836 -- to prevent multiple with_clauses for the same unit in a given context.
1837 -- A postorder traversal of the tree whose nodes are units and whose
1838 -- links are with_clauses defines the order in which CodePeer must
1839 -- examine a compiled unit and its full context. This ordering ensures
1840 -- that any subprogram call is examined after the subprogram declaration
1841 -- has been seen.
1843 -- Next_Named_Actual (Node4-Sem)
1844 -- Present in parameter association nodes. Set during semantic analysis
1845 -- to point to the next named parameter, where parameters are ordered by
1846 -- declaration order (as opposed to the actual order in the call, which
1847 -- may be different due to named associations). Not that this field
1848 -- points to the explicit actual parameter itself, not to the
1849 -- N_Parameter_Association node (its parent).
1851 -- Next_Pragma (Node1-Sem)
1852 -- Present in N_Pragma nodes. Used to create a linked list of pragma
1853 -- nodes. Currently used for two purposes:
1855 -- Create a list of linked Check_Policy pragmas. The head of this list
1856 -- is stored in Opt.Check_Policy_List (which has further details).
1858 -- Used by processing for Pre/Postcondition pragmas to store a list of
1859 -- pragmas associated with the spec of a subprogram (see Sem_Prag for
1860 -- details).
1862 -- Used by processing for pragma SPARK_Mode to store multiple pragmas
1863 -- the apply to the same construct. These are visible/private mode for
1864 -- a package spec and declarative/statement mode for package body.
1866 -- Next_Rep_Item (Node5-Sem)
1867 -- Present in pragma nodes, attribute definition nodes, enumeration rep
1868 -- clauses, record rep clauses, aspect specification nodes. Used to link
1869 -- representation items that apply to an entity. See full description of
1870 -- First_Rep_Item field in Einfo for further details.
1872 -- Next_Use_Clause (Node3-Sem)
1873 -- While use clauses are active during semantic processing, they are
1874 -- chained from the scope stack entry, using Next_Use_Clause as a link
1875 -- pointer, with Empty marking the end of the list. The head pointer is
1876 -- in the scope stack entry (First_Use_Clause). At the end of semantic
1877 -- processing (i.e. when Gigi sees the tree, the contents of this field
1878 -- is undefined and should not be read).
1880 -- No_Ctrl_Actions (Flag7-Sem)
1881 -- Present in N_Assignment_Statement to indicate that no Finalize nor
1882 -- Adjust should take place on this assignment even though the RHS is
1883 -- controlled. Also indicates that the primitive _assign should not be
1884 -- used for a tagged assignment. This is used in init procs and aggregate
1885 -- expansions where the generated assignments are initializations, not
1886 -- real assignments.
1888 -- No_Elaboration_Check (Flag14-Sem)
1889 -- Present in N_Function_Call and N_Procedure_Call_Statement. Indicates
1890 -- that no elaboration check is needed on the call, because it appears in
1891 -- the context of a local Suppress pragma. This is used on calls within
1892 -- task bodies, where the actual elaboration checks are applied after
1893 -- analysis, when the local scope stack is not present.
1895 -- No_Entities_Ref_In_Spec (Flag8-Sem)
1896 -- Present in N_With_Clause nodes. Set if the with clause is on the
1897 -- package or subprogram spec where the main unit is the corresponding
1898 -- body, and no entities of the with'ed unit are referenced by the spec
1899 -- (an entity may still be referenced in the body, so this flag is used
1900 -- to generate the proper message (see Sem_Util.Check_Unused_Withs for
1901 -- full details)
1903 -- No_Initialization (Flag13-Sem)
1904 -- Present in N_Object_Declaration and N_Allocator to indicate that the
1905 -- object must not be initialized (by Initialize or call to an init
1906 -- proc). This is needed for controlled aggregates. When the Object
1907 -- declaration has an expression, this flag means that this expression
1908 -- should not be taken into account (needed for in place initialization
1909 -- with aggregates, and for object with an address clause, which are
1910 -- initialized with an assignment at freeze time).
1912 -- No_Minimize_Eliminate (Flag17-Sem)
1913 -- This flag is present in membership operator nodes (N_In/N_Not_In).
1914 -- It is used to indicate that processing for extended overflow checking
1915 -- modes is not required (this is used to prevent infinite recursion).
1917 -- No_Truncation (Flag17-Sem)
1918 -- Present in N_Unchecked_Type_Conversion node. This flag has an effect
1919 -- only if the RM_Size of the source is greater than the RM_Size of the
1920 -- target for scalar operands. Normally in such a case we truncate some
1921 -- higher order bits of the source, and then sign/zero extend the result
1922 -- to form the output value. But if this flag is set, then we do not do
1923 -- any truncation, so for example, if an 8 bit input is converted to 5
1924 -- bit result which is in fact stored in 8 bits, then the high order
1925 -- three bits of the target result will be copied from the source. This
1926 -- is used for properly setting out of range values for use by pragmas
1927 -- Initialize_Scalars and Normalize_Scalars.
1929 -- Non_Aliased_Prefix (Flag18-Sem)
1930 -- Present in N_Attribute_Reference nodes. Set only for the case of an
1931 -- Unrestricted_Access reference whose prefix is non-aliased, which is
1932 -- the case that is permitted for Unrestricted_Access except when the
1933 -- expected type is a thin pointer to unconstrained array. This flag is
1934 -- to assist in detecting this illegal use of Unrestricted_Access.
1936 -- Null_Excluding_Subtype (Flag16)
1937 -- Present in N_Access_To_Object_Definition. Indicates that the subtype
1938 -- indication carries a null-exclusion indicator, which is distinct from
1939 -- the null-exclusion indicator that may precede the access keyword.
1941 -- Original_Discriminant (Node2-Sem)
1942 -- Present in identifiers. Used in references to discriminants that
1943 -- appear in generic units. Because the names of the discriminants may be
1944 -- different in an instance, we use this field to recover the position of
1945 -- the discriminant in the original type, and replace it with the
1946 -- discriminant at the same position in the instantiated type.
1948 -- Original_Entity (Node2-Sem)
1949 -- Present in numeric literals. Used to denote the named number that has
1950 -- been constant-folded into the given literal. If literal is from
1951 -- source, or the result of some other constant-folding operation, then
1952 -- Original_Entity is empty. This field is needed to handle properly
1953 -- named numbers in generic units, where the Associated_Node field
1954 -- interferes with the Entity field, making it impossible to preserve the
1955 -- original entity at the point of instantiation (ASIS problem).
1957 -- Others_Discrete_Choices (List1-Sem)
1958 -- When a case statement or variant is analyzed, the semantic checks
1959 -- determine the actual list of choices that correspond to an others
1960 -- choice. This list is materialized for later use by the expander and
1961 -- the Others_Discrete_Choices field of an N_Others_Choice node points to
1962 -- this materialized list of choices, which is in standard format for a
1963 -- list of discrete choices, except that of course it cannot contain an
1964 -- N_Others_Choice entry.
1966 -- Parent_Spec (Node4-Sem)
1967 -- For a library unit that is a child unit spec (package or subprogram
1968 -- declaration, generic declaration or instantiation, or library level
1969 -- rename, this field points to the compilation unit node for the parent
1970 -- package specification. This field is Empty for library bodies (the
1971 -- parent spec in this case can be found from the corresponding spec).
1973 -- Premature_Use (Node5-Sem)
1974 -- Present in N_Incomplete_Type_Declaration node. Used for improved
1975 -- error diagnostics: if there is a premature usage of an incomplete
1976 -- type, a subsequently generated error message indicates the position
1977 -- of its full declaration.
1979 -- Present_Expr (Uint3-Sem)
1980 -- Present in an N_Variant node. This has a meaningful value only after
1981 -- Gigi has back annotated the tree with representation information. At
1982 -- this point, it contains a reference to a gcc expression that depends
1983 -- on the values of one or more discriminants. Give a set of discriminant
1984 -- values, this expression evaluates to False (zero) if variant is not
1985 -- present, and True (non-zero) if it is present. See unit Repinfo for
1986 -- further details on gigi back annotation. This field is used during
1987 -- ASIS processing (data decomposition annex) to determine if a field is
1988 -- present or not.
1990 -- Print_In_Hex (Flag13-Sem)
1991 -- Set on an N_Integer_Literal node to indicate that the value should be
1992 -- printed in hexadecimal in the sprint listing. Has no effect on
1993 -- legality or semantics of program, only on the displayed output. This
1994 -- is used to clarify output from the packed array cases.
1996 -- Procedure_To_Call (Node2-Sem)
1997 -- Present in N_Allocator, N_Free_Statement, N_Simple_Return_Statement,
1998 -- and N_Extended_Return_Statement nodes. References the entity for the
1999 -- declaration of the procedure to be called to accomplish the required
2000 -- operation (i.e. for the Allocate procedure in the case of N_Allocator
2001 -- and N_Simple_Return_Statement and N_Extended_Return_Statement (for
2002 -- allocating the return value), and for the Deallocate procedure in the
2003 -- case of N_Free_Statement.
2005 -- Raises_Constraint_Error (Flag7-Sem)
2006 -- Set on an expression whose evaluation will definitely fail constraint
2007 -- error check. In the case of static expressions, this flag must be set
2008 -- accurately (and if it is set, the expression is typically illegal
2009 -- unless it appears as a non-elaborated branch of a short-circuit form).
2010 -- For a non-static expression, this flag may be set whenever an
2011 -- expression (e.g. an aggregate) is known to raise constraint error. If
2012 -- set, the expression definitely will raise CE if elaborated at runtime.
2013 -- If not set, the expression may or may not raise CE. In other words, on
2014 -- static expressions, the flag is set accurately, on non-static
2015 -- expressions it is set conservatively.
2017 -- Redundant_Use (Flag13-Sem)
2018 -- Present in nodes that can appear as an operand in a use clause or use
2019 -- type clause (identifiers, expanded names, attribute references). Set
2020 -- to indicate that a use is redundant (and therefore need not be undone
2021 -- on scope exit).
2023 -- Renaming_Exception (Node2-Sem)
2024 -- Present in N_Exception_Declaration node. Used to point back to the
2025 -- exception renaming for an exception declared within a subprogram.
2026 -- What happens is that an exception declared in a subprogram is moved
2027 -- to the library level with a unique name, and the original exception
2028 -- becomes a renaming. This link from the library level exception to the
2029 -- renaming declaration allows registering of the proper exception name.
2031 -- Return_Statement_Entity (Node5-Sem)
2032 -- Present in N_Simple_Return_Statement and N_Extended_Return_Statement.
2033 -- Points to an E_Return_Statement representing the return statement.
2035 -- Return_Object_Declarations (List3)
2036 -- Present in N_Extended_Return_Statement. Points to a list initially
2037 -- containing a single N_Object_Declaration representing the return
2038 -- object. We use a list (instead of just a pointer to the object decl)
2039 -- because Analyze wants to insert extra actions on this list.
2041 -- Rounded_Result (Flag18-Sem)
2042 -- Present in N_Type_Conversion, N_Op_Divide and N_Op_Multiply nodes.
2043 -- Used in the fixed-point cases to indicate that the result must be
2044 -- rounded as a result of the use of the 'Round attribute. Also used for
2045 -- integer N_Op_Divide nodes to indicate that the result should be
2046 -- rounded to the nearest integer (breaking ties away from zero), rather
2047 -- than truncated towards zero as usual. These rounded integer operations
2048 -- are the result of expansion of rounded fixed-point divide, conversion
2049 -- and multiplication operations.
2051 -- SCIL_Entity (Node4-Sem)
2052 -- Present in SCIL nodes. References the specific tagged type associated
2053 -- with the SCIL node (for an N_SCIL_Dispatching_Call node, this is
2054 -- the controlling type of the call; for an N_SCIL_Membership_Test node
2055 -- generated as part of testing membership in T'Class, this is T; for an
2056 -- N_SCIL_Dispatch_Table_Tag_Init node, this is the type being declared).
2058 -- SCIL_Controlling_Tag (Node5-Sem)
2059 -- Present in N_SCIL_Dispatching_Call nodes. References the controlling
2060 -- tag of a dispatching call. This is usually an N_Selected_Component
2061 -- node (for a _tag component), but may be an N_Object_Declaration or
2062 -- N_Parameter_Specification node in some cases (e.g., for a call to
2063 -- a classwide streaming operation or a call to an instance of
2064 -- Ada.Tags.Generic_Dispatching_Constructor).
2066 -- SCIL_Tag_Value (Node5-Sem)
2067 -- Present in N_SCIL_Membership_Test nodes. Used to reference the tag
2068 -- of the value that is being tested.
2070 -- SCIL_Target_Prim (Node2-Sem)
2071 -- Present in N_SCIL_Dispatching_Call nodes. References the primitive
2072 -- operation named (statically) in a dispatching call.
2074 -- Scope (Node3-Sem)
2075 -- Present in defining identifiers, defining character literals and
2076 -- defining operator symbols (i.e. in all entities). The entities of a
2077 -- scope all use this field to reference the corresponding scope entity.
2078 -- See Einfo for further details.
2080 -- Shift_Count_OK (Flag4-Sem)
2081 -- A flag present in shift nodes to indicate that the shift count is
2082 -- known to be in range, i.e. is in the range from zero to word length
2083 -- minus one. If this flag is not set, then the shift count may be
2084 -- outside this range, i.e. larger than the word length, and the code
2085 -- must ensure that such shift counts give the appropriate result.
2087 -- Source_Type (Node1-Sem)
2088 -- Used in an N_Validate_Unchecked_Conversion node to point to the
2089 -- source type entity for the unchecked conversion instantiation
2090 -- which gigi must do size validation for.
2092 -- Split_PPC (Flag17)
2093 -- When a Pre or Post aspect specification is processed, it is broken
2094 -- into AND THEN sections. The left most section has Split_PPC set to
2095 -- False, indicating that it is the original specification (e.g. for
2096 -- posting errors). For other sections, Split_PPC is set to True.
2097 -- This flag is set in both the N_Aspect_Specification node itself,
2098 -- and in the pragma which is generated from this node.
2100 -- Storage_Pool (Node1-Sem)
2101 -- Present in N_Allocator, N_Free_Statement, N_Simple_Return_Statement,
2102 -- and N_Extended_Return_Statement nodes. References the entity for the
2103 -- storage pool to be used for the allocate or free call or for the
2104 -- allocation of the returned value from function. Empty indicates that
2105 -- the global default pool is to be used. Note that in the case
2106 -- of a return statement, this field is set only if the function returns
2107 -- value of a type whose size is not known at compile time on the
2108 -- secondary stack.
2110 -- Suppress_Assignment_Checks (Flag18-Sem)
2111 -- Used in generated N_Assignment_Statement nodes to suppress predicate
2112 -- and range checks in cases where the generated code knows that the
2113 -- value being assigned is in range and satisfies any predicate. Also
2114 -- can be set in N_Object_Declaration nodes, to similarly suppress any
2115 -- checks on the initializing value. In assignment statements it also
2116 -- suppresses access checks in the generated code for out- and in-out
2117 -- parameters in entry calls.
2119 -- Suppress_Loop_Warnings (Flag17-Sem)
2120 -- Used in N_Loop_Statement node to indicate that warnings within the
2121 -- body of the loop should be suppressed. This is set when the range
2122 -- of a FOR loop is known to be null, or is probably null (loop would
2123 -- only execute if invalid values are present).
2125 -- Target_Type (Node2-Sem)
2126 -- Used in an N_Validate_Unchecked_Conversion node to point to the target
2127 -- type entity for the unchecked conversion instantiation which gigi must
2128 -- do size validation for.
2130 -- Then_Actions (List3-Sem)
2131 -- This field is present in if expression nodes. During code expansion
2132 -- we use the Insert_Actions procedure (in Exp_Util) to insert actions
2133 -- at an appropriate place in the tree to get elaborated at the right
2134 -- time. For if expressions, we have to be sure that the actions for
2135 -- for the Then branch are only elaborated if the condition is True.
2136 -- The Then_Actions field is used as a temporary parking place for
2137 -- these actions. The final tree is always rewritten to eliminate the
2138 -- need for this field, so in the tree passed to Gigi, this field is
2139 -- always set to No_List.
2141 -- Treat_Fixed_As_Integer (Flag14-Sem)
2142 -- This flag appears in operator nodes for divide, multiply, mod and rem
2143 -- on fixed-point operands. It indicates that the operands are to be
2144 -- treated as integer values, ignoring small values. This flag is only
2145 -- set as a result of expansion of fixed-point operations. Typically a
2146 -- fixed-point multiplication in the source generates subsidiary
2147 -- multiplication and division operations that work with the underlying
2148 -- integer values and have this flag set. Note that this flag is not
2149 -- needed on other arithmetic operations (add, neg, subtract etc.) since
2150 -- in these cases it is always the case that fixed is treated as integer.
2151 -- The Etype field MUST be set if this flag is set. The analyzer knows to
2152 -- leave such nodes alone, and whoever makes them must set the correct
2153 -- Etype value.
2155 -- TSS_Elist (Elist3-Sem)
2156 -- Present in N_Freeze_Entity nodes. Holds an element list containing
2157 -- entries for each TSS (type support subprogram) associated with the
2158 -- frozen type. The elements of the list are the entities for the
2159 -- subprograms (see package Exp_TSS for further details). Set to No_Elist
2160 -- if there are no type support subprograms for the type or if the freeze
2161 -- node is not for a type.
2163 -- Uneval_Old_Accept (Flag7-Sem)
2164 -- Present in N_Pragma nodes. Set True if Opt.Uneval_Old is set to 'A'
2165 -- (accept) at the point where the pragma is encountered (including the
2166 -- case of a pragma generated from an aspect specification). It is this
2167 -- setting that is relevant, rather than the setting at the point where
2168 -- a contract is finally analyzed after the delay till the freeze point.
2170 -- Uneval_Old_Warn (Flag18-Sem)
2171 -- Present in N_Pragma nodes. Set True if Opt.Uneval_Old is set to 'W'
2172 -- (warn) at the point where the pragma is encountered (including the
2173 -- case of a pragma generated from an aspect specification). It is this
2174 -- setting that is relevant, rather than the setting at the point where
2175 -- a contract is finally analyzed after the delay till the freeze point.
2177 -- Unreferenced_In_Spec (Flag7-Sem)
2178 -- Present in N_With_Clause nodes. Set if the with clause is on the
2179 -- package or subprogram spec where the main unit is the corresponding
2180 -- body, and is not referenced by the spec (it may still be referenced by
2181 -- the body, so this flag is used to generate the proper message (see
2182 -- Sem_Util.Check_Unused_Withs for details)
2184 -- Uninitialized_Variable (Node3-Sem)
2185 -- Present in N_Formal_Private_Type_Definition and in N_Private_
2186 -- Extension_Declarations. Indicates that a variable in a generic unit
2187 -- whose type is a formal private or derived type is read without being
2188 -- initialized. Used to warn if the corresponding actual type is not
2189 -- a fully initialized type.
2191 -- Used_Operations (Elist5-Sem)
2192 -- Present in N_Use_Type_Clause nodes. Holds the list of operations that
2193 -- are made potentially use-visible by the clause. Simplifies processing
2194 -- on exit from the scope of the use_type_clause, in particular in the
2195 -- case of Use_All_Type, when those operations several scopes.
2197 -- Was_Originally_Stub (Flag13-Sem)
2198 -- This flag is set in the node for a proper body that replaces stub.
2199 -- During the analysis procedure, stubs in some situations get rewritten
2200 -- by the corresponding bodies, and we set this flag to remember that
2201 -- this happened. Note that it is not good enough to rely on the use of
2202 -- Original_Node here because of the case of nested instantiations where
2203 -- the substituted node can be copied.
2205 -- Withed_Body (Node1-Sem)
2206 -- Present in N_With_Clause nodes. Set if the unit in whose context
2207 -- the with_clause appears instantiates a generic contained in the
2208 -- library unit of the with_clause and as a result loads its body.
2209 -- Used for a more precise unit traversal for CodePeer.
2211 --------------------------------------------------
2212 -- Note on Use of End_Label and End_Span Fields --
2213 --------------------------------------------------
2215 -- Several constructs have end lines:
2217 -- Loop Statement end loop [loop_IDENTIFIER];
2218 -- Package Specification end [[PARENT_UNIT_NAME .] IDENTIFIER]
2219 -- Task Definition end [task_IDENTIFIER]
2220 -- Protected Definition end [protected_IDENTIFIER]
2221 -- Protected Body end [protected_IDENTIFIER]
2223 -- Block Statement end [block_IDENTIFIER];
2224 -- Subprogram Body end [DESIGNATOR];
2225 -- Package Body end [[PARENT_UNIT_NAME .] IDENTIFIER];
2226 -- Task Body end [task_IDENTIFIER];
2227 -- Accept Statement end [entry_IDENTIFIER]];
2228 -- Entry Body end [entry_IDENTIFIER];
2230 -- If Statement end if;
2231 -- Case Statement end case;
2233 -- Record Definition end record;
2234 -- Enumeration Definition );
2236 -- The End_Label and End_Span fields are used to mark the locations of
2237 -- these lines, and also keep track of the label in the case where a label
2238 -- is present.
2240 -- For the first group above, the End_Label field of the corresponding node
2241 -- is used to point to the label identifier. In the case where there is no
2242 -- label in the source, the parser supplies a dummy identifier (with
2243 -- Comes_From_Source set to False), and the Sloc of this dummy identifier
2244 -- marks the location of the token following the END token.
2246 -- For the second group, the use of End_Label is similar, but the End_Label
2247 -- is found in the N_Handled_Sequence_Of_Statements node. This is done
2248 -- simply because in some cases there is no room in the parent node.
2250 -- For the third group, there is never any label, and instead of using
2251 -- End_Label, we use the End_Span field which gives the location of the
2252 -- token following END, relative to the starting Sloc of the construct,
2253 -- i.e. add Sloc (Node) + End_Span (Node) to get the Sloc of the IF or CASE
2254 -- following the End_Label.
2256 -- The record definition case is handled specially, we treat it as though
2257 -- it required an optional label which is never present, and so the parser
2258 -- always builds a dummy identifier with Comes From Source set False. The
2259 -- reason we do this, rather than using End_Span in this case, is that we
2260 -- want to generate a cross-ref entry for the end of a record, since it
2261 -- represents a scope for name declaration purposes.
2263 -- The enumeration definition case is handled in an exactly similar manner,
2264 -- building a dummy identifier to get a cross-reference.
2266 -- Note: the reason we store the difference as a Uint, instead of storing
2267 -- the Source_Ptr value directly, is that Source_Ptr values cannot be
2268 -- distinguished from other types of values, and we count on all general
2269 -- use fields being self describing. To make things easier for clients,
2270 -- note that we provide function End_Location, and procedure
2271 -- Set_End_Location to allow access to the logical value (which is the
2272 -- Source_Ptr value for the end token).
2274 ---------------------
2275 -- Syntactic Nodes --
2276 ---------------------
2278 ---------------------
2279 -- 2.3 Identifier --
2280 ---------------------
2282 -- IDENTIFIER ::= IDENTIFIER_LETTER {[UNDERLINE] LETTER_OR_DIGIT}
2283 -- LETTER_OR_DIGIT ::= IDENTIFIER_LETTER | DIGIT
2285 -- An IDENTIFIER shall not be a reserved word
2287 -- In the Ada grammar identifiers are the bottom level tokens which have
2288 -- very few semantics. Actual program identifiers are direct names. If
2289 -- we were being 100% honest with the grammar, then we would have a node
2290 -- called N_Direct_Name which would point to an identifier. However,
2291 -- that's too many extra nodes, so we just use the N_Identifier node
2292 -- directly as a direct name, and it contains the expression fields and
2293 -- Entity field that correspond to its use as a direct name. In those
2294 -- few cases where identifiers appear in contexts where they are not
2295 -- direct names (pragmas, pragma argument associations, attribute
2296 -- references and attribute definition clauses), the Chars field of the
2297 -- node contains the Name_Id for the identifier name.
2299 -- Note: in GNAT, a reserved word can be treated as an identifier in two
2300 -- cases. First, an incorrect use of a reserved word as an identifier is
2301 -- diagnosed and then treated as a normal identifier. Second, an
2302 -- attribute designator of the form of a reserved word (access, delta,
2303 -- digits, range) is treated as an identifier.
2305 -- Note: The set of letters that is permitted in an identifier depends
2306 -- on the character set in use. See package Csets for full details.
2308 -- N_Identifier
2309 -- Sloc points to identifier
2310 -- Chars (Name1) contains the Name_Id for the identifier
2311 -- Entity (Node4-Sem)
2312 -- Associated_Node (Node4-Sem)
2313 -- Original_Discriminant (Node2-Sem)
2314 -- Redundant_Use (Flag13-Sem)
2315 -- Atomic_Sync_Required (Flag14-Sem)
2316 -- Has_Private_View (Flag11-Sem) (set in generic units)
2317 -- plus fields for expression
2319 --------------------------
2320 -- 2.4 Numeric Literal --
2321 --------------------------
2323 -- NUMERIC_LITERAL ::= DECIMAL_LITERAL | BASED_LITERAL
2325 ----------------------------
2326 -- 2.4.1 Decimal Literal --
2327 ----------------------------
2329 -- DECIMAL_LITERAL ::= NUMERAL [.NUMERAL] [EXPONENT]
2331 -- NUMERAL ::= DIGIT {[UNDERLINE] DIGIT}
2333 -- EXPONENT ::= E [+] NUMERAL | E - NUMERAL
2335 -- Decimal literals appear in the tree as either integer literal nodes
2336 -- or real literal nodes, depending on whether a period is present.
2338 -- Note: literal nodes appear as a result of direct use of literals
2339 -- in the source program, and also as the result of evaluating
2340 -- expressions at compile time. In the latter case, it is possible
2341 -- to construct real literals that have no syntactic representation
2342 -- using the standard literal format. Such literals are listed by
2343 -- Sprint using the notation [numerator / denominator].
2345 -- Note: the value of an integer literal node created by the front end
2346 -- is never outside the range of values of the base type. However, it
2347 -- can be the case that the created value is outside the range of the
2348 -- particular subtype. This happens in the case of integer overflows
2349 -- with checks suppressed.
2351 -- N_Integer_Literal
2352 -- Sloc points to literal
2353 -- Original_Entity (Node2-Sem) If not Empty, holds Named_Number that
2354 -- has been constant-folded into its literal value.
2355 -- Intval (Uint3) contains integer value of literal
2356 -- plus fields for expression
2357 -- Print_In_Hex (Flag13-Sem)
2359 -- N_Real_Literal
2360 -- Sloc points to literal
2361 -- Original_Entity (Node2-Sem) If not Empty, holds Named_Number that
2362 -- has been constant-folded into its literal value.
2363 -- Realval (Ureal3) contains real value of literal
2364 -- Corresponding_Integer_Value (Uint4-Sem)
2365 -- Is_Machine_Number (Flag11-Sem)
2366 -- plus fields for expression
2368 --------------------------
2369 -- 2.4.2 Based Literal --
2370 --------------------------
2372 -- BASED_LITERAL ::=
2373 -- BASE # BASED_NUMERAL [.BASED_NUMERAL] # [EXPONENT]
2375 -- BASE ::= NUMERAL
2377 -- BASED_NUMERAL ::=
2378 -- EXTENDED_DIGIT {[UNDERLINE] EXTENDED_DIGIT}
2380 -- EXTENDED_DIGIT ::= DIGIT | A | B | C | D | E | F
2382 -- Based literals appear in the tree as either integer literal nodes
2383 -- or real literal nodes, depending on whether a period is present.
2385 ----------------------------
2386 -- 2.5 Character Literal --
2387 ----------------------------
2389 -- CHARACTER_LITERAL ::= ' GRAPHIC_CHARACTER '
2391 -- N_Character_Literal
2392 -- Sloc points to literal
2393 -- Chars (Name1) contains the Name_Id for the identifier
2394 -- Char_Literal_Value (Uint2) contains the literal value
2395 -- Entity (Node4-Sem)
2396 -- Associated_Node (Node4-Sem)
2397 -- Has_Private_View (Flag11-Sem) set in generic units.
2398 -- plus fields for expression
2400 -- Note: the Entity field will be missing (set to Empty) for character
2401 -- literals whose type is Standard.Wide_Character or Standard.Character
2402 -- or a type derived from one of these two. In this case the character
2403 -- literal stands for its own coding. The reason we take this irregular
2404 -- short cut is to avoid the need to build lots of junk defining
2405 -- character literal nodes.
2407 -------------------------
2408 -- 2.6 String Literal --
2409 -------------------------
2411 -- STRING LITERAL ::= "{STRING_ELEMENT}"
2413 -- A STRING_ELEMENT is either a pair of quotation marks ("), or a
2414 -- single GRAPHIC_CHARACTER other than a quotation mark.
2416 -- Is_Folded_In_Parser is True if the parser created this literal by
2417 -- folding a sequence of "&" operators. For example, if the source code
2418 -- says "aaa" & "bbb" & "ccc", and this produces "aaabbbccc", the flag
2419 -- is set. This flag is needed because the parser doesn't know about
2420 -- visibility, so the folded result might be wrong, and semantic
2421 -- analysis needs to check for that.
2423 -- N_String_Literal
2424 -- Sloc points to literal
2425 -- Strval (Str3) contains Id of string value
2426 -- Has_Wide_Character (Flag11-Sem)
2427 -- Has_Wide_Wide_Character (Flag13-Sem)
2428 -- Is_Folded_In_Parser (Flag4)
2429 -- plus fields for expression
2431 ------------------
2432 -- 2.7 Comment --
2433 ------------------
2435 -- A COMMENT starts with two adjacent hyphens and extends up to the
2436 -- end of the line. A COMMENT may appear on any line of a program.
2438 -- Comments are skipped by the scanner and do not appear in the tree.
2439 -- It is possible to reconstruct the position of comments with respect
2440 -- to the elements of the tree by using the source position (Sloc)
2441 -- pointers that appear in every tree node.
2443 -----------------
2444 -- 2.8 Pragma --
2445 -----------------
2447 -- PRAGMA ::= pragma IDENTIFIER
2448 -- [(PRAGMA_ARGUMENT_ASSOCIATION {, PRAGMA_ARGUMENT_ASSOCIATION})];
2450 -- Note that a pragma may appear in the tree anywhere a declaration
2451 -- or a statement may appear, as well as in some other situations
2452 -- which are explicitly documented.
2454 -- N_Pragma
2455 -- Sloc points to PRAGMA
2456 -- Next_Pragma (Node1-Sem)
2457 -- Pragma_Argument_Associations (List2) (set to No_List if none)
2458 -- Corresponding_Aspect (Node3-Sem) (set to Empty if not present)
2459 -- Pragma_Identifier (Node4)
2460 -- Next_Rep_Item (Node5-Sem)
2461 -- Class_Present (Flag6) set if from Aspect with 'Class
2462 -- From_Aspect_Specification (Flag13-Sem)
2463 -- Import_Interface_Present (Flag16-Sem)
2464 -- Is_Checked (Flag11-Sem)
2465 -- Is_Delayed_Aspect (Flag14-Sem)
2466 -- Is_Disabled (Flag15-Sem)
2467 -- Is_Generic_Contract_Pragma (Flag2-Sem)
2468 -- Is_Ignored (Flag9-Sem)
2469 -- Is_Inherited (Flag4-Sem)
2470 -- Split_PPC (Flag17) set if corresponding aspect had Split_PPC set
2471 -- Uneval_Old_Accept (Flag7-Sem)
2472 -- Uneval_Old_Warn (Flag18-Sem)
2474 -- Note: we should have a section on what pragmas are passed on to
2475 -- the back end to be processed. This section should note that pragma
2476 -- Psect_Object is always converted to Common_Object, but there are
2477 -- undoubtedly many other similar notes required ???
2479 -- Note: a utility function Pragma_Name may be applied to pragma nodes
2480 -- to conveniently obtain the Chars field of the Pragma_Identifier.
2482 -- Note: if From_Aspect_Specification is set, then Sloc points to the
2483 -- aspect name, as does the Pragma_Identifier. In this case if the
2484 -- pragma has a local name argument (such as pragma Inline), it is
2485 -- resolved to point to the specific entity affected by the pragma.
2487 --------------------------------------
2488 -- 2.8 Pragma Argument Association --
2489 --------------------------------------
2491 -- PRAGMA_ARGUMENT_ASSOCIATION ::=
2492 -- [pragma_argument_IDENTIFIER =>] NAME
2493 -- | [pragma_argument_IDENTIFIER =>] EXPRESSION
2495 -- In Ada 2012, there are two more possibilities:
2497 -- PRAGMA_ARGUMENT_ASSOCIATION ::=
2498 -- [pragma_argument_ASPECT_MARK =>] NAME
2499 -- | [pragma_argument_ASPECT_MARK =>] EXPRESSION
2501 -- where the interesting allowed cases (which do not fit the syntax of
2502 -- the first alternative above) are
2504 -- ASPECT_MARK => Pre'Class |
2505 -- Post'Class |
2506 -- Type_Invariant'Class |
2507 -- Invariant'Class
2509 -- We allow this special usage in all Ada modes, but it would be a
2510 -- pain to allow these aspects to pervade the pragma syntax, and the
2511 -- representation of pragma nodes internally. So what we do is to
2512 -- replace these ASPECT_MARK forms with identifiers whose name is one
2513 -- of the special internal names _Pre, _Post or _Type_Invariant.
2515 -- We do a similar replacement of these Aspect_Mark forms in the
2516 -- Expression of a pragma argument association for the cases of
2517 -- the first arguments of any Check pragmas and Check_Policy pragmas
2519 -- N_Pragma_Argument_Association
2520 -- Sloc points to first token in association
2521 -- Chars (Name1) (set to No_Name if no pragma argument identifier)
2522 -- Expression (Node3)
2524 ------------------------
2525 -- 2.9 Reserved Word --
2526 ------------------------
2528 -- Reserved words are parsed by the scanner, and returned as the
2529 -- corresponding token types (e.g. PACKAGE is returned as Tok_Package)
2531 ----------------------------
2532 -- 3.1 Basic Declaration --
2533 ----------------------------
2535 -- BASIC_DECLARATION ::=
2536 -- TYPE_DECLARATION | SUBTYPE_DECLARATION
2537 -- | OBJECT_DECLARATION | NUMBER_DECLARATION
2538 -- | SUBPROGRAM_DECLARATION | ABSTRACT_SUBPROGRAM_DECLARATION
2539 -- | PACKAGE_DECLARATION | RENAMING_DECLARATION
2540 -- | EXCEPTION_DECLARATION | GENERIC_DECLARATION
2541 -- | GENERIC_INSTANTIATION
2543 -- Basic declaration also includes IMPLICIT_LABEL_DECLARATION
2544 -- see further description in section on semantic nodes.
2546 -- Also, in the tree that is constructed, a pragma may appear
2547 -- anywhere that a declaration may appear.
2549 ------------------------------
2550 -- 3.1 Defining Identifier --
2551 ------------------------------
2553 -- DEFINING_IDENTIFIER ::= IDENTIFIER
2555 -- A defining identifier is an entity, which has additional fields
2556 -- depending on the setting of the Ekind field. These additional
2557 -- fields are defined (and access subprograms declared) in package
2558 -- Einfo.
2560 -- Note: N_Defining_Identifier is an extended node whose fields are
2561 -- deliberate layed out to match the layout of fields in an ordinary
2562 -- N_Identifier node allowing for easy alteration of an identifier
2563 -- node into a defining identifier node. For details, see procedure
2564 -- Sinfo.CN.Change_Identifier_To_Defining_Identifier.
2566 -- N_Defining_Identifier
2567 -- Sloc points to identifier
2568 -- Chars (Name1) contains the Name_Id for the identifier
2569 -- Next_Entity (Node2-Sem)
2570 -- Scope (Node3-Sem)
2571 -- Etype (Node5-Sem)
2573 -----------------------------
2574 -- 3.2.1 Type Declaration --
2575 -----------------------------
2577 -- TYPE_DECLARATION ::=
2578 -- FULL_TYPE_DECLARATION
2579 -- | INCOMPLETE_TYPE_DECLARATION
2580 -- | PRIVATE_TYPE_DECLARATION
2581 -- | PRIVATE_EXTENSION_DECLARATION
2583 ----------------------------------
2584 -- 3.2.1 Full Type Declaration --
2585 ----------------------------------
2587 -- FULL_TYPE_DECLARATION ::=
2588 -- type DEFINING_IDENTIFIER [KNOWN_DISCRIMINANT_PART]
2589 -- is TYPE_DEFINITION
2590 -- [ASPECT_SPECIFICATIONS];
2591 -- | TASK_TYPE_DECLARATION
2592 -- | PROTECTED_TYPE_DECLARATION
2594 -- The full type declaration node is used only for the first case. The
2595 -- second case (concurrent type declaration), is represented directly
2596 -- by a task type declaration or a protected type declaration.
2598 -- N_Full_Type_Declaration
2599 -- Sloc points to TYPE
2600 -- Defining_Identifier (Node1)
2601 -- Incomplete_View (Node2-Sem)
2602 -- Discriminant_Specifications (List4) (set to No_List if none)
2603 -- Type_Definition (Node3)
2604 -- Discr_Check_Funcs_Built (Flag11-Sem)
2606 ----------------------------
2607 -- 3.2.1 Type Definition --
2608 ----------------------------
2610 -- TYPE_DEFINITION ::=
2611 -- ENUMERATION_TYPE_DEFINITION | INTEGER_TYPE_DEFINITION
2612 -- | REAL_TYPE_DEFINITION | ARRAY_TYPE_DEFINITION
2613 -- | RECORD_TYPE_DEFINITION | ACCESS_TYPE_DEFINITION
2614 -- | DERIVED_TYPE_DEFINITION | INTERFACE_TYPE_DEFINITION
2616 --------------------------------
2617 -- 3.2.2 Subtype Declaration --
2618 --------------------------------
2620 -- SUBTYPE_DECLARATION ::=
2621 -- subtype DEFINING_IDENTIFIER is [NULL_EXCLUSION] SUBTYPE_INDICATION
2622 -- [ASPECT_SPECIFICATIONS];
2624 -- The subtype indication field is set to Empty for subtypes
2625 -- declared in package Standard (Positive, Natural).
2627 -- N_Subtype_Declaration
2628 -- Sloc points to SUBTYPE
2629 -- Defining_Identifier (Node1)
2630 -- Null_Exclusion_Present (Flag11)
2631 -- Subtype_Indication (Node5)
2632 -- Generic_Parent_Type (Node4-Sem) (set for an actual derived type).
2633 -- Exception_Junk (Flag8-Sem)
2634 -- Has_Dynamic_Range_Check (Flag12-Sem)
2636 -------------------------------
2637 -- 3.2.2 Subtype Indication --
2638 -------------------------------
2640 -- SUBTYPE_INDICATION ::= SUBTYPE_MARK [CONSTRAINT]
2642 -- Note: if no constraint is present, the subtype indication appears
2643 -- directly in the tree as a subtype mark. The N_Subtype_Indication
2644 -- node is used only if a constraint is present.
2646 -- Note: [For Ada 2005 (AI-231)]: Because Ada 2005 extends this rule
2647 -- with the null-exclusion part (see AI-231), we had to introduce a new
2648 -- attribute in all the parents of subtype_indication nodes to indicate
2649 -- if the null-exclusion is present.
2651 -- Note: the reason that this node has expression fields is that a
2652 -- subtype indication can appear as an operand of a membership test.
2654 -- N_Subtype_Indication
2655 -- Sloc points to first token of subtype mark
2656 -- Subtype_Mark (Node4)
2657 -- Constraint (Node3)
2658 -- Etype (Node5-Sem)
2659 -- Must_Not_Freeze (Flag8-Sem)
2661 -- Note: Depending on context, the Etype is either the entity of the
2662 -- Subtype_Mark field, or it is an itype constructed to reify the
2663 -- subtype indication. In particular, such itypes are created for a
2664 -- subtype indication that appears in an array type declaration. This
2665 -- simplifies constraint checking in indexed components.
2667 -- For subtype indications that appear in scalar type and subtype
2668 -- declarations, the Etype is the entity of the subtype mark.
2670 -------------------------
2671 -- 3.2.2 Subtype Mark --
2672 -------------------------
2674 -- SUBTYPE_MARK ::= subtype_NAME
2676 -----------------------
2677 -- 3.2.2 Constraint --
2678 -----------------------
2680 -- CONSTRAINT ::= SCALAR_CONSTRAINT | COMPOSITE_CONSTRAINT
2682 ------------------------------
2683 -- 3.2.2 Scalar Constraint --
2684 ------------------------------
2686 -- SCALAR_CONSTRAINT ::=
2687 -- RANGE_CONSTRAINT | DIGITS_CONSTRAINT | DELTA_CONSTRAINT
2689 ---------------------------------
2690 -- 3.2.2 Composite Constraint --
2691 ---------------------------------
2693 -- COMPOSITE_CONSTRAINT ::=
2694 -- INDEX_CONSTRAINT | DISCRIMINANT_CONSTRAINT
2696 -------------------------------
2697 -- 3.3.1 Object Declaration --
2698 -------------------------------
2700 -- OBJECT_DECLARATION ::=
2701 -- DEFINING_IDENTIFIER_LIST : [aliased] [constant]
2702 -- [NULL_EXCLUSION] SUBTYPE_INDICATION [:= EXPRESSION]
2703 -- [ASPECT_SPECIFICATIONS];
2704 -- | DEFINING_IDENTIFIER_LIST : [aliased] [constant]
2705 -- ACCESS_DEFINITION [:= EXPRESSION]
2706 -- [ASPECT_SPECIFICATIONS];
2707 -- | DEFINING_IDENTIFIER_LIST : [aliased] [constant]
2708 -- ARRAY_TYPE_DEFINITION [:= EXPRESSION]
2709 -- [ASPECT_SPECIFICATIONS];
2710 -- | SINGLE_TASK_DECLARATION
2711 -- | SINGLE_PROTECTED_DECLARATION
2713 -- Note: aliased is not permitted in Ada 83 mode
2715 -- The N_Object_Declaration node is only for the first two cases.
2716 -- Single task declaration is handled by P_Task (9.1)
2717 -- Single protected declaration is handled by P_protected (9.5)
2719 -- Although the syntax allows multiple identifiers in the list, the
2720 -- semantics is as though successive declarations were given with
2721 -- identical type definition and expression components. To simplify
2722 -- semantic processing, the parser represents a multiple declaration
2723 -- case as a sequence of single declarations, using the More_Ids and
2724 -- Prev_Ids flags to preserve the original source form as described
2725 -- in the section on "Handling of Defining Identifier Lists".
2727 -- The flag Has_Init_Expression is set if an initializing expression
2728 -- is present. Normally it is set if and only if Expression contains
2729 -- a non-empty value, but there is an exception to this. When the
2730 -- initializing expression is an aggregate which requires explicit
2731 -- assignments, the Expression field gets set to Empty, but this flag
2732 -- is still set, so we don't forget we had an initializing expression.
2734 -- Note: if a range check is required for the initialization
2735 -- expression then the Do_Range_Check flag is set in the Expression,
2736 -- with the check being done against the type given by the object
2737 -- definition, which is also the Etype of the defining identifier.
2739 -- Note: the contents of the Expression field must be ignored (i.e.
2740 -- treated as though it were Empty) if No_Initialization is set True.
2742 -- Note: the back end places some restrictions on the form of the
2743 -- Expression field. If the object being declared is Atomic, then
2744 -- the Expression may not have the form of an aggregate (since this
2745 -- might cause the back end to generate separate assignments). In this
2746 -- case the front end must generate an extra temporary and initialize
2747 -- this temporary as required (the temporary itself is not atomic).
2749 -- Note: there is not node kind for object definition. Instead, the
2750 -- corresponding field holds a subtype indication, an array type
2751 -- definition, or (Ada 2005, AI-406) an access definition.
2753 -- N_Object_Declaration
2754 -- Sloc points to first identifier
2755 -- Defining_Identifier (Node1)
2756 -- Aliased_Present (Flag4)
2757 -- Constant_Present (Flag17) set if CONSTANT appears
2758 -- Null_Exclusion_Present (Flag11)
2759 -- Object_Definition (Node4) subtype indic./array type def./access def.
2760 -- Expression (Node3) (set to Empty if not present)
2761 -- Handler_List_Entry (Node2-Sem)
2762 -- Corresponding_Generic_Association (Node5-Sem)
2763 -- More_Ids (Flag5) (set to False if no more identifiers in list)
2764 -- Prev_Ids (Flag6) (set to False if no previous identifiers in list)
2765 -- No_Initialization (Flag13-Sem)
2766 -- Assignment_OK (Flag15-Sem)
2767 -- Exception_Junk (Flag8-Sem)
2768 -- Is_Subprogram_Descriptor (Flag16-Sem)
2769 -- Has_Init_Expression (Flag14)
2770 -- Suppress_Assignment_Checks (Flag18-Sem)
2772 -------------------------------------
2773 -- 3.3.1 Defining Identifier List --
2774 -------------------------------------
2776 -- DEFINING_IDENTIFIER_LIST ::=
2777 -- DEFINING_IDENTIFIER {, DEFINING_IDENTIFIER}
2779 -------------------------------
2780 -- 3.3.2 Number Declaration --
2781 -------------------------------
2783 -- NUMBER_DECLARATION ::=
2784 -- DEFINING_IDENTIFIER_LIST : constant := static_EXPRESSION;
2786 -- Although the syntax allows multiple identifiers in the list, the
2787 -- semantics is as though successive declarations were given with
2788 -- identical expressions. To simplify semantic processing, the parser
2789 -- represents a multiple declaration case as a sequence of single
2790 -- declarations, using the More_Ids and Prev_Ids flags to preserve
2791 -- the original source form as described in the section on "Handling
2792 -- of Defining Identifier Lists".
2794 -- N_Number_Declaration
2795 -- Sloc points to first identifier
2796 -- Defining_Identifier (Node1)
2797 -- Expression (Node3)
2798 -- More_Ids (Flag5) (set to False if no more identifiers in list)
2799 -- Prev_Ids (Flag6) (set to False if no previous identifiers in list)
2801 ----------------------------------
2802 -- 3.4 Derived Type Definition --
2803 ----------------------------------
2805 -- DERIVED_TYPE_DEFINITION ::=
2806 -- [abstract] [limited] new [NULL_EXCLUSION] parent_SUBTYPE_INDICATION
2807 -- [[and INTERFACE_LIST] RECORD_EXTENSION_PART]
2809 -- Note: ABSTRACT, LIMITED and record extension part are not permitted
2810 -- in Ada 83 mode
2812 -- Note: a record extension part is required if ABSTRACT is present
2814 -- N_Derived_Type_Definition
2815 -- Sloc points to NEW
2816 -- Abstract_Present (Flag4)
2817 -- Null_Exclusion_Present (Flag11) (set to False if not present)
2818 -- Subtype_Indication (Node5)
2819 -- Record_Extension_Part (Node3) (set to Empty if not present)
2820 -- Limited_Present (Flag17)
2821 -- Task_Present (Flag5) set in task interfaces
2822 -- Protected_Present (Flag6) set in protected interfaces
2823 -- Synchronized_Present (Flag7) set in interfaces
2824 -- Interface_List (List2) (set to No_List if none)
2825 -- Interface_Present (Flag16) set in abstract interfaces
2827 -- Note: Task_Present, Protected_Present, Synchronized_Present,
2828 -- Interface_List, and Interface_Present are used for abstract
2829 -- interfaces (see comments for INTERFACE_TYPE_DEFINITION).
2831 ---------------------------
2832 -- 3.5 Range Constraint --
2833 ---------------------------
2835 -- RANGE_CONSTRAINT ::= range RANGE
2837 -- N_Range_Constraint
2838 -- Sloc points to RANGE
2839 -- Range_Expression (Node4)
2841 ----------------
2842 -- 3.5 Range --
2843 ----------------
2845 -- RANGE ::=
2846 -- RANGE_ATTRIBUTE_REFERENCE
2847 -- | SIMPLE_EXPRESSION .. SIMPLE_EXPRESSION
2849 -- Note: the case of a range given as a range attribute reference
2850 -- appears directly in the tree as an attribute reference.
2852 -- Note: the field name for a reference to a range is Range_Expression
2853 -- rather than Range, because range is a reserved keyword in Ada.
2855 -- Note: the reason that this node has expression fields is that a
2856 -- range can appear as an operand of a membership test. The Etype
2857 -- field is the type of the range (we do NOT construct an implicit
2858 -- subtype to represent the range exactly).
2860 -- N_Range
2861 -- Sloc points to ..
2862 -- Low_Bound (Node1)
2863 -- High_Bound (Node2)
2864 -- Includes_Infinities (Flag11)
2865 -- plus fields for expression
2867 -- Note: if the range appears in a context, such as a subtype
2868 -- declaration, where range checks are required on one or both of
2869 -- the expression fields, then type conversion nodes are inserted
2870 -- to represent the required checks.
2872 ----------------------------------------
2873 -- 3.5.1 Enumeration Type Definition --
2874 ----------------------------------------
2876 -- ENUMERATION_TYPE_DEFINITION ::=
2877 -- (ENUMERATION_LITERAL_SPECIFICATION
2878 -- {, ENUMERATION_LITERAL_SPECIFICATION})
2880 -- Note: the Literals field in the node described below is null for
2881 -- the case of the standard types CHARACTER and WIDE_CHARACTER, for
2882 -- which special processing handles these types as special cases.
2884 -- N_Enumeration_Type_Definition
2885 -- Sloc points to left parenthesis
2886 -- Literals (List1) (Empty for CHARACTER or WIDE_CHARACTER)
2887 -- End_Label (Node4) (set to Empty if internally generated record)
2889 ----------------------------------------------
2890 -- 3.5.1 Enumeration Literal Specification --
2891 ----------------------------------------------
2893 -- ENUMERATION_LITERAL_SPECIFICATION ::=
2894 -- DEFINING_IDENTIFIER | DEFINING_CHARACTER_LITERAL
2896 ---------------------------------------
2897 -- 3.5.1 Defining Character Literal --
2898 ---------------------------------------
2900 -- DEFINING_CHARACTER_LITERAL ::= CHARACTER_LITERAL
2902 -- A defining character literal is an entity, which has additional
2903 -- fields depending on the setting of the Ekind field. These
2904 -- additional fields are defined (and access subprograms declared)
2905 -- in package Einfo.
2907 -- Note: N_Defining_Character_Literal is an extended node whose fields
2908 -- are deliberate layed out to match the layout of fields in an ordinary
2909 -- N_Character_Literal node allowing for easy alteration of a character
2910 -- literal node into a defining character literal node. For details, see
2911 -- Sinfo.CN.Change_Character_Literal_To_Defining_Character_Literal.
2913 -- N_Defining_Character_Literal
2914 -- Sloc points to literal
2915 -- Chars (Name1) contains the Name_Id for the identifier
2916 -- Next_Entity (Node2-Sem)
2917 -- Scope (Node3-Sem)
2918 -- Etype (Node5-Sem)
2920 ------------------------------------
2921 -- 3.5.4 Integer Type Definition --
2922 ------------------------------------
2924 -- Note: there is an error in this rule in the latest version of the
2925 -- grammar, so we have retained the old rule pending clarification.
2927 -- INTEGER_TYPE_DEFINITION ::=
2928 -- SIGNED_INTEGER_TYPE_DEFINITION
2929 -- | MODULAR_TYPE_DEFINITION
2931 -------------------------------------------
2932 -- 3.5.4 Signed Integer Type Definition --
2933 -------------------------------------------
2935 -- SIGNED_INTEGER_TYPE_DEFINITION ::=
2936 -- range static_SIMPLE_EXPRESSION .. static_SIMPLE_EXPRESSION
2938 -- Note: the Low_Bound and High_Bound fields are set to Empty
2939 -- for integer types defined in package Standard.
2941 -- N_Signed_Integer_Type_Definition
2942 -- Sloc points to RANGE
2943 -- Low_Bound (Node1)
2944 -- High_Bound (Node2)
2946 ------------------------------------
2947 -- 3.5.4 Modular Type Definition --
2948 ------------------------------------
2950 -- MODULAR_TYPE_DEFINITION ::= mod static_EXPRESSION
2952 -- N_Modular_Type_Definition
2953 -- Sloc points to MOD
2954 -- Expression (Node3)
2956 ---------------------------------
2957 -- 3.5.6 Real Type Definition --
2958 ---------------------------------
2960 -- REAL_TYPE_DEFINITION ::=
2961 -- FLOATING_POINT_DEFINITION | FIXED_POINT_DEFINITION
2963 --------------------------------------
2964 -- 3.5.7 Floating Point Definition --
2965 --------------------------------------
2967 -- FLOATING_POINT_DEFINITION ::=
2968 -- digits static_SIMPLE_EXPRESSION [REAL_RANGE_SPECIFICATION]
2970 -- Note: The Digits_Expression and Real_Range_Specifications fields
2971 -- are set to Empty for floating-point types declared in Standard.
2973 -- N_Floating_Point_Definition
2974 -- Sloc points to DIGITS
2975 -- Digits_Expression (Node2)
2976 -- Real_Range_Specification (Node4) (set to Empty if not present)
2978 -------------------------------------
2979 -- 3.5.7 Real Range Specification --
2980 -------------------------------------
2982 -- REAL_RANGE_SPECIFICATION ::=
2983 -- range static_SIMPLE_EXPRESSION .. static_SIMPLE_EXPRESSION
2985 -- N_Real_Range_Specification
2986 -- Sloc points to RANGE
2987 -- Low_Bound (Node1)
2988 -- High_Bound (Node2)
2990 -----------------------------------
2991 -- 3.5.9 Fixed Point Definition --
2992 -----------------------------------
2994 -- FIXED_POINT_DEFINITION ::=
2995 -- ORDINARY_FIXED_POINT_DEFINITION | DECIMAL_FIXED_POINT_DEFINITION
2997 --------------------------------------------
2998 -- 3.5.9 Ordinary Fixed Point Definition --
2999 --------------------------------------------
3001 -- ORDINARY_FIXED_POINT_DEFINITION ::=
3002 -- delta static_EXPRESSION REAL_RANGE_SPECIFICATION
3004 -- Note: In Ada 83, the EXPRESSION must be a SIMPLE_EXPRESSION
3006 -- N_Ordinary_Fixed_Point_Definition
3007 -- Sloc points to DELTA
3008 -- Delta_Expression (Node3)
3009 -- Real_Range_Specification (Node4)
3011 -------------------------------------------
3012 -- 3.5.9 Decimal Fixed Point Definition --
3013 -------------------------------------------
3015 -- DECIMAL_FIXED_POINT_DEFINITION ::=
3016 -- delta static_EXPRESSION
3017 -- digits static_EXPRESSION [REAL_RANGE_SPECIFICATION]
3019 -- Note: decimal types are not permitted in Ada 83 mode
3021 -- N_Decimal_Fixed_Point_Definition
3022 -- Sloc points to DELTA
3023 -- Delta_Expression (Node3)
3024 -- Digits_Expression (Node2)
3025 -- Real_Range_Specification (Node4) (set to Empty if not present)
3027 ------------------------------
3028 -- 3.5.9 Digits Constraint --
3029 ------------------------------
3031 -- DIGITS_CONSTRAINT ::=
3032 -- digits static_EXPRESSION [RANGE_CONSTRAINT]
3034 -- Note: in Ada 83, the EXPRESSION must be a SIMPLE_EXPRESSION
3035 -- Note: in Ada 95, reduced accuracy subtypes are obsolescent
3037 -- N_Digits_Constraint
3038 -- Sloc points to DIGITS
3039 -- Digits_Expression (Node2)
3040 -- Range_Constraint (Node4) (set to Empty if not present)
3042 --------------------------------
3043 -- 3.6 Array Type Definition --
3044 --------------------------------
3046 -- ARRAY_TYPE_DEFINITION ::=
3047 -- UNCONSTRAINED_ARRAY_DEFINITION | CONSTRAINED_ARRAY_DEFINITION
3049 -----------------------------------------
3050 -- 3.6 Unconstrained Array Definition --
3051 -----------------------------------------
3053 -- UNCONSTRAINED_ARRAY_DEFINITION ::=
3054 -- array (INDEX_SUBTYPE_DEFINITION {, INDEX_SUBTYPE_DEFINITION}) of
3055 -- COMPONENT_DEFINITION
3057 -- Note: dimensionality of array is indicated by number of entries in
3058 -- the Subtype_Marks list, which has one entry for each dimension.
3060 -- N_Unconstrained_Array_Definition
3061 -- Sloc points to ARRAY
3062 -- Subtype_Marks (List2)
3063 -- Component_Definition (Node4)
3065 -----------------------------------
3066 -- 3.6 Index Subtype Definition --
3067 -----------------------------------
3069 -- INDEX_SUBTYPE_DEFINITION ::= SUBTYPE_MARK range <>
3071 -- There is no explicit node in the tree for an index subtype
3072 -- definition since the N_Unconstrained_Array_Definition node
3073 -- incorporates the type marks which appear in this context.
3075 ---------------------------------------
3076 -- 3.6 Constrained Array Definition --
3077 ---------------------------------------
3079 -- CONSTRAINED_ARRAY_DEFINITION ::=
3080 -- array (DISCRETE_SUBTYPE_DEFINITION
3081 -- {, DISCRETE_SUBTYPE_DEFINITION})
3082 -- of COMPONENT_DEFINITION
3084 -- Note: dimensionality of array is indicated by number of entries
3085 -- in the Discrete_Subtype_Definitions list, which has one entry
3086 -- for each dimension.
3088 -- N_Constrained_Array_Definition
3089 -- Sloc points to ARRAY
3090 -- Discrete_Subtype_Definitions (List2)
3091 -- Component_Definition (Node4)
3093 -- Note: although the language allows the full syntax for discrete
3094 -- subtype definitions (i.e. a discrete subtype indication or a range),
3095 -- in the generated tree, we always rewrite these as N_Range nodes.
3097 --------------------------------------
3098 -- 3.6 Discrete Subtype Definition --
3099 --------------------------------------
3101 -- DISCRETE_SUBTYPE_DEFINITION ::=
3102 -- discrete_SUBTYPE_INDICATION | RANGE
3104 -------------------------------
3105 -- 3.6 Component Definition --
3106 -------------------------------
3108 -- COMPONENT_DEFINITION ::=
3109 -- [aliased] [NULL_EXCLUSION] SUBTYPE_INDICATION | ACCESS_DEFINITION
3111 -- Note: although the syntax does not permit a component definition to
3112 -- be an anonymous array (and the parser will diagnose such an attempt
3113 -- with an appropriate message), it is possible for anonymous arrays
3114 -- to appear as component definitions. The semantics and back end handle
3115 -- this case properly, and the expander in fact generates such cases.
3116 -- Access_Definition is an optional field that gives support to
3117 -- Ada 2005 (AI-230). The parser generates nodes that have either the
3118 -- Subtype_Indication field or else the Access_Definition field.
3120 -- N_Component_Definition
3121 -- Sloc points to ALIASED, ACCESS or to first token of subtype mark
3122 -- Aliased_Present (Flag4)
3123 -- Null_Exclusion_Present (Flag11)
3124 -- Subtype_Indication (Node5) (set to Empty if not present)
3125 -- Access_Definition (Node3) (set to Empty if not present)
3127 -----------------------------
3128 -- 3.6.1 Index Constraint --
3129 -----------------------------
3131 -- INDEX_CONSTRAINT ::= (DISCRETE_RANGE {, DISCRETE_RANGE})
3133 -- It is not in general possible to distinguish between discriminant
3134 -- constraints and index constraints at parse time, since a simple
3135 -- name could be either the subtype mark of a discrete range, or an
3136 -- expression in a discriminant association with no name. Either
3137 -- entry appears simply as the name, and the semantic parse must
3138 -- distinguish between the two cases. Thus we use a common tree
3139 -- node format for both of these constraint types.
3141 -- See Discriminant_Constraint for format of node
3143 ---------------------------
3144 -- 3.6.1 Discrete Range --
3145 ---------------------------
3147 -- DISCRETE_RANGE ::= discrete_SUBTYPE_INDICATION | RANGE
3149 ----------------------------
3150 -- 3.7 Discriminant Part --
3151 ----------------------------
3153 -- DISCRIMINANT_PART ::=
3154 -- UNKNOWN_DISCRIMINANT_PART | KNOWN_DISCRIMINANT_PART
3156 ------------------------------------
3157 -- 3.7 Unknown Discriminant Part --
3158 ------------------------------------
3160 -- UNKNOWN_DISCRIMINANT_PART ::= (<>)
3162 -- Note: unknown discriminant parts are not permitted in Ada 83 mode
3164 -- There is no explicit node in the tree for an unknown discriminant
3165 -- part. Instead the Unknown_Discriminants_Present flag is set in the
3166 -- parent node.
3168 ----------------------------------
3169 -- 3.7 Known Discriminant Part --
3170 ----------------------------------
3172 -- KNOWN_DISCRIMINANT_PART ::=
3173 -- (DISCRIMINANT_SPECIFICATION {; DISCRIMINANT_SPECIFICATION})
3175 -------------------------------------
3176 -- 3.7 Discriminant Specification --
3177 -------------------------------------
3179 -- DISCRIMINANT_SPECIFICATION ::=
3180 -- DEFINING_IDENTIFIER_LIST : [NULL_EXCLUSION] SUBTYPE_MARK
3181 -- [:= DEFAULT_EXPRESSION]
3182 -- | DEFINING_IDENTIFIER_LIST : ACCESS_DEFINITION
3183 -- [:= DEFAULT_EXPRESSION]
3185 -- Although the syntax allows multiple identifiers in the list, the
3186 -- semantics is as though successive specifications were given with
3187 -- identical type definition and expression components. To simplify
3188 -- semantic processing, the parser represents a multiple declaration
3189 -- case as a sequence of single specifications, using the More_Ids and
3190 -- Prev_Ids flags to preserve the original source form as described
3191 -- in the section on "Handling of Defining Identifier Lists".
3193 -- N_Discriminant_Specification
3194 -- Sloc points to first identifier
3195 -- Defining_Identifier (Node1)
3196 -- Null_Exclusion_Present (Flag11)
3197 -- Discriminant_Type (Node5) subtype mark or access parameter definition
3198 -- Expression (Node3) (set to Empty if no default expression)
3199 -- More_Ids (Flag5) (set to False if no more identifiers in list)
3200 -- Prev_Ids (Flag6) (set to False if no previous identifiers in list)
3202 -----------------------------
3203 -- 3.7 Default Expression --
3204 -----------------------------
3206 -- DEFAULT_EXPRESSION ::= EXPRESSION
3208 ------------------------------------
3209 -- 3.7.1 Discriminant Constraint --
3210 ------------------------------------
3212 -- DISCRIMINANT_CONSTRAINT ::=
3213 -- (DISCRIMINANT_ASSOCIATION {, DISCRIMINANT_ASSOCIATION})
3215 -- It is not in general possible to distinguish between discriminant
3216 -- constraints and index constraints at parse time, since a simple
3217 -- name could be either the subtype mark of a discrete range, or an
3218 -- expression in a discriminant association with no name. Either
3219 -- entry appears simply as the name, and the semantic parse must
3220 -- distinguish between the two cases. Thus we use a common tree
3221 -- node format for both of these constraint types.
3223 -- N_Index_Or_Discriminant_Constraint
3224 -- Sloc points to left paren
3225 -- Constraints (List1) points to list of discrete ranges or
3226 -- discriminant associations
3228 -------------------------------------
3229 -- 3.7.1 Discriminant Association --
3230 -------------------------------------
3232 -- DISCRIMINANT_ASSOCIATION ::=
3233 -- [discriminant_SELECTOR_NAME
3234 -- {| discriminant_SELECTOR_NAME} =>] EXPRESSION
3236 -- Note: a discriminant association that has no selector name list
3237 -- appears directly as an expression in the tree.
3239 -- N_Discriminant_Association
3240 -- Sloc points to first token of discriminant association
3241 -- Selector_Names (List1) (always non-empty, since if no selector
3242 -- names are present, this node is not used, see comment above)
3243 -- Expression (Node3)
3245 ---------------------------------
3246 -- 3.8 Record Type Definition --
3247 ---------------------------------
3249 -- RECORD_TYPE_DEFINITION ::=
3250 -- [[abstract] tagged] [limited] RECORD_DEFINITION
3252 -- Note: ABSTRACT, TAGGED, LIMITED are not permitted in Ada 83 mode
3254 -- There is no explicit node in the tree for a record type definition.
3255 -- Instead the flags for Tagged_Present and Limited_Present appear in
3256 -- the N_Record_Definition node for a record definition appearing in
3257 -- the context of a record type definition.
3259 ----------------------------
3260 -- 3.8 Record Definition --
3261 ----------------------------
3263 -- RECORD_DEFINITION ::=
3264 -- record
3265 -- COMPONENT_LIST
3266 -- end record
3267 -- | null record
3269 -- Note: the Abstract_Present, Tagged_Present and Limited_Present
3270 -- flags appear only for a record definition appearing in a record
3271 -- type definition.
3273 -- Note: the NULL RECORD case is not permitted in Ada 83
3275 -- N_Record_Definition
3276 -- Sloc points to RECORD or NULL
3277 -- End_Label (Node4) (set to Empty if internally generated record)
3278 -- Abstract_Present (Flag4)
3279 -- Tagged_Present (Flag15)
3280 -- Limited_Present (Flag17)
3281 -- Component_List (Node1) empty in null record case
3282 -- Null_Present (Flag13) set in null record case
3283 -- Task_Present (Flag5) set in task interfaces
3284 -- Protected_Present (Flag6) set in protected interfaces
3285 -- Synchronized_Present (Flag7) set in interfaces
3286 -- Interface_Present (Flag16) set in abstract interfaces
3287 -- Interface_List (List2) (set to No_List if none)
3289 -- Note: Task_Present, Protected_Present, Synchronized _Present,
3290 -- Interface_List and Interface_Present are used for abstract
3291 -- interfaces (see comments for INTERFACE_TYPE_DEFINITION).
3293 -------------------------
3294 -- 3.8 Component List --
3295 -------------------------
3297 -- COMPONENT_LIST ::=
3298 -- COMPONENT_ITEM {COMPONENT_ITEM}
3299 -- | {COMPONENT_ITEM} VARIANT_PART
3300 -- | null;
3302 -- N_Component_List
3303 -- Sloc points to first token of component list
3304 -- Component_Items (List3)
3305 -- Variant_Part (Node4) (set to Empty if no variant part)
3306 -- Null_Present (Flag13)
3308 -------------------------
3309 -- 3.8 Component Item --
3310 -------------------------
3312 -- COMPONENT_ITEM ::= COMPONENT_DECLARATION | REPRESENTATION_CLAUSE
3314 -- Note: A component item can also be a pragma, and in the tree
3315 -- that is obtained after semantic processing, a component item
3316 -- can be an N_Null node resulting from a non-recognized pragma.
3318 --------------------------------
3319 -- 3.8 Component Declaration --
3320 --------------------------------
3322 -- COMPONENT_DECLARATION ::=
3323 -- DEFINING_IDENTIFIER_LIST : COMPONENT_DEFINITION
3324 -- [:= DEFAULT_EXPRESSION]
3325 -- [ASPECT_SPECIFICATIONS];
3327 -- Note: although the syntax does not permit a component definition to
3328 -- be an anonymous array (and the parser will diagnose such an attempt
3329 -- with an appropriate message), it is possible for anonymous arrays
3330 -- to appear as component definitions. The semantics and back end handle
3331 -- this case properly, and the expander in fact generates such cases.
3333 -- Although the syntax allows multiple identifiers in the list, the
3334 -- semantics is as though successive declarations were given with the
3335 -- same component definition and expression components. To simplify
3336 -- semantic processing, the parser represents a multiple declaration
3337 -- case as a sequence of single declarations, using the More_Ids and
3338 -- Prev_Ids flags to preserve the original source form as described
3339 -- in the section on "Handling of Defining Identifier Lists".
3341 -- N_Component_Declaration
3342 -- Sloc points to first identifier
3343 -- Defining_Identifier (Node1)
3344 -- Component_Definition (Node4)
3345 -- Expression (Node3) (set to Empty if no default expression)
3346 -- More_Ids (Flag5) (set to False if no more identifiers in list)
3347 -- Prev_Ids (Flag6) (set to False if no previous identifiers in list)
3349 -------------------------
3350 -- 3.8.1 Variant Part --
3351 -------------------------
3353 -- VARIANT_PART ::=
3354 -- case discriminant_DIRECT_NAME is
3355 -- VARIANT {VARIANT}
3356 -- end case;
3358 -- Note: the variants list can contain pragmas as well as variants.
3359 -- In a properly formed program there is at least one variant.
3361 -- N_Variant_Part
3362 -- Sloc points to CASE
3363 -- Name (Node2)
3364 -- Variants (List1)
3366 --------------------
3367 -- 3.8.1 Variant --
3368 --------------------
3370 -- VARIANT ::=
3371 -- when DISCRETE_CHOICE_LIST =>
3372 -- COMPONENT_LIST
3374 -- N_Variant
3375 -- Sloc points to WHEN
3376 -- Discrete_Choices (List4)
3377 -- Component_List (Node1)
3378 -- Enclosing_Variant (Node2-Sem)
3379 -- Present_Expr (Uint3-Sem)
3380 -- Dcheck_Function (Node5-Sem)
3381 -- Has_SP_Choice (Flag15-Sem)
3383 -- Note: in the list of Discrete_Choices, the tree passed to the back
3384 -- end does not have choice entries corresponding to names of statically
3385 -- predicated subtypes. Such entries are always expanded out to the list
3386 -- of equivalent values or ranges. The ASIS tree generated in -gnatct
3387 -- mode also has this expansion, but done with a proper Rewrite call on
3388 -- the N_Variant node so that ASIS can properly retrieve the original.
3390 ---------------------------------
3391 -- 3.8.1 Discrete Choice List --
3392 ---------------------------------
3394 -- DISCRETE_CHOICE_LIST ::= DISCRETE_CHOICE {| DISCRETE_CHOICE}
3396 ----------------------------
3397 -- 3.8.1 Discrete Choice --
3398 ----------------------------
3400 -- DISCRETE_CHOICE ::= EXPRESSION | DISCRETE_RANGE | others
3402 -- Note: in Ada 83 mode, the expression must be a simple expression
3404 -- The only choice that appears explicitly is the OTHERS choice, as
3405 -- defined here. Other cases of discrete choice (expression and
3406 -- discrete range) appear directly. This production is also used
3407 -- for the OTHERS possibility of an exception choice.
3409 -- Note: in accordance with the syntax, the parser does not check that
3410 -- OTHERS appears at the end on its own in a choice list context. This
3411 -- is a semantic check.
3413 -- N_Others_Choice
3414 -- Sloc points to OTHERS
3415 -- Others_Discrete_Choices (List1-Sem)
3416 -- All_Others (Flag11-Sem)
3418 ----------------------------------
3419 -- 3.9.1 Record Extension Part --
3420 ----------------------------------
3422 -- RECORD_EXTENSION_PART ::= with RECORD_DEFINITION
3424 -- Note: record extension parts are not permitted in Ada 83 mode
3426 --------------------------------------
3427 -- 3.9.4 Interface Type Definition --
3428 --------------------------------------
3430 -- INTERFACE_TYPE_DEFINITION ::=
3431 -- [limited | task | protected | synchronized]
3432 -- interface [interface_list]
3434 -- Note: Interfaces are implemented with N_Record_Definition and
3435 -- N_Derived_Type_Definition nodes because most of the support
3436 -- for the analysis of abstract types has been reused to
3437 -- analyze abstract interfaces.
3439 ----------------------------------
3440 -- 3.10 Access Type Definition --
3441 ----------------------------------
3443 -- ACCESS_TYPE_DEFINITION ::=
3444 -- ACCESS_TO_OBJECT_DEFINITION
3445 -- | ACCESS_TO_SUBPROGRAM_DEFINITION
3447 --------------------------
3448 -- 3.10 Null Exclusion --
3449 --------------------------
3451 -- NULL_EXCLUSION ::= not null
3453 ---------------------------------------
3454 -- 3.10 Access To Object Definition --
3455 ---------------------------------------
3457 -- ACCESS_TO_OBJECT_DEFINITION ::=
3458 -- [NULL_EXCLUSION] access [GENERAL_ACCESS_MODIFIER]
3459 -- SUBTYPE_INDICATION
3461 -- N_Access_To_Object_Definition
3462 -- Sloc points to ACCESS
3463 -- All_Present (Flag15)
3464 -- Null_Exclusion_Present (Flag11)
3465 -- Null_Excluding_Subtype (Flag16)
3466 -- Subtype_Indication (Node5)
3467 -- Constant_Present (Flag17)
3469 -----------------------------------
3470 -- 3.10 General Access Modifier --
3471 -----------------------------------
3473 -- GENERAL_ACCESS_MODIFIER ::= all | constant
3475 -- Note: general access modifiers are not permitted in Ada 83 mode
3477 -- There is no explicit node in the tree for general access modifier.
3478 -- Instead the All_Present or Constant_Present flags are set in the
3479 -- parent node.
3481 -------------------------------------------
3482 -- 3.10 Access To Subprogram Definition --
3483 -------------------------------------------
3485 -- ACCESS_TO_SUBPROGRAM_DEFINITION
3486 -- [NULL_EXCLUSION] access [protected] procedure PARAMETER_PROFILE
3487 -- | [NULL_EXCLUSION] access [protected] function
3488 -- PARAMETER_AND_RESULT_PROFILE
3490 -- Note: access to subprograms are not permitted in Ada 83 mode
3492 -- N_Access_Function_Definition
3493 -- Sloc points to ACCESS
3494 -- Null_Exclusion_Present (Flag11)
3495 -- Null_Exclusion_In_Return_Present (Flag14)
3496 -- Protected_Present (Flag6)
3497 -- Parameter_Specifications (List3) (set to No_List if no formal part)
3498 -- Result_Definition (Node4) result subtype (subtype mark or access def)
3500 -- N_Access_Procedure_Definition
3501 -- Sloc points to ACCESS
3502 -- Null_Exclusion_Present (Flag11)
3503 -- Protected_Present (Flag6)
3504 -- Parameter_Specifications (List3) (set to No_List if no formal part)
3506 -----------------------------
3507 -- 3.10 Access Definition --
3508 -----------------------------
3510 -- ACCESS_DEFINITION ::=
3511 -- [NULL_EXCLUSION] access [GENERAL_ACCESS_MODIFIER] SUBTYPE_MARK
3512 -- | ACCESS_TO_SUBPROGRAM_DEFINITION
3514 -- Note: access to subprograms are an Ada 2005 (AI-254) extension
3516 -- N_Access_Definition
3517 -- Sloc points to ACCESS
3518 -- Null_Exclusion_Present (Flag11)
3519 -- All_Present (Flag15)
3520 -- Constant_Present (Flag17)
3521 -- Subtype_Mark (Node4)
3522 -- Access_To_Subprogram_Definition (Node3) (set to Empty if not present)
3524 -----------------------------------------
3525 -- 3.10.1 Incomplete Type Declaration --
3526 -----------------------------------------
3528 -- INCOMPLETE_TYPE_DECLARATION ::=
3529 -- type DEFINING_IDENTIFIER [DISCRIMINANT_PART] [IS TAGGED];
3531 -- N_Incomplete_Type_Declaration
3532 -- Sloc points to TYPE
3533 -- Defining_Identifier (Node1)
3534 -- Discriminant_Specifications (List4) (set to No_List if no
3535 -- discriminant part, or if the discriminant part is an
3536 -- unknown discriminant part)
3537 -- Premature_Use (Node5-Sem) used for improved diagnostics.
3538 -- Unknown_Discriminants_Present (Flag13) set if (<>) discriminant
3539 -- Tagged_Present (Flag15)
3541 ----------------------------
3542 -- 3.11 Declarative Part --
3543 ----------------------------
3545 -- DECLARATIVE_PART ::= {DECLARATIVE_ITEM}
3547 -- Note: although the parser enforces the syntactic requirement that
3548 -- a declarative part can contain only declarations, the semantic
3549 -- processing may add statements to the list of actions in a
3550 -- declarative part, so the code generator should be prepared
3551 -- to accept a statement in this position.
3553 ----------------------------
3554 -- 3.11 Declarative Item --
3555 ----------------------------
3557 -- DECLARATIVE_ITEM ::= BASIC_DECLARATIVE_ITEM | BODY
3559 ----------------------------------
3560 -- 3.11 Basic Declarative Item --
3561 ----------------------------------
3563 -- BASIC_DECLARATIVE_ITEM ::=
3564 -- BASIC_DECLARATION | REPRESENTATION_CLAUSE | USE_CLAUSE
3566 ----------------
3567 -- 3.11 Body --
3568 ----------------
3570 -- BODY ::= PROPER_BODY | BODY_STUB
3572 -----------------------
3573 -- 3.11 Proper Body --
3574 -----------------------
3576 -- PROPER_BODY ::=
3577 -- SUBPROGRAM_BODY | PACKAGE_BODY | TASK_BODY | PROTECTED_BODY
3579 ---------------
3580 -- 4.1 Name --
3581 ---------------
3583 -- NAME ::=
3584 -- DIRECT_NAME | EXPLICIT_DEREFERENCE
3585 -- | INDEXED_COMPONENT | SLICE
3586 -- | SELECTED_COMPONENT | ATTRIBUTE_REFERENCE
3587 -- | TYPE_CONVERSION | FUNCTION_CALL
3588 -- | CHARACTER_LITERAL
3590 ----------------------
3591 -- 4.1 Direct Name --
3592 ----------------------
3594 -- DIRECT_NAME ::= IDENTIFIER | OPERATOR_SYMBOL
3596 -----------------
3597 -- 4.1 Prefix --
3598 -----------------
3600 -- PREFIX ::= NAME | IMPLICIT_DEREFERENCE
3602 -------------------------------
3603 -- 4.1 Explicit Dereference --
3604 -------------------------------
3606 -- EXPLICIT_DEREFERENCE ::= NAME . all
3608 -- N_Explicit_Dereference
3609 -- Sloc points to ALL
3610 -- Prefix (Node3)
3611 -- Actual_Designated_Subtype (Node4-Sem)
3612 -- Atomic_Sync_Required (Flag14-Sem)
3613 -- Has_Dereference_Action (Flag13-Sem)
3614 -- plus fields for expression
3616 -------------------------------
3617 -- 4.1 Implicit Dereference --
3618 -------------------------------
3620 -- IMPLICIT_DEREFERENCE ::= NAME
3622 ------------------------------
3623 -- 4.1.1 Indexed Component --
3624 ------------------------------
3626 -- INDEXED_COMPONENT ::= PREFIX (EXPRESSION {, EXPRESSION})
3628 -- Note: the parser may generate this node in some situations where it
3629 -- should be a function call. The semantic pass must correct this
3630 -- misidentification (which is inevitable at the parser level).
3632 -- N_Indexed_Component
3633 -- Sloc contains a copy of the Sloc value of the Prefix
3634 -- Prefix (Node3)
3635 -- Expressions (List1)
3636 -- Generalized_Indexing (Node4-Sem)
3637 -- Atomic_Sync_Required (Flag14-Sem)
3638 -- plus fields for expression
3640 -- Note: if any of the subscripts requires a range check, then the
3641 -- Do_Range_Check flag is set on the corresponding expression, with
3642 -- the index type being determined from the type of the Prefix, which
3643 -- references the array being indexed.
3645 -- Note: in a fully analyzed and expanded indexed component node, and
3646 -- hence in any such node that gigi sees, if the prefix is an access
3647 -- type, then an explicit dereference operation has been inserted.
3649 ------------------
3650 -- 4.1.2 Slice --
3651 ------------------
3653 -- SLICE ::= PREFIX (DISCRETE_RANGE)
3655 -- Note: an implicit subtype is created to describe the resulting
3656 -- type, so that the bounds of this type are the bounds of the slice.
3658 -- N_Slice
3659 -- Sloc points to first token of prefix
3660 -- Prefix (Node3)
3661 -- Discrete_Range (Node4)
3662 -- plus fields for expression
3664 -------------------------------
3665 -- 4.1.3 Selected Component --
3666 -------------------------------
3668 -- SELECTED_COMPONENT ::= PREFIX . SELECTOR_NAME
3670 -- Note: selected components that are semantically expanded names get
3671 -- changed during semantic processing into the separate N_Expanded_Name
3672 -- node. See description of this node in the section on semantic nodes.
3674 -- N_Selected_Component
3675 -- Sloc points to period
3676 -- Prefix (Node3)
3677 -- Selector_Name (Node2)
3678 -- Associated_Node (Node4-Sem)
3679 -- Do_Discriminant_Check (Flag1-Sem)
3680 -- Is_In_Discriminant_Check (Flag11-Sem)
3681 -- Is_Prefixed_Call (Flag17-Sem)
3682 -- Atomic_Sync_Required (Flag14-Sem)
3683 -- plus fields for expression
3685 --------------------------
3686 -- 4.1.3 Selector Name --
3687 --------------------------
3689 -- SELECTOR_NAME ::= IDENTIFIER | CHARACTER_LITERAL | OPERATOR_SYMBOL
3691 --------------------------------
3692 -- 4.1.4 Attribute Reference --
3693 --------------------------------
3695 -- ATTRIBUTE_REFERENCE ::= PREFIX ' ATTRIBUTE_DESIGNATOR
3697 -- Note: the syntax is quite ambiguous at this point. Consider:
3699 -- A'Length (X) X is part of the attribute designator
3700 -- A'Pos (X) X is an explicit actual parameter of function A'Pos
3701 -- A'Class (X) X is the expression of a type conversion
3703 -- It would be possible for the parser to distinguish these cases
3704 -- by looking at the attribute identifier. However, that would mean
3705 -- more work in introducing new implementation defined attributes,
3706 -- and also it would mean that special processing for attributes
3707 -- would be scattered around, instead of being centralized in the
3708 -- semantic routine that handles an N_Attribute_Reference node.
3709 -- Consequently, the parser in all the above cases stores the
3710 -- expression (X in these examples) as a single element list in
3711 -- in the Expressions field of the N_Attribute_Reference node.
3713 -- Similarly, for attributes like Max which take two arguments,
3714 -- we store the two arguments as a two element list in the
3715 -- Expressions field. Of course it is clear at parse time that
3716 -- this case is really a function call with an attribute as the
3717 -- prefix, but it turns out to be convenient to handle the two
3718 -- argument case in a similar manner to the one argument case,
3719 -- and indeed in general the parser will accept any number of
3720 -- expressions in this position and store them as a list in the
3721 -- attribute reference node. This allows for future addition of
3722 -- attributes that take more than two arguments.
3724 -- Note: named associates are not permitted in function calls where
3725 -- the function is an attribute (see RM 6.4(3)) so it is legitimate
3726 -- to skip the normal subprogram argument processing.
3728 -- Note: for the attributes whose designators are technically keywords,
3729 -- i.e. digits, access, delta, range, the Attribute_Name field contains
3730 -- the corresponding name, even though no identifier is involved.
3732 -- Note: the generated code may contain stream attributes applied to
3733 -- limited types for which no stream routines exist officially. In such
3734 -- case, the result is to use the stream attribute for the underlying
3735 -- full type, or in the case of a protected type, the components
3736 -- (including any discriminants) are merely streamed in order.
3738 -- See Exp_Attr for a complete description of which attributes are
3739 -- passed onto Gigi, and which are handled entirely by the front end.
3741 -- Gigi restriction: For the Pos attribute, the prefix cannot be
3742 -- a non-standard enumeration type or a nonzero/zero semantics
3743 -- boolean type, so the value is simply the stored representation.
3745 -- Gigi requirement: For the Mechanism_Code attribute, if the prefix
3746 -- references a subprogram that is a renaming, then the front end must
3747 -- rewrite the attribute to refer directly to the renamed entity.
3749 -- Note: syntactically the prefix of an attribute reference must be a
3750 -- name, and this (somewhat artificial) requirement is enforced by the
3751 -- parser. However, for many attributes, such as 'Valid, it is quite
3752 -- reasonable to apply the attribute to any value, and hence to any
3753 -- expression. Internally in the tree, the prefix is an expression which
3754 -- does not have to be a name, and this is handled fine by the semantic
3755 -- analysis and expansion, and back ends. This arises for the case of
3756 -- attribute references built by the expander (e.g. 'Valid for the case
3757 -- of an implicit validity check).
3759 -- Note: In generated code, the Address and Unrestricted_Access
3760 -- attributes can be applied to any expression, and the meaning is
3761 -- to create an object containing the value (the object is in the
3762 -- current stack frame), and pass the address of this value. If the
3763 -- Must_Be_Byte_Aligned flag is set, then the object whose address
3764 -- is taken must be on a byte (storage unit) boundary, and if it is
3765 -- not (or may not be), then the generated code must create a copy
3766 -- that is byte aligned, and pass the address of this copy.
3768 -- N_Attribute_Reference
3769 -- Sloc points to apostrophe
3770 -- Prefix (Node3) (general expression, see note above)
3771 -- Attribute_Name (Name2) identifier name from attribute designator
3772 -- Expressions (List1) (set to No_List if no associated expressions)
3773 -- Entity (Node4-Sem) used if the attribute yields a type
3774 -- Associated_Node (Node4-Sem)
3775 -- Do_Overflow_Check (Flag17-Sem)
3776 -- Header_Size_Added (Flag11-Sem)
3777 -- Must_Be_Byte_Aligned (Flag14-Sem)
3778 -- Non_Aliased_Prefix (Flag18-Sem)
3779 -- Redundant_Use (Flag13-Sem)
3781 -- plus fields for expression
3783 -- Note: in Modify_Tree_For_C mode, Max and Min attributes are expanded
3784 -- into equivalent if expressions, properly taking care of side effects.
3786 ---------------------------------
3787 -- 4.1.4 Attribute Designator --
3788 ---------------------------------
3790 -- ATTRIBUTE_DESIGNATOR ::=
3791 -- IDENTIFIER [(static_EXPRESSION)]
3792 -- | access | delta | digits
3794 -- There is no explicit node in the tree for an attribute designator.
3795 -- Instead the Attribute_Name and Expressions fields of the parent
3796 -- node (N_Attribute_Reference node) hold the information.
3798 -- Note: if ACCESS, DELTA or DIGITS appears in an attribute
3799 -- designator, then they are treated as identifiers internally
3800 -- rather than the keywords of the same name.
3802 --------------------------------------
3803 -- 4.1.4 Range Attribute Reference --
3804 --------------------------------------
3806 -- RANGE_ATTRIBUTE_REFERENCE ::= PREFIX ' RANGE_ATTRIBUTE_DESIGNATOR
3808 -- A range attribute reference is represented in the tree using the
3809 -- normal N_Attribute_Reference node.
3811 ---------------------------------------
3812 -- 4.1.4 Range Attribute Designator --
3813 ---------------------------------------
3815 -- RANGE_ATTRIBUTE_DESIGNATOR ::= Range [(static_EXPRESSION)]
3817 -- A range attribute designator is represented in the tree using the
3818 -- normal N_Attribute_Reference node.
3820 --------------------
3821 -- 4.3 Aggregate --
3822 --------------------
3824 -- AGGREGATE ::=
3825 -- RECORD_AGGREGATE | EXTENSION_AGGREGATE | ARRAY_AGGREGATE
3827 -----------------------------
3828 -- 4.3.1 Record Aggregate --
3829 -----------------------------
3831 -- RECORD_AGGREGATE ::= (RECORD_COMPONENT_ASSOCIATION_LIST)
3833 -- N_Aggregate
3834 -- Sloc points to left parenthesis
3835 -- Expressions (List1) (set to No_List if none or null record case)
3836 -- Component_Associations (List2) (set to No_List if none)
3837 -- Null_Record_Present (Flag17)
3838 -- Aggregate_Bounds (Node3-Sem)
3839 -- Associated_Node (Node4-Sem)
3840 -- Compile_Time_Known_Aggregate (Flag18-Sem)
3841 -- Expansion_Delayed (Flag11-Sem)
3842 -- Has_Self_Reference (Flag13-Sem)
3843 -- plus fields for expression
3845 -- Note: this structure is used for both record and array aggregates
3846 -- since the two cases are not separable by the parser. The parser
3847 -- makes no attempt to enforce consistency here, so it is up to the
3848 -- semantic phase to make sure that the aggregate is consistent (i.e.
3849 -- that it is not a "half-and-half" case that mixes record and array
3850 -- syntax. In particular, for a record aggregate, the expressions
3851 -- field will be set if there are positional associations.
3853 -- Note: N_Aggregate is not used for all aggregates; in particular,
3854 -- there is a separate node kind for extension aggregates.
3856 -- Note: gigi/gcc can handle array aggregates correctly providing that
3857 -- they are entirely positional, and the array subtype involved has a
3858 -- known at compile time length and is not bit packed, or a convention
3859 -- Fortran array with more than one dimension. If these conditions
3860 -- are not met, then the front end must translate the aggregate into
3861 -- an appropriate set of assignments into a temporary.
3863 -- Note: for the record aggregate case, gigi/gcc can handle most cases
3864 -- of record aggregates, including those for packed, and rep-claused
3865 -- records, and also variant records, providing that there are no
3866 -- variable length fields whose size is not known at compile time,
3867 -- and providing that the aggregate is presented in fully named form.
3869 -- The other situation in which array aggregates and record aggregates
3870 -- cannot be passed to the back end is if assignment to one or more
3871 -- components itself needs expansion, e.g. in the case of an assignment
3872 -- of an object of a controlled type. In such cases, the front end
3873 -- must expand the aggregate to a series of assignments, and apply
3874 -- the required expansion to the individual assignment statements.
3876 ----------------------------------------------
3877 -- 4.3.1 Record Component Association List --
3878 ----------------------------------------------
3880 -- RECORD_COMPONENT_ASSOCIATION_LIST ::=
3881 -- RECORD_COMPONENT_ASSOCIATION {, RECORD_COMPONENT_ASSOCIATION}
3882 -- | null record
3884 -- There is no explicit node in the tree for a record component
3885 -- association list. Instead the Null_Record_Present flag is set in
3886 -- the parent node for the NULL RECORD case.
3888 ------------------------------------------------------
3889 -- 4.3.1 Record Component Association (also 4.3.3) --
3890 ------------------------------------------------------
3892 -- RECORD_COMPONENT_ASSOCIATION ::=
3893 -- [COMPONENT_CHOICE_LIST =>] EXPRESSION
3895 -- N_Component_Association
3896 -- Sloc points to first selector name
3897 -- Choices (List1)
3898 -- Loop_Actions (List2-Sem)
3899 -- Expression (Node3) (empty if Box_Present)
3900 -- Box_Present (Flag15)
3901 -- Inherited_Discriminant (Flag13)
3903 -- Note: this structure is used for both record component associations
3904 -- and array component associations, since the two cases aren't always
3905 -- separable by the parser. The choices list may represent either a
3906 -- list of selector names in the record aggregate case, or a list of
3907 -- discrete choices in the array aggregate case or an N_Others_Choice
3908 -- node (which appears as a singleton list). Box_Present gives support
3909 -- to Ada 2005 (AI-287).
3911 ----------------------------------
3912 -- 4.3.1 Component Choice List --
3913 ----------------------------------
3915 -- COMPONENT_CHOICE_LIST ::=
3916 -- component_SELECTOR_NAME {| component_SELECTOR_NAME}
3917 -- | others
3919 -- The entries of a component choice list appear in the Choices list of
3920 -- the associated N_Component_Association, as either selector names, or
3921 -- as an N_Others_Choice node.
3923 --------------------------------
3924 -- 4.3.2 Extension Aggregate --
3925 --------------------------------
3927 -- EXTENSION_AGGREGATE ::=
3928 -- (ANCESTOR_PART with RECORD_COMPONENT_ASSOCIATION_LIST)
3930 -- Note: extension aggregates are not permitted in Ada 83 mode
3932 -- N_Extension_Aggregate
3933 -- Sloc points to left parenthesis
3934 -- Ancestor_Part (Node3)
3935 -- Associated_Node (Node4-Sem)
3936 -- Expressions (List1) (set to No_List if none or null record case)
3937 -- Component_Associations (List2) (set to No_List if none)
3938 -- Null_Record_Present (Flag17)
3939 -- Expansion_Delayed (Flag11-Sem)
3940 -- Has_Self_Reference (Flag13-Sem)
3941 -- plus fields for expression
3943 --------------------------
3944 -- 4.3.2 Ancestor Part --
3945 --------------------------
3947 -- ANCESTOR_PART ::= EXPRESSION | SUBTYPE_MARK
3949 ----------------------------
3950 -- 4.3.3 Array Aggregate --
3951 ----------------------------
3953 -- ARRAY_AGGREGATE ::=
3954 -- POSITIONAL_ARRAY_AGGREGATE | NAMED_ARRAY_AGGREGATE
3956 ---------------------------------------
3957 -- 4.3.3 Positional Array Aggregate --
3958 ---------------------------------------
3960 -- POSITIONAL_ARRAY_AGGREGATE ::=
3961 -- (EXPRESSION, EXPRESSION {, EXPRESSION})
3962 -- | (EXPRESSION {, EXPRESSION}, others => EXPRESSION)
3964 -- See Record_Aggregate (4.3.1) for node structure
3966 ----------------------------------
3967 -- 4.3.3 Named Array Aggregate --
3968 ----------------------------------
3970 -- NAMED_ARRAY_AGGREGATE ::=
3971 -- | (ARRAY_COMPONENT_ASSOCIATION {, ARRAY_COMPONENT_ASSOCIATION})
3973 -- See Record_Aggregate (4.3.1) for node structure
3975 ----------------------------------------
3976 -- 4.3.3 Array Component Association --
3977 ----------------------------------------
3979 -- ARRAY_COMPONENT_ASSOCIATION ::=
3980 -- DISCRETE_CHOICE_LIST => EXPRESSION
3982 -- See Record_Component_Association (4.3.1) for node structure
3984 --------------------------------------------------
3985 -- 4.4 Expression/Relation/Term/Factor/Primary --
3986 --------------------------------------------------
3988 -- EXPRESSION ::=
3989 -- RELATION {LOGICAL_OPERATOR RELATION}
3991 -- CHOICE_EXPRESSION ::=
3992 -- CHOICE_RELATION {LOGICAL_OPERATOR CHOICE_RELATION}
3994 -- CHOICE_RELATION ::=
3995 -- SIMPLE_EXPRESSION [RELATIONAL_OPERATOR SIMPLE_EXPRESSION]
3997 -- RELATION ::=
3998 -- SIMPLE_EXPRESSION [not] in MEMBERSHIP_CHOICE_LIST
3999 -- | RAISE_EXPRESSION
4001 -- MEMBERSHIP_CHOICE_LIST ::=
4002 -- MEMBERSHIP_CHOICE {'|' MEMBERSHIP CHOICE}
4004 -- MEMBERSHIP_CHOICE ::=
4005 -- CHOICE_EXPRESSION | RANGE | SUBTYPE_MARK
4007 -- LOGICAL_OPERATOR ::= and | and then | or | or else | xor
4009 -- SIMPLE_EXPRESSION ::=
4010 -- [UNARY_ADDING_OPERATOR] TERM {BINARY_ADDING_OPERATOR TERM}
4012 -- TERM ::= FACTOR {MULTIPLYING_OPERATOR FACTOR}
4014 -- FACTOR ::= PRIMARY [** PRIMARY] | abs PRIMARY | not PRIMARY
4016 -- No nodes are generated for any of these constructs. Instead, the
4017 -- node for the operator appears directly. When we refer to an
4018 -- expression in this description, we mean any of the possible
4019 -- constituent components of an expression (e.g. identifier is
4020 -- an example of an expression).
4022 -- Note: the above syntax is that Ada 2012 syntax which restricts
4023 -- choice relations to simple expressions to avoid ambiguities in
4024 -- some contexts with set membership notation. It has been decided
4025 -- that in retrospect, the Ada 95 change allowing general expressions
4026 -- in this context was a mistake, so we have reverted to the above
4027 -- syntax in Ada 95 and Ada 2005 modes (the restriction to simple
4028 -- expressions was there in Ada 83 from the start).
4030 ------------------
4031 -- 4.4 Primary --
4032 ------------------
4034 -- PRIMARY ::=
4035 -- NUMERIC_LITERAL | null
4036 -- | STRING_LITERAL | AGGREGATE
4037 -- | NAME | QUALIFIED_EXPRESSION
4038 -- | ALLOCATOR | (EXPRESSION)
4040 -- Usually there is no explicit node in the tree for primary. Instead
4041 -- the constituent (e.g. AGGREGATE) appears directly. There are two
4042 -- exceptions. First, there is an explicit node for a null primary.
4044 -- N_Null
4045 -- Sloc points to NULL
4046 -- plus fields for expression
4048 -- Second, the case of (EXPRESSION) is handled specially. Ada requires
4049 -- that the parser keep track of which subexpressions are enclosed
4050 -- in parentheses, and how many levels of parentheses are used. This
4051 -- information is required for optimization purposes, and also for
4052 -- some semantic checks (e.g. (((1))) in a procedure spec does not
4053 -- conform with ((((1)))) in the body).
4055 -- The parentheses are recorded by keeping a Paren_Count field in every
4056 -- subexpression node (it is actually present in all nodes, but only
4057 -- used in subexpression nodes). This count records the number of
4058 -- levels of parentheses. If the number of levels in the source exceeds
4059 -- the maximum accommodated by this count, then the count is simply left
4060 -- at the maximum value. This means that there are some pathological
4061 -- cases of failure to detect conformance failures (e.g. an expression
4062 -- with 500 levels of parens will conform with one with 501 levels),
4063 -- but we do not need to lose sleep over this.
4065 -- Historical note: in versions of GNAT prior to 1.75, there was a node
4066 -- type N_Parenthesized_Expression used to accurately record unlimited
4067 -- numbers of levels of parentheses. However, it turned out to be a
4068 -- real nuisance to have to take into account the possible presence of
4069 -- this node during semantic analysis, since basically parentheses have
4070 -- zero relevance to semantic analysis.
4072 -- Note: the level of parentheses always present in things like
4073 -- aggregates does not count, only the parentheses in the primary
4074 -- (EXPRESSION) affect the setting of the Paren_Count field.
4076 -- 2nd Note: the contents of the Expression field must be ignored (i.e.
4077 -- treated as though it were Empty) if No_Initialization is set True.
4079 --------------------------------------
4080 -- 4.5 Short Circuit Control Forms --
4081 --------------------------------------
4083 -- EXPRESSION ::=
4084 -- RELATION {and then RELATION} | RELATION {or else RELATION}
4086 -- Gigi restriction: For both these control forms, the operand and
4087 -- result types are always Standard.Boolean. The expander inserts the
4088 -- required conversion operations where needed to ensure this is the
4089 -- case.
4091 -- N_And_Then
4092 -- Sloc points to AND of AND THEN
4093 -- Left_Opnd (Node2)
4094 -- Right_Opnd (Node3)
4095 -- Actions (List1-Sem)
4096 -- plus fields for expression
4098 -- N_Or_Else
4099 -- Sloc points to OR of OR ELSE
4100 -- Left_Opnd (Node2)
4101 -- Right_Opnd (Node3)
4102 -- Actions (List1-Sem)
4103 -- plus fields for expression
4105 -- Note: The Actions field is used to hold actions associated with
4106 -- the right hand operand. These have to be treated specially since
4107 -- they are not unconditionally executed. See Insert_Actions for a
4108 -- more detailed description of how these actions are handled.
4110 ---------------------------
4111 -- 4.5 Membership Tests --
4112 ---------------------------
4114 -- RELATION ::=
4115 -- SIMPLE_EXPRESSION [not] in MEMBERSHIP_CHOICE_LIST
4117 -- MEMBERSHIP_CHOICE_LIST ::=
4118 -- MEMBERSHIP_CHOICE {'|' MEMBERSHIP CHOICE}
4120 -- MEMBERSHIP_CHOICE ::=
4121 -- CHOICE_EXPRESSION | RANGE | SUBTYPE_MARK
4123 -- Note: although the grammar above allows only a range or a subtype
4124 -- mark, the parser in fact will accept any simple expression in place
4125 -- of a subtype mark. This means that the semantic analyzer must be able
4126 -- to deal with, and diagnose a simple expression other than a name for
4127 -- the right operand. This simplifies error recovery in the parser.
4129 -- The Alternatives field below is present only if there is more than
4130 -- one Membership_Choice present (which is legitimate only in Ada 2012
4131 -- mode) in which case Right_Opnd is Empty, and Alternatives contains
4132 -- the list of choices. In the tree passed to the back end, Alternatives
4133 -- is always No_List, and Right_Opnd is set (i.e. the expansion circuit
4134 -- expands out the complex set membership case using simple membership
4135 -- and equality operations).
4137 -- Should we rename Alternatives here to Membership_Choices ???
4139 -- N_In
4140 -- Sloc points to IN
4141 -- Left_Opnd (Node2)
4142 -- Right_Opnd (Node3)
4143 -- Alternatives (List4) (set to No_List if only one set alternative)
4144 -- No_Minimize_Eliminate (Flag17)
4145 -- plus fields for expression
4147 -- N_Not_In
4148 -- Sloc points to NOT of NOT IN
4149 -- Left_Opnd (Node2)
4150 -- Right_Opnd (Node3)
4151 -- Alternatives (List4) (set to No_List if only one set alternative)
4152 -- No_Minimize_Eliminate (Flag17)
4153 -- plus fields for expression
4155 --------------------
4156 -- 4.5 Operators --
4157 --------------------
4159 -- LOGICAL_OPERATOR ::= and | or | xor
4161 -- RELATIONAL_OPERATOR ::= = | /= | < | <= | > | >=
4163 -- BINARY_ADDING_OPERATOR ::= + | - | &
4165 -- UNARY_ADDING_OPERATOR ::= + | -
4167 -- MULTIPLYING_OPERATOR ::= * | / | mod | rem
4169 -- HIGHEST_PRECEDENCE_OPERATOR ::= ** | abs | not
4171 -- Sprint syntax if Treat_Fixed_As_Integer is set:
4173 -- x #* y
4174 -- x #/ y
4175 -- x #mod y
4176 -- x #rem y
4178 -- Gigi restriction: For * / mod rem with fixed-point operands, Gigi
4179 -- will only be given nodes with the Treat_Fixed_As_Integer flag set.
4180 -- All handling of smalls for multiplication and division is handled
4181 -- by the front end (mod and rem result only from expansion). Gigi
4182 -- thus never needs to worry about small values (for other operators
4183 -- operating on fixed-point, e.g. addition, the small value does not
4184 -- have any semantic effect anyway, these are always integer operations.
4186 -- Gigi restriction: For all operators taking Boolean operands, the
4187 -- type is always Standard.Boolean. The expander inserts the required
4188 -- conversion operations where needed to ensure this is the case.
4190 -- N_Op_And
4191 -- Sloc points to AND
4192 -- Do_Length_Check (Flag4-Sem)
4193 -- plus fields for binary operator
4194 -- plus fields for expression
4196 -- N_Op_Or
4197 -- Sloc points to OR
4198 -- Do_Length_Check (Flag4-Sem)
4199 -- plus fields for binary operator
4200 -- plus fields for expression
4202 -- N_Op_Xor
4203 -- Sloc points to XOR
4204 -- Do_Length_Check (Flag4-Sem)
4205 -- plus fields for binary operator
4206 -- plus fields for expression
4208 -- N_Op_Eq
4209 -- Sloc points to =
4210 -- plus fields for binary operator
4211 -- plus fields for expression
4213 -- N_Op_Ne
4214 -- Sloc points to /=
4215 -- plus fields for binary operator
4216 -- plus fields for expression
4218 -- N_Op_Lt
4219 -- Sloc points to <
4220 -- plus fields for binary operator
4221 -- plus fields for expression
4223 -- N_Op_Le
4224 -- Sloc points to <=
4225 -- plus fields for binary operator
4226 -- plus fields for expression
4228 -- N_Op_Gt
4229 -- Sloc points to >
4230 -- plus fields for binary operator
4231 -- plus fields for expression
4233 -- N_Op_Ge
4234 -- Sloc points to >=
4235 -- plus fields for binary operator
4236 -- plus fields for expression
4238 -- N_Op_Add
4239 -- Sloc points to + (binary)
4240 -- plus fields for binary operator
4241 -- plus fields for expression
4243 -- N_Op_Subtract
4244 -- Sloc points to - (binary)
4245 -- plus fields for binary operator
4246 -- plus fields for expression
4248 -- N_Op_Concat
4249 -- Sloc points to &
4250 -- Is_Component_Left_Opnd (Flag13-Sem)
4251 -- Is_Component_Right_Opnd (Flag14-Sem)
4252 -- plus fields for binary operator
4253 -- plus fields for expression
4255 -- N_Op_Multiply
4256 -- Sloc points to *
4257 -- Treat_Fixed_As_Integer (Flag14-Sem)
4258 -- Rounded_Result (Flag18-Sem)
4259 -- plus fields for binary operator
4260 -- plus fields for expression
4262 -- N_Op_Divide
4263 -- Sloc points to /
4264 -- Treat_Fixed_As_Integer (Flag14-Sem)
4265 -- Do_Division_Check (Flag13-Sem)
4266 -- Rounded_Result (Flag18-Sem)
4267 -- plus fields for binary operator
4268 -- plus fields for expression
4270 -- N_Op_Mod
4271 -- Sloc points to MOD
4272 -- Treat_Fixed_As_Integer (Flag14-Sem)
4273 -- Do_Division_Check (Flag13-Sem)
4274 -- plus fields for binary operator
4275 -- plus fields for expression
4277 -- N_Op_Rem
4278 -- Sloc points to REM
4279 -- Treat_Fixed_As_Integer (Flag14-Sem)
4280 -- Do_Division_Check (Flag13-Sem)
4281 -- plus fields for binary operator
4282 -- plus fields for expression
4284 -- N_Op_Expon
4285 -- Is_Power_Of_2_For_Shift (Flag13-Sem)
4286 -- Sloc points to **
4287 -- plus fields for binary operator
4288 -- plus fields for expression
4290 -- N_Op_Plus
4291 -- Sloc points to + (unary)
4292 -- plus fields for unary operator
4293 -- plus fields for expression
4295 -- N_Op_Minus
4296 -- Sloc points to - (unary)
4297 -- plus fields for unary operator
4298 -- plus fields for expression
4300 -- N_Op_Abs
4301 -- Sloc points to ABS
4302 -- plus fields for unary operator
4303 -- plus fields for expression
4305 -- N_Op_Not
4306 -- Sloc points to NOT
4307 -- plus fields for unary operator
4308 -- plus fields for expression
4310 -- See also shift operators in section B.2
4312 -- Note on fixed-point operations passed to Gigi: For adding operators,
4313 -- the semantics is to treat these simply as integer operations, with
4314 -- the small values being ignored (the bounds are already stored in
4315 -- units of small, so that constraint checking works as usual). For the
4316 -- case of multiply/divide/rem/mod operations, Gigi will only see fixed
4317 -- point operands if the Treat_Fixed_As_Integer flag is set and will
4318 -- thus treat these nodes in identical manner, ignoring small values.
4320 -- Note on equality/inequality tests for records. In the expanded tree,
4321 -- record comparisons are always expanded to be a series of component
4322 -- comparisons, so the back end will never see an equality or inequality
4323 -- operation with operands of a record type.
4325 -- Note on overflow handling: When the overflow checking mode is set to
4326 -- MINIMIZED or ELIMINATED, nodes for signed arithmetic operations may
4327 -- be modified to use a larger type for the operands and result. In
4328 -- the case where the computed range exceeds that of Long_Long_Integer,
4329 -- and we are running in ELIMINATED mode, the operator node will be
4330 -- changed to be a call to the appropriate routine in System.Bignums.
4332 -- Note: In Modify_Tree_For_C mode, we do not generate an N_Op_Mod node
4333 -- for signed integer types (since there is no equivalent operator in
4334 -- C). Instead we rewrite such an operation in terms of REM (which is
4335 -- % in C) and other C-available operators.
4337 ------------------------------------
4338 -- 4.5.7 Conditional Expressions --
4339 ------------------------------------
4341 -- CONDITIONAL_EXPRESSION ::= IF_EXPRESSION | CASE_EXPRESSION
4343 --------------------------
4344 -- 4.5.7 If Expression --
4345 ----------------------------
4347 -- IF_EXPRESSION ::=
4348 -- if CONDITION then DEPENDENT_EXPRESSION
4349 -- {elsif CONDITION then DEPENDENT_EXPRESSION}
4350 -- [else DEPENDENT_EXPRESSION]
4352 -- DEPENDENT_EXPRESSION ::= EXPRESSION
4354 -- Note: if we have (IF x1 THEN x2 ELSIF x3 THEN x4 ELSE x5) then it
4355 -- is represented as (IF x1 THEN x2 ELSE (IF x3 THEN x4 ELSE x5)) and
4356 -- the Is_Elsif flag is set on the inner if expression.
4358 -- N_If_Expression
4359 -- Sloc points to IF or ELSIF keyword
4360 -- Expressions (List1)
4361 -- Then_Actions (List2-Sem)
4362 -- Else_Actions (List3-Sem)
4363 -- Is_Elsif (Flag13) (set if comes from ELSIF)
4364 -- Do_Overflow_Check (Flag17-Sem)
4365 -- plus fields for expression
4367 -- Expressions here is a three-element list, whose first element is the
4368 -- condition, the second element is the dependent expression after THEN
4369 -- and the third element is the dependent expression after the ELSE
4370 -- (explicitly set to True if missing).
4372 -- Note: the Then_Actions and Else_Actions fields are always set to
4373 -- No_List in the tree passed to the back end. These are used only
4374 -- for temporary processing purposes in the expander. Even though they
4375 -- are semantic fields, their parent pointers are set because analysis
4376 -- of actions nodes in those lists may generate additional actions that
4377 -- need to know their insertion point (for example for the creation of
4378 -- transient scopes).
4380 -- Note: in the tree passed to the back end, if the result type is
4381 -- an unconstrained array, the if expression can only appears in the
4382 -- initializing expression of an object declaration (this avoids the
4383 -- back end having to create a variable length temporary on the fly).
4385 ----------------------------
4386 -- 4.5.7 Case Expression --
4387 ----------------------------
4389 -- CASE_EXPRESSION ::=
4390 -- case SELECTING_EXPRESSION is
4391 -- CASE_EXPRESSION_ALTERNATIVE
4392 -- {,CASE_EXPRESSION_ALTERNATIVE}
4394 -- Note that the Alternatives cannot include pragmas (this contrasts
4395 -- with the situation of case statements where pragmas are allowed).
4397 -- N_Case_Expression
4398 -- Sloc points to CASE
4399 -- Expression (Node3) (the selecting expression)
4400 -- Alternatives (List4) (the case expression alternatives)
4401 -- Do_Overflow_Check (Flag17-Sem)
4403 ----------------------------------------
4404 -- 4.5.7 Case Expression Alternative --
4405 ----------------------------------------
4407 -- CASE_EXPRESSION_ALTERNATIVE ::=
4408 -- when DISCRETE_CHOICE_LIST =>
4409 -- DEPENDENT_EXPRESSION
4411 -- N_Case_Expression_Alternative
4412 -- Sloc points to WHEN
4413 -- Actions (List1)
4414 -- Discrete_Choices (List4)
4415 -- Expression (Node3)
4416 -- Has_SP_Choice (Flag15-Sem)
4418 -- Note: The Actions field temporarily holds any actions associated with
4419 -- evaluation of the Expression. During expansion of the case expression
4420 -- these actions are wrapped into an N_Expressions_With_Actions node
4421 -- replacing the original expression.
4423 -- Note: this node never appears in the tree passed to the back end,
4424 -- since the expander converts case expressions into case statements.
4426 ---------------------------------
4427 -- 4.5.9 Quantified Expression --
4428 ---------------------------------
4430 -- QUANTIFIED_EXPRESSION ::=
4431 -- for QUANTIFIER LOOP_PARAMETER_SPECIFICATION => PREDICATE
4432 -- | for QUANTIFIER ITERATOR_SPECIFICATION => PREDICATE
4434 -- QUANTIFIER ::= all | some
4436 -- At most one of (Iterator_Specification, Loop_Parameter_Specification)
4437 -- is present at a time, in which case the other one is empty.
4439 -- N_Quantified_Expression
4440 -- Sloc points to FOR
4441 -- Iterator_Specification (Node2)
4442 -- Loop_Parameter_Specification (Node4)
4443 -- Condition (Node1)
4444 -- All_Present (Flag15)
4446 --------------------------
4447 -- 4.6 Type Conversion --
4448 --------------------------
4450 -- TYPE_CONVERSION ::=
4451 -- SUBTYPE_MARK (EXPRESSION) | SUBTYPE_MARK (NAME)
4453 -- In the (NAME) case, the name is stored as the expression
4455 -- Note: the parser never generates a type conversion node, since it
4456 -- looks like an indexed component which is generated by preference.
4457 -- The semantic pass must correct this misidentification.
4459 -- Gigi handles conversions that involve no change in the root type,
4460 -- and also all conversions from integer to floating-point types.
4461 -- Conversions from floating-point to integer are only handled in
4462 -- the case where Float_Truncate flag set. Other conversions from
4463 -- floating-point to integer (involving rounding) and all conversions
4464 -- involving fixed-point types are handled by the expander.
4466 -- Sprint syntax if Float_Truncate set: X^(Y)
4467 -- Sprint syntax if Conversion_OK set X?(Y)
4468 -- Sprint syntax if both flags set X?^(Y)
4470 -- Note: If either the operand or result type is fixed-point, Gigi will
4471 -- only see a type conversion node with Conversion_OK set. The front end
4472 -- takes care of all handling of small's for fixed-point conversions.
4474 -- N_Type_Conversion
4475 -- Sloc points to first token of subtype mark
4476 -- Subtype_Mark (Node4)
4477 -- Expression (Node3)
4478 -- Do_Discriminant_Check (Flag1-Sem)
4479 -- Do_Length_Check (Flag4-Sem)
4480 -- Float_Truncate (Flag11-Sem)
4481 -- Do_Tag_Check (Flag13-Sem)
4482 -- Conversion_OK (Flag14-Sem)
4483 -- Do_Overflow_Check (Flag17-Sem)
4484 -- Rounded_Result (Flag18-Sem)
4485 -- plus fields for expression
4487 -- Note: if a range check is required, then the Do_Range_Check flag
4488 -- is set in the Expression with the check being done against the
4489 -- target type range (after the base type conversion, if any).
4491 -------------------------------
4492 -- 4.7 Qualified Expression --
4493 -------------------------------
4495 -- QUALIFIED_EXPRESSION ::=
4496 -- SUBTYPE_MARK ' (EXPRESSION) | SUBTYPE_MARK ' AGGREGATE
4498 -- Note: the parentheses in the (EXPRESSION) case are deemed to enclose
4499 -- the expression, so the Expression field of this node always points
4500 -- to a parenthesized expression in this case (i.e. Paren_Count will
4501 -- always be non-zero for the referenced expression if it is not an
4502 -- aggregate).
4504 -- N_Qualified_Expression
4505 -- Sloc points to apostrophe
4506 -- Subtype_Mark (Node4)
4507 -- Expression (Node3) expression or aggregate
4508 -- plus fields for expression
4510 --------------------
4511 -- 4.8 Allocator --
4512 --------------------
4514 -- ALLOCATOR ::=
4515 -- new [SUBPOOL_SPECIFICATION] SUBTYPE_INDICATION
4516 -- | new [SUBPOOL_SPECIFICATION] QUALIFIED_EXPRESSION
4518 -- SUBPOOL_SPECIFICATION ::= (subpool_handle_NAME)
4520 -- Sprint syntax (when storage pool present)
4521 -- new xxx (storage_pool = pool)
4522 -- or
4523 -- new (subpool) xxx (storage_pool = pool)
4525 -- N_Allocator
4526 -- Sloc points to NEW
4527 -- Expression (Node3) subtype indication or qualified expression
4528 -- Subpool_Handle_Name (Node4) (set to Empty if not present)
4529 -- Storage_Pool (Node1-Sem)
4530 -- Procedure_To_Call (Node2-Sem)
4531 -- Null_Exclusion_Present (Flag11)
4532 -- No_Initialization (Flag13-Sem)
4533 -- Is_Static_Coextension (Flag14-Sem)
4534 -- Do_Storage_Check (Flag17-Sem)
4535 -- Is_Dynamic_Coextension (Flag18-Sem)
4536 -- plus fields for expression
4538 -- Note: like all nodes, the N_Allocator has the Comes_From_Source flag.
4539 -- This flag has a special function in conjunction with the restriction
4540 -- No_Implicit_Heap_Allocations, which will be triggered if this flag
4541 -- is not set. This means that if a source allocator is replaced with
4542 -- a constructed allocator, the Comes_From_Source flag should be copied
4543 -- to the newly created allocator.
4545 ---------------------------------
4546 -- 5.1 Sequence Of Statements --
4547 ---------------------------------
4549 -- SEQUENCE_OF_STATEMENTS ::= STATEMENT {STATEMENT}
4551 -- Note: Although the parser will not accept a declaration as a
4552 -- statement, the semantic analyzer may insert declarations (e.g.
4553 -- declarations of implicit types needed for execution of other
4554 -- statements) into a sequence of statements, so the code generator
4555 -- should be prepared to accept a declaration where a statement is
4556 -- expected. Note also that pragmas can appear as statements.
4558 --------------------
4559 -- 5.1 Statement --
4560 --------------------
4562 -- STATEMENT ::=
4563 -- {LABEL} SIMPLE_STATEMENT | {LABEL} COMPOUND_STATEMENT
4565 -- There is no explicit node in the tree for a statement. Instead, the
4566 -- individual statement appears directly. Labels are treated as a
4567 -- kind of statement, i.e. they are linked into a statement list at
4568 -- the point they appear, so the labeled statement appears following
4569 -- the label or labels in the statement list.
4571 ---------------------------
4572 -- 5.1 Simple Statement --
4573 ---------------------------
4575 -- SIMPLE_STATEMENT ::= NULL_STATEMENT
4576 -- | ASSIGNMENT_STATEMENT | EXIT_STATEMENT
4577 -- | GOTO_STATEMENT | PROCEDURE_CALL_STATEMENT
4578 -- | SIMPLE_RETURN_STATEMENT | ENTRY_CALL_STATEMENT
4579 -- | REQUEUE_STATEMENT | DELAY_STATEMENT
4580 -- | ABORT_STATEMENT | RAISE_STATEMENT
4581 -- | CODE_STATEMENT
4583 -----------------------------
4584 -- 5.1 Compound Statement --
4585 -----------------------------
4587 -- COMPOUND_STATEMENT ::=
4588 -- IF_STATEMENT | CASE_STATEMENT
4589 -- | LOOP_STATEMENT | BLOCK_STATEMENT
4590 -- | EXTENDED_RETURN_STATEMENT
4591 -- | ACCEPT_STATEMENT | SELECT_STATEMENT
4593 -------------------------
4594 -- 5.1 Null Statement --
4595 -------------------------
4597 -- NULL_STATEMENT ::= null;
4599 -- N_Null_Statement
4600 -- Sloc points to NULL
4602 ----------------
4603 -- 5.1 Label --
4604 ----------------
4606 -- LABEL ::= <<label_STATEMENT_IDENTIFIER>>
4608 -- Note that the occurrence of a label is not a defining identifier,
4609 -- but rather a referencing occurrence. The defining occurrence is
4610 -- in the implicit label declaration which occurs in the innermost
4611 -- enclosing block.
4613 -- N_Label
4614 -- Sloc points to <<
4615 -- Identifier (Node1) direct name of statement identifier
4616 -- Exception_Junk (Flag8-Sem)
4618 -- Note: Before Ada 2012, a label is always followed by a statement,
4619 -- and this is true in the tree even in Ada 2012 mode (the parser
4620 -- inserts a null statement marked with Comes_From_Source False).
4622 -------------------------------
4623 -- 5.1 Statement Identifier --
4624 -------------------------------
4626 -- STATEMENT_IDENTIFIER ::= DIRECT_NAME
4628 -- The IDENTIFIER of a STATEMENT_IDENTIFIER shall be an identifier
4629 -- (not an OPERATOR_SYMBOL)
4631 -------------------------------
4632 -- 5.2 Assignment Statement --
4633 -------------------------------
4635 -- ASSIGNMENT_STATEMENT ::=
4636 -- variable_NAME := EXPRESSION;
4638 -- N_Assignment_Statement
4639 -- Sloc points to :=
4640 -- Name (Node2)
4641 -- Expression (Node3)
4642 -- Do_Discriminant_Check (Flag1-Sem)
4643 -- Do_Tag_Check (Flag13-Sem)
4644 -- Do_Length_Check (Flag4-Sem)
4645 -- Forwards_OK (Flag5-Sem)
4646 -- Backwards_OK (Flag6-Sem)
4647 -- No_Ctrl_Actions (Flag7-Sem)
4648 -- Componentwise_Assignment (Flag14-Sem)
4649 -- Suppress_Assignment_Checks (Flag18-Sem)
4651 -- Note: if a range check is required, then the Do_Range_Check flag
4652 -- is set in the Expression (right hand side), with the check being
4653 -- done against the type of the Name (left hand side).
4655 -- Note: the back end places some restrictions on the form of the
4656 -- Expression field. If the object being assigned to is Atomic, then
4657 -- the Expression may not have the form of an aggregate (since this
4658 -- might cause the back end to generate separate assignments). In this
4659 -- case the front end must generate an extra temporary and initialize
4660 -- this temporary as required (the temporary itself is not atomic).
4662 -----------------------
4663 -- 5.3 If Statement --
4664 -----------------------
4666 -- IF_STATEMENT ::=
4667 -- if CONDITION then
4668 -- SEQUENCE_OF_STATEMENTS
4669 -- {elsif CONDITION then
4670 -- SEQUENCE_OF_STATEMENTS}
4671 -- [else
4672 -- SEQUENCE_OF_STATEMENTS]
4673 -- end if;
4675 -- Gigi restriction: This expander ensures that the type of the
4676 -- Condition fields is always Standard.Boolean, even if the type
4677 -- in the source is some non-standard boolean type.
4679 -- N_If_Statement
4680 -- Sloc points to IF
4681 -- Condition (Node1)
4682 -- Then_Statements (List2)
4683 -- Elsif_Parts (List3) (set to No_List if none present)
4684 -- Else_Statements (List4) (set to No_List if no else part present)
4685 -- End_Span (Uint5) (set to Uint_0 if expander generated)
4686 -- From_Conditional_Expression (Flag1-Sem)
4688 -- N_Elsif_Part
4689 -- Sloc points to ELSIF
4690 -- Condition (Node1)
4691 -- Then_Statements (List2)
4692 -- Condition_Actions (List3-Sem)
4694 --------------------
4695 -- 5.3 Condition --
4696 --------------------
4698 -- CONDITION ::= boolean_EXPRESSION
4700 -------------------------
4701 -- 5.4 Case Statement --
4702 -------------------------
4704 -- CASE_STATEMENT ::=
4705 -- case EXPRESSION is
4706 -- CASE_STATEMENT_ALTERNATIVE
4707 -- {CASE_STATEMENT_ALTERNATIVE}
4708 -- end case;
4710 -- Note: the Alternatives can contain pragmas. These only occur at
4711 -- the start of the list, since any pragmas occurring after the first
4712 -- alternative are absorbed into the corresponding statement sequence.
4714 -- N_Case_Statement
4715 -- Sloc points to CASE
4716 -- Expression (Node3)
4717 -- Alternatives (List4)
4718 -- End_Span (Uint5) (set to Uint_0 if expander generated)
4719 -- From_Conditional_Expression (Flag1-Sem)
4721 -- Note: Before Ada 2012, a pragma in a statement sequence is always
4722 -- followed by a statement, and this is true in the tree even in Ada
4723 -- 2012 mode (the parser inserts a null statement marked with the flag
4724 -- Comes_From_Source False).
4726 -------------------------------------
4727 -- 5.4 Case Statement Alternative --
4728 -------------------------------------
4730 -- CASE_STATEMENT_ALTERNATIVE ::=
4731 -- when DISCRETE_CHOICE_LIST =>
4732 -- SEQUENCE_OF_STATEMENTS
4734 -- N_Case_Statement_Alternative
4735 -- Sloc points to WHEN
4736 -- Discrete_Choices (List4)
4737 -- Statements (List3)
4738 -- Has_SP_Choice (Flag15-Sem)
4740 -- Note: in the list of Discrete_Choices, the tree passed to the back
4741 -- end does not have choice entries corresponding to names of statically
4742 -- predicated subtypes. Such entries are always expanded out to the list
4743 -- of equivalent values or ranges. The ASIS tree generated in -gnatct
4744 -- mode does not have this expansion, and has the original choices.
4746 -------------------------
4747 -- 5.5 Loop Statement --
4748 -------------------------
4750 -- LOOP_STATEMENT ::=
4751 -- [loop_STATEMENT_IDENTIFIER :]
4752 -- [ITERATION_SCHEME] loop
4753 -- SEQUENCE_OF_STATEMENTS
4754 -- end loop [loop_IDENTIFIER];
4756 -- Note: The occurrence of a loop label is not a defining identifier
4757 -- but rather a referencing occurrence. The defining occurrence is in
4758 -- the implicit label declaration which occurs in the innermost
4759 -- enclosing block.
4761 -- Note: there is always a loop statement identifier present in the
4762 -- tree, even if none was given in the source. In the case where no loop
4763 -- identifier is given in the source, the parser creates a name of the
4764 -- form _Loop_n, where n is a decimal integer (the two underlines ensure
4765 -- that the loop names created in this manner do not conflict with any
4766 -- user defined identifiers), and the flag Has_Created_Identifier is set
4767 -- to True. The only exception to the rule that all loop statement nodes
4768 -- have identifiers occurs for loops constructed by the expander, and
4769 -- the semantic analyzer will create and supply dummy loop identifiers
4770 -- in these cases.
4772 -- N_Loop_Statement
4773 -- Sloc points to LOOP
4774 -- Identifier (Node1) loop identifier (set to Empty if no identifier)
4775 -- Iteration_Scheme (Node2) (set to Empty if no iteration scheme)
4776 -- Statements (List3)
4777 -- End_Label (Node4)
4778 -- Has_Created_Identifier (Flag15)
4779 -- Is_Null_Loop (Flag16)
4780 -- Suppress_Loop_Warnings (Flag17)
4782 -- Note: the parser fills in the Identifier field if there is an
4783 -- explicit loop identifier. Otherwise the parser leaves this field
4784 -- set to Empty, and then the semantic processing for a loop statement
4785 -- creates an identifier, setting the Has_Created_Identifier flag to
4786 -- True. So after semantic analysis, the Identifier is always set,
4787 -- referencing an identifier whose entity has an Ekind of E_Loop.
4789 ---------------------------
4790 -- 5.5 Iteration Scheme --
4791 ---------------------------
4793 -- ITERATION_SCHEME ::=
4794 -- while CONDITION
4795 -- | for LOOP_PARAMETER_SPECIFICATION
4796 -- | for ITERATOR_SPECIFICATION
4798 -- At most one of (Iterator_Specification, Loop_Parameter_Specification)
4799 -- is present at a time, in which case the other one is empty. Both are
4800 -- empty in the case of a WHILE loop.
4802 -- Gigi restriction: The expander ensures that the type of the Condition
4803 -- field is always Standard.Boolean, even if the type in the source is
4804 -- some non-standard boolean type.
4806 -- N_Iteration_Scheme
4807 -- Sloc points to WHILE or FOR
4808 -- Condition (Node1) (set to Empty if FOR case)
4809 -- Condition_Actions (List3-Sem)
4810 -- Iterator_Specification (Node2) (set to Empty if WHILE case)
4811 -- Loop_Parameter_Specification (Node4) (set to Empty if WHILE case)
4813 ---------------------------------------
4814 -- 5.5 Loop Parameter Specification --
4815 ---------------------------------------
4817 -- LOOP_PARAMETER_SPECIFICATION ::=
4818 -- DEFINING_IDENTIFIER in [reverse] DISCRETE_SUBTYPE_DEFINITION
4820 -- N_Loop_Parameter_Specification
4821 -- Sloc points to first identifier
4822 -- Defining_Identifier (Node1)
4823 -- Reverse_Present (Flag15)
4824 -- Discrete_Subtype_Definition (Node4)
4826 -----------------------------------
4827 -- 5.5.1 Iterator Specification --
4828 -----------------------------------
4830 -- ITERATOR_SPECIFICATION ::=
4831 -- DEFINING_IDENTIFIER in [reverse] NAME
4832 -- | DEFINING_IDENTIFIER [: SUBTYPE_INDICATION] of [reverse] NAME
4834 -- N_Iterator_Specification
4835 -- Sloc points to defining identifier
4836 -- Defining_Identifier (Node1)
4837 -- Name (Node2)
4838 -- Reverse_Present (Flag15)
4839 -- Of_Present (Flag16)
4840 -- Subtype_Indication (Node5)
4842 -- Note: The Of_Present flag distinguishes the two forms
4844 --------------------------
4845 -- 5.6 Block Statement --
4846 --------------------------
4848 -- BLOCK_STATEMENT ::=
4849 -- [block_STATEMENT_IDENTIFIER:]
4850 -- [declare
4851 -- DECLARATIVE_PART]
4852 -- begin
4853 -- HANDLED_SEQUENCE_OF_STATEMENTS
4854 -- end [block_IDENTIFIER];
4856 -- Note that the occurrence of a block identifier is not a defining
4857 -- identifier, but rather a referencing occurrence. The defining
4858 -- occurrence is an E_Block entity declared by the implicit label
4859 -- declaration which occurs in the innermost enclosing block statement
4860 -- or body; the block identifier denotes that E_Block.
4862 -- For block statements that come from source code, there is always a
4863 -- block statement identifier present in the tree, denoting an E_Block.
4864 -- In the case where no block identifier is given in the source,
4865 -- the parser creates a name of the form B_n, where n is a decimal
4866 -- integer, and the flag Has_Created_Identifier is set to True. Blocks
4867 -- constructed by the expander usually have no identifier, and no
4868 -- corresponding entity.
4870 -- Note: the block statement created for an extended return statement
4871 -- has an entity, and this entity is an E_Return_Statement, rather than
4872 -- the usual E_Block.
4874 -- Note: Exception_Junk is set for the wrapping blocks created during
4875 -- local raise optimization (Exp_Ch11.Expand_Local_Exception_Handlers).
4877 -- Note: from a control flow viewpoint, a block statement defines an
4878 -- extended basic block, i.e. the entry of the block dominates every
4879 -- statement in the sequence. When generating new statements with
4880 -- exception handlers in the expander at the end of a sequence that
4881 -- comes from source code, it can be necessary to wrap them all in a
4882 -- block statement in order to expose the implicit control flow to
4883 -- gigi and thus prevent it from issuing bogus control flow warnings.
4885 -- N_Block_Statement
4886 -- Sloc points to DECLARE or BEGIN
4887 -- Identifier (Node1) block direct name (set to Empty if not present)
4888 -- Declarations (List2) (set to No_List if no DECLARE part)
4889 -- Handled_Statement_Sequence (Node4)
4890 -- Cleanup_Actions (List5-Sem)
4891 -- Is_Task_Master (Flag5-Sem)
4892 -- Activation_Chain_Entity (Node3-Sem)
4893 -- Has_Created_Identifier (Flag15)
4894 -- Is_Task_Allocation_Block (Flag6)
4895 -- Is_Asynchronous_Call_Block (Flag7)
4896 -- Exception_Junk (Flag8-Sem)
4897 -- Is_Finalization_Wrapper (Flag9-Sem)
4899 -------------------------
4900 -- 5.7 Exit Statement --
4901 -------------------------
4903 -- EXIT_STATEMENT ::= exit [loop_NAME] [when CONDITION];
4905 -- Gigi restriction: The expander ensures that the type of the Condition
4906 -- field is always Standard.Boolean, even if the type in the source is
4907 -- some non-standard boolean type.
4909 -- N_Exit_Statement
4910 -- Sloc points to EXIT
4911 -- Name (Node2) (set to Empty if no loop name present)
4912 -- Condition (Node1) (set to Empty if no WHEN part present)
4913 -- Next_Exit_Statement (Node3-Sem): Next exit on chain
4915 -------------------------
4916 -- 5.9 Goto Statement --
4917 -------------------------
4919 -- GOTO_STATEMENT ::= goto label_NAME;
4921 -- N_Goto_Statement
4922 -- Sloc points to GOTO
4923 -- Name (Node2)
4924 -- Exception_Junk (Flag8-Sem)
4926 ---------------------------------
4927 -- 6.1 Subprogram Declaration --
4928 ---------------------------------
4930 -- SUBPROGRAM_DECLARATION ::=
4931 -- SUBPROGRAM_SPECIFICATION
4932 -- [ASPECT_SPECIFICATIONS];
4934 -- N_Subprogram_Declaration
4935 -- Sloc points to FUNCTION or PROCEDURE
4936 -- Specification (Node1)
4937 -- Body_To_Inline (Node3-Sem)
4938 -- Corresponding_Body (Node5-Sem)
4939 -- Parent_Spec (Node4-Sem)
4941 ------------------------------------------
4942 -- 6.1 Abstract Subprogram Declaration --
4943 ------------------------------------------
4945 -- ABSTRACT_SUBPROGRAM_DECLARATION ::=
4946 -- SUBPROGRAM_SPECIFICATION is abstract
4947 -- [ASPECT_SPECIFICATIONS];
4949 -- N_Abstract_Subprogram_Declaration
4950 -- Sloc points to ABSTRACT
4951 -- Specification (Node1)
4953 -----------------------------------
4954 -- 6.1 Subprogram Specification --
4955 -----------------------------------
4957 -- SUBPROGRAM_SPECIFICATION ::=
4958 -- [[not] overriding]
4959 -- procedure DEFINING_PROGRAM_UNIT_NAME PARAMETER_PROFILE
4960 -- | [[not] overriding]
4961 -- function DEFINING_DESIGNATOR PARAMETER_AND_RESULT_PROFILE
4963 -- Note: there are no separate nodes for the profiles, instead the
4964 -- information appears directly in the following nodes.
4966 -- N_Function_Specification
4967 -- Sloc points to FUNCTION
4968 -- Defining_Unit_Name (Node1) (the designator)
4969 -- Parameter_Specifications (List3) (set to No_List if no formal part)
4970 -- Null_Exclusion_Present (Flag11)
4971 -- Result_Definition (Node4) for result subtype
4972 -- Generic_Parent (Node5-Sem)
4973 -- Must_Override (Flag14) set if overriding indicator present
4974 -- Must_Not_Override (Flag15) set if not_overriding indicator present
4976 -- N_Procedure_Specification
4977 -- Sloc points to PROCEDURE
4978 -- Defining_Unit_Name (Node1)
4979 -- Parameter_Specifications (List3) (set to No_List if no formal part)
4980 -- Generic_Parent (Node5-Sem)
4981 -- Null_Present (Flag13) set for null procedure case (Ada 2005 feature)
4982 -- Must_Override (Flag14) set if overriding indicator present
4983 -- Must_Not_Override (Flag15) set if not_overriding indicator present
4985 -- Note: overriding indicator is an Ada 2005 feature
4987 ---------------------
4988 -- 6.1 Designator --
4989 ---------------------
4991 -- DESIGNATOR ::=
4992 -- [PARENT_UNIT_NAME .] IDENTIFIER | OPERATOR_SYMBOL
4994 -- Designators that are simply identifiers or operator symbols appear
4995 -- directly in the tree in this form. The following node is used only
4996 -- in the case where the designator has a parent unit name component.
4998 -- N_Designator
4999 -- Sloc points to period
5000 -- Name (Node2) holds the parent unit name
5001 -- Identifier (Node1)
5003 -- Note: Name is always non-Empty, since this node is only used for the
5004 -- case where a parent library unit package name is present.
5006 -- Note that the identifier can also be an operator symbol here
5008 ------------------------------
5009 -- 6.1 Defining Designator --
5010 ------------------------------
5012 -- DEFINING_DESIGNATOR ::=
5013 -- DEFINING_PROGRAM_UNIT_NAME | DEFINING_OPERATOR_SYMBOL
5015 -------------------------------------
5016 -- 6.1 Defining Program Unit Name --
5017 -------------------------------------
5019 -- DEFINING_PROGRAM_UNIT_NAME ::=
5020 -- [PARENT_UNIT_NAME .] DEFINING_IDENTIFIER
5022 -- The parent unit name is present only in the case of a child unit name
5023 -- (permissible only for Ada 95 for a library level unit, i.e. a unit
5024 -- at scope level one). If no such name is present, the defining program
5025 -- unit name is represented simply as the defining identifier. In the
5026 -- child unit case, the following node is used to represent the child
5027 -- unit name.
5029 -- N_Defining_Program_Unit_Name
5030 -- Sloc points to period
5031 -- Name (Node2) holds the parent unit name
5032 -- Defining_Identifier (Node1)
5034 -- Note: Name is always non-Empty, since this node is only used for the
5035 -- case where a parent unit name is present.
5037 --------------------------
5038 -- 6.1 Operator Symbol --
5039 --------------------------
5041 -- OPERATOR_SYMBOL ::= STRING_LITERAL
5043 -- Note: the fields of the N_Operator_Symbol node are laid out to match
5044 -- the corresponding fields of an N_Character_Literal node. This allows
5045 -- easy conversion of the operator symbol node into a character literal
5046 -- node in the case where a string constant of the form of an operator
5047 -- symbol is scanned out as such, but turns out semantically to be a
5048 -- string literal that is not an operator. For details see Sinfo.CN.
5049 -- Change_Operator_Symbol_To_String_Literal.
5051 -- N_Operator_Symbol
5052 -- Sloc points to literal
5053 -- Chars (Name1) contains the Name_Id for the operator symbol
5054 -- Strval (Str3) Id of string value. This is used if the operator
5055 -- symbol turns out to be a normal string after all.
5056 -- Entity (Node4-Sem)
5057 -- Associated_Node (Node4-Sem)
5058 -- Has_Private_View (Flag11-Sem) set in generic units.
5059 -- Etype (Node5-Sem)
5061 -- Note: the Strval field may be set to No_String for generated
5062 -- operator symbols that are known not to be string literals
5063 -- semantically.
5065 -----------------------------------
5066 -- 6.1 Defining Operator Symbol --
5067 -----------------------------------
5069 -- DEFINING_OPERATOR_SYMBOL ::= OPERATOR_SYMBOL
5071 -- A defining operator symbol is an entity, which has additional
5072 -- fields depending on the setting of the Ekind field. These
5073 -- additional fields are defined (and access subprograms declared)
5074 -- in package Einfo.
5076 -- Note: N_Defining_Operator_Symbol is an extended node whose fields
5077 -- are deliberately layed out to match the layout of fields in an
5078 -- ordinary N_Operator_Symbol node allowing for easy alteration of
5079 -- an operator symbol node into a defining operator symbol node.
5080 -- See Sinfo.CN.Change_Operator_Symbol_To_Defining_Operator_Symbol
5081 -- for further details.
5083 -- N_Defining_Operator_Symbol
5084 -- Sloc points to literal
5085 -- Chars (Name1) contains the Name_Id for the operator symbol
5086 -- Next_Entity (Node2-Sem)
5087 -- Scope (Node3-Sem)
5088 -- Etype (Node5-Sem)
5090 ----------------------------
5091 -- 6.1 Parameter Profile --
5092 ----------------------------
5094 -- PARAMETER_PROFILE ::= [FORMAL_PART]
5096 ---------------------------------------
5097 -- 6.1 Parameter and Result Profile --
5098 ---------------------------------------
5100 -- PARAMETER_AND_RESULT_PROFILE ::=
5101 -- [FORMAL_PART] return [NULL_EXCLUSION] SUBTYPE_MARK
5102 -- | [FORMAL_PART] return ACCESS_DEFINITION
5104 -- There is no explicit node in the tree for a parameter and result
5105 -- profile. Instead the information appears directly in the parent.
5107 ----------------------
5108 -- 6.1 Formal Part --
5109 ----------------------
5111 -- FORMAL_PART ::=
5112 -- (PARAMETER_SPECIFICATION {; PARAMETER_SPECIFICATION})
5114 ----------------------------------
5115 -- 6.1 Parameter Specification --
5116 ----------------------------------
5118 -- PARAMETER_SPECIFICATION ::=
5119 -- DEFINING_IDENTIFIER_LIST : [ALIASED] MODE [NULL_EXCLUSION]
5120 -- SUBTYPE_MARK [:= DEFAULT_EXPRESSION]
5121 -- | DEFINING_IDENTIFIER_LIST : ACCESS_DEFINITION
5122 -- [:= DEFAULT_EXPRESSION]
5124 -- Although the syntax allows multiple identifiers in the list, the
5125 -- semantics is as though successive specifications were given with
5126 -- identical type definition and expression components. To simplify
5127 -- semantic processing, the parser represents a multiple declaration
5128 -- case as a sequence of single Specifications, using the More_Ids and
5129 -- Prev_Ids flags to preserve the original source form as described
5130 -- in the section on "Handling of Defining Identifier Lists".
5132 -- ALIASED can only be present in Ada 2012 mode
5134 -- N_Parameter_Specification
5135 -- Sloc points to first identifier
5136 -- Defining_Identifier (Node1)
5137 -- Aliased_Present (Flag4)
5138 -- In_Present (Flag15)
5139 -- Out_Present (Flag17)
5140 -- Null_Exclusion_Present (Flag11)
5141 -- Parameter_Type (Node2) subtype mark or access definition
5142 -- Expression (Node3) (set to Empty if no default expression present)
5143 -- Do_Accessibility_Check (Flag13-Sem)
5144 -- More_Ids (Flag5) (set to False if no more identifiers in list)
5145 -- Prev_Ids (Flag6) (set to False if no previous identifiers in list)
5146 -- Default_Expression (Node5-Sem)
5148 ---------------
5149 -- 6.1 Mode --
5150 ---------------
5152 -- MODE ::= [in] | in out | out
5154 -- There is no explicit node in the tree for the Mode. Instead the
5155 -- In_Present and Out_Present flags are set in the parent node to
5156 -- record the presence of keywords specifying the mode.
5158 --------------------------
5159 -- 6.3 Subprogram Body --
5160 --------------------------
5162 -- SUBPROGRAM_BODY ::=
5163 -- SUBPROGRAM_SPECIFICATION [ASPECT_SPECIFICATIONS] is
5164 -- DECLARATIVE_PART
5165 -- begin
5166 -- HANDLED_SEQUENCE_OF_STATEMENTS
5167 -- end [DESIGNATOR];
5169 -- N_Subprogram_Body
5170 -- Sloc points to FUNCTION or PROCEDURE
5171 -- Specification (Node1)
5172 -- Declarations (List2)
5173 -- Handled_Statement_Sequence (Node4)
5174 -- Activation_Chain_Entity (Node3-Sem)
5175 -- Corresponding_Spec (Node5-Sem)
5176 -- Acts_As_Spec (Flag4-Sem)
5177 -- Bad_Is_Detected (Flag15) used only by parser
5178 -- Do_Storage_Check (Flag17-Sem)
5179 -- Is_Protected_Subprogram_Body (Flag7-Sem)
5180 -- Is_Entry_Barrier_Function (Flag8-Sem)
5181 -- Is_Task_Master (Flag5-Sem)
5182 -- Was_Originally_Stub (Flag13-Sem)
5183 -- Has_Relative_Deadline_Pragma (Flag9-Sem)
5185 -------------------------
5186 -- Expression Function --
5187 -------------------------
5189 -- This is an Ada 2012 extension, we put it here for now, to be labeled
5190 -- and put in its proper section when we know exactly where that is.
5192 -- EXPRESSION_FUNCTION ::=
5193 -- FUNCTION SPECIFICATION IS (EXPRESSION)
5194 -- [ASPECT_SPECIFICATIONS];
5196 -- N_Expression_Function
5197 -- Sloc points to FUNCTION
5198 -- Specification (Node1)
5199 -- Expression (Node3)
5200 -- Corresponding_Spec (Node5-Sem)
5202 -----------------------------------
5203 -- 6.4 Procedure Call Statement --
5204 -----------------------------------
5206 -- PROCEDURE_CALL_STATEMENT ::=
5207 -- procedure_NAME; | procedure_PREFIX ACTUAL_PARAMETER_PART;
5209 -- Note: the reason that a procedure call has expression fields is that
5210 -- it semantically resembles an expression, e.g. overloading is allowed
5211 -- and a type is concocted for semantic processing purposes. Certain of
5212 -- these fields, such as Parens are not relevant, but it is easier to
5213 -- just supply all of them together.
5215 -- N_Procedure_Call_Statement
5216 -- Sloc points to first token of name or prefix
5217 -- Name (Node2) stores name or prefix
5218 -- Parameter_Associations (List3) (set to No_List if no
5219 -- actual parameter part)
5220 -- First_Named_Actual (Node4-Sem)
5221 -- Controlling_Argument (Node1-Sem) (set to Empty if not dispatching)
5222 -- Do_Tag_Check (Flag13-Sem)
5223 -- No_Elaboration_Check (Flag14-Sem)
5224 -- ABE_Is_Certain (Flag18-Sem)
5225 -- plus fields for expression
5227 -- If any IN parameter requires a range check, then the corresponding
5228 -- argument expression has the Do_Range_Check flag set, and the range
5229 -- check is done against the formal type. Note that this argument
5230 -- expression may appear directly in the Parameter_Associations list,
5231 -- or may be a descendent of an N_Parameter_Association node that
5232 -- appears in this list.
5234 ------------------------
5235 -- 6.4 Function Call --
5236 ------------------------
5238 -- FUNCTION_CALL ::=
5239 -- function_NAME | function_PREFIX ACTUAL_PARAMETER_PART
5241 -- Note: the parser may generate an indexed component node or simply
5242 -- a name node instead of a function call node. The semantic pass must
5243 -- correct this misidentification.
5245 -- N_Function_Call
5246 -- Sloc points to first token of name or prefix
5247 -- Name (Node2) stores name or prefix
5248 -- Parameter_Associations (List3) (set to No_List if no
5249 -- actual parameter part)
5250 -- First_Named_Actual (Node4-Sem)
5251 -- Controlling_Argument (Node1-Sem) (set to Empty if not dispatching)
5252 -- Is_Expanded_Build_In_Place_Call (Flag11-Sem)
5253 -- Do_Tag_Check (Flag13-Sem)
5254 -- No_Elaboration_Check (Flag14-Sem)
5255 -- ABE_Is_Certain (Flag18-Sem)
5256 -- plus fields for expression
5258 --------------------------------
5259 -- 6.4 Actual Parameter Part --
5260 --------------------------------
5262 -- ACTUAL_PARAMETER_PART ::=
5263 -- (PARAMETER_ASSOCIATION {,PARAMETER_ASSOCIATION})
5265 --------------------------------
5266 -- 6.4 Parameter Association --
5267 --------------------------------
5269 -- PARAMETER_ASSOCIATION ::=
5270 -- [formal_parameter_SELECTOR_NAME =>] EXPLICIT_ACTUAL_PARAMETER
5272 -- Note: the N_Parameter_Association node is built only if a formal
5273 -- parameter selector name is present, otherwise the parameter
5274 -- association appears in the tree simply as the node for the
5275 -- explicit actual parameter.
5277 -- N_Parameter_Association
5278 -- Sloc points to formal parameter
5279 -- Selector_Name (Node2) (always non-Empty)
5280 -- Explicit_Actual_Parameter (Node3)
5281 -- Next_Named_Actual (Node4-Sem)
5282 -- Is_Accessibility_Actual (Flag13-Sem)
5284 ---------------------------
5285 -- 6.4 Actual Parameter --
5286 ---------------------------
5288 -- EXPLICIT_ACTUAL_PARAMETER ::= EXPRESSION | variable_NAME
5290 ---------------------------
5291 -- 6.5 Return Statement --
5292 ---------------------------
5294 -- SIMPLE_RETURN_STATEMENT ::= return [EXPRESSION];
5296 -- EXTENDED_RETURN_STATEMENT ::=
5297 -- return DEFINING_IDENTIFIER : [aliased] RETURN_SUBTYPE_INDICATION
5298 -- [:= EXPRESSION] [do
5299 -- HANDLED_SEQUENCE_OF_STATEMENTS
5300 -- end return];
5302 -- RETURN_SUBTYPE_INDICATION ::= SUBTYPE_INDICATION | ACCESS_DEFINITION
5304 -- The term "return statement" is defined in 6.5 to mean either a
5305 -- SIMPLE_RETURN_STATEMENT or an EXTENDED_RETURN_STATEMENT. We avoid
5306 -- the use of this term, since it used to mean someting else in earlier
5307 -- versions of Ada.
5309 -- N_Simple_Return_Statement
5310 -- Sloc points to RETURN
5311 -- Return_Statement_Entity (Node5-Sem)
5312 -- Expression (Node3) (set to Empty if no expression present)
5313 -- Storage_Pool (Node1-Sem)
5314 -- Procedure_To_Call (Node2-Sem)
5315 -- Do_Tag_Check (Flag13-Sem)
5316 -- By_Ref (Flag5-Sem)
5317 -- Comes_From_Extended_Return_Statement (Flag18-Sem)
5319 -- Note: Return_Statement_Entity points to an E_Return_Statement
5321 -- If a range check is required, then Do_Range_Check is set on the
5322 -- Expression. The check is against the return subtype of the function.
5324 -- N_Extended_Return_Statement
5325 -- Sloc points to RETURN
5326 -- Return_Statement_Entity (Node5-Sem)
5327 -- Return_Object_Declarations (List3)
5328 -- Handled_Statement_Sequence (Node4) (set to Empty if not present)
5329 -- Storage_Pool (Node1-Sem)
5330 -- Procedure_To_Call (Node2-Sem)
5331 -- Do_Tag_Check (Flag13-Sem)
5332 -- By_Ref (Flag5-Sem)
5334 -- Note: Return_Statement_Entity points to an E_Return_Statement.
5336 -- Note that Return_Object_Declarations is a list containing the
5337 -- N_Object_Declaration -- see comment on this field above.
5339 -- The declared object will have Is_Return_Object = True.
5341 -- There is no such syntactic category as return_object_declaration
5342 -- in the RM. Return_Object_Declarations represents this portion of
5343 -- the syntax for EXTENDED_RETURN_STATEMENT:
5344 -- DEFINING_IDENTIFIER : [aliased] RETURN_SUBTYPE_INDICATION
5345 -- [:= EXPRESSION]
5347 -- There are two entities associated with an extended_return_statement:
5348 -- the Return_Statement_Entity represents the statement itself,
5349 -- and the Defining_Identifier of the Object_Declaration in
5350 -- Return_Object_Declarations represents the object being
5351 -- returned. N_Simple_Return_Statement has only the former.
5353 ------------------------------
5354 -- 7.1 Package Declaration --
5355 ------------------------------
5357 -- PACKAGE_DECLARATION ::=
5358 -- PACKAGE_SPECIFICATION;
5360 -- Note: the activation chain entity for a package spec is used for
5361 -- all tasks declared in the package spec, or in the package body.
5363 -- N_Package_Declaration
5364 -- Sloc points to PACKAGE
5365 -- Specification (Node1)
5366 -- Corresponding_Body (Node5-Sem)
5367 -- Parent_Spec (Node4-Sem)
5368 -- Activation_Chain_Entity (Node3-Sem)
5370 --------------------------------
5371 -- 7.1 Package Specification --
5372 --------------------------------
5374 -- PACKAGE_SPECIFICATION ::=
5375 -- package DEFINING_PROGRAM_UNIT_NAME
5376 -- [ASPECT_SPECIFICATIONS]
5377 -- is
5378 -- {BASIC_DECLARATIVE_ITEM}
5379 -- [private
5380 -- {BASIC_DECLARATIVE_ITEM}]
5381 -- end [[PARENT_UNIT_NAME .] IDENTIFIER]
5383 -- N_Package_Specification
5384 -- Sloc points to PACKAGE
5385 -- Defining_Unit_Name (Node1)
5386 -- Visible_Declarations (List2)
5387 -- Private_Declarations (List3) (set to No_List if no private
5388 -- part present)
5389 -- End_Label (Node4)
5390 -- Generic_Parent (Node5-Sem)
5391 -- Limited_View_Installed (Flag18-Sem)
5393 -----------------------
5394 -- 7.1 Package Body --
5395 -----------------------
5397 -- PACKAGE_BODY ::=
5398 -- package body DEFINING_PROGRAM_UNIT_NAME
5399 -- [ASPECT_SPECIFICATIONS]
5400 -- is
5401 -- DECLARATIVE_PART
5402 -- [begin
5403 -- HANDLED_SEQUENCE_OF_STATEMENTS]
5404 -- end [[PARENT_UNIT_NAME .] IDENTIFIER];
5406 -- N_Package_Body
5407 -- Sloc points to PACKAGE
5408 -- Defining_Unit_Name (Node1)
5409 -- Declarations (List2)
5410 -- Handled_Statement_Sequence (Node4) (set to Empty if no HSS present)
5411 -- Corresponding_Spec (Node5-Sem)
5412 -- Was_Originally_Stub (Flag13-Sem)
5414 -- Note: if a source level package does not contain a handled sequence
5415 -- of statements, then the parser supplies a dummy one with a null
5416 -- sequence of statements. Comes_From_Source will be False in this
5417 -- constructed sequence. The reason we need this is for the End_Label
5418 -- field in the HSS.
5420 -----------------------------------
5421 -- 7.4 Private Type Declaration --
5422 -----------------------------------
5424 -- PRIVATE_TYPE_DECLARATION ::=
5425 -- type DEFINING_IDENTIFIER [DISCRIMINANT_PART]
5426 -- is [[abstract] tagged] [limited] private
5427 -- [ASPECT_SPECIFICATIONS];
5429 -- Note: TAGGED is not permitted in Ada 83 mode
5431 -- N_Private_Type_Declaration
5432 -- Sloc points to TYPE
5433 -- Defining_Identifier (Node1)
5434 -- Discriminant_Specifications (List4) (set to No_List if no
5435 -- discriminant part)
5436 -- Unknown_Discriminants_Present (Flag13) set if (<>) discriminant
5437 -- Abstract_Present (Flag4)
5438 -- Tagged_Present (Flag15)
5439 -- Limited_Present (Flag17)
5441 ----------------------------------------
5442 -- 7.4 Private Extension Declaration --
5443 ----------------------------------------
5445 -- PRIVATE_EXTENSION_DECLARATION ::=
5446 -- type DEFINING_IDENTIFIER [DISCRIMINANT_PART] is
5447 -- [abstract] [limited | synchronized]
5448 -- new ancestor_SUBTYPE_INDICATION [and INTERFACE_LIST]
5449 -- with private [ASPECT_SPECIFICATIONS];
5451 -- Note: LIMITED, and private extension declarations are not allowed
5452 -- in Ada 83 mode.
5454 -- N_Private_Extension_Declaration
5455 -- Sloc points to TYPE
5456 -- Defining_Identifier (Node1)
5457 -- Uninitialized_Variable (Node3-Sem)
5458 -- Discriminant_Specifications (List4) (set to No_List if no
5459 -- discriminant part)
5460 -- Unknown_Discriminants_Present (Flag13) set if (<>) discriminant
5461 -- Abstract_Present (Flag4)
5462 -- Limited_Present (Flag17)
5463 -- Synchronized_Present (Flag7)
5464 -- Subtype_Indication (Node5)
5465 -- Interface_List (List2) (set to No_List if none)
5467 ---------------------
5468 -- 8.4 Use Clause --
5469 ---------------------
5471 -- USE_CLAUSE ::= USE_PACKAGE_CLAUSE | USE_TYPE_CLAUSE
5473 -----------------------------
5474 -- 8.4 Use Package Clause --
5475 -----------------------------
5477 -- USE_PACKAGE_CLAUSE ::= use package_NAME {, package_NAME};
5479 -- N_Use_Package_Clause
5480 -- Sloc points to USE
5481 -- Names (List2)
5482 -- Next_Use_Clause (Node3-Sem)
5483 -- Hidden_By_Use_Clause (Elist4-Sem)
5485 --------------------------
5486 -- 8.4 Use Type Clause --
5487 --------------------------
5489 -- USE_TYPE_CLAUSE ::= use [ALL] type SUBTYPE_MARK {, SUBTYPE_MARK};
5491 -- Note: use type clause is not permitted in Ada 83 mode
5493 -- Note: the ALL keyword can appear only in Ada 2012 mode
5495 -- N_Use_Type_Clause
5496 -- Sloc points to USE
5497 -- Subtype_Marks (List2)
5498 -- Next_Use_Clause (Node3-Sem)
5499 -- Hidden_By_Use_Clause (Elist4-Sem)
5500 -- Used_Operations (Elist5-Sem)
5501 -- All_Present (Flag15)
5503 -------------------------------
5504 -- 8.5 Renaming Declaration --
5505 -------------------------------
5507 -- RENAMING_DECLARATION ::=
5508 -- OBJECT_RENAMING_DECLARATION
5509 -- | EXCEPTION_RENAMING_DECLARATION
5510 -- | PACKAGE_RENAMING_DECLARATION
5511 -- | SUBPROGRAM_RENAMING_DECLARATION
5512 -- | GENERIC_RENAMING_DECLARATION
5514 --------------------------------------
5515 -- 8.5 Object Renaming Declaration --
5516 --------------------------------------
5518 -- OBJECT_RENAMING_DECLARATION ::=
5519 -- DEFINING_IDENTIFIER :
5520 -- [NULL_EXCLUSION] SUBTYPE_MARK renames object_NAME
5521 -- [ASPECT_SPECIFICATIONS];
5522 -- | DEFINING_IDENTIFIER :
5523 -- ACCESS_DEFINITION renames object_NAME
5524 -- [ASPECT_SPECIFICATIONS];
5526 -- Note: Access_Definition is an optional field that gives support to
5527 -- Ada 2005 (AI-230). The parser generates nodes that have either the
5528 -- Subtype_Indication field or else the Access_Definition field.
5530 -- N_Object_Renaming_Declaration
5531 -- Sloc points to first identifier
5532 -- Defining_Identifier (Node1)
5533 -- Null_Exclusion_Present (Flag11) (set to False if not present)
5534 -- Subtype_Mark (Node4) (set to Empty if not present)
5535 -- Access_Definition (Node3) (set to Empty if not present)
5536 -- Name (Node2)
5537 -- Corresponding_Generic_Association (Node5-Sem)
5539 -----------------------------------------
5540 -- 8.5 Exception Renaming Declaration --
5541 -----------------------------------------
5543 -- EXCEPTION_RENAMING_DECLARATION ::=
5544 -- DEFINING_IDENTIFIER : exception renames exception_NAME
5545 -- [ASPECT_SPECIFICATIONS];
5547 -- N_Exception_Renaming_Declaration
5548 -- Sloc points to first identifier
5549 -- Defining_Identifier (Node1)
5550 -- Name (Node2)
5552 ---------------------------------------
5553 -- 8.5 Package Renaming Declaration --
5554 ---------------------------------------
5556 -- PACKAGE_RENAMING_DECLARATION ::=
5557 -- package DEFINING_PROGRAM_UNIT_NAME renames package_NAME
5558 -- [ASPECT_SPECIFICATIONS];
5560 -- N_Package_Renaming_Declaration
5561 -- Sloc points to PACKAGE
5562 -- Defining_Unit_Name (Node1)
5563 -- Name (Node2)
5564 -- Parent_Spec (Node4-Sem)
5566 ------------------------------------------
5567 -- 8.5 Subprogram Renaming Declaration --
5568 ------------------------------------------
5570 -- SUBPROGRAM_RENAMING_DECLARATION ::=
5571 -- SUBPROGRAM_SPECIFICATION renames callable_entity_NAME
5572 -- [ASPECT_SPECIFICATIONS];
5574 -- N_Subprogram_Renaming_Declaration
5575 -- Sloc points to RENAMES
5576 -- Specification (Node1)
5577 -- Name (Node2)
5578 -- Parent_Spec (Node4-Sem)
5579 -- Corresponding_Spec (Node5-Sem)
5580 -- Corresponding_Formal_Spec (Node3-Sem)
5581 -- From_Default (Flag6-Sem)
5583 -----------------------------------------
5584 -- 8.5.5 Generic Renaming Declaration --
5585 -----------------------------------------
5587 -- GENERIC_RENAMING_DECLARATION ::=
5588 -- generic package DEFINING_PROGRAM_UNIT_NAME
5589 -- renames generic_package_NAME
5590 -- [ASPECT_SPECIFICATIONS];
5591 -- | generic procedure DEFINING_PROGRAM_UNIT_NAME
5592 -- renames generic_procedure_NAME
5593 -- [ASPECT_SPECIFICATIONS];
5594 -- | generic function DEFINING_PROGRAM_UNIT_NAME
5595 -- renames generic_function_NAME
5596 -- [ASPECT_SPECIFICATIONS];
5598 -- N_Generic_Package_Renaming_Declaration
5599 -- Sloc points to GENERIC
5600 -- Defining_Unit_Name (Node1)
5601 -- Name (Node2)
5602 -- Parent_Spec (Node4-Sem)
5604 -- N_Generic_Procedure_Renaming_Declaration
5605 -- Sloc points to GENERIC
5606 -- Defining_Unit_Name (Node1)
5607 -- Name (Node2)
5608 -- Parent_Spec (Node4-Sem)
5610 -- N_Generic_Function_Renaming_Declaration
5611 -- Sloc points to GENERIC
5612 -- Defining_Unit_Name (Node1)
5613 -- Name (Node2)
5614 -- Parent_Spec (Node4-Sem)
5616 --------------------------------
5617 -- 9.1 Task Type Declaration --
5618 --------------------------------
5620 -- TASK_TYPE_DECLARATION ::=
5621 -- task type DEFINING_IDENTIFIER [KNOWN_DISCRIMINANT_PART]
5622 -- [ASPECT_SPECIFICATIONS]
5623 -- [is [new INTERFACE_LIST with] TASK_DEFINITION];
5625 -- N_Task_Type_Declaration
5626 -- Sloc points to TASK
5627 -- Defining_Identifier (Node1)
5628 -- Discriminant_Specifications (List4) (set to No_List if no
5629 -- discriminant part)
5630 -- Interface_List (List2) (set to No_List if none)
5631 -- Task_Definition (Node3) (set to Empty if not present)
5632 -- Corresponding_Body (Node5-Sem)
5634 ----------------------------------
5635 -- 9.1 Single Task Declaration --
5636 ----------------------------------
5638 -- SINGLE_TASK_DECLARATION ::=
5639 -- task DEFINING_IDENTIFIER
5640 -- [ASPECT_SPECIFICATIONS]
5641 -- [is [new INTERFACE_LIST with] TASK_DEFINITION];
5643 -- N_Single_Task_Declaration
5644 -- Sloc points to TASK
5645 -- Defining_Identifier (Node1)
5646 -- Interface_List (List2) (set to No_List if none)
5647 -- Task_Definition (Node3) (set to Empty if not present)
5649 --------------------------
5650 -- 9.1 Task Definition --
5651 --------------------------
5653 -- TASK_DEFINITION ::=
5654 -- {TASK_ITEM}
5655 -- [private
5656 -- {TASK_ITEM}]
5657 -- end [task_IDENTIFIER]
5659 -- Note: as a result of semantic analysis, the list of task items can
5660 -- include implicit type declarations resulting from entry families.
5662 -- N_Task_Definition
5663 -- Sloc points to first token of task definition
5664 -- Visible_Declarations (List2)
5665 -- Private_Declarations (List3) (set to No_List if no private part)
5666 -- End_Label (Node4)
5667 -- Has_Storage_Size_Pragma (Flag5-Sem)
5668 -- Has_Relative_Deadline_Pragma (Flag9-Sem)
5670 --------------------
5671 -- 9.1 Task Item --
5672 --------------------
5674 -- TASK_ITEM ::= ENTRY_DECLARATION | REPRESENTATION_CLAUSE
5676 --------------------
5677 -- 9.1 Task Body --
5678 --------------------
5680 -- TASK_BODY ::=
5681 -- task body task_DEFINING_IDENTIFIER
5682 -- [ASPECT_SPECIFICATIONS]
5683 -- is
5684 -- DECLARATIVE_PART
5685 -- begin
5686 -- HANDLED_SEQUENCE_OF_STATEMENTS
5687 -- end [task_IDENTIFIER];
5689 -- Gigi restriction: This node never appears
5691 -- N_Task_Body
5692 -- Sloc points to TASK
5693 -- Defining_Identifier (Node1)
5694 -- Declarations (List2)
5695 -- Handled_Statement_Sequence (Node4)
5696 -- Is_Task_Master (Flag5-Sem)
5697 -- Activation_Chain_Entity (Node3-Sem)
5698 -- Corresponding_Spec (Node5-Sem)
5699 -- Was_Originally_Stub (Flag13-Sem)
5701 -------------------------------------
5702 -- 9.4 Protected Type Declaration --
5703 -------------------------------------
5705 -- PROTECTED_TYPE_DECLARATION ::=
5706 -- protected type DEFINING_IDENTIFIER [KNOWN_DISCRIMINANT_PART]
5707 -- [ASPECT_SPECIFICATIONS]
5708 -- is [new INTERFACE_LIST with] PROTECTED_DEFINITION;
5710 -- Note: protected type declarations are not permitted in Ada 83 mode
5712 -- N_Protected_Type_Declaration
5713 -- Sloc points to PROTECTED
5714 -- Defining_Identifier (Node1)
5715 -- Discriminant_Specifications (List4) (set to No_List if no
5716 -- discriminant part)
5717 -- Interface_List (List2) (set to No_List if none)
5718 -- Protected_Definition (Node3)
5719 -- Corresponding_Body (Node5-Sem)
5721 ---------------------------------------
5722 -- 9.4 Single Protected Declaration --
5723 ---------------------------------------
5725 -- SINGLE_PROTECTED_DECLARATION ::=
5726 -- protected DEFINING_IDENTIFIER
5727 -- [ASPECT_SPECIFICATIONS]
5728 -- is [new INTERFACE_LIST with] PROTECTED_DEFINITION;
5730 -- Note: single protected declarations are not allowed in Ada 83 mode
5732 -- N_Single_Protected_Declaration
5733 -- Sloc points to PROTECTED
5734 -- Defining_Identifier (Node1)
5735 -- Interface_List (List2) (set to No_List if none)
5736 -- Protected_Definition (Node3)
5738 -------------------------------
5739 -- 9.4 Protected Definition --
5740 -------------------------------
5742 -- PROTECTED_DEFINITION ::=
5743 -- {PROTECTED_OPERATION_DECLARATION}
5744 -- [private
5745 -- {PROTECTED_ELEMENT_DECLARATION}]
5746 -- end [protected_IDENTIFIER]
5748 -- N_Protected_Definition
5749 -- Sloc points to first token of protected definition
5750 -- Visible_Declarations (List2)
5751 -- Private_Declarations (List3) (set to No_List if no private part)
5752 -- End_Label (Node4)
5754 ------------------------------------------
5755 -- 9.4 Protected Operation Declaration --
5756 ------------------------------------------
5758 -- PROTECTED_OPERATION_DECLARATION ::=
5759 -- SUBPROGRAM_DECLARATION
5760 -- | ENTRY_DECLARATION
5761 -- | REPRESENTATION_CLAUSE
5763 ----------------------------------------
5764 -- 9.4 Protected Element Declaration --
5765 ----------------------------------------
5767 -- PROTECTED_ELEMENT_DECLARATION ::=
5768 -- PROTECTED_OPERATION_DECLARATION | COMPONENT_DECLARATION
5770 -------------------------
5771 -- 9.4 Protected Body --
5772 -------------------------
5774 -- PROTECTED_BODY ::=
5775 -- protected body DEFINING_IDENTIFIER
5776 -- [ASPECT_SPECIFICATIONS];
5777 -- is
5778 -- {PROTECTED_OPERATION_ITEM}
5779 -- end [protected_IDENTIFIER];
5781 -- Note: protected bodies are not allowed in Ada 83 mode
5783 -- Gigi restriction: This node never appears
5785 -- N_Protected_Body
5786 -- Sloc points to PROTECTED
5787 -- Defining_Identifier (Node1)
5788 -- Declarations (List2) protected operation items (and pragmas)
5789 -- End_Label (Node4)
5790 -- Corresponding_Spec (Node5-Sem)
5791 -- Was_Originally_Stub (Flag13-Sem)
5793 -----------------------------------
5794 -- 9.4 Protected Operation Item --
5795 -----------------------------------
5797 -- PROTECTED_OPERATION_ITEM ::=
5798 -- SUBPROGRAM_DECLARATION
5799 -- | SUBPROGRAM_BODY
5800 -- | ENTRY_BODY
5801 -- | REPRESENTATION_CLAUSE
5803 ------------------------------
5804 -- 9.5.2 Entry Declaration --
5805 ------------------------------
5807 -- ENTRY_DECLARATION ::=
5808 -- [[not] overriding]
5809 -- entry DEFINING_IDENTIFIER
5810 -- [(DISCRETE_SUBTYPE_DEFINITION)] PARAMETER_PROFILE
5811 -- [ASPECT_SPECIFICATIONS];
5813 -- N_Entry_Declaration
5814 -- Sloc points to ENTRY
5815 -- Defining_Identifier (Node1)
5816 -- Discrete_Subtype_Definition (Node4) (set to Empty if not present)
5817 -- Parameter_Specifications (List3) (set to No_List if no formal part)
5818 -- Corresponding_Body (Node5-Sem)
5819 -- Must_Override (Flag14) set if overriding indicator present
5820 -- Must_Not_Override (Flag15) set if not_overriding indicator present
5822 -- Note: overriding indicator is an Ada 2005 feature
5824 -----------------------------
5825 -- 9.5.2 Accept statement --
5826 -----------------------------
5828 -- ACCEPT_STATEMENT ::=
5829 -- accept entry_DIRECT_NAME
5830 -- [(ENTRY_INDEX)] PARAMETER_PROFILE [do
5831 -- HANDLED_SEQUENCE_OF_STATEMENTS
5832 -- end [entry_IDENTIFIER]];
5834 -- Gigi restriction: This node never appears
5836 -- Note: there are no explicit declarations allowed in an accept
5837 -- statement. However, the implicit declarations for any statement
5838 -- identifiers (labels and block/loop identifiers) are declarations
5839 -- that belong logically to the accept statement, and that is why
5840 -- there is a Declarations field in this node.
5842 -- N_Accept_Statement
5843 -- Sloc points to ACCEPT
5844 -- Entry_Direct_Name (Node1)
5845 -- Entry_Index (Node5) (set to Empty if not present)
5846 -- Parameter_Specifications (List3) (set to No_List if no formal part)
5847 -- Handled_Statement_Sequence (Node4)
5848 -- Declarations (List2) (set to No_List if no declarations)
5850 ------------------------
5851 -- 9.5.2 Entry Index --
5852 ------------------------
5854 -- ENTRY_INDEX ::= EXPRESSION
5856 -----------------------
5857 -- 9.5.2 Entry Body --
5858 -----------------------
5860 -- ENTRY_BODY ::=
5861 -- entry DEFINING_IDENTIFIER ENTRY_BODY_FORMAL_PART ENTRY_BARRIER is
5862 -- DECLARATIVE_PART
5863 -- begin
5864 -- HANDLED_SEQUENCE_OF_STATEMENTS
5865 -- end [entry_IDENTIFIER];
5867 -- ENTRY_BARRIER ::= when CONDITION
5869 -- Note: we store the CONDITION of the ENTRY_BARRIER in the node for
5870 -- the ENTRY_BODY_FORMAL_PART to avoid the N_Entry_Body node getting
5871 -- too full (it would otherwise have too many fields)
5873 -- Gigi restriction: This node never appears
5875 -- N_Entry_Body
5876 -- Sloc points to ENTRY
5877 -- Defining_Identifier (Node1)
5878 -- Entry_Body_Formal_Part (Node5)
5879 -- Declarations (List2)
5880 -- Handled_Statement_Sequence (Node4)
5881 -- Activation_Chain_Entity (Node3-Sem)
5883 -----------------------------------
5884 -- 9.5.2 Entry Body Formal Part --
5885 -----------------------------------
5887 -- ENTRY_BODY_FORMAL_PART ::=
5888 -- [(ENTRY_INDEX_SPECIFICATION)] PARAMETER_PROFILE
5890 -- Note that an entry body formal part node is present even if it is
5891 -- empty. This reflects the grammar, in which it is the components of
5892 -- the entry body formal part that are optional, not the entry body
5893 -- formal part itself. Also this means that the barrier condition
5894 -- always has somewhere to be stored.
5896 -- Gigi restriction: This node never appears
5898 -- N_Entry_Body_Formal_Part
5899 -- Sloc points to first token
5900 -- Entry_Index_Specification (Node4) (set to Empty if not present)
5901 -- Parameter_Specifications (List3) (set to No_List if no formal part)
5902 -- Condition (Node1) from entry barrier of entry body
5904 --------------------------
5905 -- 9.5.2 Entry Barrier --
5906 --------------------------
5908 -- ENTRY_BARRIER ::= when CONDITION
5910 --------------------------------------
5911 -- 9.5.2 Entry Index Specification --
5912 --------------------------------------
5914 -- ENTRY_INDEX_SPECIFICATION ::=
5915 -- for DEFINING_IDENTIFIER in DISCRETE_SUBTYPE_DEFINITION
5917 -- Gigi restriction: This node never appears
5919 -- N_Entry_Index_Specification
5920 -- Sloc points to FOR
5921 -- Defining_Identifier (Node1)
5922 -- Discrete_Subtype_Definition (Node4)
5924 ---------------------------------
5925 -- 9.5.3 Entry Call Statement --
5926 ---------------------------------
5928 -- ENTRY_CALL_STATEMENT ::= entry_NAME [ACTUAL_PARAMETER_PART];
5930 -- The parser may generate a procedure call for this construct. The
5931 -- semantic pass must correct this misidentification where needed.
5933 -- Gigi restriction: This node never appears
5935 -- N_Entry_Call_Statement
5936 -- Sloc points to first token of name
5937 -- Name (Node2)
5938 -- Parameter_Associations (List3) (set to No_List if no
5939 -- actual parameter part)
5940 -- First_Named_Actual (Node4-Sem)
5942 ------------------------------
5943 -- 9.5.4 Requeue Statement --
5944 ------------------------------
5946 -- REQUEUE_STATEMENT ::= requeue entry_NAME [with abort];
5948 -- Note: requeue statements are not permitted in Ada 83 mode
5950 -- Gigi restriction: This node never appears
5952 -- N_Requeue_Statement
5953 -- Sloc points to REQUEUE
5954 -- Name (Node2)
5955 -- Abort_Present (Flag15)
5957 --------------------------
5958 -- 9.6 Delay Statement --
5959 --------------------------
5961 -- DELAY_STATEMENT ::=
5962 -- DELAY_UNTIL_STATEMENT
5963 -- | DELAY_RELATIVE_STATEMENT
5965 --------------------------------
5966 -- 9.6 Delay Until Statement --
5967 --------------------------------
5969 -- DELAY_UNTIL_STATEMENT ::= delay until delay_EXPRESSION;
5971 -- Note: delay until statements are not permitted in Ada 83 mode
5973 -- Gigi restriction: This node never appears
5975 -- N_Delay_Until_Statement
5976 -- Sloc points to DELAY
5977 -- Expression (Node3)
5979 -----------------------------------
5980 -- 9.6 Delay Relative Statement --
5981 -----------------------------------
5983 -- DELAY_RELATIVE_STATEMENT ::= delay delay_EXPRESSION;
5985 -- Gigi restriction: This node never appears
5987 -- N_Delay_Relative_Statement
5988 -- Sloc points to DELAY
5989 -- Expression (Node3)
5991 ---------------------------
5992 -- 9.7 Select Statement --
5993 ---------------------------
5995 -- SELECT_STATEMENT ::=
5996 -- SELECTIVE_ACCEPT
5997 -- | TIMED_ENTRY_CALL
5998 -- | CONDITIONAL_ENTRY_CALL
5999 -- | ASYNCHRONOUS_SELECT
6001 -----------------------------
6002 -- 9.7.1 Selective Accept --
6003 -----------------------------
6005 -- SELECTIVE_ACCEPT ::=
6006 -- select
6007 -- [GUARD]
6008 -- SELECT_ALTERNATIVE
6009 -- {or
6010 -- [GUARD]
6011 -- SELECT_ALTERNATIVE}
6012 -- [else
6013 -- SEQUENCE_OF_STATEMENTS]
6014 -- end select;
6016 -- Gigi restriction: This node never appears
6018 -- Note: the guard expression, if present, appears in the node for
6019 -- the select alternative.
6021 -- N_Selective_Accept
6022 -- Sloc points to SELECT
6023 -- Select_Alternatives (List1)
6024 -- Else_Statements (List4) (set to No_List if no else part)
6026 ------------------
6027 -- 9.7.1 Guard --
6028 ------------------
6030 -- GUARD ::= when CONDITION =>
6032 -- As noted above, the CONDITION that is part of a GUARD is included
6033 -- in the node for the select alternative for convenience.
6035 -------------------------------
6036 -- 9.7.1 Select Alternative --
6037 -------------------------------
6039 -- SELECT_ALTERNATIVE ::=
6040 -- ACCEPT_ALTERNATIVE
6041 -- | DELAY_ALTERNATIVE
6042 -- | TERMINATE_ALTERNATIVE
6044 -------------------------------
6045 -- 9.7.1 Accept Alternative --
6046 -------------------------------
6048 -- ACCEPT_ALTERNATIVE ::=
6049 -- ACCEPT_STATEMENT [SEQUENCE_OF_STATEMENTS]
6051 -- Gigi restriction: This node never appears
6053 -- N_Accept_Alternative
6054 -- Sloc points to ACCEPT
6055 -- Accept_Statement (Node2)
6056 -- Condition (Node1) from the guard (set to Empty if no guard present)
6057 -- Statements (List3) (set to Empty_List if no statements)
6058 -- Pragmas_Before (List4) pragmas before alt (set to No_List if none)
6059 -- Accept_Handler_Records (List5-Sem)
6061 ------------------------------
6062 -- 9.7.1 Delay Alternative --
6063 ------------------------------
6065 -- DELAY_ALTERNATIVE ::=
6066 -- DELAY_STATEMENT [SEQUENCE_OF_STATEMENTS]
6068 -- Gigi restriction: This node never appears
6070 -- N_Delay_Alternative
6071 -- Sloc points to DELAY
6072 -- Delay_Statement (Node2)
6073 -- Condition (Node1) from the guard (set to Empty if no guard present)
6074 -- Statements (List3) (set to Empty_List if no statements)
6075 -- Pragmas_Before (List4) pragmas before alt (set to No_List if none)
6077 ----------------------------------
6078 -- 9.7.1 Terminate Alternative --
6079 ----------------------------------
6081 -- TERMINATE_ALTERNATIVE ::= terminate;
6083 -- Gigi restriction: This node never appears
6085 -- N_Terminate_Alternative
6086 -- Sloc points to TERMINATE
6087 -- Condition (Node1) from the guard (set to Empty if no guard present)
6088 -- Pragmas_Before (List4) pragmas before alt (set to No_List if none)
6089 -- Pragmas_After (List5) pragmas after alt (set to No_List if none)
6091 -----------------------------
6092 -- 9.7.2 Timed Entry Call --
6093 -----------------------------
6095 -- TIMED_ENTRY_CALL ::=
6096 -- select
6097 -- ENTRY_CALL_ALTERNATIVE
6098 -- or
6099 -- DELAY_ALTERNATIVE
6100 -- end select;
6102 -- Gigi restriction: This node never appears
6104 -- N_Timed_Entry_Call
6105 -- Sloc points to SELECT
6106 -- Entry_Call_Alternative (Node1)
6107 -- Delay_Alternative (Node4)
6109 -----------------------------------
6110 -- 9.7.2 Entry Call Alternative --
6111 -----------------------------------
6113 -- ENTRY_CALL_ALTERNATIVE ::=
6114 -- PROCEDURE_OR_ENTRY_CALL [SEQUENCE_OF_STATEMENTS]
6116 -- PROCEDURE_OR_ENTRY_CALL ::=
6117 -- PROCEDURE_CALL_STATEMENT | ENTRY_CALL_STATEMENT
6119 -- Gigi restriction: This node never appears
6121 -- N_Entry_Call_Alternative
6122 -- Sloc points to first token of entry call statement
6123 -- Entry_Call_Statement (Node1)
6124 -- Statements (List3) (set to Empty_List if no statements)
6125 -- Pragmas_Before (List4) pragmas before alt (set to No_List if none)
6127 -----------------------------------
6128 -- 9.7.3 Conditional Entry Call --
6129 -----------------------------------
6131 -- CONDITIONAL_ENTRY_CALL ::=
6132 -- select
6133 -- ENTRY_CALL_ALTERNATIVE
6134 -- else
6135 -- SEQUENCE_OF_STATEMENTS
6136 -- end select;
6138 -- Gigi restriction: This node never appears
6140 -- N_Conditional_Entry_Call
6141 -- Sloc points to SELECT
6142 -- Entry_Call_Alternative (Node1)
6143 -- Else_Statements (List4)
6145 --------------------------------
6146 -- 9.7.4 Asynchronous Select --
6147 --------------------------------
6149 -- ASYNCHRONOUS_SELECT ::=
6150 -- select
6151 -- TRIGGERING_ALTERNATIVE
6152 -- then abort
6153 -- ABORTABLE_PART
6154 -- end select;
6156 -- Note: asynchronous select is not permitted in Ada 83 mode
6158 -- Gigi restriction: This node never appears
6160 -- N_Asynchronous_Select
6161 -- Sloc points to SELECT
6162 -- Triggering_Alternative (Node1)
6163 -- Abortable_Part (Node2)
6165 -----------------------------------
6166 -- 9.7.4 Triggering Alternative --
6167 -----------------------------------
6169 -- TRIGGERING_ALTERNATIVE ::=
6170 -- TRIGGERING_STATEMENT [SEQUENCE_OF_STATEMENTS]
6172 -- Gigi restriction: This node never appears
6174 -- N_Triggering_Alternative
6175 -- Sloc points to first token of triggering statement
6176 -- Triggering_Statement (Node1)
6177 -- Statements (List3) (set to Empty_List if no statements)
6178 -- Pragmas_Before (List4) pragmas before alt (set to No_List if none)
6180 ---------------------------------
6181 -- 9.7.4 Triggering Statement --
6182 ---------------------------------
6184 -- TRIGGERING_STATEMENT ::= PROCEDURE_OR_ENTRY_CALL | DELAY_STATEMENT
6186 ---------------------------
6187 -- 9.7.4 Abortable Part --
6188 ---------------------------
6190 -- ABORTABLE_PART ::= SEQUENCE_OF_STATEMENTS
6192 -- Gigi restriction: This node never appears
6194 -- N_Abortable_Part
6195 -- Sloc points to ABORT
6196 -- Statements (List3)
6198 --------------------------
6199 -- 9.8 Abort Statement --
6200 --------------------------
6202 -- ABORT_STATEMENT ::= abort task_NAME {, task_NAME};
6204 -- Gigi restriction: This node never appears
6206 -- N_Abort_Statement
6207 -- Sloc points to ABORT
6208 -- Names (List2)
6210 -------------------------
6211 -- 10.1.1 Compilation --
6212 -------------------------
6214 -- COMPILATION ::= {COMPILATION_UNIT}
6216 -- There is no explicit node in the tree for a compilation, since in
6217 -- general the compiler is processing only a single compilation unit
6218 -- at a time. It is possible to parse multiple units in syntax check
6219 -- only mode, but the trees are discarded in that case.
6221 ------------------------------
6222 -- 10.1.1 Compilation Unit --
6223 ------------------------------
6225 -- COMPILATION_UNIT ::=
6226 -- CONTEXT_CLAUSE LIBRARY_ITEM
6227 -- | CONTEXT_CLAUSE SUBUNIT
6229 -- The N_Compilation_Unit node itself represents the above syntax.
6230 -- However, there are two additional items not reflected in the above
6231 -- syntax. First we have the global declarations that are added by the
6232 -- code generator. These are outer level declarations (so they cannot
6233 -- be represented as being inside the units). An example is the wrapper
6234 -- subprograms that are created to do ABE checking. As always a list of
6235 -- declarations can contain actions as well (i.e. statements), and such
6236 -- statements are executed as part of the elaboration of the unit. Note
6237 -- that all such declarations are elaborated before the library unit.
6239 -- Similarly, certain actions need to be elaborated at the completion
6240 -- of elaboration of the library unit (notably the statement that sets
6241 -- the Boolean flag indicating that elaboration is complete).
6243 -- The third item not reflected in the syntax is pragmas that appear
6244 -- after the compilation unit. As always pragmas are a problem since
6245 -- they are not part of the formal syntax, but can be stuck into the
6246 -- source following a set of ad hoc rules, and we have to find an ad
6247 -- hoc way of sticking them into the tree. For pragmas that appear
6248 -- before the library unit, we just consider them to be part of the
6249 -- context clause, and pragmas can appear in the Context_Items list
6250 -- of the compilation unit. However, pragmas can also appear after
6251 -- the library item.
6253 -- To deal with all these problems, we create an auxiliary node for
6254 -- a compilation unit, referenced from the N_Compilation_Unit node,
6255 -- that contains these items.
6257 -- N_Compilation_Unit
6258 -- Sloc points to first token of defining unit name
6259 -- Library_Unit (Node4-Sem) corresponding/parent spec/body
6260 -- Context_Items (List1) context items and pragmas preceding unit
6261 -- Private_Present (Flag15) set if library unit has private keyword
6262 -- Unit (Node2) library item or subunit
6263 -- Aux_Decls_Node (Node5) points to the N_Compilation_Unit_Aux node
6264 -- Has_No_Elaboration_Code (Flag17-Sem)
6265 -- Body_Required (Flag13-Sem) set for spec if body is required
6266 -- Acts_As_Spec (Flag4-Sem) flag for subprogram body with no spec
6267 -- Context_Pending (Flag16-Sem)
6268 -- First_Inlined_Subprogram (Node3-Sem)
6269 -- Has_Pragma_Suppress_All (Flag14-Sem)
6271 -- N_Compilation_Unit_Aux
6272 -- Sloc is a copy of the Sloc from the N_Compilation_Unit node
6273 -- Declarations (List2) (set to No_List if no global declarations)
6274 -- Actions (List1) (set to No_List if no actions)
6275 -- Pragmas_After (List5) pragmas after unit (set to No_List if none)
6276 -- Config_Pragmas (List4) config pragmas (set to Empty_List if none)
6277 -- Default_Storage_Pool (Node3-Sem)
6279 --------------------------
6280 -- 10.1.1 Library Item --
6281 --------------------------
6283 -- LIBRARY_ITEM ::=
6284 -- [private] LIBRARY_UNIT_DECLARATION
6285 -- | LIBRARY_UNIT_BODY
6286 -- | [private] LIBRARY_UNIT_RENAMING_DECLARATION
6288 -- Note: PRIVATE is not allowed in Ada 83 mode
6290 -- There is no explicit node in the tree for library item, instead
6291 -- the declaration or body, and the flag for private if present,
6292 -- appear in the N_Compilation_Unit node.
6294 --------------------------------------
6295 -- 10.1.1 Library Unit Declaration --
6296 --------------------------------------
6298 -- LIBRARY_UNIT_DECLARATION ::=
6299 -- SUBPROGRAM_DECLARATION | PACKAGE_DECLARATION
6300 -- | GENERIC_DECLARATION | GENERIC_INSTANTIATION
6302 -----------------------------------------------
6303 -- 10.1.1 Library Unit Renaming Declaration --
6304 -----------------------------------------------
6306 -- LIBRARY_UNIT_RENAMING_DECLARATION ::=
6307 -- PACKAGE_RENAMING_DECLARATION
6308 -- | GENERIC_RENAMING_DECLARATION
6309 -- | SUBPROGRAM_RENAMING_DECLARATION
6311 -------------------------------
6312 -- 10.1.1 Library unit body --
6313 -------------------------------
6315 -- LIBRARY_UNIT_BODY ::= SUBPROGRAM_BODY | PACKAGE_BODY
6317 ------------------------------
6318 -- 10.1.1 Parent Unit Name --
6319 ------------------------------
6321 -- PARENT_UNIT_NAME ::= NAME
6323 ----------------------------
6324 -- 10.1.2 Context clause --
6325 ----------------------------
6327 -- CONTEXT_CLAUSE ::= {CONTEXT_ITEM}
6329 -- The context clause can include pragmas, and any pragmas that appear
6330 -- before the context clause proper (i.e. all configuration pragmas,
6331 -- also appear at the front of this list).
6333 --------------------------
6334 -- 10.1.2 Context_Item --
6335 --------------------------
6337 -- CONTEXT_ITEM ::= WITH_CLAUSE | USE_CLAUSE | WITH_TYPE_CLAUSE
6339 -------------------------
6340 -- 10.1.2 With clause --
6341 -------------------------
6343 -- WITH_CLAUSE ::=
6344 -- with library_unit_NAME {,library_unit_NAME};
6346 -- A separate With clause is built for each name, so that we have
6347 -- a Corresponding_Spec field for each with'ed spec. The flags
6348 -- First_Name and Last_Name are used to reconstruct the exact
6349 -- source form. When a list of names appears in one with clause,
6350 -- the first name in the list has First_Name set, and the last
6351 -- has Last_Name set. If the with clause has only one name, then
6352 -- both of the flags First_Name and Last_Name are set in this name.
6354 -- Note: in the case of implicit with's that are installed by the
6355 -- Rtsfind routine, Implicit_With is set, and the Sloc is typically
6356 -- set to Standard_Location, but it is incorrect to test the Sloc
6357 -- to find out if a with clause is implicit, test the flag instead.
6359 -- N_With_Clause
6360 -- Sloc points to first token of library unit name
6361 -- Withed_Body (Node1-Sem)
6362 -- Name (Node2)
6363 -- Next_Implicit_With (Node3-Sem)
6364 -- Library_Unit (Node4-Sem)
6365 -- Corresponding_Spec (Node5-Sem)
6366 -- First_Name (Flag5) (set to True if first name or only one name)
6367 -- Last_Name (Flag6) (set to True if last name or only one name)
6368 -- Context_Installed (Flag13-Sem)
6369 -- Elaborate_Present (Flag4-Sem)
6370 -- Elaborate_All_Present (Flag14-Sem)
6371 -- Elaborate_All_Desirable (Flag9-Sem)
6372 -- Elaborate_Desirable (Flag11-Sem)
6373 -- Private_Present (Flag15) set if with_clause has private keyword
6374 -- Implicit_With (Flag16-Sem)
6375 -- Implicit_With_From_Instantiation (Flag12-Sem)
6376 -- Limited_Present (Flag17) set if LIMITED is present
6377 -- Limited_View_Installed (Flag18-Sem)
6378 -- Unreferenced_In_Spec (Flag7-Sem)
6379 -- No_Entities_Ref_In_Spec (Flag8-Sem)
6381 -- Note: Limited_Present and Limited_View_Installed are used to support
6382 -- the implementation of Ada 2005 (AI-50217).
6384 -- Similarly, Private_Present is used to support the implementation of
6385 -- Ada 2005 (AI-50262).
6387 ----------------------
6388 -- With_Type clause --
6389 ----------------------
6391 -- This is a GNAT extension, used to implement mutually recursive
6392 -- types declared in different packages.
6394 -- Note: this is now obsolete. The functionality of this construct
6395 -- is now implemented by the Ada 2005 limited_with_clause.
6397 ---------------------
6398 -- 10.2 Body stub --
6399 ---------------------
6401 -- BODY_STUB ::=
6402 -- SUBPROGRAM_BODY_STUB
6403 -- | PACKAGE_BODY_STUB
6404 -- | TASK_BODY_STUB
6405 -- | PROTECTED_BODY_STUB
6407 ----------------------------------
6408 -- 10.1.3 Subprogram Body Stub --
6409 ----------------------------------
6411 -- SUBPROGRAM_BODY_STUB ::=
6412 -- SUBPROGRAM_SPECIFICATION is separate
6413 -- [ASPECT_SPECIFICATION];
6415 -- N_Subprogram_Body_Stub
6416 -- Sloc points to FUNCTION or PROCEDURE
6417 -- Specification (Node1)
6418 -- Corresponding_Spec_Of_Stub (Node2-Sem)
6419 -- Library_Unit (Node4-Sem) points to the subunit
6420 -- Corresponding_Body (Node5-Sem)
6422 -------------------------------
6423 -- 10.1.3 Package Body Stub --
6424 -------------------------------
6426 -- PACKAGE_BODY_STUB ::=
6427 -- package body DEFINING_IDENTIFIER is separate
6428 -- [ASPECT_SPECIFICATION];
6430 -- N_Package_Body_Stub
6431 -- Sloc points to PACKAGE
6432 -- Defining_Identifier (Node1)
6433 -- Corresponding_Spec_Of_Stub (Node2-Sem)
6434 -- Library_Unit (Node4-Sem) points to the subunit
6435 -- Corresponding_Body (Node5-Sem)
6437 ----------------------------
6438 -- 10.1.3 Task Body Stub --
6439 ----------------------------
6441 -- TASK_BODY_STUB ::=
6442 -- task body DEFINING_IDENTIFIER is separate
6443 -- [ASPECT_SPECIFICATION];
6445 -- N_Task_Body_Stub
6446 -- Sloc points to TASK
6447 -- Defining_Identifier (Node1)
6448 -- Corresponding_Spec_Of_Stub (Node2-Sem)
6449 -- Library_Unit (Node4-Sem) points to the subunit
6450 -- Corresponding_Body (Node5-Sem)
6452 ---------------------------------
6453 -- 10.1.3 Protected Body Stub --
6454 ---------------------------------
6456 -- PROTECTED_BODY_STUB ::=
6457 -- protected body DEFINING_IDENTIFIER is separate
6458 -- [ASPECT_SPECIFICATION];
6460 -- Note: protected body stubs are not allowed in Ada 83 mode
6462 -- N_Protected_Body_Stub
6463 -- Sloc points to PROTECTED
6464 -- Defining_Identifier (Node1)
6465 -- Corresponding_Spec_Of_Stub (Node2-Sem)
6466 -- Library_Unit (Node4-Sem) points to the subunit
6467 -- Corresponding_Body (Node5-Sem)
6469 ---------------------
6470 -- 10.1.3 Subunit --
6471 ---------------------
6473 -- SUBUNIT ::= separate (PARENT_UNIT_NAME) PROPER_BODY
6475 -- N_Subunit
6476 -- Sloc points to SEPARATE
6477 -- Name (Node2) is the name of the parent unit
6478 -- Proper_Body (Node1) is the subunit body
6479 -- Corresponding_Stub (Node3-Sem) is the stub declaration for the unit.
6481 ---------------------------------
6482 -- 11.1 Exception Declaration --
6483 ---------------------------------
6485 -- EXCEPTION_DECLARATION ::= DEFINING_IDENTIFIER_LIST : exception
6486 -- [ASPECT_SPECIFICATIONS];
6488 -- For consistency with object declarations etc., the parser converts
6489 -- the case of multiple identifiers being declared to a series of
6490 -- declarations in which the expression is copied, using the More_Ids
6491 -- and Prev_Ids flags to remember the source form as described in the
6492 -- section on "Handling of Defining Identifier Lists".
6494 -- N_Exception_Declaration
6495 -- Sloc points to EXCEPTION
6496 -- Defining_Identifier (Node1)
6497 -- Expression (Node3-Sem)
6498 -- Renaming_Exception (Node2-Sem)
6499 -- More_Ids (Flag5) (set to False if no more identifiers in list)
6500 -- Prev_Ids (Flag6) (set to False if no previous identifiers in list)
6502 ------------------------------------------
6503 -- 11.2 Handled Sequence Of Statements --
6504 ------------------------------------------
6506 -- HANDLED_SEQUENCE_OF_STATEMENTS ::=
6507 -- SEQUENCE_OF_STATEMENTS
6508 -- [exception
6509 -- EXCEPTION_HANDLER
6510 -- {EXCEPTION_HANDLER}]
6511 -- [at end
6512 -- cleanup_procedure_call (param, param, param, ...);]
6514 -- The AT END phrase is a GNAT extension to provide for cleanups. It is
6515 -- used only internally currently, but is considered to be syntactic.
6516 -- At the moment, the only cleanup action allowed is a single call to
6517 -- a parameterless procedure, and the Identifier field of the node is
6518 -- the procedure to be called. The cleanup action occurs whenever the
6519 -- sequence of statements is left for any reason. The possible reasons
6520 -- are:
6521 -- 1. reaching the end of the sequence
6522 -- 2. exit, return, or goto
6523 -- 3. exception or abort
6524 -- For some back ends, such as gcc with ZCX, "at end" is implemented
6525 -- entirely in the back end. In this case, a handled sequence of
6526 -- statements with an "at end" cannot also have exception handlers.
6527 -- For other back ends, such as gcc with SJLJ and .NET, the
6528 -- implementation is split between the front end and back end; the front
6529 -- end implements 3, and the back end implements 1 and 2. In this case,
6530 -- if there is an "at end", the front end inserts the appropriate
6531 -- exception handler, and this handler takes precedence over "at end"
6532 -- in case of exception.
6534 -- The inserted exception handler is of the form:
6536 -- when all others =>
6537 -- cleanup;
6538 -- raise;
6540 -- where cleanup is the procedure to be called. The reason we do this is
6541 -- so that the front end can handle the necessary entries in the
6542 -- exception tables, and other exception handler actions required as
6543 -- part of the normal handling for exception handlers.
6545 -- The AT END cleanup handler protects only the sequence of statements
6546 -- (not the associated declarations of the parent), just like exception
6547 -- handlers. The big difference is that the cleanup procedure is called
6548 -- on either a normal or an abnormal exit from the statement sequence.
6550 -- Note: the list of Exception_Handlers can contain pragmas as well
6551 -- as actual handlers. In practice these pragmas can only occur at
6552 -- the start of the list, since any pragmas occurring later on will
6553 -- be included in the statement list of the corresponding handler.
6555 -- Note: although in the Ada syntax, the sequence of statements in
6556 -- a handled sequence of statements can only contain statements, we
6557 -- allow free mixing of declarations and statements in the resulting
6558 -- expanded tree. This is for example used to deal with the case of
6559 -- a cleanup procedure that must handle declarations as well as the
6560 -- statements of a block.
6562 -- Note: the cleanup_procedure_call does not go through the common
6563 -- processing for calls, which in particular means that it will not be
6564 -- automatically inlined in all cases, even though the procedure to be
6565 -- called is marked inline. More specifically, if the procedure comes
6566 -- from another unit than the main source unit, for example a run-time
6567 -- unit, then it needs to be manually added to the list of bodies to be
6568 -- inlined by invoking Add_Inlined_Body on it.
6570 -- N_Handled_Sequence_Of_Statements
6571 -- Sloc points to first token of first statement
6572 -- Statements (List3)
6573 -- End_Label (Node4) (set to Empty if expander generated)
6574 -- Exception_Handlers (List5) (set to No_List if none present)
6575 -- At_End_Proc (Node1) (set to Empty if no clean up procedure)
6576 -- First_Real_Statement (Node2-Sem)
6578 -- Note: the parent always contains a Declarations field which contains
6579 -- declarations associated with the handled sequence of statements. This
6580 -- is true even in the case of an accept statement (see description of
6581 -- the N_Accept_Statement node).
6583 -- End_Label refers to the containing construct
6585 -----------------------------
6586 -- 11.2 Exception Handler --
6587 -----------------------------
6589 -- EXCEPTION_HANDLER ::=
6590 -- when [CHOICE_PARAMETER_SPECIFICATION :]
6591 -- EXCEPTION_CHOICE {| EXCEPTION_CHOICE} =>
6592 -- SEQUENCE_OF_STATEMENTS
6594 -- Note: choice parameter specification is not allowed in Ada 83 mode
6596 -- N_Exception_Handler
6597 -- Sloc points to WHEN
6598 -- Choice_Parameter (Node2) (set to Empty if not present)
6599 -- Exception_Choices (List4)
6600 -- Statements (List3)
6601 -- Exception_Label (Node5-Sem) (set to Empty of not present)
6602 -- Local_Raise_Statements (Elist1-Sem) (set to No_Elist if not present)
6603 -- Local_Raise_Not_OK (Flag7-Sem)
6604 -- Has_Local_Raise (Flag8-Sem)
6606 ------------------------------------------
6607 -- 11.2 Choice parameter specification --
6608 ------------------------------------------
6610 -- CHOICE_PARAMETER_SPECIFICATION ::= DEFINING_IDENTIFIER
6612 ----------------------------
6613 -- 11.2 Exception Choice --
6614 ----------------------------
6616 -- EXCEPTION_CHOICE ::= exception_NAME | others
6618 -- Except in the case of OTHERS, no explicit node appears in the tree
6619 -- for exception choice. Instead the exception name appears directly.
6620 -- An OTHERS choice is represented by a N_Others_Choice node (see
6621 -- section 3.8.1.
6623 -- Note: for the exception choice created for an at end handler, the
6624 -- exception choice is an N_Others_Choice node with All_Others set.
6626 ---------------------------
6627 -- 11.3 Raise Statement --
6628 ---------------------------
6630 -- RAISE_STATEMENT ::= raise [exception_NAME];
6632 -- In Ada 2005, we have
6634 -- RAISE_STATEMENT ::=
6635 -- raise; | raise exception_NAME [with string_EXPRESSION];
6637 -- N_Raise_Statement
6638 -- Sloc points to RAISE
6639 -- Name (Node2) (set to Empty if no exception name present)
6640 -- Expression (Node3) (set to Empty if no expression present)
6641 -- From_At_End (Flag4-Sem)
6643 ----------------------------
6644 -- 11.3 Raise Expression --
6645 ----------------------------
6647 -- RAISE_EXPRESSION ::= raise exception_NAME [with string_EXPRESSION]
6649 -- N_Raise_Expression
6650 -- Sloc points to RAISE
6651 -- Name (Node2) (always present)
6652 -- Expression (Node3) (set to Empty if no expression present)
6653 -- Convert_To_Return_False (Flag13-Sem)
6654 -- plus fields for expression
6656 -------------------------------
6657 -- 12.1 Generic Declaration --
6658 -------------------------------
6660 -- GENERIC_DECLARATION ::=
6661 -- GENERIC_SUBPROGRAM_DECLARATION | GENERIC_PACKAGE_DECLARATION
6663 ------------------------------------------
6664 -- 12.1 Generic Subprogram Declaration --
6665 ------------------------------------------
6667 -- GENERIC_SUBPROGRAM_DECLARATION ::=
6668 -- GENERIC_FORMAL_PART SUBPROGRAM_SPECIFICATION
6669 -- [ASPECT_SPECIFICATIONS];
6671 -- Note: Generic_Formal_Declarations can include pragmas
6673 -- N_Generic_Subprogram_Declaration
6674 -- Sloc points to GENERIC
6675 -- Specification (Node1) subprogram specification
6676 -- Corresponding_Body (Node5-Sem)
6677 -- Generic_Formal_Declarations (List2) from generic formal part
6678 -- Parent_Spec (Node4-Sem)
6680 ---------------------------------------
6681 -- 12.1 Generic Package Declaration --
6682 ---------------------------------------
6684 -- GENERIC_PACKAGE_DECLARATION ::=
6685 -- GENERIC_FORMAL_PART PACKAGE_SPECIFICATION
6686 -- [ASPECT_SPECIFICATIONS];
6688 -- Note: when we do generics right, the Activation_Chain_Entity entry
6689 -- for this node can be removed (since the expander won't see generic
6690 -- units any more)???.
6692 -- Note: Generic_Formal_Declarations can include pragmas
6694 -- N_Generic_Package_Declaration
6695 -- Sloc points to GENERIC
6696 -- Specification (Node1) package specification
6697 -- Corresponding_Body (Node5-Sem)
6698 -- Generic_Formal_Declarations (List2) from generic formal part
6699 -- Parent_Spec (Node4-Sem)
6700 -- Activation_Chain_Entity (Node3-Sem)
6702 -------------------------------
6703 -- 12.1 Generic Formal Part --
6704 -------------------------------
6706 -- GENERIC_FORMAL_PART ::=
6707 -- generic {GENERIC_FORMAL_PARAMETER_DECLARATION | USE_CLAUSE}
6709 ------------------------------------------------
6710 -- 12.1 Generic Formal Parameter Declaration --
6711 ------------------------------------------------
6713 -- GENERIC_FORMAL_PARAMETER_DECLARATION ::=
6714 -- FORMAL_OBJECT_DECLARATION
6715 -- | FORMAL_TYPE_DECLARATION
6716 -- | FORMAL_SUBPROGRAM_DECLARATION
6717 -- | FORMAL_PACKAGE_DECLARATION
6719 ---------------------------------
6720 -- 12.3 Generic Instantiation --
6721 ---------------------------------
6723 -- GENERIC_INSTANTIATION ::=
6724 -- package DEFINING_PROGRAM_UNIT_NAME is
6725 -- new generic_package_NAME [GENERIC_ACTUAL_PART]
6726 -- [ASPECT_SPECIFICATIONS];
6727 -- | [[not] overriding]
6728 -- procedure DEFINING_PROGRAM_UNIT_NAME is
6729 -- new generic_procedure_NAME [GENERIC_ACTUAL_PART]
6730 -- [ASPECT_SPECIFICATIONS];
6731 -- | [[not] overriding]
6732 -- function DEFINING_DESIGNATOR is
6733 -- new generic_function_NAME [GENERIC_ACTUAL_PART]
6734 -- [ASPECT_SPECIFICATIONS];
6736 -- N_Package_Instantiation
6737 -- Sloc points to PACKAGE
6738 -- Defining_Unit_Name (Node1)
6739 -- Name (Node2)
6740 -- Generic_Associations (List3) (set to No_List if no
6741 -- generic actual part)
6742 -- Parent_Spec (Node4-Sem)
6743 -- Instance_Spec (Node5-Sem)
6744 -- ABE_Is_Certain (Flag18-Sem)
6746 -- N_Procedure_Instantiation
6747 -- Sloc points to PROCEDURE
6748 -- Defining_Unit_Name (Node1)
6749 -- Name (Node2)
6750 -- Parent_Spec (Node4-Sem)
6751 -- Generic_Associations (List3) (set to No_List if no
6752 -- generic actual part)
6753 -- Instance_Spec (Node5-Sem)
6754 -- Must_Override (Flag14) set if overriding indicator present
6755 -- Must_Not_Override (Flag15) set if not_overriding indicator present
6756 -- ABE_Is_Certain (Flag18-Sem)
6758 -- N_Function_Instantiation
6759 -- Sloc points to FUNCTION
6760 -- Defining_Unit_Name (Node1)
6761 -- Name (Node2)
6762 -- Generic_Associations (List3) (set to No_List if no
6763 -- generic actual part)
6764 -- Parent_Spec (Node4-Sem)
6765 -- Instance_Spec (Node5-Sem)
6766 -- Must_Override (Flag14) set if overriding indicator present
6767 -- Must_Not_Override (Flag15) set if not_overriding indicator present
6768 -- ABE_Is_Certain (Flag18-Sem)
6770 -- Note: overriding indicator is an Ada 2005 feature
6772 -------------------------------
6773 -- 12.3 Generic Actual Part --
6774 -------------------------------
6776 -- GENERIC_ACTUAL_PART ::=
6777 -- (GENERIC_ASSOCIATION {, GENERIC_ASSOCIATION})
6779 -------------------------------
6780 -- 12.3 Generic Association --
6781 -------------------------------
6783 -- GENERIC_ASSOCIATION ::=
6784 -- [generic_formal_parameter_SELECTOR_NAME =>]
6786 -- Note: unlike the procedure call case, a generic association node
6787 -- is generated for every association, even if no formal parameter
6788 -- selector name is present. In this case the parser will leave the
6789 -- Selector_Name field set to Empty, to be filled in later by the
6790 -- semantic pass.
6792 -- In Ada 2005, a formal may be associated with a box, if the
6793 -- association is part of the list of actuals for a formal package.
6794 -- If the association is given by OTHERS => <>, the association is
6795 -- an N_Others_Choice.
6797 -- N_Generic_Association
6798 -- Sloc points to first token of generic association
6799 -- Selector_Name (Node2) (set to Empty if no formal
6800 -- parameter selector name)
6801 -- Explicit_Generic_Actual_Parameter (Node1) (Empty if box present)
6802 -- Box_Present (Flag15) (for formal_package associations with a box)
6804 ---------------------------------------------
6805 -- 12.3 Explicit Generic Actual Parameter --
6806 ---------------------------------------------
6808 -- EXPLICIT_GENERIC_ACTUAL_PARAMETER ::=
6809 -- EXPRESSION | variable_NAME | subprogram_NAME
6810 -- | entry_NAME | SUBTYPE_MARK | package_instance_NAME
6812 -------------------------------------
6813 -- 12.4 Formal Object Declaration --
6814 -------------------------------------
6816 -- FORMAL_OBJECT_DECLARATION ::=
6817 -- DEFINING_IDENTIFIER_LIST :
6818 -- MODE [NULL_EXCLUSION] SUBTYPE_MARK [:= DEFAULT_EXPRESSION]
6819 -- [ASPECT_SPECIFICATIONS];
6820 -- | DEFINING_IDENTIFIER_LIST :
6821 -- MODE ACCESS_DEFINITION [:= DEFAULT_EXPRESSION]
6822 -- [ASPECT_SPECIFICATIONS];
6824 -- Although the syntax allows multiple identifiers in the list, the
6825 -- semantics is as though successive declarations were given with
6826 -- identical type definition and expression components. To simplify
6827 -- semantic processing, the parser represents a multiple declaration
6828 -- case as a sequence of single declarations, using the More_Ids and
6829 -- Prev_Ids flags to preserve the original source form as described
6830 -- in the section on "Handling of Defining Identifier Lists".
6832 -- N_Formal_Object_Declaration
6833 -- Sloc points to first identifier
6834 -- Defining_Identifier (Node1)
6835 -- In_Present (Flag15)
6836 -- Out_Present (Flag17)
6837 -- Null_Exclusion_Present (Flag11) (set to False if not present)
6838 -- Subtype_Mark (Node4) (set to Empty if not present)
6839 -- Access_Definition (Node3) (set to Empty if not present)
6840 -- Default_Expression (Node5) (set to Empty if no default expression)
6841 -- More_Ids (Flag5) (set to False if no more identifiers in list)
6842 -- Prev_Ids (Flag6) (set to False if no previous identifiers in list)
6844 -----------------------------------
6845 -- 12.5 Formal Type Declaration --
6846 -----------------------------------
6848 -- FORMAL_TYPE_DECLARATION ::=
6849 -- type DEFINING_IDENTIFIER [DISCRIMINANT_PART]
6850 -- is FORMAL_TYPE_DEFINITION
6851 -- [ASPECT_SPECIFICATIONS];
6852 -- | type DEFINING_IDENTIFIER [DISCRIMINANT_PART] [is tagged]
6854 -- N_Formal_Type_Declaration
6855 -- Sloc points to TYPE
6856 -- Defining_Identifier (Node1)
6857 -- Formal_Type_Definition (Node3)
6858 -- Discriminant_Specifications (List4) (set to No_List if no
6859 -- discriminant part)
6860 -- Unknown_Discriminants_Present (Flag13) set if (<>) discriminant
6862 ----------------------------------
6863 -- 12.5 Formal type definition --
6864 ----------------------------------
6866 -- FORMAL_TYPE_DEFINITION ::=
6867 -- FORMAL_PRIVATE_TYPE_DEFINITION
6868 -- | FORMAL_DERIVED_TYPE_DEFINITION
6869 -- | FORMAL_DISCRETE_TYPE_DEFINITION
6870 -- | FORMAL_SIGNED_INTEGER_TYPE_DEFINITION
6871 -- | FORMAL_MODULAR_TYPE_DEFINITION
6872 -- | FORMAL_FLOATING_POINT_DEFINITION
6873 -- | FORMAL_ORDINARY_FIXED_POINT_DEFINITION
6874 -- | FORMAL_DECIMAL_FIXED_POINT_DEFINITION
6875 -- | FORMAL_ARRAY_TYPE_DEFINITION
6876 -- | FORMAL_ACCESS_TYPE_DEFINITION
6877 -- | FORMAL_INTERFACE_TYPE_DEFINITION
6878 -- | FORMAL_INCOMPLETE_TYPE_DEFINITION
6880 -- The Ada 2012 syntax introduces two new non-terminals:
6881 -- Formal_{Complete,Incomplete}_Type_Declaration just to introduce
6882 -- the latter category. Here we introduce an incomplete type definition
6883 -- in order to preserve as much as possible the existing structure.
6885 ---------------------------------------------
6886 -- 12.5.1 Formal Private Type Definition --
6887 ---------------------------------------------
6889 -- FORMAL_PRIVATE_TYPE_DEFINITION ::=
6890 -- [[abstract] tagged] [limited] private
6892 -- Note: TAGGED is not allowed in Ada 83 mode
6894 -- N_Formal_Private_Type_Definition
6895 -- Sloc points to PRIVATE
6896 -- Uninitialized_Variable (Node3-Sem)
6897 -- Abstract_Present (Flag4)
6898 -- Tagged_Present (Flag15)
6899 -- Limited_Present (Flag17)
6901 --------------------------------------------
6902 -- 12.5.1 Formal Derived Type Definition --
6903 --------------------------------------------
6905 -- FORMAL_DERIVED_TYPE_DEFINITION ::=
6906 -- [abstract] [limited | synchronized]
6907 -- new SUBTYPE_MARK [[and INTERFACE_LIST] with private]
6908 -- Note: this construct is not allowed in Ada 83 mode
6910 -- N_Formal_Derived_Type_Definition
6911 -- Sloc points to NEW
6912 -- Subtype_Mark (Node4)
6913 -- Private_Present (Flag15)
6914 -- Abstract_Present (Flag4)
6915 -- Limited_Present (Flag17)
6916 -- Synchronized_Present (Flag7)
6917 -- Interface_List (List2) (set to No_List if none)
6919 -----------------------------------------------
6920 -- 12.5.1 Formal Incomplete Type Definition --
6921 -----------------------------------------------
6923 -- FORMAL_INCOMPLETE_TYPE_DEFINITION ::= [tagged]
6925 -- N_Formal_Incomplete_Type_Definition
6926 -- Sloc points to identifier of parent
6927 -- Tagged_Present (Flag15)
6929 ---------------------------------------------
6930 -- 12.5.2 Formal Discrete Type Definition --
6931 ---------------------------------------------
6933 -- FORMAL_DISCRETE_TYPE_DEFINITION ::= (<>)
6935 -- N_Formal_Discrete_Type_Definition
6936 -- Sloc points to (
6938 ---------------------------------------------------
6939 -- 12.5.2 Formal Signed Integer Type Definition --
6940 ---------------------------------------------------
6942 -- FORMAL_SIGNED_INTEGER_TYPE_DEFINITION ::= range <>
6944 -- N_Formal_Signed_Integer_Type_Definition
6945 -- Sloc points to RANGE
6947 --------------------------------------------
6948 -- 12.5.2 Formal Modular Type Definition --
6949 --------------------------------------------
6951 -- FORMAL_MODULAR_TYPE_DEFINITION ::= mod <>
6953 -- N_Formal_Modular_Type_Definition
6954 -- Sloc points to MOD
6956 ----------------------------------------------
6957 -- 12.5.2 Formal Floating Point Definition --
6958 ----------------------------------------------
6960 -- FORMAL_FLOATING_POINT_DEFINITION ::= digits <>
6962 -- N_Formal_Floating_Point_Definition
6963 -- Sloc points to DIGITS
6965 ----------------------------------------------------
6966 -- 12.5.2 Formal Ordinary Fixed Point Definition --
6967 ----------------------------------------------------
6969 -- FORMAL_ORDINARY_FIXED_POINT_DEFINITION ::= delta <>
6971 -- N_Formal_Ordinary_Fixed_Point_Definition
6972 -- Sloc points to DELTA
6974 ---------------------------------------------------
6975 -- 12.5.2 Formal Decimal Fixed Point Definition --
6976 ---------------------------------------------------
6978 -- FORMAL_DECIMAL_FIXED_POINT_DEFINITION ::= delta <> digits <>
6980 -- Note: formal decimal fixed point definition not allowed in Ada 83
6982 -- N_Formal_Decimal_Fixed_Point_Definition
6983 -- Sloc points to DELTA
6985 ------------------------------------------
6986 -- 12.5.3 Formal Array Type Definition --
6987 ------------------------------------------
6989 -- FORMAL_ARRAY_TYPE_DEFINITION ::= ARRAY_TYPE_DEFINITION
6991 -------------------------------------------
6992 -- 12.5.4 Formal Access Type Definition --
6993 -------------------------------------------
6995 -- FORMAL_ACCESS_TYPE_DEFINITION ::= ACCESS_TYPE_DEFINITION
6997 ----------------------------------------------
6998 -- 12.5.5 Formal Interface Type Definition --
6999 ----------------------------------------------
7001 -- FORMAL_INTERFACE_TYPE_DEFINITION ::= INTERFACE_TYPE_DEFINITION
7003 -----------------------------------------
7004 -- 12.6 Formal Subprogram Declaration --
7005 -----------------------------------------
7007 -- FORMAL_SUBPROGRAM_DECLARATION ::=
7008 -- FORMAL_CONCRETE_SUBPROGRAM_DECLARATION
7009 -- | FORMAL_ABSTRACT_SUBPROGRAM_DECLARATION
7011 --------------------------------------------------
7012 -- 12.6 Formal Concrete Subprogram Declaration --
7013 --------------------------------------------------
7015 -- FORMAL_CONCRETE_SUBPROGRAM_DECLARATION ::=
7016 -- with SUBPROGRAM_SPECIFICATION [is SUBPROGRAM_DEFAULT]
7017 -- [ASPECT_SPECIFICATIONS];
7019 -- N_Formal_Concrete_Subprogram_Declaration
7020 -- Sloc points to WITH
7021 -- Specification (Node1)
7022 -- Default_Name (Node2) (set to Empty if no subprogram default)
7023 -- Box_Present (Flag15)
7025 -- Note: if no subprogram default is present, then Name is set
7026 -- to Empty, and Box_Present is False.
7028 --------------------------------------------------
7029 -- 12.6 Formal Abstract Subprogram Declaration --
7030 --------------------------------------------------
7032 -- FORMAL_ABSTRACT_SUBPROGRAM_DECLARATION ::=
7033 -- with SUBPROGRAM_SPECIFICATION is abstract [SUBPROGRAM_DEFAULT]
7034 -- [ASPECT_SPECIFICATIONS];
7036 -- N_Formal_Abstract_Subprogram_Declaration
7037 -- Sloc points to WITH
7038 -- Specification (Node1)
7039 -- Default_Name (Node2) (set to Empty if no subprogram default)
7040 -- Box_Present (Flag15)
7042 -- Note: if no subprogram default is present, then Name is set
7043 -- to Empty, and Box_Present is False.
7045 ------------------------------
7046 -- 12.6 Subprogram Default --
7047 ------------------------------
7049 -- SUBPROGRAM_DEFAULT ::= DEFAULT_NAME | <>
7051 -- There is no separate node in the tree for a subprogram default.
7052 -- Instead the parent (N_Formal_Concrete_Subprogram_Declaration
7053 -- or N_Formal_Abstract_Subprogram_Declaration) node contains the
7054 -- default name or box indication, as needed.
7056 ------------------------
7057 -- 12.6 Default Name --
7058 ------------------------
7060 -- DEFAULT_NAME ::= NAME
7062 --------------------------------------
7063 -- 12.7 Formal Package Declaration --
7064 --------------------------------------
7066 -- FORMAL_PACKAGE_DECLARATION ::=
7067 -- with package DEFINING_IDENTIFIER
7068 -- is new generic_package_NAME FORMAL_PACKAGE_ACTUAL_PART
7069 -- [ASPECT_SPECIFICATIONS];
7071 -- Note: formal package declarations not allowed in Ada 83 mode
7073 -- N_Formal_Package_Declaration
7074 -- Sloc points to WITH
7075 -- Defining_Identifier (Node1)
7076 -- Name (Node2)
7077 -- Generic_Associations (List3) (set to No_List if (<>) case or
7078 -- empty generic actual part)
7079 -- Box_Present (Flag15)
7080 -- Instance_Spec (Node5-Sem)
7081 -- ABE_Is_Certain (Flag18-Sem)
7083 --------------------------------------
7084 -- 12.7 Formal Package Actual Part --
7085 --------------------------------------
7087 -- FORMAL_PACKAGE_ACTUAL_PART ::=
7088 -- ([OTHERS] => <>)
7089 -- | [GENERIC_ACTUAL_PART]
7090 -- (FORMAL_PACKAGE_ASSOCIATION {. FORMAL_PACKAGE_ASSOCIATION}
7092 -- FORMAL_PACKAGE_ASSOCIATION ::=
7093 -- GENERIC_ASSOCIATION
7094 -- | GENERIC_FORMAL_PARAMETER_SELECTOR_NAME => <>
7096 -- There is no explicit node in the tree for a formal package actual
7097 -- part. Instead the information appears in the parent node (i.e. the
7098 -- formal package declaration node itself).
7100 -- There is no explicit node for a formal package association. All of
7101 -- them are represented either by a generic association, possibly with
7102 -- Box_Present, or by an N_Others_Choice.
7104 ---------------------------------
7105 -- 13.1 Representation clause --
7106 ---------------------------------
7108 -- REPRESENTATION_CLAUSE ::=
7109 -- ATTRIBUTE_DEFINITION_CLAUSE
7110 -- | ENUMERATION_REPRESENTATION_CLAUSE
7111 -- | RECORD_REPRESENTATION_CLAUSE
7112 -- | AT_CLAUSE
7114 ----------------------
7115 -- 13.1 Local Name --
7116 ----------------------
7118 -- LOCAL_NAME :=
7119 -- DIRECT_NAME
7120 -- | DIRECT_NAME'ATTRIBUTE_DESIGNATOR
7121 -- | library_unit_NAME
7123 -- The construct DIRECT_NAME'ATTRIBUTE_DESIGNATOR appears in the tree
7124 -- as an attribute reference, which has essentially the same form.
7126 ---------------------------------------
7127 -- 13.3 Attribute definition clause --
7128 ---------------------------------------
7130 -- ATTRIBUTE_DEFINITION_CLAUSE ::=
7131 -- for LOCAL_NAME'ATTRIBUTE_DESIGNATOR use EXPRESSION;
7132 -- | for LOCAL_NAME'ATTRIBUTE_DESIGNATOR use NAME;
7134 -- In Ada 83, the expression must be a simple expression and the
7135 -- local name must be a direct name.
7137 -- Note: the only attribute definition clause that is processed by
7138 -- gigi is an address clause. For all other cases, the information
7139 -- is extracted by the front end and either results in setting entity
7140 -- information, e.g. Esize for the Size clause, or in appropriate
7141 -- expansion actions (e.g. in the case of Storage_Size).
7143 -- For an address clause, Gigi constructs the appropriate addressing
7144 -- code. It also ensures that no aliasing optimizations are made
7145 -- for the object for which the address clause appears.
7147 -- Note: for an address clause used to achieve an overlay:
7149 -- A : Integer;
7150 -- B : Integer;
7151 -- for B'Address use A'Address;
7153 -- the above rule means that Gigi will ensure that no optimizations
7154 -- will be made for B that would violate the implementation advice
7155 -- of RM 13.3(19). However, this advice applies only to B and not
7156 -- to A, which seems unfortunate. The GNAT front end will mark the
7157 -- object A as volatile to also prevent unwanted optimization
7158 -- assumptions based on no aliasing being made for B.
7160 -- N_Attribute_Definition_Clause
7161 -- Sloc points to FOR
7162 -- Name (Node2) the local name
7163 -- Chars (Name1) the identifier name from the attribute designator
7164 -- Expression (Node3) the expression or name
7165 -- Entity (Node4-Sem)
7166 -- Next_Rep_Item (Node5-Sem)
7167 -- From_At_Mod (Flag4-Sem)
7168 -- Check_Address_Alignment (Flag11-Sem)
7169 -- From_Aspect_Specification (Flag13-Sem)
7170 -- Is_Delayed_Aspect (Flag14-Sem)
7171 -- Address_Warning_Posted (Flag18-Sem)
7173 -- Note: if From_Aspect_Specification is set, then Sloc points to the
7174 -- aspect name, and Entity is resolved already to reference the entity
7175 -- to which the aspect applies.
7177 -----------------------------------
7178 -- 13.3.1 Aspect Specifications --
7179 -----------------------------------
7181 -- We modify the RM grammar here, the RM grammar is:
7183 -- ASPECT_SPECIFICATION ::=
7184 -- with ASPECT_MARK [=> ASPECT_DEFINITION] {,
7185 -- ASPECT_MARK [=> ASPECT_DEFINITION] }
7187 -- ASPECT_MARK ::= aspect_IDENTIFIER['Class]
7189 -- ASPECT_DEFINITION ::= NAME | EXPRESSION
7191 -- That's inconvenient, since there is no non-terminal name for a single
7192 -- entry in the list of aspects. So we use this grammar instead:
7194 -- ASPECT_SPECIFICATIONS ::=
7195 -- with ASPECT_SPECIFICATION {, ASPECT_SPECIFICATION}
7197 -- ASPECT_SPECIFICATION =>
7198 -- ASPECT_MARK [=> ASPECT_DEFINITION]
7200 -- ASPECT_MARK ::= aspect_IDENTIFIER['Class]
7202 -- ASPECT_DEFINITION ::= NAME | EXPRESSION
7204 -- Note that for Annotate, the ASPECT_DEFINITION is a pure positional
7205 -- aggregate with the elements of the aggregate corresponding to the
7206 -- successive arguments of the corresponding pragma.
7208 -- See separate package Aspects for details on the incorporation of
7209 -- these nodes into the tree, and how aspect specifications for a given
7210 -- declaration node are associated with that node.
7212 -- N_Aspect_Specification
7213 -- Sloc points to aspect identifier
7214 -- Identifier (Node1) aspect identifier
7215 -- Aspect_Rep_Item (Node2-Sem)
7216 -- Expression (Node3) Aspect_Definition (set to Empty if none)
7217 -- Entity (Node4-Sem) entity to which the aspect applies
7218 -- Next_Rep_Item (Node5-Sem)
7219 -- Class_Present (Flag6) Set if 'Class present
7220 -- Is_Ignored (Flag9-Sem)
7221 -- Is_Checked (Flag11-Sem)
7222 -- Is_Delayed_Aspect (Flag14-Sem)
7223 -- Is_Disabled (Flag15-Sem)
7224 -- Is_Boolean_Aspect (Flag16-Sem)
7225 -- Split_PPC (Flag17) Set if split pre/post attribute
7227 -- Note: Aspect_Specification is an Ada 2012 feature
7229 -- Note: The Identifier serves to identify the aspect involved (it
7230 -- is the aspect whose name corresponds to the Chars field). This
7231 -- means that the other fields of this identifier are unused, and
7232 -- in particular we use the Entity field of this identifier to save
7233 -- a copy of the expression for visibility analysis, see spec of
7234 -- Sem_Ch13 for full details of this usage.
7236 -- In the case of aspects of the form xxx'Class, the aspect identifier
7237 -- is for xxx, and Class_Present is set to True.
7239 -- Note: When a Pre or Post aspect specification is processed, it is
7240 -- broken into AND THEN sections. The left most section has Split_PPC
7241 -- set to False, indicating that it is the original specification (e.g.
7242 -- for posting errors). For the other sections, Split_PPC is set True.
7244 ---------------------------------------------
7245 -- 13.4 Enumeration representation clause --
7246 ---------------------------------------------
7248 -- ENUMERATION_REPRESENTATION_CLAUSE ::=
7249 -- for first_subtype_LOCAL_NAME use ENUMERATION_AGGREGATE;
7251 -- In Ada 83, the name must be a direct name
7253 -- N_Enumeration_Representation_Clause
7254 -- Sloc points to FOR
7255 -- Identifier (Node1) direct name
7256 -- Array_Aggregate (Node3)
7257 -- Next_Rep_Item (Node5-Sem)
7259 ---------------------------------
7260 -- 13.4 Enumeration aggregate --
7261 ---------------------------------
7263 -- ENUMERATION_AGGREGATE ::= ARRAY_AGGREGATE
7265 ------------------------------------------
7266 -- 13.5.1 Record representation clause --
7267 ------------------------------------------
7269 -- RECORD_REPRESENTATION_CLAUSE ::=
7270 -- for first_subtype_LOCAL_NAME use
7271 -- record [MOD_CLAUSE]
7272 -- {COMPONENT_CLAUSE}
7273 -- end record;
7275 -- Gigi restriction: Mod_Clause is always Empty (if present it is
7276 -- replaced by a corresponding Alignment attribute definition clause).
7278 -- Note: Component_Clauses can include pragmas
7280 -- N_Record_Representation_Clause
7281 -- Sloc points to FOR
7282 -- Identifier (Node1) direct name
7283 -- Mod_Clause (Node2) (set to Empty if no mod clause present)
7284 -- Component_Clauses (List3)
7285 -- Next_Rep_Item (Node5-Sem)
7287 ------------------------------
7288 -- 13.5.1 Component clause --
7289 ------------------------------
7291 -- COMPONENT_CLAUSE ::=
7292 -- component_LOCAL_NAME at POSITION
7293 -- range FIRST_BIT .. LAST_BIT;
7295 -- N_Component_Clause
7296 -- Sloc points to AT
7297 -- Component_Name (Node1) points to Name or Attribute_Reference
7298 -- Position (Node2)
7299 -- First_Bit (Node3)
7300 -- Last_Bit (Node4)
7302 ----------------------
7303 -- 13.5.1 Position --
7304 ----------------------
7306 -- POSITION ::= static_EXPRESSION
7308 -----------------------
7309 -- 13.5.1 First_Bit --
7310 -----------------------
7312 -- FIRST_BIT ::= static_SIMPLE_EXPRESSION
7314 ----------------------
7315 -- 13.5.1 Last_Bit --
7316 ----------------------
7318 -- LAST_BIT ::= static_SIMPLE_EXPRESSION
7320 --------------------------
7321 -- 13.8 Code statement --
7322 --------------------------
7324 -- CODE_STATEMENT ::= QUALIFIED_EXPRESSION;
7326 -- Note: in GNAT, the qualified expression has the form
7328 -- Asm_Insn'(Asm (...));
7330 -- See package System.Machine_Code in file s-maccod.ads for details on
7331 -- the allowed parameters to Asm. There are two ways this node can
7332 -- arise, as a code statement, in which case the expression is the
7333 -- qualified expression, or as a result of the expansion of an intrinsic
7334 -- call to the Asm or Asm_Input procedure.
7336 -- N_Code_Statement
7337 -- Sloc points to first token of the expression
7338 -- Expression (Node3)
7340 -- Note: package Exp_Code contains an abstract functional interface
7341 -- for use by Gigi in accessing the data from N_Code_Statement nodes.
7343 ------------------------
7344 -- 13.12 Restriction --
7345 ------------------------
7347 -- RESTRICTION ::=
7348 -- restriction_IDENTIFIER
7349 -- | restriction_parameter_IDENTIFIER => EXPRESSION
7351 -- There is no explicit node for restrictions. Instead the restriction
7352 -- appears in normal pragma syntax as a pragma argument association,
7353 -- which has the same syntactic form.
7355 --------------------------
7356 -- B.2 Shift Operators --
7357 --------------------------
7359 -- Calls to the intrinsic shift functions are converted to one of
7360 -- the following shift nodes, which have the form of normal binary
7361 -- operator names. Note that for a given shift operation, one node
7362 -- covers all possible types, as for normal operators.
7364 -- Note: it is perfectly permissible for the expander to generate
7365 -- shift operation nodes directly, in which case they will be analyzed
7366 -- and parsed in the usual manner.
7368 -- Sprint syntax: shift-function-name!(expr, count)
7370 -- Note: the Left_Opnd field holds the first argument (the value to
7371 -- be shifted). The Right_Opnd field holds the second argument (the
7372 -- shift count). The Chars field is the name of the intrinsic function.
7374 -- N_Op_Rotate_Left
7375 -- Sloc points to the function name
7376 -- plus fields for binary operator
7377 -- plus fields for expression
7378 -- Shift_Count_OK (Flag4-Sem)
7380 -- N_Op_Rotate_Right
7381 -- Sloc points to the function name
7382 -- plus fields for binary operator
7383 -- plus fields for expression
7384 -- Shift_Count_OK (Flag4-Sem)
7386 -- N_Op_Shift_Left
7387 -- Sloc points to the function name
7388 -- plus fields for binary operator
7389 -- plus fields for expression
7390 -- Shift_Count_OK (Flag4-Sem)
7392 -- N_Op_Shift_Right_Arithmetic
7393 -- Sloc points to the function name
7394 -- plus fields for binary operator
7395 -- plus fields for expression
7396 -- Shift_Count_OK (Flag4-Sem)
7398 -- N_Op_Shift_Right
7399 -- Sloc points to the function name
7400 -- plus fields for binary operator
7401 -- plus fields for expression
7402 -- Shift_Count_OK (Flag4-Sem)
7404 -- Note: N_Op_Rotate_Left, N_Op_Rotate_Right, N_Shift_Right_Arithmetic
7405 -- never appear in the expanded tree if Modify_Tree_For_C mode is set.
7407 -- Note: For N_Op_Shift_Left and N_Op_Shift_Right, the right operand is
7408 -- always less than the word size if Modify_Tree_For_C mode is set.
7410 --------------------------
7411 -- Obsolescent Features --
7412 --------------------------
7414 -- The syntax descriptions and tree nodes for obsolescent features are
7415 -- grouped together, corresponding to their location in appendix I in
7416 -- the RM. However, parsing and semantic analysis for these constructs
7417 -- is located in an appropriate chapter (see individual notes).
7419 ---------------------------
7420 -- J.3 Delta Constraint --
7421 ---------------------------
7423 -- Note: the parse routine for this construct is located in section
7424 -- 3.5.9 of Par-Ch3, and semantic analysis is in Sem_Ch3, which is
7425 -- where delta constraint logically belongs.
7427 -- DELTA_CONSTRAINT ::= DELTA static_EXPRESSION [RANGE_CONSTRAINT]
7429 -- N_Delta_Constraint
7430 -- Sloc points to DELTA
7431 -- Delta_Expression (Node3)
7432 -- Range_Constraint (Node4) (set to Empty if not present)
7434 --------------------
7435 -- J.7 At Clause --
7436 --------------------
7438 -- AT_CLAUSE ::= for DIRECT_NAME use at EXPRESSION;
7440 -- Note: the parse routine for this construct is located in Par-Ch13,
7441 -- and the semantic analysis is in Sem_Ch13, where at clause logically
7442 -- belongs if it were not obsolescent.
7444 -- Note: in Ada 83 the expression must be a simple expression
7446 -- Gigi restriction: This node never appears, it is rewritten as an
7447 -- address attribute definition clause.
7449 -- N_At_Clause
7450 -- Sloc points to FOR
7451 -- Identifier (Node1)
7452 -- Expression (Node3)
7454 ---------------------
7455 -- J.8 Mod clause --
7456 ---------------------
7458 -- MOD_CLAUSE ::= at mod static_EXPRESSION;
7460 -- Note: the parse routine for this construct is located in Par-Ch13,
7461 -- and the semantic analysis is in Sem_Ch13, where mod clause logically
7462 -- belongs if it were not obsolescent.
7464 -- Note: in Ada 83, the expression must be a simple expression
7466 -- Gigi restriction: this node never appears. It is replaced
7467 -- by a corresponding Alignment attribute definition clause.
7469 -- Note: pragmas can appear before and after the MOD_CLAUSE since
7470 -- its name has "clause" in it. This is rather strange, but is quite
7471 -- definitely specified. The pragmas before are collected in the
7472 -- Pragmas_Before field of the mod clause node itself, and pragmas
7473 -- after are simply swallowed up in the list of component clauses.
7475 -- N_Mod_Clause
7476 -- Sloc points to AT
7477 -- Expression (Node3)
7478 -- Pragmas_Before (List4) Pragmas before mod clause (No_List if none)
7480 --------------------
7481 -- Semantic Nodes --
7482 --------------------
7484 -- These semantic nodes are used to hold additional semantic information.
7485 -- They are inserted into the tree as a result of semantic processing.
7486 -- Although there are no legitimate source syntax constructions that
7487 -- correspond directly to these nodes, we need a source syntax for the
7488 -- reconstructed tree printed by Sprint, and the node descriptions here
7489 -- show this syntax.
7491 ------------------------
7492 -- Compound Statement --
7493 ------------------------
7495 -- This node is created by the analyzer/expander to handle some
7496 -- expansion cases where a sequence of actions needs to be captured
7497 -- within a single node (which acts as a container and allows the
7498 -- entire list of actions to be moved around as a whole) appearing
7499 -- in a sequence of statements.
7501 -- This is the statement counterpart to the expression node
7502 -- N_Expression_With_Actions.
7504 -- The required semantics is that the set of actions is executed in
7505 -- the order in which it appears, as though they appeared by themselves
7506 -- in the enclosing list of declarations of statements. Unlike what
7507 -- happens when using an N_Block_Statement, no new scope is introduced.
7509 -- Note: for the time being, this is used only as a transient
7510 -- representation during expansion, and all compound statement nodes
7511 -- must be exploded back to their constituent statements before handing
7512 -- the tree to the back end.
7514 -- Sprint syntax: do
7515 -- action;
7516 -- action;
7517 -- ...
7518 -- action;
7519 -- end;
7521 -- N_Compound_Statement
7522 -- Actions (List1)
7524 --------------
7525 -- Contract --
7526 --------------
7528 -- This node is used to hold the various parts of an entry, subprogram
7529 -- [body] or package [body] contract, in particular:
7530 -- Abstract states declared by a package declaration
7531 -- Contract cases that apply to a subprogram
7532 -- Dependency relations of inputs and output of a subprogram
7533 -- Global annotations classifying data as input or output
7534 -- Initialization sequences for a package declaration
7535 -- Pre- and postconditions that apply to a subprogram
7537 -- The node appears in an entry and [generic] subprogram [body] entity.
7539 -- Sprint syntax: <none> as the node should not appear in the tree, but
7540 -- only attached to an entry or [generic] subprogram
7541 -- entity.
7543 -- N_Contract
7544 -- Sloc points to the subprogram's name
7545 -- Pre_Post_Conditions (Node1-Sem) (set to Empty if none)
7546 -- Contract_Test_Cases (Node2-Sem) (set to Empty if none)
7547 -- Classifications (Node3-Sem) (set to Empty if none)
7549 -- Pre_Post_Conditions contains a collection of pragmas that correspond
7550 -- to pre- and postconditions associated with an entry or a subprogram
7551 -- [body or stub]. The pragmas can either come from source or be the
7552 -- byproduct of aspect expansion. Currently the following pragmas appear
7553 -- in this list:
7554 -- Post
7555 -- Postcondition
7556 -- Pre
7557 -- Precondition
7558 -- Refined_Post
7559 -- The ordering in the list is in LIFO fashion.
7561 -- Note that there might be multiple preconditions or postconditions
7562 -- in this list, either because they come from separate pragmas in the
7563 -- source, or because a Pre (resp. Post) aspect specification has been
7564 -- broken into AND THEN sections. See Split_PPC for details.
7566 -- Contract_Test_Cases contains a collection of pragmas that correspond
7567 -- to aspects/pragmas Contract_Cases and Test_Case. The ordering in the
7568 -- list is in LIFO fashion.
7570 -- Classifications contains pragmas that either declare, categorize or
7571 -- establish dependencies between subprogram or package inputs and
7572 -- outputs. Currently the following pragmas appear in this list:
7573 -- Abstract_States
7574 -- Async_Readers
7575 -- Async_Writers
7576 -- Depends
7577 -- Effective_Reads
7578 -- Effective_Writes
7579 -- Global
7580 -- Initial_Condition
7581 -- Initializes
7582 -- Part_Of
7583 -- Refined_Depends
7584 -- Refined_Global
7585 -- Refined_States
7586 -- The ordering is in LIFO fashion.
7588 -------------------
7589 -- Expanded Name --
7590 -------------------
7592 -- The N_Expanded_Name node is used to represent a selected component
7593 -- name that has been resolved to an expanded name. The semantic phase
7594 -- replaces N_Selected_Component nodes that represent names by the use
7595 -- of this node, leaving the N_Selected_Component node used only when
7596 -- the prefix is a record or protected type.
7598 -- The fields of the N_Expanded_Name node are layed out identically
7599 -- to those of the N_Selected_Component node, allowing conversion of
7600 -- an expanded name node to a selected component node to be done
7601 -- easily, see Sinfo.CN.Change_Selected_Component_To_Expanded_Name.
7603 -- There is no special sprint syntax for an expanded name
7605 -- N_Expanded_Name
7606 -- Sloc points to the period
7607 -- Chars (Name1) copy of Chars field of selector name
7608 -- Prefix (Node3)
7609 -- Selector_Name (Node2)
7610 -- Entity (Node4-Sem)
7611 -- Associated_Node (Node4-Sem)
7612 -- Has_Private_View (Flag11-Sem) set in generic units.
7613 -- Redundant_Use (Flag13-Sem)
7614 -- Atomic_Sync_Required (Flag14-Sem)
7615 -- plus fields for expression
7617 -----------------------------
7618 -- Expression With Actions --
7619 -----------------------------
7621 -- This node is created by the analyzer/expander to handle some
7622 -- expansion cases, notably short circuit forms where there are
7623 -- actions associated with the right-hand side operand.
7625 -- The N_Expression_With_Actions node represents an expression with
7626 -- an associated set of actions (which are executable statements and
7627 -- declarations, as might occur in a handled statement sequence).
7629 -- The required semantics is that the set of actions is executed in
7630 -- the order in which it appears just before the expression is
7631 -- evaluated (and these actions must only be executed if the value
7632 -- of the expression is evaluated). The node is considered to be
7633 -- a subexpression, whose value is the value of the Expression after
7634 -- executing all the actions.
7636 -- If the actions contain declarations, then these declarations may
7637 -- be referenced within the expression. However note that there is
7638 -- no proper scope associated with the expression-with-action, so the
7639 -- back-end will elaborate them in the context of the enclosing scope.
7641 -- Sprint syntax: do
7642 -- action;
7643 -- action;
7644 -- ...
7645 -- action;
7646 -- in expression end
7648 -- N_Expression_With_Actions
7649 -- Actions (List1)
7650 -- Expression (Node3)
7651 -- plus fields for expression
7653 -- Note: In the final generated tree presented to the code generator,
7654 -- the actions list is always non-null, since there is no point in this
7655 -- node if the actions are Empty. During semantic analysis there are
7656 -- cases where it is convenient to temporarily generate an empty actions
7657 -- list. This arises in cases where we create such an empty actions
7658 -- list, and it may or may not end up being a place where additional
7659 -- actions are inserted. The expander removes such empty cases after
7660 -- the expression of the node is fully analyzed and expanded, at which
7661 -- point it is safe to remove it, since no more actions can be inserted.
7663 -- Note: In Modify_Tree_For_C, we never generate any declarations in
7664 -- the action list, which can contain only non-declarative statements.
7666 --------------------
7667 -- Free Statement --
7668 --------------------
7670 -- The N_Free_Statement node is generated as a result of a call to an
7671 -- instantiation of Unchecked_Deallocation. The instantiation of this
7672 -- generic is handled specially and generates this node directly.
7674 -- Sprint syntax: free expression
7676 -- N_Free_Statement
7677 -- Sloc is copied from the unchecked deallocation call
7678 -- Expression (Node3) argument to unchecked deallocation call
7679 -- Storage_Pool (Node1-Sem)
7680 -- Procedure_To_Call (Node2-Sem)
7681 -- Actual_Designated_Subtype (Node4-Sem)
7683 -- Note: in the case where a debug source file is generated, the Sloc
7684 -- for this node points to the FREE keyword in the Sprint file output.
7686 -------------------
7687 -- Freeze Entity --
7688 -------------------
7690 -- This node marks the point in a declarative part at which an entity
7691 -- declared therein becomes frozen. The expander places initialization
7692 -- procedures for types at those points. Gigi uses the freezing point
7693 -- to elaborate entities that may depend on previous private types.
7695 -- See the section in Einfo "Delayed Freezing and Elaboration" for
7696 -- a full description of the use of this node.
7698 -- The Entity field points back to the entity for the type (whose
7699 -- Freeze_Node field points back to this freeze node).
7701 -- The Actions field contains a list of declarations and statements
7702 -- generated by the expander which are associated with the freeze
7703 -- node, and are elaborated as though the freeze node were replaced
7704 -- by this sequence of actions.
7706 -- Note: the Sloc field in the freeze node references a construct
7707 -- associated with the freezing point. This is used for posting
7708 -- messages in some error/warning situations, e.g. the case where
7709 -- a primitive operation of a tagged type is declared too late.
7711 -- Sprint syntax: freeze entity-name [
7712 -- freeze actions
7713 -- ]
7715 -- N_Freeze_Entity
7716 -- Sloc points near freeze point (see above special note)
7717 -- Entity (Node4-Sem)
7718 -- Access_Types_To_Process (Elist2-Sem) (set to No_Elist if none)
7719 -- TSS_Elist (Elist3-Sem) (set to No_Elist if no associated TSS's)
7720 -- Actions (List1) (set to No_List if no freeze actions)
7721 -- First_Subtype_Link (Node5-Sem) (set to Empty if no link)
7723 -- The Actions field holds actions associated with the freeze. These
7724 -- actions are elaborated at the point where the type is frozen.
7726 -- Note: in the case where a debug source file is generated, the Sloc
7727 -- for this node points to the FREEZE keyword in the Sprint file output.
7729 ---------------------------
7730 -- Freeze Generic Entity --
7731 ---------------------------
7733 -- The freeze point of an entity indicates the point at which the
7734 -- information needed to generate code for the entity is complete.
7735 -- The freeze node for an entity triggers expander activities, such as
7736 -- build initialization procedures, and backend activities, such as
7737 -- completing the elaboration of packages.
7739 -- For entities declared within a generic unit, for which no code is
7740 -- generated, the freeze point is not equally meaningful. However, in
7741 -- Ada 2012 several semantic checks on declarations must be delayed to
7742 -- the freeze point, and we need to include such a mark in the tree to
7743 -- trigger these checks. The Freeze_Generic_Entity node plays no other
7744 -- role, and is ignored by the expander and the back-end.
7746 -- Sprint syntax: freeze_generic entity-name
7748 -- N_Freeze_Generic_Entity
7749 -- Sloc points near freeze point
7750 -- Entity (Node4-Sem)
7752 --------------------------------
7753 -- Implicit Label Declaration --
7754 --------------------------------
7756 -- An implicit label declaration is created for every occurrence of a
7757 -- label on a statement or a label on a block or loop. It is chained
7758 -- in the declarations of the innermost enclosing block as specified
7759 -- in RM section 5.1 (3).
7761 -- The Defining_Identifier is the actual identifier for the statement
7762 -- identifier. Note that the occurrence of the label is a reference, NOT
7763 -- the defining occurrence. The defining occurrence occurs at the head
7764 -- of the innermost enclosing block, and is represented by this node.
7766 -- Note: from the grammar, this might better be called an implicit
7767 -- statement identifier declaration, but the term we choose seems
7768 -- friendlier, since at least informally statement identifiers are
7769 -- called labels in both cases (i.e. when used in labels, and when
7770 -- used as the identifiers of blocks and loops).
7772 -- Note: although this is logically a semantic node, since it does not
7773 -- correspond directly to a source syntax construction, these nodes are
7774 -- actually created by the parser in a post pass done just after parsing
7775 -- is complete, before semantic analysis is started (see Par.Labl).
7777 -- Sprint syntax: labelname : label;
7779 -- N_Implicit_Label_Declaration
7780 -- Sloc points to the << token for a statement identifier, or to the
7781 -- LOOP, DECLARE, or BEGIN token for a loop or block identifier
7782 -- Defining_Identifier (Node1)
7783 -- Label_Construct (Node2-Sem)
7785 -- Note: in the case where a debug source file is generated, the Sloc
7786 -- for this node points to the label name in the generated declaration.
7788 ---------------------
7789 -- Itype Reference --
7790 ---------------------
7792 -- This node is used to create a reference to an Itype. The only purpose
7793 -- is to make sure the Itype is defined if this is the first reference.
7795 -- A typical use of this node is when an Itype is to be referenced in
7796 -- two branches of an IF statement. In this case it is important that
7797 -- the first use of the Itype not be inside the conditional, since then
7798 -- it might not be defined if the other branch of the IF is taken, in
7799 -- the case where the definition generates elaboration code.
7801 -- The Itype field points to the referenced Itype
7803 -- Sprint syntax: reference itype-name
7805 -- N_Itype_Reference
7806 -- Sloc points to the node generating the reference
7807 -- Itype (Node1-Sem)
7809 -- Note: in the case where a debug source file is generated, the Sloc
7810 -- for this node points to the REFERENCE keyword in the file output.
7812 ---------------------
7813 -- Raise xxx Error --
7814 ---------------------
7816 -- One of these nodes is created during semantic analysis to replace
7817 -- a node for an expression that is determined to definitely raise
7818 -- the corresponding exception.
7820 -- The N_Raise_xxx_Error node may also stand alone in place
7821 -- of a declaration or statement, in which case it simply causes
7822 -- the exception to be raised (i.e. it is equivalent to a raise
7823 -- statement that raises the corresponding exception). This use
7824 -- is distinguished by the fact that the Etype in this case is
7825 -- Standard_Void_Type; in the subexpression case, the Etype is the
7826 -- same as the type of the subexpression which it replaces.
7828 -- If Condition is empty, then the raise is unconditional. If the
7829 -- Condition field is non-empty, it is a boolean expression which
7830 -- is first evaluated, and the exception is raised only if the
7831 -- value of the expression is True. In the unconditional case, the
7832 -- creation of this node is usually accompanied by a warning message
7833 -- error. The creation of this node will usually be accompanied by a
7834 -- message (unless it appears within the right operand of a short
7835 -- circuit form whose left argument is static and decisively
7836 -- eliminates elaboration of the raise operation. The condition field
7837 -- can ONLY be present when the node is used as a statement form, it
7838 -- may NOT be present in the case where the node appears within an
7839 -- expression.
7841 -- The exception is generated with a message that contains the
7842 -- file name and line number, and then appended text. The Reason
7843 -- code shows the text to be added. The Reason code is an element
7844 -- of the type Types.RT_Exception_Code, and indicates both the
7845 -- message to be added, and the exception to be raised (which must
7846 -- match the node type). The value is stored by storing a Uint which
7847 -- is the Pos value of the enumeration element in this type.
7849 -- Gigi restriction: This expander ensures that the type of the
7850 -- Condition field is always Standard.Boolean, even if the type
7851 -- in the source is some non-standard boolean type.
7853 -- Sprint syntax: [xxx_error "msg"]
7854 -- or: [xxx_error when condition "msg"]
7856 -- N_Raise_Constraint_Error
7857 -- Sloc references related construct
7858 -- Condition (Node1) (set to Empty if no condition)
7859 -- Reason (Uint3)
7860 -- plus fields for expression
7862 -- N_Raise_Program_Error
7863 -- Sloc references related construct
7864 -- Condition (Node1) (set to Empty if no condition)
7865 -- Reason (Uint3)
7866 -- plus fields for expression
7868 -- N_Raise_Storage_Error
7869 -- Sloc references related construct
7870 -- Condition (Node1) (set to Empty if no condition)
7871 -- Reason (Uint3)
7872 -- plus fields for expression
7874 -- Note: Sloc is copied from the expression generating the exception.
7875 -- In the case where a debug source file is generated, the Sloc for
7876 -- this node points to the left bracket in the Sprint file output.
7878 -- Note: the back end may be required to translate these nodes into
7879 -- appropriate goto statements. See description of N_Push/Pop_xxx_Label.
7881 ---------------------------------------------
7882 -- Optimization of Exception Raise to Goto --
7883 ---------------------------------------------
7885 -- In some cases, the front end will determine that any exception raised
7886 -- by the back end for a certain exception should be transformed into a
7887 -- goto statement.
7889 -- There are three kinds of exceptions raised by the back end (note that
7890 -- for this purpose we consider gigi to be part of the back end in the
7891 -- gcc case):
7893 -- 1. Exceptions resulting from N_Raise_xxx_Error nodes
7894 -- 2. Exceptions from checks triggered by Do_xxx_Check flags
7895 -- 3. Other cases not specifically marked by the front end
7897 -- Normally all such exceptions are translated into calls to the proper
7898 -- Rcheck_xx procedure, where xx encodes both the exception to be raised
7899 -- and the exception message.
7901 -- The front end may determine that for a particular sequence of code,
7902 -- exceptions in any of these three categories for a particular builtin
7903 -- exception should result in a goto, rather than a call to Rcheck_xx.
7904 -- The exact sequence to be generated is:
7906 -- Local_Raise (exception'Identity);
7907 -- goto Label
7909 -- The front end marks such a sequence of code by bracketing it with
7910 -- push and pop nodes:
7912 -- N_Push_xxx_Label (referencing the label)
7913 -- ...
7914 -- (code where transformation is expected for exception xxx)
7915 -- ...
7916 -- N_Pop_xxx_Label
7918 -- The use of push/pop reflects the fact that such regions can properly
7919 -- nest, and one special case is a subregion in which no transformation
7920 -- is allowed. Such a region is marked by a N_Push_xxx_Label node whose
7921 -- Exception_Label field is Empty.
7923 -- N_Push_Constraint_Error_Label
7924 -- Sloc references first statement in region covered
7925 -- Exception_Label (Node5-Sem)
7927 -- N_Push_Program_Error_Label
7928 -- Sloc references first statement in region covered
7929 -- Exception_Label (Node5-Sem)
7931 -- N_Push_Storage_Error_Label
7932 -- Sloc references first statement in region covered
7933 -- Exception_Label (Node5-Sem)
7935 -- N_Pop_Constraint_Error_Label
7936 -- Sloc references last statement in region covered
7938 -- N_Pop_Program_Error_Label
7939 -- Sloc references last statement in region covered
7941 -- N_Pop_Storage_Error_Label
7942 -- Sloc references last statement in region covered
7944 ---------------
7945 -- Reference --
7946 ---------------
7948 -- For a number of purposes, we need to construct references to objects.
7949 -- These references are subsequently treated as normal access values.
7950 -- An example is the construction of the parameter block passed to a
7951 -- task entry. The N_Reference node is provided for this purpose. It is
7952 -- similar in effect to the use of the Unrestricted_Access attribute,
7953 -- and like Unrestricted_Access can be applied to objects which would
7954 -- not be valid prefixes for the Unchecked_Access attribute (e.g.
7955 -- objects which are not aliased, and slices). In addition it can be
7956 -- applied to composite type values as well as objects, including string
7957 -- values and aggregates.
7959 -- Note: we use the Prefix field for this expression so that the
7960 -- resulting node can be treated using common code with the attribute
7961 -- nodes for the 'Access and related attributes. Logically it would make
7962 -- more sense to call it an Expression field, but then we would have to
7963 -- special case the treatment of the N_Reference node.
7965 -- Note: evaluating a N_Reference node is guaranteed to yield a non-null
7966 -- value at run time. Therefore, it is valid to set Is_Known_Non_Null on
7967 -- a temporary initialized to a N_Reference node in order to eliminate
7968 -- superfluous access checks.
7970 -- Sprint syntax: prefix'reference
7972 -- N_Reference
7973 -- Sloc is copied from the expression
7974 -- Prefix (Node3)
7975 -- plus fields for expression
7977 -- Note: in the case where a debug source file is generated, the Sloc
7978 -- for this node points to the quote in the Sprint file output.
7980 ----------------
7981 -- SCIL Nodes --
7982 ----------------
7984 -- SCIL nodes are special nodes added to the tree when the CodePeer mode
7985 -- is active. They are only generated if SCIL generation is enabled.
7986 -- A standard tree-walk will not encounter these nodes even if they
7987 -- are present; these nodes are only accessible via the function
7988 -- SCIL_LL.Get_SCIL_Node. These nodes have no associated dynamic
7989 -- semantics.
7991 -- Sprint syntax: [ <node kind> ]
7992 -- No semantic field values are displayed.
7994 -- N_SCIL_Dispatch_Table_Tag_Init
7995 -- Sloc references a node for a tag initialization
7996 -- SCIL_Entity (Node4-Sem)
7998 -- An N_SCIL_Dispatch_Table_Tag_Init node may be associated (via
7999 -- Get_SCIL_Node) with the N_Object_Declaration node corresponding to
8000 -- the declaration of the dispatch table for a tagged type.
8002 -- N_SCIL_Dispatching_Call
8003 -- Sloc references the node of a dispatching call
8004 -- SCIL_Target_Prim (Node2-Sem)
8005 -- SCIL_Entity (Node4-Sem)
8006 -- SCIL_Controlling_Tag (Node5-Sem)
8008 -- An N_Scil_Dispatching call node may be associated (via Get_SCIL_Node)
8009 -- with the N_Procedure_Call or N_Function_Call node (or a rewriting
8010 -- thereof) corresponding to a dispatching call.
8012 -- N_SCIL_Membership_Test
8013 -- Sloc references the node of a membership test
8014 -- SCIL_Tag_Value (Node5-Sem)
8015 -- SCIL_Entity (Node4-Sem)
8017 -- An N_Scil_Membership_Test node may be associated (via Get_SCIL_Node)
8018 -- with the N_In node (or a rewriting thereof) corresponding to a
8019 -- classwide membership test.
8021 --------------------------
8022 -- Unchecked Expression --
8023 --------------------------
8025 -- An unchecked expression is one that must be analyzed and resolved
8026 -- with all checks off, regardless of the current setting of scope
8027 -- suppress flags.
8029 -- Sprint syntax: `(expression)
8031 -- Note: this node is always removed from the tree (and replaced by
8032 -- its constituent expression) on completion of analysis, so it only
8033 -- appears in intermediate trees, and will never be seen by Gigi.
8035 -- N_Unchecked_Expression
8036 -- Sloc is a copy of the Sloc of the expression
8037 -- Expression (Node3)
8038 -- plus fields for expression
8040 -- Note: in the case where a debug source file is generated, the Sloc
8041 -- for this node points to the back quote in the Sprint file output.
8043 -------------------------------
8044 -- Unchecked Type Conversion --
8045 -------------------------------
8047 -- An unchecked type conversion node represents the semantic action
8048 -- corresponding to a call to an instantiation of Unchecked_Conversion.
8049 -- It is generated as a result of actual use of Unchecked_Conversion
8050 -- and also the expander generates unchecked type conversion nodes
8051 -- directly for expansion of complex semantic actions.
8053 -- Note: an unchecked type conversion is a variable as far as the
8054 -- semantics are concerned, which is convenient for the expander.
8055 -- This does not change what Ada source programs are legal, since
8056 -- clearly a function call to an instantiation of Unchecked_Conversion
8057 -- is not a variable in any case.
8059 -- Sprint syntax: subtype-mark!(expression)
8061 -- N_Unchecked_Type_Conversion
8062 -- Sloc points to related node in source
8063 -- Subtype_Mark (Node4)
8064 -- Expression (Node3)
8065 -- Kill_Range_Check (Flag11-Sem)
8066 -- No_Truncation (Flag17-Sem)
8067 -- plus fields for expression
8069 -- Note: in the case where a debug source file is generated, the Sloc
8070 -- for this node points to the exclamation in the Sprint file output.
8072 -----------------------------------
8073 -- Validate_Unchecked_Conversion --
8074 -----------------------------------
8076 -- The front end does most of the validation of unchecked conversion,
8077 -- including checking sizes (this is done after the back end is called
8078 -- to take advantage of back-annotation of calculated sizes).
8080 -- The front end also deals with specific cases that are not allowed
8081 -- e.g. involving unconstrained array types.
8083 -- For the case of the standard gigi backend, this means that all
8084 -- checks are done in the front end.
8086 -- However, in the case of specialized back-ends, notably the JVM
8087 -- backend for JGNAT, additional requirements and restrictions apply
8088 -- to unchecked conversion, and these are most conveniently performed
8089 -- in the specialized back-end.
8091 -- To accommodate this requirement, for such back ends, the following
8092 -- special node is generated recording an unchecked conversion that
8093 -- needs to be validated. The back end should post an appropriate
8094 -- error message if the unchecked conversion is invalid or warrants
8095 -- a special warning message.
8097 -- Source_Type and Target_Type point to the entities for the two
8098 -- types involved in the unchecked conversion instantiation that
8099 -- is to be validated.
8101 -- Sprint syntax: validate Unchecked_Conversion (source, target);
8103 -- N_Validate_Unchecked_Conversion
8104 -- Sloc points to instantiation (location for warning message)
8105 -- Source_Type (Node1-Sem)
8106 -- Target_Type (Node2-Sem)
8108 -- Note: in the case where a debug source file is generated, the Sloc
8109 -- for this node points to the VALIDATE keyword in the file output.
8111 -----------
8112 -- Empty --
8113 -----------
8115 -- Used as the contents of the Nkind field of the dummy Empty node
8116 -- and in some other situations to indicate an uninitialized value.
8118 -- N_Empty
8119 -- Chars (Name1) is set to No_Name
8121 -----------
8122 -- Error --
8123 -----------
8125 -- Used as the contents of the Nkind field of the dummy Error node.
8126 -- Has an Etype field, which gets set to Any_Type later on, to help
8127 -- error recovery (Error_Posted is also set in the Error node).
8129 -- N_Error
8130 -- Chars (Name1) is set to Error_Name
8131 -- Etype (Node5-Sem)
8133 --------------------------
8134 -- Node Type Definition --
8135 --------------------------
8137 -- The following is the definition of the Node_Kind type. As previously
8138 -- discussed, this is separated off to allow rearrangement of the order to
8139 -- facilitate definition of subtype ranges. The comments show the subtype
8140 -- classes which apply to each set of node kinds. The first entry in the
8141 -- comment characterizes the following list of nodes.
8143 type Node_Kind is (
8144 N_Unused_At_Start,
8146 -- N_Representation_Clause
8148 N_At_Clause,
8149 N_Component_Clause,
8150 N_Enumeration_Representation_Clause,
8151 N_Mod_Clause,
8152 N_Record_Representation_Clause,
8154 -- N_Representation_Clause, N_Has_Chars
8156 N_Attribute_Definition_Clause,
8158 -- N_Has_Chars
8160 N_Empty,
8161 N_Pragma_Argument_Association,
8163 -- N_Has_Etype, N_Has_Chars
8165 -- Note: of course N_Error does not really have Etype or Chars fields,
8166 -- and any attempt to access these fields in N_Error will cause an
8167 -- error, but historically this always has been positioned so that an
8168 -- "in N_Has_Chars" or "in N_Has_Etype" test yields true for N_Error.
8169 -- Most likely this makes coding easier somewhere but still seems
8170 -- undesirable. To be investigated some time ???
8172 N_Error,
8174 -- N_Entity, N_Has_Etype, N_Has_Chars
8176 N_Defining_Character_Literal,
8177 N_Defining_Identifier,
8178 N_Defining_Operator_Symbol,
8180 -- N_Subexpr, N_Has_Etype, N_Has_Chars, N_Has_Entity
8182 N_Expanded_Name,
8184 -- N_Direct_Name, N_Subexpr, N_Has_Etype,
8185 -- N_Has_Chars, N_Has_Entity
8187 N_Identifier,
8188 N_Operator_Symbol,
8190 -- N_Direct_Name, N_Subexpr, N_Has_Etype,
8191 -- N_Has_Chars, N_Has_Entity
8193 N_Character_Literal,
8195 -- N_Binary_Op, N_Op, N_Subexpr,
8196 -- N_Has_Etype, N_Has_Chars, N_Has_Entity
8198 N_Op_Add,
8199 N_Op_Concat,
8200 N_Op_Expon,
8201 N_Op_Subtract,
8203 -- N_Binary_Op, N_Op, N_Subexpr, N_Has_Treat_Fixed_As_Integer
8204 -- N_Has_Etype, N_Has_Chars, N_Has_Entity, N_Multiplying_Operator
8206 N_Op_Divide,
8207 N_Op_Mod,
8208 N_Op_Multiply,
8209 N_Op_Rem,
8211 -- N_Binary_Op, N_Op, N_Subexpr, N_Has_Etype
8212 -- N_Has_Entity, N_Has_Chars, N_Op_Boolean
8214 N_Op_And,
8216 -- N_Binary_Op, N_Op, N_Subexpr, N_Has_Etype
8217 -- N_Has_Entity, N_Has_Chars, N_Op_Boolean, N_Op_Compare
8219 N_Op_Eq,
8220 N_Op_Ge,
8221 N_Op_Gt,
8222 N_Op_Le,
8223 N_Op_Lt,
8224 N_Op_Ne,
8226 -- N_Binary_Op, N_Op, N_Subexpr, N_Has_Etype
8227 -- N_Has_Entity, N_Has_Chars, N_Op_Boolean
8229 N_Op_Or,
8230 N_Op_Xor,
8232 -- N_Binary_Op, N_Op, N_Subexpr, N_Has_Etype,
8233 -- N_Op_Shift, N_Has_Chars, N_Has_Entity
8235 N_Op_Rotate_Left,
8236 N_Op_Rotate_Right,
8237 N_Op_Shift_Left,
8238 N_Op_Shift_Right,
8239 N_Op_Shift_Right_Arithmetic,
8241 -- N_Unary_Op, N_Op, N_Subexpr, N_Has_Etype,
8242 -- N_Has_Chars, N_Has_Entity
8244 N_Op_Abs,
8245 N_Op_Minus,
8246 N_Op_Not,
8247 N_Op_Plus,
8249 -- N_Subexpr, N_Has_Etype, N_Has_Entity
8251 N_Attribute_Reference,
8253 -- N_Subexpr, N_Has_Etype, N_Membership_Test
8255 N_In,
8256 N_Not_In,
8258 -- N_Subexpr, N_Has_Etype, N_Short_Circuit
8260 N_And_Then,
8261 N_Or_Else,
8263 -- N_Subexpr, N_Has_Etype, N_Subprogram_Call
8265 N_Function_Call,
8266 N_Procedure_Call_Statement,
8268 -- N_Subexpr, N_Has_Etype, N_Raise_xxx_Error
8270 N_Raise_Constraint_Error,
8271 N_Raise_Program_Error,
8272 N_Raise_Storage_Error,
8274 -- N_Subexpr, N_Has_Etype, N_Numeric_Or_String_Literal
8276 N_Integer_Literal,
8277 N_Real_Literal,
8278 N_String_Literal,
8280 -- N_Subexpr, N_Has_Etype
8282 N_Explicit_Dereference,
8283 N_Expression_With_Actions,
8284 N_If_Expression,
8285 N_Indexed_Component,
8286 N_Null,
8287 N_Qualified_Expression,
8288 N_Quantified_Expression,
8289 N_Aggregate,
8290 N_Allocator,
8291 N_Case_Expression,
8292 N_Extension_Aggregate,
8293 N_Raise_Expression,
8294 N_Range,
8295 N_Reference,
8296 N_Selected_Component,
8297 N_Slice,
8298 N_Type_Conversion,
8299 N_Unchecked_Expression,
8300 N_Unchecked_Type_Conversion,
8302 -- N_Has_Etype
8304 N_Subtype_Indication,
8306 -- N_Declaration
8308 N_Component_Declaration,
8309 N_Entry_Declaration,
8310 N_Expression_Function,
8311 N_Formal_Object_Declaration,
8312 N_Formal_Type_Declaration,
8313 N_Full_Type_Declaration,
8314 N_Incomplete_Type_Declaration,
8315 N_Iterator_Specification,
8316 N_Loop_Parameter_Specification,
8317 N_Object_Declaration,
8318 N_Protected_Type_Declaration,
8319 N_Private_Extension_Declaration,
8320 N_Private_Type_Declaration,
8321 N_Subtype_Declaration,
8323 -- N_Subprogram_Specification, N_Declaration
8325 N_Function_Specification,
8326 N_Procedure_Specification,
8328 -- N_Access_To_Subprogram_Definition
8330 N_Access_Function_Definition,
8331 N_Access_Procedure_Definition,
8333 -- N_Later_Decl_Item
8335 N_Task_Type_Declaration,
8337 -- N_Body_Stub, N_Later_Decl_Item
8339 N_Package_Body_Stub,
8340 N_Protected_Body_Stub,
8341 N_Subprogram_Body_Stub,
8342 N_Task_Body_Stub,
8344 -- N_Generic_Instantiation, N_Later_Decl_Item
8345 -- N_Subprogram_Instantiation
8347 N_Function_Instantiation,
8348 N_Procedure_Instantiation,
8350 -- N_Generic_Instantiation, N_Later_Decl_Item
8352 N_Package_Instantiation,
8354 -- N_Unit_Body, N_Later_Decl_Item, N_Proper_Body
8356 N_Package_Body,
8357 N_Subprogram_Body,
8359 -- N_Later_Decl_Item, N_Proper_Body
8361 N_Protected_Body,
8362 N_Task_Body,
8364 -- N_Later_Decl_Item
8366 N_Implicit_Label_Declaration,
8367 N_Package_Declaration,
8368 N_Single_Task_Declaration,
8369 N_Subprogram_Declaration,
8370 N_Use_Package_Clause,
8372 -- N_Generic_Declaration, N_Later_Decl_Item
8374 N_Generic_Package_Declaration,
8375 N_Generic_Subprogram_Declaration,
8377 -- N_Array_Type_Definition
8379 N_Constrained_Array_Definition,
8380 N_Unconstrained_Array_Definition,
8382 -- N_Renaming_Declaration
8384 N_Exception_Renaming_Declaration,
8385 N_Object_Renaming_Declaration,
8386 N_Package_Renaming_Declaration,
8387 N_Subprogram_Renaming_Declaration,
8389 -- N_Generic_Renaming_Declaration, N_Renaming_Declaration
8391 N_Generic_Function_Renaming_Declaration,
8392 N_Generic_Package_Renaming_Declaration,
8393 N_Generic_Procedure_Renaming_Declaration,
8395 -- N_Statement_Other_Than_Procedure_Call
8397 N_Abort_Statement,
8398 N_Accept_Statement,
8399 N_Assignment_Statement,
8400 N_Asynchronous_Select,
8401 N_Block_Statement,
8402 N_Case_Statement,
8403 N_Code_Statement,
8404 N_Compound_Statement,
8405 N_Conditional_Entry_Call,
8407 -- N_Statement_Other_Than_Procedure_Call, N_Delay_Statement
8409 N_Delay_Relative_Statement,
8410 N_Delay_Until_Statement,
8412 -- N_Statement_Other_Than_Procedure_Call
8414 N_Entry_Call_Statement,
8415 N_Free_Statement,
8416 N_Goto_Statement,
8417 N_Loop_Statement,
8418 N_Null_Statement,
8419 N_Raise_Statement,
8420 N_Requeue_Statement,
8421 N_Simple_Return_Statement,
8422 N_Extended_Return_Statement,
8423 N_Selective_Accept,
8424 N_Timed_Entry_Call,
8426 -- N_Statement_Other_Than_Procedure_Call, N_Has_Condition
8428 N_Exit_Statement,
8429 N_If_Statement,
8431 -- N_Has_Condition
8433 N_Accept_Alternative,
8434 N_Delay_Alternative,
8435 N_Elsif_Part,
8436 N_Entry_Body_Formal_Part,
8437 N_Iteration_Scheme,
8438 N_Terminate_Alternative,
8440 -- N_Formal_Subprogram_Declaration
8442 N_Formal_Abstract_Subprogram_Declaration,
8443 N_Formal_Concrete_Subprogram_Declaration,
8445 -- N_Push_xxx_Label, N_Push_Pop_xxx_Label
8447 N_Push_Constraint_Error_Label,
8448 N_Push_Program_Error_Label,
8449 N_Push_Storage_Error_Label,
8451 -- N_Pop_xxx_Label, N_Push_Pop_xxx_Label
8453 N_Pop_Constraint_Error_Label,
8454 N_Pop_Program_Error_Label,
8455 N_Pop_Storage_Error_Label,
8457 -- SCIL nodes
8459 N_SCIL_Dispatch_Table_Tag_Init,
8460 N_SCIL_Dispatching_Call,
8461 N_SCIL_Membership_Test,
8463 -- Other nodes (not part of any subtype class)
8465 N_Abortable_Part,
8466 N_Abstract_Subprogram_Declaration,
8467 N_Access_Definition,
8468 N_Access_To_Object_Definition,
8469 N_Aspect_Specification,
8470 N_Case_Expression_Alternative,
8471 N_Case_Statement_Alternative,
8472 N_Compilation_Unit,
8473 N_Compilation_Unit_Aux,
8474 N_Component_Association,
8475 N_Component_Definition,
8476 N_Component_List,
8477 N_Contract,
8478 N_Derived_Type_Definition,
8479 N_Decimal_Fixed_Point_Definition,
8480 N_Defining_Program_Unit_Name,
8481 N_Delta_Constraint,
8482 N_Designator,
8483 N_Digits_Constraint,
8484 N_Discriminant_Association,
8485 N_Discriminant_Specification,
8486 N_Enumeration_Type_Definition,
8487 N_Entry_Body,
8488 N_Entry_Call_Alternative,
8489 N_Entry_Index_Specification,
8490 N_Exception_Declaration,
8491 N_Exception_Handler,
8492 N_Floating_Point_Definition,
8493 N_Formal_Decimal_Fixed_Point_Definition,
8494 N_Formal_Derived_Type_Definition,
8495 N_Formal_Discrete_Type_Definition,
8496 N_Formal_Floating_Point_Definition,
8497 N_Formal_Modular_Type_Definition,
8498 N_Formal_Ordinary_Fixed_Point_Definition,
8499 N_Formal_Package_Declaration,
8500 N_Formal_Private_Type_Definition,
8501 N_Formal_Incomplete_Type_Definition,
8502 N_Formal_Signed_Integer_Type_Definition,
8503 N_Freeze_Entity,
8504 N_Freeze_Generic_Entity,
8505 N_Generic_Association,
8506 N_Handled_Sequence_Of_Statements,
8507 N_Index_Or_Discriminant_Constraint,
8508 N_Itype_Reference,
8509 N_Label,
8510 N_Modular_Type_Definition,
8511 N_Number_Declaration,
8512 N_Ordinary_Fixed_Point_Definition,
8513 N_Others_Choice,
8514 N_Package_Specification,
8515 N_Parameter_Association,
8516 N_Parameter_Specification,
8517 N_Pragma,
8518 N_Protected_Definition,
8519 N_Range_Constraint,
8520 N_Real_Range_Specification,
8521 N_Record_Definition,
8522 N_Signed_Integer_Type_Definition,
8523 N_Single_Protected_Declaration,
8524 N_Subunit,
8525 N_Task_Definition,
8526 N_Triggering_Alternative,
8527 N_Use_Type_Clause,
8528 N_Validate_Unchecked_Conversion,
8529 N_Variant,
8530 N_Variant_Part,
8531 N_With_Clause,
8532 N_Unused_At_End);
8534 for Node_Kind'Size use 8;
8535 -- The data structures in Atree assume this
8537 ----------------------------
8538 -- Node Class Definitions --
8539 ----------------------------
8541 subtype N_Access_To_Subprogram_Definition is Node_Kind range
8542 N_Access_Function_Definition ..
8543 N_Access_Procedure_Definition;
8545 subtype N_Array_Type_Definition is Node_Kind range
8546 N_Constrained_Array_Definition ..
8547 N_Unconstrained_Array_Definition;
8549 subtype N_Binary_Op is Node_Kind range
8550 N_Op_Add ..
8551 N_Op_Shift_Right_Arithmetic;
8553 subtype N_Body_Stub is Node_Kind range
8554 N_Package_Body_Stub ..
8555 N_Task_Body_Stub;
8557 subtype N_Declaration is Node_Kind range
8558 N_Component_Declaration ..
8559 N_Procedure_Specification;
8560 -- Note: this includes all constructs normally thought of as declarations
8561 -- except those which are separately grouped as later declarations.
8563 subtype N_Delay_Statement is Node_Kind range
8564 N_Delay_Relative_Statement ..
8565 N_Delay_Until_Statement;
8567 subtype N_Direct_Name is Node_Kind range
8568 N_Identifier ..
8569 N_Character_Literal;
8571 subtype N_Entity is Node_Kind range
8572 N_Defining_Character_Literal ..
8573 N_Defining_Operator_Symbol;
8575 subtype N_Formal_Subprogram_Declaration is Node_Kind range
8576 N_Formal_Abstract_Subprogram_Declaration ..
8577 N_Formal_Concrete_Subprogram_Declaration;
8579 subtype N_Generic_Declaration is Node_Kind range
8580 N_Generic_Package_Declaration ..
8581 N_Generic_Subprogram_Declaration;
8583 subtype N_Generic_Instantiation is Node_Kind range
8584 N_Function_Instantiation ..
8585 N_Package_Instantiation;
8587 subtype N_Generic_Renaming_Declaration is Node_Kind range
8588 N_Generic_Function_Renaming_Declaration ..
8589 N_Generic_Procedure_Renaming_Declaration;
8591 subtype N_Has_Chars is Node_Kind range
8592 N_Attribute_Definition_Clause ..
8593 N_Op_Plus;
8595 subtype N_Has_Entity is Node_Kind range
8596 N_Expanded_Name ..
8597 N_Attribute_Reference;
8598 -- Nodes that have Entity fields
8599 -- Warning: DOES NOT INCLUDE N_Freeze_Entity, N_Freeze_Generic_Entity,
8600 -- N_Aspect_Specification, or N_Attribute_Definition_Clause.
8602 subtype N_Has_Etype is Node_Kind range
8603 N_Error ..
8604 N_Subtype_Indication;
8606 subtype N_Has_Treat_Fixed_As_Integer is Node_Kind range
8607 N_Op_Divide ..
8608 N_Op_Rem;
8610 subtype N_Multiplying_Operator is Node_Kind range
8611 N_Op_Divide ..
8612 N_Op_Rem;
8614 subtype N_Later_Decl_Item is Node_Kind range
8615 N_Task_Type_Declaration ..
8616 N_Generic_Subprogram_Declaration;
8617 -- Note: this is Ada 83 relevant only (see Ada 83 RM 3.9 (2)) and includes
8618 -- only those items which can appear as later declarative items. This also
8619 -- includes N_Implicit_Label_Declaration which is not specifically in the
8620 -- grammar but may appear as a valid later declarative items. It does NOT
8621 -- include N_Pragma which can also appear among later declarative items.
8622 -- It does however include N_Protected_Body, which is a bit peculiar, but
8623 -- harmless since this cannot appear in Ada 83 mode anyway.
8625 subtype N_Membership_Test is Node_Kind range
8626 N_In ..
8627 N_Not_In;
8629 subtype N_Numeric_Or_String_Literal is Node_Kind range
8630 N_Integer_Literal ..
8631 N_String_Literal;
8633 subtype N_Op is Node_Kind range
8634 N_Op_Add ..
8635 N_Op_Plus;
8637 subtype N_Op_Boolean is Node_Kind range
8638 N_Op_And ..
8639 N_Op_Xor;
8640 -- Binary operators which take operands of a boolean type, and yield
8641 -- a result of a boolean type.
8643 subtype N_Op_Compare is Node_Kind range
8644 N_Op_Eq ..
8645 N_Op_Ne;
8647 subtype N_Op_Shift is Node_Kind range
8648 N_Op_Rotate_Left ..
8649 N_Op_Shift_Right_Arithmetic;
8651 subtype N_Proper_Body is Node_Kind range
8652 N_Package_Body ..
8653 N_Task_Body;
8655 subtype N_Push_xxx_Label is Node_Kind range
8656 N_Push_Constraint_Error_Label ..
8657 N_Push_Storage_Error_Label;
8659 subtype N_Pop_xxx_Label is Node_Kind range
8660 N_Pop_Constraint_Error_Label ..
8661 N_Pop_Storage_Error_Label;
8663 subtype N_Push_Pop_xxx_Label is Node_Kind range
8664 N_Push_Constraint_Error_Label ..
8665 N_Pop_Storage_Error_Label;
8667 subtype N_Raise_xxx_Error is Node_Kind range
8668 N_Raise_Constraint_Error ..
8669 N_Raise_Storage_Error;
8671 subtype N_Renaming_Declaration is Node_Kind range
8672 N_Exception_Renaming_Declaration ..
8673 N_Generic_Procedure_Renaming_Declaration;
8675 subtype N_Representation_Clause is Node_Kind range
8676 N_At_Clause ..
8677 N_Attribute_Definition_Clause;
8679 subtype N_Short_Circuit is Node_Kind range
8680 N_And_Then ..
8681 N_Or_Else;
8683 subtype N_SCIL_Node is Node_Kind range
8684 N_SCIL_Dispatch_Table_Tag_Init ..
8685 N_SCIL_Membership_Test;
8687 subtype N_Statement_Other_Than_Procedure_Call is Node_Kind range
8688 N_Abort_Statement ..
8689 N_If_Statement;
8690 -- Note that this includes all statement types except for the cases of the
8691 -- N_Procedure_Call_Statement which is considered to be a subexpression
8692 -- (since overloading is possible, so it needs to go through the normal
8693 -- overloading resolution for expressions).
8695 subtype N_Subprogram_Call is Node_Kind range
8696 N_Function_Call ..
8697 N_Procedure_Call_Statement;
8699 subtype N_Subprogram_Instantiation is Node_Kind range
8700 N_Function_Instantiation ..
8701 N_Procedure_Instantiation;
8703 subtype N_Has_Condition is Node_Kind range
8704 N_Exit_Statement ..
8705 N_Terminate_Alternative;
8706 -- Nodes with condition fields (does not include N_Raise_xxx_Error)
8708 subtype N_Subexpr is Node_Kind range
8709 N_Expanded_Name ..
8710 N_Unchecked_Type_Conversion;
8711 -- Nodes with expression fields
8713 subtype N_Subprogram_Specification is Node_Kind range
8714 N_Function_Specification ..
8715 N_Procedure_Specification;
8717 subtype N_Unary_Op is Node_Kind range
8718 N_Op_Abs ..
8719 N_Op_Plus;
8721 subtype N_Unit_Body is Node_Kind range
8722 N_Package_Body ..
8723 N_Subprogram_Body;
8725 ---------------------------
8726 -- Node Access Functions --
8727 ---------------------------
8729 -- The following functions return the contents of the indicated field of
8730 -- the node referenced by the argument, which is a Node_Id. They provide
8731 -- logical access to fields in the node which could be accessed using the
8732 -- Atree.Unchecked_Access package, but the idea is always to use these
8733 -- higher level routines which preserve strong typing. In debug mode,
8734 -- these routines check that they are being applied to an appropriate
8735 -- node, as well as checking that the node is in range.
8737 function ABE_Is_Certain
8738 (N : Node_Id) return Boolean; -- Flag18
8740 function Abort_Present
8741 (N : Node_Id) return Boolean; -- Flag15
8743 function Abortable_Part
8744 (N : Node_Id) return Node_Id; -- Node2
8746 function Abstract_Present
8747 (N : Node_Id) return Boolean; -- Flag4
8749 function Accept_Handler_Records
8750 (N : Node_Id) return List_Id; -- List5
8752 function Accept_Statement
8753 (N : Node_Id) return Node_Id; -- Node2
8755 function Access_Definition
8756 (N : Node_Id) return Node_Id; -- Node3
8758 function Access_To_Subprogram_Definition
8759 (N : Node_Id) return Node_Id; -- Node3
8761 function Access_Types_To_Process
8762 (N : Node_Id) return Elist_Id; -- Elist2
8764 function Actions
8765 (N : Node_Id) return List_Id; -- List1
8767 function Activation_Chain_Entity
8768 (N : Node_Id) return Node_Id; -- Node3
8770 function Acts_As_Spec
8771 (N : Node_Id) return Boolean; -- Flag4
8773 function Actual_Designated_Subtype
8774 (N : Node_Id) return Node_Id; -- Node4
8776 function Address_Warning_Posted
8777 (N : Node_Id) return Boolean; -- Flag18
8779 function Aggregate_Bounds
8780 (N : Node_Id) return Node_Id; -- Node3
8782 function Aliased_Present
8783 (N : Node_Id) return Boolean; -- Flag4
8785 function All_Others
8786 (N : Node_Id) return Boolean; -- Flag11
8788 function All_Present
8789 (N : Node_Id) return Boolean; -- Flag15
8791 function Alternatives
8792 (N : Node_Id) return List_Id; -- List4
8794 function Ancestor_Part
8795 (N : Node_Id) return Node_Id; -- Node3
8797 function Atomic_Sync_Required
8798 (N : Node_Id) return Boolean; -- Flag14
8800 function Array_Aggregate
8801 (N : Node_Id) return Node_Id; -- Node3
8803 function Aspect_Rep_Item
8804 (N : Node_Id) return Node_Id; -- Node2
8806 function Assignment_OK
8807 (N : Node_Id) return Boolean; -- Flag15
8809 function Associated_Node
8810 (N : Node_Id) return Node_Id; -- Node4
8812 function At_End_Proc
8813 (N : Node_Id) return Node_Id; -- Node1
8815 function Attribute_Name
8816 (N : Node_Id) return Name_Id; -- Name2
8818 function Aux_Decls_Node
8819 (N : Node_Id) return Node_Id; -- Node5
8821 function Backwards_OK
8822 (N : Node_Id) return Boolean; -- Flag6
8824 function Bad_Is_Detected
8825 (N : Node_Id) return Boolean; -- Flag15
8827 function By_Ref
8828 (N : Node_Id) return Boolean; -- Flag5
8830 function Body_Required
8831 (N : Node_Id) return Boolean; -- Flag13
8833 function Body_To_Inline
8834 (N : Node_Id) return Node_Id; -- Node3
8836 function Box_Present
8837 (N : Node_Id) return Boolean; -- Flag15
8839 function Char_Literal_Value
8840 (N : Node_Id) return Uint; -- Uint2
8842 function Chars
8843 (N : Node_Id) return Name_Id; -- Name1
8845 function Check_Address_Alignment
8846 (N : Node_Id) return Boolean; -- Flag11
8848 function Choice_Parameter
8849 (N : Node_Id) return Node_Id; -- Node2
8851 function Choices
8852 (N : Node_Id) return List_Id; -- List1
8854 function Class_Present
8855 (N : Node_Id) return Boolean; -- Flag6
8857 function Classifications
8858 (N : Node_Id) return Node_Id; -- Node3
8860 function Cleanup_Actions
8861 (N : Node_Id) return List_Id; -- List5
8863 function Comes_From_Extended_Return_Statement
8864 (N : Node_Id) return Boolean; -- Flag18
8866 function Compile_Time_Known_Aggregate
8867 (N : Node_Id) return Boolean; -- Flag18
8869 function Component_Associations
8870 (N : Node_Id) return List_Id; -- List2
8872 function Component_Clauses
8873 (N : Node_Id) return List_Id; -- List3
8875 function Component_Definition
8876 (N : Node_Id) return Node_Id; -- Node4
8878 function Component_Items
8879 (N : Node_Id) return List_Id; -- List3
8881 function Component_List
8882 (N : Node_Id) return Node_Id; -- Node1
8884 function Component_Name
8885 (N : Node_Id) return Node_Id; -- Node1
8887 function Componentwise_Assignment
8888 (N : Node_Id) return Boolean; -- Flag14
8890 function Condition
8891 (N : Node_Id) return Node_Id; -- Node1
8893 function Condition_Actions
8894 (N : Node_Id) return List_Id; -- List3
8896 function Config_Pragmas
8897 (N : Node_Id) return List_Id; -- List4
8899 function Constant_Present
8900 (N : Node_Id) return Boolean; -- Flag17
8902 function Constraint
8903 (N : Node_Id) return Node_Id; -- Node3
8905 function Constraints
8906 (N : Node_Id) return List_Id; -- List1
8908 function Context_Installed
8909 (N : Node_Id) return Boolean; -- Flag13
8911 function Context_Pending
8912 (N : Node_Id) return Boolean; -- Flag16
8914 function Context_Items
8915 (N : Node_Id) return List_Id; -- List1
8917 function Contract_Test_Cases
8918 (N : Node_Id) return Node_Id; -- Node2
8920 function Controlling_Argument
8921 (N : Node_Id) return Node_Id; -- Node1
8923 function Conversion_OK
8924 (N : Node_Id) return Boolean; -- Flag14
8926 function Convert_To_Return_False
8927 (N : Node_Id) return Boolean; -- Flag13
8929 function Corresponding_Aspect
8930 (N : Node_Id) return Node_Id; -- Node3
8932 function Corresponding_Body
8933 (N : Node_Id) return Node_Id; -- Node5
8935 function Corresponding_Formal_Spec
8936 (N : Node_Id) return Node_Id; -- Node3
8938 function Corresponding_Generic_Association
8939 (N : Node_Id) return Node_Id; -- Node5
8941 function Corresponding_Integer_Value
8942 (N : Node_Id) return Uint; -- Uint4
8944 function Corresponding_Spec
8945 (N : Node_Id) return Node_Id; -- Node5
8947 function Corresponding_Spec_Of_Stub
8948 (N : Node_Id) return Node_Id; -- Node2
8950 function Corresponding_Stub
8951 (N : Node_Id) return Node_Id; -- Node3
8953 function Dcheck_Function
8954 (N : Node_Id) return Entity_Id; -- Node5
8956 function Declarations
8957 (N : Node_Id) return List_Id; -- List2
8959 function Default_Expression
8960 (N : Node_Id) return Node_Id; -- Node5
8962 function Default_Storage_Pool
8963 (N : Node_Id) return Node_Id; -- Node3
8965 function Default_Name
8966 (N : Node_Id) return Node_Id; -- Node2
8968 function Defining_Identifier
8969 (N : Node_Id) return Entity_Id; -- Node1
8971 function Defining_Unit_Name
8972 (N : Node_Id) return Node_Id; -- Node1
8974 function Delay_Alternative
8975 (N : Node_Id) return Node_Id; -- Node4
8977 function Delay_Statement
8978 (N : Node_Id) return Node_Id; -- Node2
8980 function Delta_Expression
8981 (N : Node_Id) return Node_Id; -- Node3
8983 function Digits_Expression
8984 (N : Node_Id) return Node_Id; -- Node2
8986 function Discr_Check_Funcs_Built
8987 (N : Node_Id) return Boolean; -- Flag11
8989 function Discrete_Choices
8990 (N : Node_Id) return List_Id; -- List4
8992 function Discrete_Range
8993 (N : Node_Id) return Node_Id; -- Node4
8995 function Discrete_Subtype_Definition
8996 (N : Node_Id) return Node_Id; -- Node4
8998 function Discrete_Subtype_Definitions
8999 (N : Node_Id) return List_Id; -- List2
9001 function Discriminant_Specifications
9002 (N : Node_Id) return List_Id; -- List4
9004 function Discriminant_Type
9005 (N : Node_Id) return Node_Id; -- Node5
9007 function Do_Accessibility_Check
9008 (N : Node_Id) return Boolean; -- Flag13
9010 function Do_Discriminant_Check
9011 (N : Node_Id) return Boolean; -- Flag1
9013 function Do_Division_Check
9014 (N : Node_Id) return Boolean; -- Flag13
9016 function Do_Length_Check
9017 (N : Node_Id) return Boolean; -- Flag4
9019 function Do_Overflow_Check
9020 (N : Node_Id) return Boolean; -- Flag17
9022 function Do_Range_Check
9023 (N : Node_Id) return Boolean; -- Flag9
9025 function Do_Storage_Check
9026 (N : Node_Id) return Boolean; -- Flag17
9028 function Do_Tag_Check
9029 (N : Node_Id) return Boolean; -- Flag13
9031 function Elaborate_All_Desirable
9032 (N : Node_Id) return Boolean; -- Flag9
9034 function Elaborate_All_Present
9035 (N : Node_Id) return Boolean; -- Flag14
9037 function Elaborate_Desirable
9038 (N : Node_Id) return Boolean; -- Flag11
9040 function Elaborate_Present
9041 (N : Node_Id) return Boolean; -- Flag4
9043 function Else_Actions
9044 (N : Node_Id) return List_Id; -- List3
9046 function Else_Statements
9047 (N : Node_Id) return List_Id; -- List4
9049 function Elsif_Parts
9050 (N : Node_Id) return List_Id; -- List3
9052 function Enclosing_Variant
9053 (N : Node_Id) return Node_Id; -- Node2
9055 function End_Label
9056 (N : Node_Id) return Node_Id; -- Node4
9058 function End_Span
9059 (N : Node_Id) return Uint; -- Uint5
9061 function Entity
9062 (N : Node_Id) return Node_Id; -- Node4
9064 function Entity_Or_Associated_Node
9065 (N : Node_Id) return Node_Id; -- Node4
9067 function Entry_Body_Formal_Part
9068 (N : Node_Id) return Node_Id; -- Node5
9070 function Entry_Call_Alternative
9071 (N : Node_Id) return Node_Id; -- Node1
9073 function Entry_Call_Statement
9074 (N : Node_Id) return Node_Id; -- Node1
9076 function Entry_Direct_Name
9077 (N : Node_Id) return Node_Id; -- Node1
9079 function Entry_Index
9080 (N : Node_Id) return Node_Id; -- Node5
9082 function Entry_Index_Specification
9083 (N : Node_Id) return Node_Id; -- Node4
9085 function Etype
9086 (N : Node_Id) return Node_Id; -- Node5
9088 function Exception_Choices
9089 (N : Node_Id) return List_Id; -- List4
9091 function Exception_Handlers
9092 (N : Node_Id) return List_Id; -- List5
9094 function Exception_Junk
9095 (N : Node_Id) return Boolean; -- Flag8
9097 function Exception_Label
9098 (N : Node_Id) return Node_Id; -- Node5
9100 function Explicit_Actual_Parameter
9101 (N : Node_Id) return Node_Id; -- Node3
9103 function Expansion_Delayed
9104 (N : Node_Id) return Boolean; -- Flag11
9106 function Explicit_Generic_Actual_Parameter
9107 (N : Node_Id) return Node_Id; -- Node1
9109 function Expression
9110 (N : Node_Id) return Node_Id; -- Node3
9112 function Expressions
9113 (N : Node_Id) return List_Id; -- List1
9115 function First_Bit
9116 (N : Node_Id) return Node_Id; -- Node3
9118 function First_Inlined_Subprogram
9119 (N : Node_Id) return Entity_Id; -- Node3
9121 function First_Name
9122 (N : Node_Id) return Boolean; -- Flag5
9124 function First_Named_Actual
9125 (N : Node_Id) return Node_Id; -- Node4
9127 function First_Real_Statement
9128 (N : Node_Id) return Node_Id; -- Node2
9130 function First_Subtype_Link
9131 (N : Node_Id) return Entity_Id; -- Node5
9133 function Float_Truncate
9134 (N : Node_Id) return Boolean; -- Flag11
9136 function Formal_Type_Definition
9137 (N : Node_Id) return Node_Id; -- Node3
9139 function Forwards_OK
9140 (N : Node_Id) return Boolean; -- Flag5
9142 function From_Aspect_Specification
9143 (N : Node_Id) return Boolean; -- Flag13
9145 function From_At_End
9146 (N : Node_Id) return Boolean; -- Flag4
9148 function From_At_Mod
9149 (N : Node_Id) return Boolean; -- Flag4
9151 function From_Conditional_Expression
9152 (N : Node_Id) return Boolean; -- Flag1
9154 function From_Default
9155 (N : Node_Id) return Boolean; -- Flag6
9157 function Generalized_Indexing
9158 (N : Node_Id) return Node_Id; -- Node4
9159 function Generic_Associations
9160 (N : Node_Id) return List_Id; -- List3
9162 function Generic_Formal_Declarations
9163 (N : Node_Id) return List_Id; -- List2
9165 function Generic_Parent
9166 (N : Node_Id) return Node_Id; -- Node5
9168 function Generic_Parent_Type
9169 (N : Node_Id) return Node_Id; -- Node4
9171 function Handled_Statement_Sequence
9172 (N : Node_Id) return Node_Id; -- Node4
9174 function Handler_List_Entry
9175 (N : Node_Id) return Node_Id; -- Node2
9177 function Has_Created_Identifier
9178 (N : Node_Id) return Boolean; -- Flag15
9180 function Has_Dereference_Action
9181 (N : Node_Id) return Boolean; -- Flag13
9183 function Has_Dynamic_Length_Check
9184 (N : Node_Id) return Boolean; -- Flag10
9186 function Has_Dynamic_Range_Check
9187 (N : Node_Id) return Boolean; -- Flag12
9189 function Has_Init_Expression
9190 (N : Node_Id) return Boolean; -- Flag14
9192 function Has_Local_Raise
9193 (N : Node_Id) return Boolean; -- Flag8
9195 function Has_No_Elaboration_Code
9196 (N : Node_Id) return Boolean; -- Flag17
9198 function Has_Pragma_Suppress_All
9199 (N : Node_Id) return Boolean; -- Flag14
9201 function Has_Private_View
9202 (N : Node_Id) return Boolean; -- Flag11
9204 function Has_Relative_Deadline_Pragma
9205 (N : Node_Id) return Boolean; -- Flag9
9207 function Has_Self_Reference
9208 (N : Node_Id) return Boolean; -- Flag13
9210 function Has_SP_Choice
9211 (N : Node_Id) return Boolean; -- Flag15
9213 function Has_Storage_Size_Pragma
9214 (N : Node_Id) return Boolean; -- Flag5
9216 function Has_Wide_Character
9217 (N : Node_Id) return Boolean; -- Flag11
9219 function Has_Wide_Wide_Character
9220 (N : Node_Id) return Boolean; -- Flag13
9222 function Header_Size_Added
9223 (N : Node_Id) return Boolean; -- Flag11
9225 function Hidden_By_Use_Clause
9226 (N : Node_Id) return Elist_Id; -- Elist4
9228 function High_Bound
9229 (N : Node_Id) return Node_Id; -- Node2
9231 function Identifier
9232 (N : Node_Id) return Node_Id; -- Node1
9234 function Interface_List
9235 (N : Node_Id) return List_Id; -- List2
9237 function Interface_Present
9238 (N : Node_Id) return Boolean; -- Flag16
9240 function Implicit_With
9241 (N : Node_Id) return Boolean; -- Flag16
9243 function Implicit_With_From_Instantiation
9244 (N : Node_Id) return Boolean; -- Flag12
9246 function Import_Interface_Present
9247 (N : Node_Id) return Boolean; -- Flag16
9249 function In_Present
9250 (N : Node_Id) return Boolean; -- Flag15
9252 function Includes_Infinities
9253 (N : Node_Id) return Boolean; -- Flag11
9255 function Incomplete_View
9256 (N : Node_Id) return Node_Id; -- Node2
9258 function Inherited_Discriminant
9259 (N : Node_Id) return Boolean; -- Flag13
9261 function Instance_Spec
9262 (N : Node_Id) return Node_Id; -- Node5
9264 function Intval
9265 (N : Node_Id) return Uint; -- Uint3
9267 function Is_Accessibility_Actual
9268 (N : Node_Id) return Boolean; -- Flag13
9270 function Is_Asynchronous_Call_Block
9271 (N : Node_Id) return Boolean; -- Flag7
9273 function Is_Boolean_Aspect
9274 (N : Node_Id) return Boolean; -- Flag16
9276 function Is_Checked
9277 (N : Node_Id) return Boolean; -- Flag11
9279 function Is_Component_Left_Opnd
9280 (N : Node_Id) return Boolean; -- Flag13
9282 function Is_Component_Right_Opnd
9283 (N : Node_Id) return Boolean; -- Flag14
9285 function Is_Controlling_Actual
9286 (N : Node_Id) return Boolean; -- Flag16
9288 function Is_Delayed_Aspect
9289 (N : Node_Id) return Boolean; -- Flag14
9291 function Is_Disabled
9292 (N : Node_Id) return Boolean; -- Flag15
9294 function Is_Dynamic_Coextension
9295 (N : Node_Id) return Boolean; -- Flag18
9297 function Is_Elsif
9298 (N : Node_Id) return Boolean; -- Flag13
9300 function Is_Entry_Barrier_Function
9301 (N : Node_Id) return Boolean; -- Flag8
9303 function Is_Expanded_Build_In_Place_Call
9304 (N : Node_Id) return Boolean; -- Flag11
9306 function Is_Finalization_Wrapper
9307 (N : Node_Id) return Boolean; -- Flag9
9309 function Is_Folded_In_Parser
9310 (N : Node_Id) return Boolean; -- Flag4
9312 function Is_Generic_Contract_Pragma
9313 (N : Node_Id) return Boolean; -- Flag2
9315 function Is_Ignored
9316 (N : Node_Id) return Boolean; -- Flag9
9318 function Is_In_Discriminant_Check
9319 (N : Node_Id) return Boolean; -- Flag11
9321 function Is_Inherited
9322 (N : Node_Id) return Boolean; -- Flag4
9324 function Is_Machine_Number
9325 (N : Node_Id) return Boolean; -- Flag11
9327 function Is_Null_Loop
9328 (N : Node_Id) return Boolean; -- Flag16
9330 function Is_Overloaded
9331 (N : Node_Id) return Boolean; -- Flag5
9333 function Is_Power_Of_2_For_Shift
9334 (N : Node_Id) return Boolean; -- Flag13
9336 function Is_Prefixed_Call
9337 (N : Node_Id) return Boolean; -- Flag17
9339 function Is_Protected_Subprogram_Body
9340 (N : Node_Id) return Boolean; -- Flag7
9342 function Is_Static_Coextension
9343 (N : Node_Id) return Boolean; -- Flag14
9345 function Is_Static_Expression
9346 (N : Node_Id) return Boolean; -- Flag6
9348 function Is_Subprogram_Descriptor
9349 (N : Node_Id) return Boolean; -- Flag16
9351 function Is_Task_Allocation_Block
9352 (N : Node_Id) return Boolean; -- Flag6
9354 function Is_Task_Master
9355 (N : Node_Id) return Boolean; -- Flag5
9357 function Iteration_Scheme
9358 (N : Node_Id) return Node_Id; -- Node2
9360 function Iterator_Specification
9361 (N : Node_Id) return Node_Id; -- Node2
9363 function Itype
9364 (N : Node_Id) return Entity_Id; -- Node1
9366 function Kill_Range_Check
9367 (N : Node_Id) return Boolean; -- Flag11
9369 function Label_Construct
9370 (N : Node_Id) return Node_Id; -- Node2
9372 function Left_Opnd
9373 (N : Node_Id) return Node_Id; -- Node2
9375 function Last_Bit
9376 (N : Node_Id) return Node_Id; -- Node4
9378 function Last_Name
9379 (N : Node_Id) return Boolean; -- Flag6
9381 function Library_Unit
9382 (N : Node_Id) return Node_Id; -- Node4
9384 function Limited_View_Installed
9385 (N : Node_Id) return Boolean; -- Flag18
9387 function Limited_Present
9388 (N : Node_Id) return Boolean; -- Flag17
9390 function Literals
9391 (N : Node_Id) return List_Id; -- List1
9393 function Local_Raise_Not_OK
9394 (N : Node_Id) return Boolean; -- Flag7
9396 function Local_Raise_Statements
9397 (N : Node_Id) return Elist_Id; -- Elist1
9399 function Loop_Actions
9400 (N : Node_Id) return List_Id; -- List2
9402 function Loop_Parameter_Specification
9403 (N : Node_Id) return Node_Id; -- Node4
9405 function Low_Bound
9406 (N : Node_Id) return Node_Id; -- Node1
9408 function Mod_Clause
9409 (N : Node_Id) return Node_Id; -- Node2
9411 function More_Ids
9412 (N : Node_Id) return Boolean; -- Flag5
9414 function Must_Be_Byte_Aligned
9415 (N : Node_Id) return Boolean; -- Flag14
9417 function Must_Not_Freeze
9418 (N : Node_Id) return Boolean; -- Flag8
9420 function Must_Not_Override
9421 (N : Node_Id) return Boolean; -- Flag15
9423 function Must_Override
9424 (N : Node_Id) return Boolean; -- Flag14
9426 function Name
9427 (N : Node_Id) return Node_Id; -- Node2
9429 function Names
9430 (N : Node_Id) return List_Id; -- List2
9432 function Next_Entity
9433 (N : Node_Id) return Node_Id; -- Node2
9435 function Next_Exit_Statement
9436 (N : Node_Id) return Node_Id; -- Node3
9438 function Next_Implicit_With
9439 (N : Node_Id) return Node_Id; -- Node3
9441 function Next_Named_Actual
9442 (N : Node_Id) return Node_Id; -- Node4
9444 function Next_Pragma
9445 (N : Node_Id) return Node_Id; -- Node1
9447 function Next_Rep_Item
9448 (N : Node_Id) return Node_Id; -- Node5
9450 function Next_Use_Clause
9451 (N : Node_Id) return Node_Id; -- Node3
9453 function No_Ctrl_Actions
9454 (N : Node_Id) return Boolean; -- Flag7
9456 function No_Elaboration_Check
9457 (N : Node_Id) return Boolean; -- Flag14
9459 function No_Entities_Ref_In_Spec
9460 (N : Node_Id) return Boolean; -- Flag8
9462 function No_Initialization
9463 (N : Node_Id) return Boolean; -- Flag13
9465 function No_Minimize_Eliminate
9466 (N : Node_Id) return Boolean; -- Flag17
9468 function No_Truncation
9469 (N : Node_Id) return Boolean; -- Flag17
9471 function Non_Aliased_Prefix
9472 (N : Node_Id) return Boolean; -- Flag18
9474 function Null_Present
9475 (N : Node_Id) return Boolean; -- Flag13
9477 function Null_Excluding_Subtype
9478 (N : Node_Id) return Boolean; -- Flag16
9480 function Null_Exclusion_Present
9481 (N : Node_Id) return Boolean; -- Flag11
9483 function Null_Exclusion_In_Return_Present
9484 (N : Node_Id) return Boolean; -- Flag14
9486 function Null_Record_Present
9487 (N : Node_Id) return Boolean; -- Flag17
9489 function Object_Definition
9490 (N : Node_Id) return Node_Id; -- Node4
9492 function Of_Present
9493 (N : Node_Id) return Boolean; -- Flag16
9495 function Original_Discriminant
9496 (N : Node_Id) return Node_Id; -- Node2
9498 function Original_Entity
9499 (N : Node_Id) return Entity_Id; -- Node2
9501 function Others_Discrete_Choices
9502 (N : Node_Id) return List_Id; -- List1
9504 function Out_Present
9505 (N : Node_Id) return Boolean; -- Flag17
9507 function Parameter_Associations
9508 (N : Node_Id) return List_Id; -- List3
9510 function Parameter_Specifications
9511 (N : Node_Id) return List_Id; -- List3
9513 function Parameter_Type
9514 (N : Node_Id) return Node_Id; -- Node2
9516 function Parent_Spec
9517 (N : Node_Id) return Node_Id; -- Node4
9519 function Position
9520 (N : Node_Id) return Node_Id; -- Node2
9522 function Pragma_Argument_Associations
9523 (N : Node_Id) return List_Id; -- List2
9525 function Pragma_Identifier
9526 (N : Node_Id) return Node_Id; -- Node4
9528 function Pragmas_After
9529 (N : Node_Id) return List_Id; -- List5
9531 function Pragmas_Before
9532 (N : Node_Id) return List_Id; -- List4
9534 function Pre_Post_Conditions
9535 (N : Node_Id) return Node_Id; -- Node1
9537 function Prefix
9538 (N : Node_Id) return Node_Id; -- Node3
9540 function Premature_Use
9541 (N : Node_Id) return Node_Id; -- Node5
9543 function Present_Expr
9544 (N : Node_Id) return Uint; -- Uint3
9546 function Prev_Ids
9547 (N : Node_Id) return Boolean; -- Flag6
9549 function Print_In_Hex
9550 (N : Node_Id) return Boolean; -- Flag13
9552 function Private_Declarations
9553 (N : Node_Id) return List_Id; -- List3
9555 function Private_Present
9556 (N : Node_Id) return Boolean; -- Flag15
9558 function Procedure_To_Call
9559 (N : Node_Id) return Node_Id; -- Node2
9561 function Proper_Body
9562 (N : Node_Id) return Node_Id; -- Node1
9564 function Protected_Definition
9565 (N : Node_Id) return Node_Id; -- Node3
9567 function Protected_Present
9568 (N : Node_Id) return Boolean; -- Flag6
9570 function Raises_Constraint_Error
9571 (N : Node_Id) return Boolean; -- Flag7
9573 function Range_Constraint
9574 (N : Node_Id) return Node_Id; -- Node4
9576 function Range_Expression
9577 (N : Node_Id) return Node_Id; -- Node4
9579 function Real_Range_Specification
9580 (N : Node_Id) return Node_Id; -- Node4
9582 function Realval
9583 (N : Node_Id) return Ureal; -- Ureal3
9585 function Reason
9586 (N : Node_Id) return Uint; -- Uint3
9588 function Record_Extension_Part
9589 (N : Node_Id) return Node_Id; -- Node3
9591 function Redundant_Use
9592 (N : Node_Id) return Boolean; -- Flag13
9594 function Renaming_Exception
9595 (N : Node_Id) return Node_Id; -- Node2
9597 function Result_Definition
9598 (N : Node_Id) return Node_Id; -- Node4
9600 function Return_Object_Declarations
9601 (N : Node_Id) return List_Id; -- List3
9603 function Return_Statement_Entity
9604 (N : Node_Id) return Node_Id; -- Node5
9606 function Reverse_Present
9607 (N : Node_Id) return Boolean; -- Flag15
9609 function Right_Opnd
9610 (N : Node_Id) return Node_Id; -- Node3
9612 function Rounded_Result
9613 (N : Node_Id) return Boolean; -- Flag18
9615 function SCIL_Controlling_Tag
9616 (N : Node_Id) return Node_Id; -- Node5
9618 function SCIL_Entity
9619 (N : Node_Id) return Node_Id; -- Node4
9621 function SCIL_Tag_Value
9622 (N : Node_Id) return Node_Id; -- Node5
9624 function SCIL_Target_Prim
9625 (N : Node_Id) return Node_Id; -- Node2
9627 function Scope
9628 (N : Node_Id) return Node_Id; -- Node3
9630 function Select_Alternatives
9631 (N : Node_Id) return List_Id; -- List1
9633 function Selector_Name
9634 (N : Node_Id) return Node_Id; -- Node2
9636 function Selector_Names
9637 (N : Node_Id) return List_Id; -- List1
9639 function Shift_Count_OK
9640 (N : Node_Id) return Boolean; -- Flag4
9642 function Source_Type
9643 (N : Node_Id) return Entity_Id; -- Node1
9645 function Specification
9646 (N : Node_Id) return Node_Id; -- Node1
9648 function Split_PPC
9649 (N : Node_Id) return Boolean; -- Flag17
9651 function Statements
9652 (N : Node_Id) return List_Id; -- List3
9654 function Storage_Pool
9655 (N : Node_Id) return Node_Id; -- Node1
9657 function Subpool_Handle_Name
9658 (N : Node_Id) return Node_Id; -- Node4
9660 function Strval
9661 (N : Node_Id) return String_Id; -- Str3
9663 function Subtype_Indication
9664 (N : Node_Id) return Node_Id; -- Node5
9666 function Subtype_Mark
9667 (N : Node_Id) return Node_Id; -- Node4
9669 function Subtype_Marks
9670 (N : Node_Id) return List_Id; -- List2
9672 function Suppress_Assignment_Checks
9673 (N : Node_Id) return Boolean; -- Flag18
9675 function Suppress_Loop_Warnings
9676 (N : Node_Id) return Boolean; -- Flag17
9678 function Synchronized_Present
9679 (N : Node_Id) return Boolean; -- Flag7
9681 function Tagged_Present
9682 (N : Node_Id) return Boolean; -- Flag15
9684 function Target_Type
9685 (N : Node_Id) return Entity_Id; -- Node2
9687 function Task_Definition
9688 (N : Node_Id) return Node_Id; -- Node3
9690 function Task_Present
9691 (N : Node_Id) return Boolean; -- Flag5
9693 function Then_Actions
9694 (N : Node_Id) return List_Id; -- List2
9696 function Then_Statements
9697 (N : Node_Id) return List_Id; -- List2
9699 function Treat_Fixed_As_Integer
9700 (N : Node_Id) return Boolean; -- Flag14
9702 function Triggering_Alternative
9703 (N : Node_Id) return Node_Id; -- Node1
9705 function Triggering_Statement
9706 (N : Node_Id) return Node_Id; -- Node1
9708 function TSS_Elist
9709 (N : Node_Id) return Elist_Id; -- Elist3
9711 function Type_Definition
9712 (N : Node_Id) return Node_Id; -- Node3
9714 function Uneval_Old_Accept
9715 (N : Node_Id) return Boolean; -- Flag7
9717 function Uneval_Old_Warn
9718 (N : Node_Id) return Boolean; -- Flag18
9720 function Unit
9721 (N : Node_Id) return Node_Id; -- Node2
9723 function Unknown_Discriminants_Present
9724 (N : Node_Id) return Boolean; -- Flag13
9726 function Unreferenced_In_Spec
9727 (N : Node_Id) return Boolean; -- Flag7
9729 function Variant_Part
9730 (N : Node_Id) return Node_Id; -- Node4
9732 function Variants
9733 (N : Node_Id) return List_Id; -- List1
9735 function Visible_Declarations
9736 (N : Node_Id) return List_Id; -- List2
9738 function Uninitialized_Variable
9739 (N : Node_Id) return Node_Id; -- Node3
9741 function Used_Operations
9742 (N : Node_Id) return Elist_Id; -- Elist5
9744 function Was_Originally_Stub
9745 (N : Node_Id) return Boolean; -- Flag13
9747 function Withed_Body
9748 (N : Node_Id) return Node_Id; -- Node1
9750 -- End functions (note used by xsinfo utility program to end processing)
9752 ----------------------------
9753 -- Node Update Procedures --
9754 ----------------------------
9756 -- These are the corresponding node update routines, which again provide
9757 -- a high level logical access with type checking. In addition to setting
9758 -- the indicated field of the node N to the given Val, in the case of
9759 -- tree pointers (List1-4), the parent pointer of the Val node is set to
9760 -- point back to node N. This automates the setting of the parent pointer.
9762 procedure Set_ABE_Is_Certain
9763 (N : Node_Id; Val : Boolean := True); -- Flag18
9765 procedure Set_Abort_Present
9766 (N : Node_Id; Val : Boolean := True); -- Flag15
9768 procedure Set_Abortable_Part
9769 (N : Node_Id; Val : Node_Id); -- Node2
9771 procedure Set_Abstract_Present
9772 (N : Node_Id; Val : Boolean := True); -- Flag4
9774 procedure Set_Accept_Handler_Records
9775 (N : Node_Id; Val : List_Id); -- List5
9777 procedure Set_Accept_Statement
9778 (N : Node_Id; Val : Node_Id); -- Node2
9780 procedure Set_Access_Definition
9781 (N : Node_Id; Val : Node_Id); -- Node3
9783 procedure Set_Access_To_Subprogram_Definition
9784 (N : Node_Id; Val : Node_Id); -- Node3
9786 procedure Set_Access_Types_To_Process
9787 (N : Node_Id; Val : Elist_Id); -- Elist2
9789 procedure Set_Actions
9790 (N : Node_Id; Val : List_Id); -- List1
9792 procedure Set_Activation_Chain_Entity
9793 (N : Node_Id; Val : Node_Id); -- Node3
9795 procedure Set_Acts_As_Spec
9796 (N : Node_Id; Val : Boolean := True); -- Flag4
9798 procedure Set_Actual_Designated_Subtype
9799 (N : Node_Id; Val : Node_Id); -- Node4
9801 procedure Set_Address_Warning_Posted
9802 (N : Node_Id; Val : Boolean := True); -- Flag18
9804 procedure Set_Aggregate_Bounds
9805 (N : Node_Id; Val : Node_Id); -- Node3
9807 procedure Set_Aliased_Present
9808 (N : Node_Id; Val : Boolean := True); -- Flag4
9810 procedure Set_All_Others
9811 (N : Node_Id; Val : Boolean := True); -- Flag11
9813 procedure Set_All_Present
9814 (N : Node_Id; Val : Boolean := True); -- Flag15
9816 procedure Set_Alternatives
9817 (N : Node_Id; Val : List_Id); -- List4
9819 procedure Set_Ancestor_Part
9820 (N : Node_Id; Val : Node_Id); -- Node3
9822 procedure Set_Atomic_Sync_Required
9823 (N : Node_Id; Val : Boolean := True); -- Flag14
9825 procedure Set_Array_Aggregate
9826 (N : Node_Id; Val : Node_Id); -- Node3
9828 procedure Set_Aspect_Rep_Item
9829 (N : Node_Id; Val : Node_Id); -- Node2
9831 procedure Set_Assignment_OK
9832 (N : Node_Id; Val : Boolean := True); -- Flag15
9834 procedure Set_Associated_Node
9835 (N : Node_Id; Val : Node_Id); -- Node4
9837 procedure Set_Attribute_Name
9838 (N : Node_Id; Val : Name_Id); -- Name2
9840 procedure Set_At_End_Proc
9841 (N : Node_Id; Val : Node_Id); -- Node1
9843 procedure Set_Aux_Decls_Node
9844 (N : Node_Id; Val : Node_Id); -- Node5
9846 procedure Set_Backwards_OK
9847 (N : Node_Id; Val : Boolean := True); -- Flag6
9849 procedure Set_Bad_Is_Detected
9850 (N : Node_Id; Val : Boolean := True); -- Flag15
9852 procedure Set_Body_Required
9853 (N : Node_Id; Val : Boolean := True); -- Flag13
9855 procedure Set_Body_To_Inline
9856 (N : Node_Id; Val : Node_Id); -- Node3
9858 procedure Set_Box_Present
9859 (N : Node_Id; Val : Boolean := True); -- Flag15
9861 procedure Set_By_Ref
9862 (N : Node_Id; Val : Boolean := True); -- Flag5
9864 procedure Set_Char_Literal_Value
9865 (N : Node_Id; Val : Uint); -- Uint2
9867 procedure Set_Chars
9868 (N : Node_Id; Val : Name_Id); -- Name1
9870 procedure Set_Check_Address_Alignment
9871 (N : Node_Id; Val : Boolean := True); -- Flag11
9873 procedure Set_Choice_Parameter
9874 (N : Node_Id; Val : Node_Id); -- Node2
9876 procedure Set_Choices
9877 (N : Node_Id; Val : List_Id); -- List1
9879 procedure Set_Class_Present
9880 (N : Node_Id; Val : Boolean := True); -- Flag6
9882 procedure Set_Classifications
9883 (N : Node_Id; Val : Node_Id); -- Node3
9885 procedure Set_Cleanup_Actions
9886 (N : Node_Id; Val : List_Id); -- List5
9888 procedure Set_Comes_From_Extended_Return_Statement
9889 (N : Node_Id; Val : Boolean := True); -- Flag18
9891 procedure Set_Compile_Time_Known_Aggregate
9892 (N : Node_Id; Val : Boolean := True); -- Flag18
9894 procedure Set_Component_Associations
9895 (N : Node_Id; Val : List_Id); -- List2
9897 procedure Set_Component_Clauses
9898 (N : Node_Id; Val : List_Id); -- List3
9900 procedure Set_Component_Definition
9901 (N : Node_Id; Val : Node_Id); -- Node4
9903 procedure Set_Component_Items
9904 (N : Node_Id; Val : List_Id); -- List3
9906 procedure Set_Component_List
9907 (N : Node_Id; Val : Node_Id); -- Node1
9909 procedure Set_Component_Name
9910 (N : Node_Id; Val : Node_Id); -- Node1
9912 procedure Set_Componentwise_Assignment
9913 (N : Node_Id; Val : Boolean := True); -- Flag14
9915 procedure Set_Condition
9916 (N : Node_Id; Val : Node_Id); -- Node1
9918 procedure Set_Condition_Actions
9919 (N : Node_Id; Val : List_Id); -- List3
9921 procedure Set_Config_Pragmas
9922 (N : Node_Id; Val : List_Id); -- List4
9924 procedure Set_Constant_Present
9925 (N : Node_Id; Val : Boolean := True); -- Flag17
9927 procedure Set_Constraint
9928 (N : Node_Id; Val : Node_Id); -- Node3
9930 procedure Set_Constraints
9931 (N : Node_Id; Val : List_Id); -- List1
9933 procedure Set_Context_Installed
9934 (N : Node_Id; Val : Boolean := True); -- Flag13
9936 procedure Set_Context_Items
9937 (N : Node_Id; Val : List_Id); -- List1
9939 procedure Set_Context_Pending
9940 (N : Node_Id; Val : Boolean := True); -- Flag16
9942 procedure Set_Contract_Test_Cases
9943 (N : Node_Id; Val : Node_Id); -- Node2
9945 procedure Set_Controlling_Argument
9946 (N : Node_Id; Val : Node_Id); -- Node1
9948 procedure Set_Conversion_OK
9949 (N : Node_Id; Val : Boolean := True); -- Flag14
9951 procedure Set_Convert_To_Return_False
9952 (N : Node_Id; Val : Boolean := True); -- Flag13
9954 procedure Set_Corresponding_Aspect
9955 (N : Node_Id; Val : Node_Id); -- Node3
9957 procedure Set_Corresponding_Body
9958 (N : Node_Id; Val : Node_Id); -- Node5
9960 procedure Set_Corresponding_Formal_Spec
9961 (N : Node_Id; Val : Node_Id); -- Node3
9963 procedure Set_Corresponding_Generic_Association
9964 (N : Node_Id; Val : Node_Id); -- Node5
9966 procedure Set_Corresponding_Integer_Value
9967 (N : Node_Id; Val : Uint); -- Uint4
9969 procedure Set_Corresponding_Spec
9970 (N : Node_Id; Val : Node_Id); -- Node5
9972 procedure Set_Corresponding_Spec_Of_Stub
9973 (N : Node_Id; Val : Node_Id); -- Node2
9975 procedure Set_Corresponding_Stub
9976 (N : Node_Id; Val : Node_Id); -- Node3
9978 procedure Set_Dcheck_Function
9979 (N : Node_Id; Val : Entity_Id); -- Node5
9981 procedure Set_Declarations
9982 (N : Node_Id; Val : List_Id); -- List2
9984 procedure Set_Default_Expression
9985 (N : Node_Id; Val : Node_Id); -- Node5
9987 procedure Set_Default_Storage_Pool
9988 (N : Node_Id; Val : Node_Id); -- Node3
9990 procedure Set_Default_Name
9991 (N : Node_Id; Val : Node_Id); -- Node2
9993 procedure Set_Defining_Identifier
9994 (N : Node_Id; Val : Entity_Id); -- Node1
9996 procedure Set_Defining_Unit_Name
9997 (N : Node_Id; Val : Node_Id); -- Node1
9999 procedure Set_Delay_Alternative
10000 (N : Node_Id; Val : Node_Id); -- Node4
10002 procedure Set_Delay_Statement
10003 (N : Node_Id; Val : Node_Id); -- Node2
10005 procedure Set_Delta_Expression
10006 (N : Node_Id; Val : Node_Id); -- Node3
10008 procedure Set_Digits_Expression
10009 (N : Node_Id; Val : Node_Id); -- Node2
10011 procedure Set_Discr_Check_Funcs_Built
10012 (N : Node_Id; Val : Boolean := True); -- Flag11
10014 procedure Set_Discrete_Choices
10015 (N : Node_Id; Val : List_Id); -- List4
10017 procedure Set_Discrete_Range
10018 (N : Node_Id; Val : Node_Id); -- Node4
10020 procedure Set_Discrete_Subtype_Definition
10021 (N : Node_Id; Val : Node_Id); -- Node4
10023 procedure Set_Discrete_Subtype_Definitions
10024 (N : Node_Id; Val : List_Id); -- List2
10026 procedure Set_Discriminant_Specifications
10027 (N : Node_Id; Val : List_Id); -- List4
10029 procedure Set_Discriminant_Type
10030 (N : Node_Id; Val : Node_Id); -- Node5
10032 procedure Set_Do_Accessibility_Check
10033 (N : Node_Id; Val : Boolean := True); -- Flag13
10035 procedure Set_Do_Discriminant_Check
10036 (N : Node_Id; Val : Boolean := True); -- Flag1
10038 procedure Set_Do_Division_Check
10039 (N : Node_Id; Val : Boolean := True); -- Flag13
10041 procedure Set_Do_Length_Check
10042 (N : Node_Id; Val : Boolean := True); -- Flag4
10044 procedure Set_Do_Overflow_Check
10045 (N : Node_Id; Val : Boolean := True); -- Flag17
10047 procedure Set_Do_Range_Check
10048 (N : Node_Id; Val : Boolean := True); -- Flag9
10050 procedure Set_Do_Storage_Check
10051 (N : Node_Id; Val : Boolean := True); -- Flag17
10053 procedure Set_Do_Tag_Check
10054 (N : Node_Id; Val : Boolean := True); -- Flag13
10056 procedure Set_Elaborate_All_Desirable
10057 (N : Node_Id; Val : Boolean := True); -- Flag9
10059 procedure Set_Elaborate_All_Present
10060 (N : Node_Id; Val : Boolean := True); -- Flag14
10062 procedure Set_Elaborate_Desirable
10063 (N : Node_Id; Val : Boolean := True); -- Flag11
10065 procedure Set_Elaborate_Present
10066 (N : Node_Id; Val : Boolean := True); -- Flag4
10068 procedure Set_Else_Actions
10069 (N : Node_Id; Val : List_Id); -- List3
10071 procedure Set_Else_Statements
10072 (N : Node_Id; Val : List_Id); -- List4
10074 procedure Set_Elsif_Parts
10075 (N : Node_Id; Val : List_Id); -- List3
10077 procedure Set_Enclosing_Variant
10078 (N : Node_Id; Val : Node_Id); -- Node2
10080 procedure Set_End_Label
10081 (N : Node_Id; Val : Node_Id); -- Node4
10083 procedure Set_End_Span
10084 (N : Node_Id; Val : Uint); -- Uint5
10086 procedure Set_Entity
10087 (N : Node_Id; Val : Node_Id); -- Node4
10089 procedure Set_Entry_Body_Formal_Part
10090 (N : Node_Id; Val : Node_Id); -- Node5
10092 procedure Set_Entry_Call_Alternative
10093 (N : Node_Id; Val : Node_Id); -- Node1
10095 procedure Set_Entry_Call_Statement
10096 (N : Node_Id; Val : Node_Id); -- Node1
10098 procedure Set_Entry_Direct_Name
10099 (N : Node_Id; Val : Node_Id); -- Node1
10101 procedure Set_Entry_Index
10102 (N : Node_Id; Val : Node_Id); -- Node5
10104 procedure Set_Entry_Index_Specification
10105 (N : Node_Id; Val : Node_Id); -- Node4
10107 procedure Set_Etype
10108 (N : Node_Id; Val : Node_Id); -- Node5
10110 procedure Set_Exception_Choices
10111 (N : Node_Id; Val : List_Id); -- List4
10113 procedure Set_Exception_Handlers
10114 (N : Node_Id; Val : List_Id); -- List5
10116 procedure Set_Exception_Junk
10117 (N : Node_Id; Val : Boolean := True); -- Flag8
10119 procedure Set_Exception_Label
10120 (N : Node_Id; Val : Node_Id); -- Node5
10122 procedure Set_Expansion_Delayed
10123 (N : Node_Id; Val : Boolean := True); -- Flag11
10125 procedure Set_Explicit_Actual_Parameter
10126 (N : Node_Id; Val : Node_Id); -- Node3
10128 procedure Set_Explicit_Generic_Actual_Parameter
10129 (N : Node_Id; Val : Node_Id); -- Node1
10131 procedure Set_Expression
10132 (N : Node_Id; Val : Node_Id); -- Node3
10134 procedure Set_Expressions
10135 (N : Node_Id; Val : List_Id); -- List1
10137 procedure Set_First_Bit
10138 (N : Node_Id; Val : Node_Id); -- Node3
10140 procedure Set_First_Inlined_Subprogram
10141 (N : Node_Id; Val : Entity_Id); -- Node3
10143 procedure Set_First_Name
10144 (N : Node_Id; Val : Boolean := True); -- Flag5
10146 procedure Set_First_Named_Actual
10147 (N : Node_Id; Val : Node_Id); -- Node4
10149 procedure Set_First_Real_Statement
10150 (N : Node_Id; Val : Node_Id); -- Node2
10152 procedure Set_First_Subtype_Link
10153 (N : Node_Id; Val : Entity_Id); -- Node5
10155 procedure Set_Float_Truncate
10156 (N : Node_Id; Val : Boolean := True); -- Flag11
10158 procedure Set_Formal_Type_Definition
10159 (N : Node_Id; Val : Node_Id); -- Node3
10161 procedure Set_Forwards_OK
10162 (N : Node_Id; Val : Boolean := True); -- Flag5
10164 procedure Set_From_Aspect_Specification
10165 (N : Node_Id; Val : Boolean := True); -- Flag13
10167 procedure Set_From_At_End
10168 (N : Node_Id; Val : Boolean := True); -- Flag4
10170 procedure Set_From_At_Mod
10171 (N : Node_Id; Val : Boolean := True); -- Flag4
10173 procedure Set_From_Conditional_Expression
10174 (N : Node_Id; Val : Boolean := True); -- Flag1
10176 procedure Set_From_Default
10177 (N : Node_Id; Val : Boolean := True); -- Flag6
10179 procedure Set_Generalized_Indexing
10180 (N : Node_Id; Val : Node_Id); -- Node4
10182 procedure Set_Generic_Associations
10183 (N : Node_Id; Val : List_Id); -- List3
10185 procedure Set_Generic_Formal_Declarations
10186 (N : Node_Id; Val : List_Id); -- List2
10188 procedure Set_Generic_Parent
10189 (N : Node_Id; Val : Node_Id); -- Node5
10191 procedure Set_Generic_Parent_Type
10192 (N : Node_Id; Val : Node_Id); -- Node4
10194 procedure Set_Handled_Statement_Sequence
10195 (N : Node_Id; Val : Node_Id); -- Node4
10197 procedure Set_Handler_List_Entry
10198 (N : Node_Id; Val : Node_Id); -- Node2
10200 procedure Set_Has_Created_Identifier
10201 (N : Node_Id; Val : Boolean := True); -- Flag15
10203 procedure Set_Has_Dereference_Action
10204 (N : Node_Id; Val : Boolean := True); -- Flag13
10206 procedure Set_Has_Dynamic_Length_Check
10207 (N : Node_Id; Val : Boolean := True); -- Flag10
10209 procedure Set_Has_Dynamic_Range_Check
10210 (N : Node_Id; Val : Boolean := True); -- Flag12
10212 procedure Set_Has_Init_Expression
10213 (N : Node_Id; Val : Boolean := True); -- Flag14
10215 procedure Set_Has_Local_Raise
10216 (N : Node_Id; Val : Boolean := True); -- Flag8
10218 procedure Set_Has_No_Elaboration_Code
10219 (N : Node_Id; Val : Boolean := True); -- Flag17
10221 procedure Set_Has_Pragma_Suppress_All
10222 (N : Node_Id; Val : Boolean := True); -- Flag14
10224 procedure Set_Has_Private_View
10225 (N : Node_Id; Val : Boolean := True); -- Flag11
10227 procedure Set_Has_Relative_Deadline_Pragma
10228 (N : Node_Id; Val : Boolean := True); -- Flag9
10230 procedure Set_Has_Self_Reference
10231 (N : Node_Id; Val : Boolean := True); -- Flag13
10233 procedure Set_Has_SP_Choice
10234 (N : Node_Id; Val : Boolean := True); -- Flag15
10236 procedure Set_Has_Storage_Size_Pragma
10237 (N : Node_Id; Val : Boolean := True); -- Flag5
10239 procedure Set_Has_Wide_Character
10240 (N : Node_Id; Val : Boolean := True); -- Flag11
10242 procedure Set_Has_Wide_Wide_Character
10243 (N : Node_Id; Val : Boolean := True); -- Flag13
10245 procedure Set_Header_Size_Added
10246 (N : Node_Id; Val : Boolean := True); -- Flag11
10248 procedure Set_Hidden_By_Use_Clause
10249 (N : Node_Id; Val : Elist_Id); -- Elist4
10251 procedure Set_High_Bound
10252 (N : Node_Id; Val : Node_Id); -- Node2
10254 procedure Set_Identifier
10255 (N : Node_Id; Val : Node_Id); -- Node1
10257 procedure Set_Interface_List
10258 (N : Node_Id; Val : List_Id); -- List2
10260 procedure Set_Interface_Present
10261 (N : Node_Id; Val : Boolean := True); -- Flag16
10263 procedure Set_Implicit_With
10264 (N : Node_Id; Val : Boolean := True); -- Flag16
10266 procedure Set_Implicit_With_From_Instantiation
10267 (N : Node_Id; Val : Boolean := True); -- Flag12
10269 procedure Set_Import_Interface_Present
10270 (N : Node_Id; Val : Boolean := True); -- Flag16
10272 procedure Set_In_Present
10273 (N : Node_Id; Val : Boolean := True); -- Flag15
10275 procedure Set_Includes_Infinities
10276 (N : Node_Id; Val : Boolean := True); -- Flag11
10278 procedure Set_Incomplete_View
10279 (N : Node_Id; Val : Node_Id); -- Node2
10281 procedure Set_Inherited_Discriminant
10282 (N : Node_Id; Val : Boolean := True); -- Flag13
10284 procedure Set_Instance_Spec
10285 (N : Node_Id; Val : Node_Id); -- Node5
10287 procedure Set_Intval
10288 (N : Node_Id; Val : Uint); -- Uint3
10290 procedure Set_Is_Accessibility_Actual
10291 (N : Node_Id; Val : Boolean := True); -- Flag13
10293 procedure Set_Is_Asynchronous_Call_Block
10294 (N : Node_Id; Val : Boolean := True); -- Flag7
10296 procedure Set_Is_Boolean_Aspect
10297 (N : Node_Id; Val : Boolean := True); -- Flag16
10299 procedure Set_Is_Checked
10300 (N : Node_Id; Val : Boolean := True); -- Flag11
10302 procedure Set_Is_Component_Left_Opnd
10303 (N : Node_Id; Val : Boolean := True); -- Flag13
10305 procedure Set_Is_Component_Right_Opnd
10306 (N : Node_Id; Val : Boolean := True); -- Flag14
10308 procedure Set_Is_Controlling_Actual
10309 (N : Node_Id; Val : Boolean := True); -- Flag16
10311 procedure Set_Is_Delayed_Aspect
10312 (N : Node_Id; Val : Boolean := True); -- Flag14
10314 procedure Set_Is_Disabled
10315 (N : Node_Id; Val : Boolean := True); -- Flag15
10317 procedure Set_Is_Dynamic_Coextension
10318 (N : Node_Id; Val : Boolean := True); -- Flag18
10320 procedure Set_Is_Elsif
10321 (N : Node_Id; Val : Boolean := True); -- Flag13
10323 procedure Set_Is_Entry_Barrier_Function
10324 (N : Node_Id; Val : Boolean := True); -- Flag8
10326 procedure Set_Is_Expanded_Build_In_Place_Call
10327 (N : Node_Id; Val : Boolean := True); -- Flag11
10329 procedure Set_Is_Finalization_Wrapper
10330 (N : Node_Id; Val : Boolean := True); -- Flag9
10332 procedure Set_Is_Folded_In_Parser
10333 (N : Node_Id; Val : Boolean := True); -- Flag4
10335 procedure Set_Is_Generic_Contract_Pragma
10336 (N : Node_Id; Val : Boolean := True); -- Flag2
10338 procedure Set_Is_Ignored
10339 (N : Node_Id; Val : Boolean := True); -- Flag9
10341 procedure Set_Is_In_Discriminant_Check
10342 (N : Node_Id; Val : Boolean := True); -- Flag11
10344 procedure Set_Is_Inherited
10345 (N : Node_Id; Val : Boolean := True); -- Flag4
10347 procedure Set_Is_Machine_Number
10348 (N : Node_Id; Val : Boolean := True); -- Flag11
10350 procedure Set_Is_Null_Loop
10351 (N : Node_Id; Val : Boolean := True); -- Flag16
10353 procedure Set_Is_Overloaded
10354 (N : Node_Id; Val : Boolean := True); -- Flag5
10356 procedure Set_Is_Power_Of_2_For_Shift
10357 (N : Node_Id; Val : Boolean := True); -- Flag13
10359 procedure Set_Is_Prefixed_Call
10360 (N : Node_Id; Val : Boolean := True); -- Flag17
10362 procedure Set_Is_Protected_Subprogram_Body
10363 (N : Node_Id; Val : Boolean := True); -- Flag7
10365 procedure Set_Is_Static_Coextension
10366 (N : Node_Id; Val : Boolean := True); -- Flag14
10368 procedure Set_Is_Static_Expression
10369 (N : Node_Id; Val : Boolean := True); -- Flag6
10371 procedure Set_Is_Subprogram_Descriptor
10372 (N : Node_Id; Val : Boolean := True); -- Flag16
10374 procedure Set_Is_Task_Allocation_Block
10375 (N : Node_Id; Val : Boolean := True); -- Flag6
10377 procedure Set_Is_Task_Master
10378 (N : Node_Id; Val : Boolean := True); -- Flag5
10380 procedure Set_Iteration_Scheme
10381 (N : Node_Id; Val : Node_Id); -- Node2
10383 procedure Set_Iterator_Specification
10384 (N : Node_Id; Val : Node_Id); -- Node2
10386 procedure Set_Itype
10387 (N : Node_Id; Val : Entity_Id); -- Node1
10389 procedure Set_Kill_Range_Check
10390 (N : Node_Id; Val : Boolean := True); -- Flag11
10392 procedure Set_Last_Bit
10393 (N : Node_Id; Val : Node_Id); -- Node4
10395 procedure Set_Last_Name
10396 (N : Node_Id; Val : Boolean := True); -- Flag6
10398 procedure Set_Library_Unit
10399 (N : Node_Id; Val : Node_Id); -- Node4
10401 procedure Set_Label_Construct
10402 (N : Node_Id; Val : Node_Id); -- Node2
10404 procedure Set_Left_Opnd
10405 (N : Node_Id; Val : Node_Id); -- Node2
10407 procedure Set_Limited_View_Installed
10408 (N : Node_Id; Val : Boolean := True); -- Flag18
10410 procedure Set_Limited_Present
10411 (N : Node_Id; Val : Boolean := True); -- Flag17
10413 procedure Set_Literals
10414 (N : Node_Id; Val : List_Id); -- List1
10416 procedure Set_Local_Raise_Not_OK
10417 (N : Node_Id; Val : Boolean := True); -- Flag7
10419 procedure Set_Local_Raise_Statements
10420 (N : Node_Id; Val : Elist_Id); -- Elist1
10422 procedure Set_Loop_Actions
10423 (N : Node_Id; Val : List_Id); -- List2
10425 procedure Set_Loop_Parameter_Specification
10426 (N : Node_Id; Val : Node_Id); -- Node4
10428 procedure Set_Low_Bound
10429 (N : Node_Id; Val : Node_Id); -- Node1
10431 procedure Set_Mod_Clause
10432 (N : Node_Id; Val : Node_Id); -- Node2
10434 procedure Set_More_Ids
10435 (N : Node_Id; Val : Boolean := True); -- Flag5
10437 procedure Set_Must_Be_Byte_Aligned
10438 (N : Node_Id; Val : Boolean := True); -- Flag14
10440 procedure Set_Must_Not_Freeze
10441 (N : Node_Id; Val : Boolean := True); -- Flag8
10443 procedure Set_Must_Not_Override
10444 (N : Node_Id; Val : Boolean := True); -- Flag15
10446 procedure Set_Must_Override
10447 (N : Node_Id; Val : Boolean := True); -- Flag14
10449 procedure Set_Name
10450 (N : Node_Id; Val : Node_Id); -- Node2
10452 procedure Set_Names
10453 (N : Node_Id; Val : List_Id); -- List2
10455 procedure Set_Next_Entity
10456 (N : Node_Id; Val : Node_Id); -- Node2
10458 procedure Set_Next_Exit_Statement
10459 (N : Node_Id; Val : Node_Id); -- Node3
10461 procedure Set_Next_Implicit_With
10462 (N : Node_Id; Val : Node_Id); -- Node3
10464 procedure Set_Next_Named_Actual
10465 (N : Node_Id; Val : Node_Id); -- Node4
10467 procedure Set_Next_Pragma
10468 (N : Node_Id; Val : Node_Id); -- Node1
10470 procedure Set_Next_Rep_Item
10471 (N : Node_Id; Val : Node_Id); -- Node5
10473 procedure Set_Next_Use_Clause
10474 (N : Node_Id; Val : Node_Id); -- Node3
10476 procedure Set_No_Ctrl_Actions
10477 (N : Node_Id; Val : Boolean := True); -- Flag7
10479 procedure Set_No_Elaboration_Check
10480 (N : Node_Id; Val : Boolean := True); -- Flag14
10482 procedure Set_No_Entities_Ref_In_Spec
10483 (N : Node_Id; Val : Boolean := True); -- Flag8
10485 procedure Set_No_Initialization
10486 (N : Node_Id; Val : Boolean := True); -- Flag13
10488 procedure Set_No_Minimize_Eliminate
10489 (N : Node_Id; Val : Boolean := True); -- Flag17
10491 procedure Set_No_Truncation
10492 (N : Node_Id; Val : Boolean := True); -- Flag17
10494 procedure Set_Non_Aliased_Prefix
10495 (N : Node_Id; Val : Boolean := True); -- Flag18
10497 procedure Set_Null_Present
10498 (N : Node_Id; Val : Boolean := True); -- Flag13
10500 procedure Set_Null_Excluding_Subtype
10501 (N : Node_Id; Val : Boolean := True); -- Flag16
10503 procedure Set_Null_Exclusion_Present
10504 (N : Node_Id; Val : Boolean := True); -- Flag11
10506 procedure Set_Null_Exclusion_In_Return_Present
10507 (N : Node_Id; Val : Boolean := True); -- Flag14
10509 procedure Set_Null_Record_Present
10510 (N : Node_Id; Val : Boolean := True); -- Flag17
10512 procedure Set_Object_Definition
10513 (N : Node_Id; Val : Node_Id); -- Node4
10515 procedure Set_Of_Present
10516 (N : Node_Id; Val : Boolean := True); -- Flag16
10518 procedure Set_Original_Discriminant
10519 (N : Node_Id; Val : Node_Id); -- Node2
10521 procedure Set_Original_Entity
10522 (N : Node_Id; Val : Entity_Id); -- Node2
10524 procedure Set_Others_Discrete_Choices
10525 (N : Node_Id; Val : List_Id); -- List1
10527 procedure Set_Out_Present
10528 (N : Node_Id; Val : Boolean := True); -- Flag17
10530 procedure Set_Parameter_Associations
10531 (N : Node_Id; Val : List_Id); -- List3
10533 procedure Set_Parameter_Specifications
10534 (N : Node_Id; Val : List_Id); -- List3
10536 procedure Set_Parameter_Type
10537 (N : Node_Id; Val : Node_Id); -- Node2
10539 procedure Set_Parent_Spec
10540 (N : Node_Id; Val : Node_Id); -- Node4
10542 procedure Set_Position
10543 (N : Node_Id; Val : Node_Id); -- Node2
10545 procedure Set_Pragma_Argument_Associations
10546 (N : Node_Id; Val : List_Id); -- List2
10548 procedure Set_Pragma_Identifier
10549 (N : Node_Id; Val : Node_Id); -- Node4
10551 procedure Set_Pragmas_After
10552 (N : Node_Id; Val : List_Id); -- List5
10554 procedure Set_Pragmas_Before
10555 (N : Node_Id; Val : List_Id); -- List4
10557 procedure Set_Pre_Post_Conditions
10558 (N : Node_Id; Val : Node_Id); -- Node1
10560 procedure Set_Prefix
10561 (N : Node_Id; Val : Node_Id); -- Node3
10563 procedure Set_Premature_Use
10564 (N : Node_Id; Val : Node_Id); -- Node5
10566 procedure Set_Present_Expr
10567 (N : Node_Id; Val : Uint); -- Uint3
10569 procedure Set_Prev_Ids
10570 (N : Node_Id; Val : Boolean := True); -- Flag6
10572 procedure Set_Print_In_Hex
10573 (N : Node_Id; Val : Boolean := True); -- Flag13
10575 procedure Set_Private_Declarations
10576 (N : Node_Id; Val : List_Id); -- List3
10578 procedure Set_Private_Present
10579 (N : Node_Id; Val : Boolean := True); -- Flag15
10581 procedure Set_Procedure_To_Call
10582 (N : Node_Id; Val : Node_Id); -- Node2
10584 procedure Set_Proper_Body
10585 (N : Node_Id; Val : Node_Id); -- Node1
10587 procedure Set_Protected_Definition
10588 (N : Node_Id; Val : Node_Id); -- Node3
10590 procedure Set_Protected_Present
10591 (N : Node_Id; Val : Boolean := True); -- Flag6
10593 procedure Set_Raises_Constraint_Error
10594 (N : Node_Id; Val : Boolean := True); -- Flag7
10596 procedure Set_Range_Constraint
10597 (N : Node_Id; Val : Node_Id); -- Node4
10599 procedure Set_Range_Expression
10600 (N : Node_Id; Val : Node_Id); -- Node4
10602 procedure Set_Real_Range_Specification
10603 (N : Node_Id; Val : Node_Id); -- Node4
10605 procedure Set_Realval
10606 (N : Node_Id; Val : Ureal); -- Ureal3
10608 procedure Set_Reason
10609 (N : Node_Id; Val : Uint); -- Uint3
10611 procedure Set_Record_Extension_Part
10612 (N : Node_Id; Val : Node_Id); -- Node3
10614 procedure Set_Redundant_Use
10615 (N : Node_Id; Val : Boolean := True); -- Flag13
10617 procedure Set_Renaming_Exception
10618 (N : Node_Id; Val : Node_Id); -- Node2
10620 procedure Set_Result_Definition
10621 (N : Node_Id; Val : Node_Id); -- Node4
10623 procedure Set_Return_Object_Declarations
10624 (N : Node_Id; Val : List_Id); -- List3
10626 procedure Set_Return_Statement_Entity
10627 (N : Node_Id; Val : Node_Id); -- Node5
10629 procedure Set_Reverse_Present
10630 (N : Node_Id; Val : Boolean := True); -- Flag15
10632 procedure Set_Right_Opnd
10633 (N : Node_Id; Val : Node_Id); -- Node3
10635 procedure Set_Rounded_Result
10636 (N : Node_Id; Val : Boolean := True); -- Flag18
10638 procedure Set_SCIL_Controlling_Tag
10639 (N : Node_Id; Val : Node_Id); -- Node5
10641 procedure Set_SCIL_Entity
10642 (N : Node_Id; Val : Node_Id); -- Node4
10644 procedure Set_SCIL_Tag_Value
10645 (N : Node_Id; Val : Node_Id); -- Node5
10647 procedure Set_SCIL_Target_Prim
10648 (N : Node_Id; Val : Node_Id); -- Node2
10650 procedure Set_Scope
10651 (N : Node_Id; Val : Node_Id); -- Node3
10653 procedure Set_Select_Alternatives
10654 (N : Node_Id; Val : List_Id); -- List1
10656 procedure Set_Selector_Name
10657 (N : Node_Id; Val : Node_Id); -- Node2
10659 procedure Set_Selector_Names
10660 (N : Node_Id; Val : List_Id); -- List1
10662 procedure Set_Shift_Count_OK
10663 (N : Node_Id; Val : Boolean := True); -- Flag4
10665 procedure Set_Source_Type
10666 (N : Node_Id; Val : Entity_Id); -- Node1
10668 procedure Set_Specification
10669 (N : Node_Id; Val : Node_Id); -- Node1
10671 procedure Set_Split_PPC
10672 (N : Node_Id; Val : Boolean); -- Flag17
10674 procedure Set_Statements
10675 (N : Node_Id; Val : List_Id); -- List3
10677 procedure Set_Storage_Pool
10678 (N : Node_Id; Val : Node_Id); -- Node1
10680 procedure Set_Subpool_Handle_Name
10681 (N : Node_Id; Val : Node_Id); -- Node4
10683 procedure Set_Strval
10684 (N : Node_Id; Val : String_Id); -- Str3
10686 procedure Set_Subtype_Indication
10687 (N : Node_Id; Val : Node_Id); -- Node5
10689 procedure Set_Subtype_Mark
10690 (N : Node_Id; Val : Node_Id); -- Node4
10692 procedure Set_Subtype_Marks
10693 (N : Node_Id; Val : List_Id); -- List2
10695 procedure Set_Suppress_Assignment_Checks
10696 (N : Node_Id; Val : Boolean := True); -- Flag18
10698 procedure Set_Suppress_Loop_Warnings
10699 (N : Node_Id; Val : Boolean := True); -- Flag17
10701 procedure Set_Synchronized_Present
10702 (N : Node_Id; Val : Boolean := True); -- Flag7
10704 procedure Set_Tagged_Present
10705 (N : Node_Id; Val : Boolean := True); -- Flag15
10707 procedure Set_Target_Type
10708 (N : Node_Id; Val : Entity_Id); -- Node2
10710 procedure Set_Task_Definition
10711 (N : Node_Id; Val : Node_Id); -- Node3
10713 procedure Set_Task_Present
10714 (N : Node_Id; Val : Boolean := True); -- Flag5
10716 procedure Set_Then_Actions
10717 (N : Node_Id; Val : List_Id); -- List2
10719 procedure Set_Then_Statements
10720 (N : Node_Id; Val : List_Id); -- List2
10722 procedure Set_Treat_Fixed_As_Integer
10723 (N : Node_Id; Val : Boolean := True); -- Flag14
10725 procedure Set_Triggering_Alternative
10726 (N : Node_Id; Val : Node_Id); -- Node1
10728 procedure Set_Triggering_Statement
10729 (N : Node_Id; Val : Node_Id); -- Node1
10731 procedure Set_TSS_Elist
10732 (N : Node_Id; Val : Elist_Id); -- Elist3
10734 procedure Set_Type_Definition
10735 (N : Node_Id; Val : Node_Id); -- Node3
10737 procedure Set_Uneval_Old_Accept
10738 (N : Node_Id; Val : Boolean := True); -- Flag7
10740 procedure Set_Uneval_Old_Warn
10741 (N : Node_Id; Val : Boolean := True); -- Flag18
10743 procedure Set_Unit
10744 (N : Node_Id; Val : Node_Id); -- Node2
10746 procedure Set_Unknown_Discriminants_Present
10747 (N : Node_Id; Val : Boolean := True); -- Flag13
10749 procedure Set_Unreferenced_In_Spec
10750 (N : Node_Id; Val : Boolean := True); -- Flag7
10752 procedure Set_Variant_Part
10753 (N : Node_Id; Val : Node_Id); -- Node4
10755 procedure Set_Variants
10756 (N : Node_Id; Val : List_Id); -- List1
10758 procedure Set_Visible_Declarations
10759 (N : Node_Id; Val : List_Id); -- List2
10761 procedure Set_Uninitialized_Variable
10762 (N : Node_Id; Val : Node_Id); -- Node3
10764 procedure Set_Used_Operations
10765 (N : Node_Id; Val : Elist_Id); -- Elist5
10767 procedure Set_Was_Originally_Stub
10768 (N : Node_Id; Val : Boolean := True); -- Flag13
10770 procedure Set_Withed_Body
10771 (N : Node_Id; Val : Node_Id); -- Node1
10773 -------------------------
10774 -- Iterator Procedures --
10775 -------------------------
10777 -- The call to Next_xxx (N) is equivalent to N := Next_xxx (N)
10779 procedure Next_Entity (N : in out Node_Id);
10780 procedure Next_Named_Actual (N : in out Node_Id);
10781 procedure Next_Rep_Item (N : in out Node_Id);
10782 procedure Next_Use_Clause (N : in out Node_Id);
10784 -------------------------------------------
10785 -- Miscellaneous Tree Access Subprograms --
10786 -------------------------------------------
10788 function End_Location (N : Node_Id) return Source_Ptr;
10789 -- N is an N_If_Statement or N_Case_Statement node, and this function
10790 -- returns the location of the IF token in the END IF sequence by
10791 -- translating the value of the End_Span field.
10793 procedure Set_End_Location (N : Node_Id; S : Source_Ptr);
10794 -- N is an N_If_Statement or N_Case_Statement node. This procedure sets
10795 -- the End_Span field to correspond to the given value S. In other words,
10796 -- End_Span is set to the difference between S and Sloc (N), the starting
10797 -- location.
10799 function Get_Pragma_Arg (Arg : Node_Id) return Node_Id;
10800 -- Given an argument to a pragma Arg, this function returns the expression
10801 -- for the argument. This is Arg itself, or, in the case where Arg is a
10802 -- pragma argument association node, the expression from this node.
10804 --------------------------------
10805 -- Node_Kind Membership Tests --
10806 --------------------------------
10808 -- The following functions allow a convenient notation for testing whether
10809 -- a Node_Kind value matches any one of a list of possible values. In each
10810 -- case True is returned if the given T argument is equal to any of the V
10811 -- arguments. Note that there is a similar set of functions defined in
10812 -- Atree where the first argument is a Node_Id whose Nkind field is tested.
10814 function Nkind_In
10815 (T : Node_Kind;
10816 V1 : Node_Kind;
10817 V2 : Node_Kind) return Boolean;
10819 function Nkind_In
10820 (T : Node_Kind;
10821 V1 : Node_Kind;
10822 V2 : Node_Kind;
10823 V3 : Node_Kind) return Boolean;
10825 function Nkind_In
10826 (T : Node_Kind;
10827 V1 : Node_Kind;
10828 V2 : Node_Kind;
10829 V3 : Node_Kind;
10830 V4 : Node_Kind) return Boolean;
10832 function Nkind_In
10833 (T : Node_Kind;
10834 V1 : Node_Kind;
10835 V2 : Node_Kind;
10836 V3 : Node_Kind;
10837 V4 : Node_Kind;
10838 V5 : Node_Kind) return Boolean;
10840 function Nkind_In
10841 (T : Node_Kind;
10842 V1 : Node_Kind;
10843 V2 : Node_Kind;
10844 V3 : Node_Kind;
10845 V4 : Node_Kind;
10846 V5 : Node_Kind;
10847 V6 : Node_Kind) return Boolean;
10849 function Nkind_In
10850 (T : Node_Kind;
10851 V1 : Node_Kind;
10852 V2 : Node_Kind;
10853 V3 : Node_Kind;
10854 V4 : Node_Kind;
10855 V5 : Node_Kind;
10856 V6 : Node_Kind;
10857 V7 : Node_Kind) return Boolean;
10859 function Nkind_In
10860 (T : Node_Kind;
10861 V1 : Node_Kind;
10862 V2 : Node_Kind;
10863 V3 : Node_Kind;
10864 V4 : Node_Kind;
10865 V5 : Node_Kind;
10866 V6 : Node_Kind;
10867 V7 : Node_Kind;
10868 V8 : Node_Kind) return Boolean;
10870 function Nkind_In
10871 (T : Node_Kind;
10872 V1 : Node_Kind;
10873 V2 : Node_Kind;
10874 V3 : Node_Kind;
10875 V4 : Node_Kind;
10876 V5 : Node_Kind;
10877 V6 : Node_Kind;
10878 V7 : Node_Kind;
10879 V8 : Node_Kind;
10880 V9 : Node_Kind) return Boolean;
10882 pragma Inline (Nkind_In);
10883 -- Inline all above functions
10885 -----------------------
10886 -- Utility Functions --
10887 -----------------------
10889 function Pragma_Name (N : Node_Id) return Name_Id;
10890 pragma Inline (Pragma_Name);
10891 -- Convenient function to obtain Chars field of Pragma_Identifier
10893 -----------------------------
10894 -- Syntactic Parent Tables --
10895 -----------------------------
10897 -- These tables show for each node, and for each of the five fields,
10898 -- whether the corresponding field is syntactic (True) or semantic (False).
10899 -- Unused entries are also set to False.
10901 subtype Field_Num is Natural range 1 .. 5;
10903 Is_Syntactic_Field : constant array (Node_Kind, Field_Num) of Boolean := (
10905 -- Following entries can be built automatically from the sinfo sources
10906 -- using the makeisf utility (currently this program is in spitbol).
10908 N_Identifier =>
10909 (1 => True, -- Chars (Name1)
10910 2 => False, -- Original_Discriminant (Node2-Sem)
10911 3 => False, -- unused
10912 4 => False, -- Entity (Node4-Sem)
10913 5 => False), -- Etype (Node5-Sem)
10915 N_Integer_Literal =>
10916 (1 => False, -- unused
10917 2 => False, -- Original_Entity (Node2-Sem)
10918 3 => True, -- Intval (Uint3)
10919 4 => False, -- unused
10920 5 => False), -- Etype (Node5-Sem)
10922 N_Real_Literal =>
10923 (1 => False, -- unused
10924 2 => False, -- Original_Entity (Node2-Sem)
10925 3 => True, -- Realval (Ureal3)
10926 4 => False, -- Corresponding_Integer_Value (Uint4-Sem)
10927 5 => False), -- Etype (Node5-Sem)
10929 N_Character_Literal =>
10930 (1 => True, -- Chars (Name1)
10931 2 => True, -- Char_Literal_Value (Uint2)
10932 3 => False, -- unused
10933 4 => False, -- Entity (Node4-Sem)
10934 5 => False), -- Etype (Node5-Sem)
10936 N_String_Literal =>
10937 (1 => False, -- unused
10938 2 => False, -- unused
10939 3 => True, -- Strval (Str3)
10940 4 => False, -- unused
10941 5 => False), -- Etype (Node5-Sem)
10943 N_Pragma =>
10944 (1 => False, -- Next_Pragma (Node1-Sem)
10945 2 => True, -- Pragma_Argument_Associations (List2)
10946 3 => False, -- Corresponding_Aspect (Node3-Sem)
10947 4 => True, -- Pragma_Identifier (Node4)
10948 5 => False), -- Next_Rep_Item (Node5-Sem)
10950 N_Pragma_Argument_Association =>
10951 (1 => True, -- Chars (Name1)
10952 2 => False, -- unused
10953 3 => True, -- Expression (Node3)
10954 4 => False, -- unused
10955 5 => False), -- unused
10957 N_Defining_Identifier =>
10958 (1 => True, -- Chars (Name1)
10959 2 => False, -- Next_Entity (Node2-Sem)
10960 3 => False, -- Scope (Node3-Sem)
10961 4 => False, -- unused
10962 5 => False), -- Etype (Node5-Sem)
10964 N_Full_Type_Declaration =>
10965 (1 => True, -- Defining_Identifier (Node1)
10966 2 => False, -- Incomplete_View (Node2-Sem)
10967 3 => True, -- Type_Definition (Node3)
10968 4 => True, -- Discriminant_Specifications (List4)
10969 5 => False), -- unused
10971 N_Subtype_Declaration =>
10972 (1 => True, -- Defining_Identifier (Node1)
10973 2 => False, -- unused
10974 3 => False, -- unused
10975 4 => False, -- Generic_Parent_Type (Node4-Sem)
10976 5 => True), -- Subtype_Indication (Node5)
10978 N_Subtype_Indication =>
10979 (1 => False, -- unused
10980 2 => False, -- unused
10981 3 => True, -- Constraint (Node3)
10982 4 => True, -- Subtype_Mark (Node4)
10983 5 => False), -- Etype (Node5-Sem)
10985 N_Object_Declaration =>
10986 (1 => True, -- Defining_Identifier (Node1)
10987 2 => False, -- Handler_List_Entry (Node2-Sem)
10988 3 => True, -- Expression (Node3)
10989 4 => True, -- Object_Definition (Node4)
10990 5 => False), -- Corresponding_Generic_Association (Node5-Sem)
10992 N_Number_Declaration =>
10993 (1 => True, -- Defining_Identifier (Node1)
10994 2 => False, -- unused
10995 3 => True, -- Expression (Node3)
10996 4 => False, -- unused
10997 5 => False), -- unused
10999 N_Derived_Type_Definition =>
11000 (1 => False, -- unused
11001 2 => True, -- Interface_List (List2)
11002 3 => True, -- Record_Extension_Part (Node3)
11003 4 => False, -- unused
11004 5 => True), -- Subtype_Indication (Node5)
11006 N_Range_Constraint =>
11007 (1 => False, -- unused
11008 2 => False, -- unused
11009 3 => False, -- unused
11010 4 => True, -- Range_Expression (Node4)
11011 5 => False), -- unused
11013 N_Range =>
11014 (1 => True, -- Low_Bound (Node1)
11015 2 => True, -- High_Bound (Node2)
11016 3 => False, -- unused
11017 4 => False, -- unused
11018 5 => False), -- Etype (Node5-Sem)
11020 N_Enumeration_Type_Definition =>
11021 (1 => True, -- Literals (List1)
11022 2 => False, -- unused
11023 3 => False, -- unused
11024 4 => True, -- End_Label (Node4)
11025 5 => False), -- unused
11027 N_Defining_Character_Literal =>
11028 (1 => True, -- Chars (Name1)
11029 2 => False, -- Next_Entity (Node2-Sem)
11030 3 => False, -- Scope (Node3-Sem)
11031 4 => False, -- unused
11032 5 => False), -- Etype (Node5-Sem)
11034 N_Signed_Integer_Type_Definition =>
11035 (1 => True, -- Low_Bound (Node1)
11036 2 => True, -- High_Bound (Node2)
11037 3 => False, -- unused
11038 4 => False, -- unused
11039 5 => False), -- unused
11041 N_Modular_Type_Definition =>
11042 (1 => False, -- unused
11043 2 => False, -- unused
11044 3 => True, -- Expression (Node3)
11045 4 => False, -- unused
11046 5 => False), -- unused
11048 N_Floating_Point_Definition =>
11049 (1 => False, -- unused
11050 2 => True, -- Digits_Expression (Node2)
11051 3 => False, -- unused
11052 4 => True, -- Real_Range_Specification (Node4)
11053 5 => False), -- unused
11055 N_Real_Range_Specification =>
11056 (1 => True, -- Low_Bound (Node1)
11057 2 => True, -- High_Bound (Node2)
11058 3 => False, -- unused
11059 4 => False, -- unused
11060 5 => False), -- unused
11062 N_Ordinary_Fixed_Point_Definition =>
11063 (1 => False, -- unused
11064 2 => False, -- unused
11065 3 => True, -- Delta_Expression (Node3)
11066 4 => True, -- Real_Range_Specification (Node4)
11067 5 => False), -- unused
11069 N_Decimal_Fixed_Point_Definition =>
11070 (1 => False, -- unused
11071 2 => True, -- Digits_Expression (Node2)
11072 3 => True, -- Delta_Expression (Node3)
11073 4 => True, -- Real_Range_Specification (Node4)
11074 5 => False), -- unused
11076 N_Digits_Constraint =>
11077 (1 => False, -- unused
11078 2 => True, -- Digits_Expression (Node2)
11079 3 => False, -- unused
11080 4 => True, -- Range_Constraint (Node4)
11081 5 => False), -- unused
11083 N_Unconstrained_Array_Definition =>
11084 (1 => False, -- unused
11085 2 => True, -- Subtype_Marks (List2)
11086 3 => False, -- unused
11087 4 => True, -- Component_Definition (Node4)
11088 5 => False), -- unused
11090 N_Constrained_Array_Definition =>
11091 (1 => False, -- unused
11092 2 => True, -- Discrete_Subtype_Definitions (List2)
11093 3 => False, -- unused
11094 4 => True, -- Component_Definition (Node4)
11095 5 => False), -- unused
11097 N_Component_Definition =>
11098 (1 => False, -- unused
11099 2 => False, -- unused
11100 3 => True, -- Access_Definition (Node3)
11101 4 => False, -- unused
11102 5 => True), -- Subtype_Indication (Node5)
11104 N_Discriminant_Specification =>
11105 (1 => True, -- Defining_Identifier (Node1)
11106 2 => False, -- unused
11107 3 => True, -- Expression (Node3)
11108 4 => False, -- unused
11109 5 => True), -- Discriminant_Type (Node5)
11111 N_Index_Or_Discriminant_Constraint =>
11112 (1 => True, -- Constraints (List1)
11113 2 => False, -- unused
11114 3 => False, -- unused
11115 4 => False, -- unused
11116 5 => False), -- unused
11118 N_Discriminant_Association =>
11119 (1 => True, -- Selector_Names (List1)
11120 2 => False, -- unused
11121 3 => True, -- Expression (Node3)
11122 4 => False, -- unused
11123 5 => False), -- unused
11125 N_Record_Definition =>
11126 (1 => True, -- Component_List (Node1)
11127 2 => True, -- Interface_List (List2)
11128 3 => False, -- unused
11129 4 => True, -- End_Label (Node4)
11130 5 => False), -- unused
11132 N_Component_List =>
11133 (1 => False, -- unused
11134 2 => False, -- unused
11135 3 => True, -- Component_Items (List3)
11136 4 => True, -- Variant_Part (Node4)
11137 5 => False), -- unused
11139 N_Component_Declaration =>
11140 (1 => True, -- Defining_Identifier (Node1)
11141 2 => False, -- unused
11142 3 => True, -- Expression (Node3)
11143 4 => True, -- Component_Definition (Node4)
11144 5 => False), -- unused
11146 N_Variant_Part =>
11147 (1 => True, -- Variants (List1)
11148 2 => True, -- Name (Node2)
11149 3 => False, -- unused
11150 4 => False, -- unused
11151 5 => False), -- unused
11153 N_Variant =>
11154 (1 => True, -- Component_List (Node1)
11155 2 => False, -- Enclosing_Variant (Node2-Sem)
11156 3 => False, -- Present_Expr (Uint3-Sem)
11157 4 => True, -- Discrete_Choices (List4)
11158 5 => False), -- Dcheck_Function (Node5-Sem)
11160 N_Others_Choice =>
11161 (1 => False, -- Others_Discrete_Choices (List1-Sem)
11162 2 => False, -- unused
11163 3 => False, -- unused
11164 4 => False, -- unused
11165 5 => False), -- unused
11167 N_Access_To_Object_Definition =>
11168 (1 => False, -- unused
11169 2 => False, -- unused
11170 3 => False, -- unused
11171 4 => False, -- unused
11172 5 => True), -- Subtype_Indication (Node5)
11174 N_Access_Function_Definition =>
11175 (1 => False, -- unused
11176 2 => False, -- unused
11177 3 => True, -- Parameter_Specifications (List3)
11178 4 => True, -- Result_Definition (Node4)
11179 5 => False), -- unused
11181 N_Access_Procedure_Definition =>
11182 (1 => False, -- unused
11183 2 => False, -- unused
11184 3 => True, -- Parameter_Specifications (List3)
11185 4 => False, -- unused
11186 5 => False), -- unused
11188 N_Access_Definition =>
11189 (1 => False, -- unused
11190 2 => False, -- unused
11191 3 => True, -- Access_To_Subprogram_Definition (Node3)
11192 4 => True, -- Subtype_Mark (Node4)
11193 5 => False), -- unused
11195 N_Incomplete_Type_Declaration =>
11196 (1 => True, -- Defining_Identifier (Node1)
11197 2 => False, -- unused
11198 3 => False, -- unused
11199 4 => True, -- Discriminant_Specifications (List4)
11200 5 => False), -- Premature_Use
11202 N_Explicit_Dereference =>
11203 (1 => False, -- unused
11204 2 => False, -- unused
11205 3 => True, -- Prefix (Node3)
11206 4 => False, -- Actual_Designated_Subtype (Node4-Sem)
11207 5 => False), -- Etype (Node5-Sem)
11209 N_Indexed_Component =>
11210 (1 => True, -- Expressions (List1)
11211 2 => False, -- unused
11212 3 => True, -- Prefix (Node3)
11213 4 => False, -- Generalized_Indexing (Node4-Sem)
11214 5 => False), -- Etype (Node5-Sem)
11216 N_Slice =>
11217 (1 => False, -- unused
11218 2 => False, -- unused
11219 3 => True, -- Prefix (Node3)
11220 4 => True, -- Discrete_Range (Node4)
11221 5 => False), -- Etype (Node5-Sem)
11223 N_Selected_Component =>
11224 (1 => False, -- unused
11225 2 => True, -- Selector_Name (Node2)
11226 3 => True, -- Prefix (Node3)
11227 4 => False, -- unused
11228 5 => False), -- Etype (Node5-Sem)
11230 N_Attribute_Reference =>
11231 (1 => True, -- Expressions (List1)
11232 2 => True, -- Attribute_Name (Name2)
11233 3 => True, -- Prefix (Node3)
11234 4 => False, -- Entity (Node4-Sem)
11235 5 => False), -- Etype (Node5-Sem)
11237 N_Aggregate =>
11238 (1 => True, -- Expressions (List1)
11239 2 => True, -- Component_Associations (List2)
11240 3 => False, -- Aggregate_Bounds (Node3-Sem)
11241 4 => False, -- unused
11242 5 => False), -- Etype (Node5-Sem)
11244 N_Component_Association =>
11245 (1 => True, -- Choices (List1)
11246 2 => False, -- Loop_Actions (List2-Sem)
11247 3 => True, -- Expression (Node3)
11248 4 => False, -- unused
11249 5 => False), -- unused
11251 N_Extension_Aggregate =>
11252 (1 => True, -- Expressions (List1)
11253 2 => True, -- Component_Associations (List2)
11254 3 => True, -- Ancestor_Part (Node3)
11255 4 => False, -- unused
11256 5 => False), -- Etype (Node5-Sem)
11258 N_Null =>
11259 (1 => False, -- unused
11260 2 => False, -- unused
11261 3 => False, -- unused
11262 4 => False, -- unused
11263 5 => False), -- Etype (Node5-Sem)
11265 N_And_Then =>
11266 (1 => False, -- Actions (List1-Sem)
11267 2 => True, -- Left_Opnd (Node2)
11268 3 => True, -- Right_Opnd (Node3)
11269 4 => False, -- unused
11270 5 => False), -- Etype (Node5-Sem)
11272 N_Or_Else =>
11273 (1 => False, -- Actions (List1-Sem)
11274 2 => True, -- Left_Opnd (Node2)
11275 3 => True, -- Right_Opnd (Node3)
11276 4 => False, -- unused
11277 5 => False), -- Etype (Node5-Sem)
11279 N_In =>
11280 (1 => False, -- unused
11281 2 => True, -- Left_Opnd (Node2)
11282 3 => True, -- Right_Opnd (Node3)
11283 4 => True, -- Alternatives (List4)
11284 5 => False), -- Etype (Node5-Sem)
11286 N_Not_In =>
11287 (1 => False, -- unused
11288 2 => True, -- Left_Opnd (Node2)
11289 3 => True, -- Right_Opnd (Node3)
11290 4 => True, -- Alternatives (List4)
11291 5 => False), -- Etype (Node5-Sem)
11293 N_Op_And =>
11294 (1 => True, -- Chars (Name1)
11295 2 => True, -- Left_Opnd (Node2)
11296 3 => True, -- Right_Opnd (Node3)
11297 4 => False, -- Entity (Node4-Sem)
11298 5 => False), -- Etype (Node5-Sem)
11300 N_Op_Or =>
11301 (1 => True, -- Chars (Name1)
11302 2 => True, -- Left_Opnd (Node2)
11303 3 => True, -- Right_Opnd (Node3)
11304 4 => False, -- Entity (Node4-Sem)
11305 5 => False), -- Etype (Node5-Sem)
11307 N_Op_Xor =>
11308 (1 => True, -- Chars (Name1)
11309 2 => True, -- Left_Opnd (Node2)
11310 3 => True, -- Right_Opnd (Node3)
11311 4 => False, -- Entity (Node4-Sem)
11312 5 => False), -- Etype (Node5-Sem)
11314 N_Op_Eq =>
11315 (1 => True, -- Chars (Name1)
11316 2 => True, -- Left_Opnd (Node2)
11317 3 => True, -- Right_Opnd (Node3)
11318 4 => False, -- Entity (Node4-Sem)
11319 5 => False), -- Etype (Node5-Sem)
11321 N_Op_Ne =>
11322 (1 => True, -- Chars (Name1)
11323 2 => True, -- Left_Opnd (Node2)
11324 3 => True, -- Right_Opnd (Node3)
11325 4 => False, -- Entity (Node4-Sem)
11326 5 => False), -- Etype (Node5-Sem)
11328 N_Op_Lt =>
11329 (1 => True, -- Chars (Name1)
11330 2 => True, -- Left_Opnd (Node2)
11331 3 => True, -- Right_Opnd (Node3)
11332 4 => False, -- Entity (Node4-Sem)
11333 5 => False), -- Etype (Node5-Sem)
11335 N_Op_Le =>
11336 (1 => True, -- Chars (Name1)
11337 2 => True, -- Left_Opnd (Node2)
11338 3 => True, -- Right_Opnd (Node3)
11339 4 => False, -- Entity (Node4-Sem)
11340 5 => False), -- Etype (Node5-Sem)
11342 N_Op_Gt =>
11343 (1 => True, -- Chars (Name1)
11344 2 => True, -- Left_Opnd (Node2)
11345 3 => True, -- Right_Opnd (Node3)
11346 4 => False, -- Entity (Node4-Sem)
11347 5 => False), -- Etype (Node5-Sem)
11349 N_Op_Ge =>
11350 (1 => True, -- Chars (Name1)
11351 2 => True, -- Left_Opnd (Node2)
11352 3 => True, -- Right_Opnd (Node3)
11353 4 => False, -- Entity (Node4-Sem)
11354 5 => False), -- Etype (Node5-Sem)
11356 N_Op_Add =>
11357 (1 => True, -- Chars (Name1)
11358 2 => True, -- Left_Opnd (Node2)
11359 3 => True, -- Right_Opnd (Node3)
11360 4 => False, -- Entity (Node4-Sem)
11361 5 => False), -- Etype (Node5-Sem)
11363 N_Op_Subtract =>
11364 (1 => True, -- Chars (Name1)
11365 2 => True, -- Left_Opnd (Node2)
11366 3 => True, -- Right_Opnd (Node3)
11367 4 => False, -- Entity (Node4-Sem)
11368 5 => False), -- Etype (Node5-Sem)
11370 N_Op_Concat =>
11371 (1 => True, -- Chars (Name1)
11372 2 => True, -- Left_Opnd (Node2)
11373 3 => True, -- Right_Opnd (Node3)
11374 4 => False, -- Entity (Node4-Sem)
11375 5 => False), -- Etype (Node5-Sem)
11377 N_Op_Multiply =>
11378 (1 => True, -- Chars (Name1)
11379 2 => True, -- Left_Opnd (Node2)
11380 3 => True, -- Right_Opnd (Node3)
11381 4 => False, -- Entity (Node4-Sem)
11382 5 => False), -- Etype (Node5-Sem)
11384 N_Op_Divide =>
11385 (1 => True, -- Chars (Name1)
11386 2 => True, -- Left_Opnd (Node2)
11387 3 => True, -- Right_Opnd (Node3)
11388 4 => False, -- Entity (Node4-Sem)
11389 5 => False), -- Etype (Node5-Sem)
11391 N_Op_Mod =>
11392 (1 => True, -- Chars (Name1)
11393 2 => True, -- Left_Opnd (Node2)
11394 3 => True, -- Right_Opnd (Node3)
11395 4 => False, -- Entity (Node4-Sem)
11396 5 => False), -- Etype (Node5-Sem)
11398 N_Op_Rem =>
11399 (1 => True, -- Chars (Name1)
11400 2 => True, -- Left_Opnd (Node2)
11401 3 => True, -- Right_Opnd (Node3)
11402 4 => False, -- Entity (Node4-Sem)
11403 5 => False), -- Etype (Node5-Sem)
11405 N_Op_Expon =>
11406 (1 => True, -- Chars (Name1)
11407 2 => True, -- Left_Opnd (Node2)
11408 3 => True, -- Right_Opnd (Node3)
11409 4 => False, -- Entity (Node4-Sem)
11410 5 => False), -- Etype (Node5-Sem)
11412 N_Op_Plus =>
11413 (1 => True, -- Chars (Name1)
11414 2 => False, -- unused
11415 3 => True, -- Right_Opnd (Node3)
11416 4 => False, -- Entity (Node4-Sem)
11417 5 => False), -- Etype (Node5-Sem)
11419 N_Op_Minus =>
11420 (1 => True, -- Chars (Name1)
11421 2 => False, -- unused
11422 3 => True, -- Right_Opnd (Node3)
11423 4 => False, -- Entity (Node4-Sem)
11424 5 => False), -- Etype (Node5-Sem)
11426 N_Op_Abs =>
11427 (1 => True, -- Chars (Name1)
11428 2 => False, -- unused
11429 3 => True, -- Right_Opnd (Node3)
11430 4 => False, -- Entity (Node4-Sem)
11431 5 => False), -- Etype (Node5-Sem)
11433 N_Op_Not =>
11434 (1 => True, -- Chars (Name1)
11435 2 => False, -- unused
11436 3 => True, -- Right_Opnd (Node3)
11437 4 => False, -- Entity (Node4-Sem)
11438 5 => False), -- Etype (Node5-Sem)
11440 N_Type_Conversion =>
11441 (1 => False, -- unused
11442 2 => False, -- unused
11443 3 => True, -- Expression (Node3)
11444 4 => True, -- Subtype_Mark (Node4)
11445 5 => False), -- Etype (Node5-Sem)
11447 N_Qualified_Expression =>
11448 (1 => False, -- unused
11449 2 => False, -- unused
11450 3 => True, -- Expression (Node3)
11451 4 => True, -- Subtype_Mark (Node4)
11452 5 => False), -- Etype (Node5-Sem)
11454 N_Quantified_Expression =>
11455 (1 => True, -- Condition (Node1)
11456 2 => True, -- Iterator_Specification
11457 3 => False, -- unused
11458 4 => True, -- Loop_Parameter_Specification (Node4)
11459 5 => False), -- Etype (Node5-Sem)
11461 N_Allocator =>
11462 (1 => False, -- Storage_Pool (Node1-Sem)
11463 2 => False, -- Procedure_To_Call (Node2-Sem)
11464 3 => True, -- Expression (Node3)
11465 4 => True, -- Subpool_Handle_Name (Node4)
11466 5 => False), -- Etype (Node5-Sem)
11468 N_Null_Statement =>
11469 (1 => False, -- unused
11470 2 => False, -- unused
11471 3 => False, -- unused
11472 4 => False, -- unused
11473 5 => False), -- unused
11475 N_Label =>
11476 (1 => True, -- Identifier (Node1)
11477 2 => False, -- unused
11478 3 => False, -- unused
11479 4 => False, -- unused
11480 5 => False), -- unused
11482 N_Assignment_Statement =>
11483 (1 => False, -- unused
11484 2 => True, -- Name (Node2)
11485 3 => True, -- Expression (Node3)
11486 4 => False, -- unused
11487 5 => False), -- unused
11489 N_If_Statement =>
11490 (1 => True, -- Condition (Node1)
11491 2 => True, -- Then_Statements (List2)
11492 3 => True, -- Elsif_Parts (List3)
11493 4 => True, -- Else_Statements (List4)
11494 5 => True), -- End_Span (Uint5)
11496 N_Elsif_Part =>
11497 (1 => True, -- Condition (Node1)
11498 2 => True, -- Then_Statements (List2)
11499 3 => False, -- Condition_Actions (List3-Sem)
11500 4 => False, -- unused
11501 5 => False), -- unused
11503 N_Case_Expression =>
11504 (1 => False, -- unused
11505 2 => False, -- unused
11506 3 => True, -- Expression (Node3)
11507 4 => True, -- Alternatives (List4)
11508 5 => False), -- unused
11510 N_Case_Expression_Alternative =>
11511 (1 => False, -- Actions (List1-Sem)
11512 2 => False, -- unused
11513 3 => True, -- Statements (List3)
11514 4 => True, -- Expression (Node4)
11515 5 => False), -- unused
11517 N_Case_Statement =>
11518 (1 => False, -- unused
11519 2 => False, -- unused
11520 3 => True, -- Expression (Node3)
11521 4 => True, -- Alternatives (List4)
11522 5 => True), -- End_Span (Uint5)
11524 N_Case_Statement_Alternative =>
11525 (1 => False, -- unused
11526 2 => False, -- unused
11527 3 => True, -- Statements (List3)
11528 4 => True, -- Discrete_Choices (List4)
11529 5 => False), -- unused
11531 N_Loop_Statement =>
11532 (1 => True, -- Identifier (Node1)
11533 2 => True, -- Iteration_Scheme (Node2)
11534 3 => True, -- Statements (List3)
11535 4 => True, -- End_Label (Node4)
11536 5 => False), -- unused
11538 N_Iteration_Scheme =>
11539 (1 => True, -- Condition (Node1)
11540 2 => True, -- Iterator_Specification (Node2)
11541 3 => False, -- Condition_Actions (List3-Sem)
11542 4 => True, -- Loop_Parameter_Specification (Node4)
11543 5 => False), -- unused
11545 N_Loop_Parameter_Specification =>
11546 (1 => True, -- Defining_Identifier (Node1)
11547 2 => False, -- unused
11548 3 => False, -- unused
11549 4 => True, -- Discrete_Subtype_Definition (Node4)
11550 5 => False), -- unused
11552 N_Iterator_Specification =>
11553 (1 => True, -- Defining_Identifier (Node1)
11554 2 => True, -- Name (Node2)
11555 3 => False, -- Unused
11556 4 => False, -- Unused
11557 5 => True), -- Subtype_Indication (Node5)
11559 N_Block_Statement =>
11560 (1 => True, -- Identifier (Node1)
11561 2 => True, -- Declarations (List2)
11562 3 => False, -- Activation_Chain_Entity (Node3-Sem)
11563 4 => True, -- Handled_Statement_Sequence (Node4)
11564 5 => False), -- unused
11566 N_Exit_Statement =>
11567 (1 => True, -- Condition (Node1)
11568 2 => True, -- Name (Node2)
11569 3 => False, -- unused
11570 4 => False, -- unused
11571 5 => False), -- unused
11573 N_Goto_Statement =>
11574 (1 => False, -- unused
11575 2 => True, -- Name (Node2)
11576 3 => False, -- unused
11577 4 => False, -- unused
11578 5 => False), -- unused
11580 N_Subprogram_Declaration =>
11581 (1 => True, -- Specification (Node1)
11582 2 => False, -- unused
11583 3 => False, -- Body_To_Inline (Node3-Sem)
11584 4 => False, -- Parent_Spec (Node4-Sem)
11585 5 => False), -- Corresponding_Body (Node5-Sem)
11587 N_Abstract_Subprogram_Declaration =>
11588 (1 => True, -- Specification (Node1)
11589 2 => False, -- unused
11590 3 => False, -- unused
11591 4 => False, -- unused
11592 5 => False), -- unused
11594 N_Function_Specification =>
11595 (1 => True, -- Defining_Unit_Name (Node1)
11596 2 => False, -- unused
11597 3 => True, -- Parameter_Specifications (List3)
11598 4 => True, -- Result_Definition (Node4)
11599 5 => False), -- Generic_Parent (Node5-Sem)
11601 N_Procedure_Specification =>
11602 (1 => True, -- Defining_Unit_Name (Node1)
11603 2 => False, -- unused
11604 3 => True, -- Parameter_Specifications (List3)
11605 4 => False, -- unused
11606 5 => False), -- Generic_Parent (Node5-Sem)
11608 N_Designator =>
11609 (1 => True, -- Identifier (Node1)
11610 2 => True, -- Name (Node2)
11611 3 => False, -- unused
11612 4 => False, -- unused
11613 5 => False), -- unused
11615 N_Defining_Program_Unit_Name =>
11616 (1 => True, -- Defining_Identifier (Node1)
11617 2 => True, -- Name (Node2)
11618 3 => False, -- unused
11619 4 => False, -- unused
11620 5 => False), -- unused
11622 N_Operator_Symbol =>
11623 (1 => True, -- Chars (Name1)
11624 2 => False, -- unused
11625 3 => True, -- Strval (Str3)
11626 4 => False, -- Entity (Node4-Sem)
11627 5 => False), -- Etype (Node5-Sem)
11629 N_Defining_Operator_Symbol =>
11630 (1 => True, -- Chars (Name1)
11631 2 => False, -- Next_Entity (Node2-Sem)
11632 3 => False, -- Scope (Node3-Sem)
11633 4 => False, -- unused
11634 5 => False), -- Etype (Node5-Sem)
11636 N_Parameter_Specification =>
11637 (1 => True, -- Defining_Identifier (Node1)
11638 2 => True, -- Parameter_Type (Node2)
11639 3 => True, -- Expression (Node3)
11640 4 => False, -- unused
11641 5 => False), -- Default_Expression (Node5-Sem)
11643 N_Subprogram_Body =>
11644 (1 => True, -- Specification (Node1)
11645 2 => True, -- Declarations (List2)
11646 3 => False, -- Activation_Chain_Entity (Node3-Sem)
11647 4 => True, -- Handled_Statement_Sequence (Node4)
11648 5 => False), -- Corresponding_Spec (Node5-Sem)
11650 N_Expression_Function =>
11651 (1 => True, -- Specification (Node1)
11652 2 => False, -- unused
11653 3 => True, -- Expression (Node3)
11654 4 => False, -- unused
11655 5 => False), -- unused
11657 N_Procedure_Call_Statement =>
11658 (1 => False, -- Controlling_Argument (Node1-Sem)
11659 2 => True, -- Name (Node2)
11660 3 => True, -- Parameter_Associations (List3)
11661 4 => False, -- First_Named_Actual (Node4-Sem)
11662 5 => False), -- Etype (Node5-Sem)
11664 N_Function_Call =>
11665 (1 => False, -- Controlling_Argument (Node1-Sem)
11666 2 => True, -- Name (Node2)
11667 3 => True, -- Parameter_Associations (List3)
11668 4 => False, -- First_Named_Actual (Node4-Sem)
11669 5 => False), -- Etype (Node5-Sem)
11671 N_Parameter_Association =>
11672 (1 => False, -- unused
11673 2 => True, -- Selector_Name (Node2)
11674 3 => True, -- Explicit_Actual_Parameter (Node3)
11675 4 => False, -- Next_Named_Actual (Node4-Sem)
11676 5 => False), -- unused
11678 N_Simple_Return_Statement =>
11679 (1 => False, -- Storage_Pool (Node1-Sem)
11680 2 => False, -- Procedure_To_Call (Node2-Sem)
11681 3 => True, -- Expression (Node3)
11682 4 => False, -- unused
11683 5 => False), -- Return_Statement_Entity (Node5-Sem)
11685 N_Extended_Return_Statement =>
11686 (1 => False, -- Storage_Pool (Node1-Sem)
11687 2 => False, -- Procedure_To_Call (Node2-Sem)
11688 3 => True, -- Return_Object_Declarations (List3)
11689 4 => True, -- Handled_Statement_Sequence (Node4)
11690 5 => False), -- Return_Statement_Entity (Node5-Sem)
11692 N_Package_Declaration =>
11693 (1 => True, -- Specification (Node1)
11694 2 => False, -- unused
11695 3 => False, -- Activation_Chain_Entity (Node3-Sem)
11696 4 => False, -- Parent_Spec (Node4-Sem)
11697 5 => False), -- Corresponding_Body (Node5-Sem)
11699 N_Package_Specification =>
11700 (1 => True, -- Defining_Unit_Name (Node1)
11701 2 => True, -- Visible_Declarations (List2)
11702 3 => True, -- Private_Declarations (List3)
11703 4 => True, -- End_Label (Node4)
11704 5 => False), -- Generic_Parent (Node5-Sem)
11706 N_Package_Body =>
11707 (1 => True, -- Defining_Unit_Name (Node1)
11708 2 => True, -- Declarations (List2)
11709 3 => False, -- unused
11710 4 => True, -- Handled_Statement_Sequence (Node4)
11711 5 => False), -- Corresponding_Spec (Node5-Sem)
11713 N_Private_Type_Declaration =>
11714 (1 => True, -- Defining_Identifier (Node1)
11715 2 => False, -- unused
11716 3 => False, -- unused
11717 4 => True, -- Discriminant_Specifications (List4)
11718 5 => False), -- unused
11720 N_Private_Extension_Declaration =>
11721 (1 => True, -- Defining_Identifier (Node1)
11722 2 => True, -- Interface_List (List2)
11723 3 => False, -- unused
11724 4 => True, -- Discriminant_Specifications (List4)
11725 5 => True), -- Subtype_Indication (Node5)
11727 N_Use_Package_Clause =>
11728 (1 => False, -- unused
11729 2 => True, -- Names (List2)
11730 3 => False, -- Next_Use_Clause (Node3-Sem)
11731 4 => False, -- Hidden_By_Use_Clause (Elist4-Sem)
11732 5 => False), -- unused
11734 N_Use_Type_Clause =>
11735 (1 => False, -- unused
11736 2 => True, -- Subtype_Marks (List2)
11737 3 => False, -- Next_Use_Clause (Node3-Sem)
11738 4 => False, -- Hidden_By_Use_Clause (Elist4-Sem)
11739 5 => False), -- unused
11741 N_Object_Renaming_Declaration =>
11742 (1 => True, -- Defining_Identifier (Node1)
11743 2 => True, -- Name (Node2)
11744 3 => True, -- Access_Definition (Node3)
11745 4 => True, -- Subtype_Mark (Node4)
11746 5 => False), -- Corresponding_Generic_Association (Node5-Sem)
11748 N_Exception_Renaming_Declaration =>
11749 (1 => True, -- Defining_Identifier (Node1)
11750 2 => True, -- Name (Node2)
11751 3 => False, -- unused
11752 4 => False, -- unused
11753 5 => False), -- unused
11755 N_Package_Renaming_Declaration =>
11756 (1 => True, -- Defining_Unit_Name (Node1)
11757 2 => True, -- Name (Node2)
11758 3 => False, -- unused
11759 4 => False, -- Parent_Spec (Node4-Sem)
11760 5 => False), -- unused
11762 N_Subprogram_Renaming_Declaration =>
11763 (1 => True, -- Specification (Node1)
11764 2 => True, -- Name (Node2)
11765 3 => False, -- Corresponding_Formal_Spec (Node3-Sem)
11766 4 => False, -- Parent_Spec (Node4-Sem)
11767 5 => False), -- Corresponding_Spec (Node5-Sem)
11769 N_Generic_Package_Renaming_Declaration =>
11770 (1 => True, -- Defining_Unit_Name (Node1)
11771 2 => True, -- Name (Node2)
11772 3 => False, -- unused
11773 4 => False, -- Parent_Spec (Node4-Sem)
11774 5 => False), -- unused
11776 N_Generic_Procedure_Renaming_Declaration =>
11777 (1 => True, -- Defining_Unit_Name (Node1)
11778 2 => True, -- Name (Node2)
11779 3 => False, -- unused
11780 4 => False, -- Parent_Spec (Node4-Sem)
11781 5 => False), -- unused
11783 N_Generic_Function_Renaming_Declaration =>
11784 (1 => True, -- Defining_Unit_Name (Node1)
11785 2 => True, -- Name (Node2)
11786 3 => False, -- unused
11787 4 => False, -- Parent_Spec (Node4-Sem)
11788 5 => False), -- unused
11790 N_Task_Type_Declaration =>
11791 (1 => True, -- Defining_Identifier (Node1)
11792 2 => True, -- Interface_List (List2)
11793 3 => True, -- Task_Definition (Node3)
11794 4 => True, -- Discriminant_Specifications (List4)
11795 5 => False), -- Corresponding_Body (Node5-Sem)
11797 N_Single_Task_Declaration =>
11798 (1 => True, -- Defining_Identifier (Node1)
11799 2 => True, -- Interface_List (List2)
11800 3 => True, -- Task_Definition (Node3)
11801 4 => False, -- unused
11802 5 => False), -- unused
11804 N_Task_Definition =>
11805 (1 => False, -- unused
11806 2 => True, -- Visible_Declarations (List2)
11807 3 => True, -- Private_Declarations (List3)
11808 4 => True, -- End_Label (Node4)
11809 5 => False), -- unused
11811 N_Task_Body =>
11812 (1 => True, -- Defining_Identifier (Node1)
11813 2 => True, -- Declarations (List2)
11814 3 => False, -- Activation_Chain_Entity (Node3-Sem)
11815 4 => True, -- Handled_Statement_Sequence (Node4)
11816 5 => False), -- Corresponding_Spec (Node5-Sem)
11818 N_Protected_Type_Declaration =>
11819 (1 => True, -- Defining_Identifier (Node1)
11820 2 => True, -- Interface_List (List2)
11821 3 => True, -- Protected_Definition (Node3)
11822 4 => True, -- Discriminant_Specifications (List4)
11823 5 => False), -- Corresponding_Body (Node5-Sem)
11825 N_Single_Protected_Declaration =>
11826 (1 => True, -- Defining_Identifier (Node1)
11827 2 => True, -- Interface_List (List2)
11828 3 => True, -- Protected_Definition (Node3)
11829 4 => False, -- unused
11830 5 => False), -- unused
11832 N_Protected_Definition =>
11833 (1 => False, -- unused
11834 2 => True, -- Visible_Declarations (List2)
11835 3 => True, -- Private_Declarations (List3)
11836 4 => True, -- End_Label (Node4)
11837 5 => False), -- unused
11839 N_Protected_Body =>
11840 (1 => True, -- Defining_Identifier (Node1)
11841 2 => True, -- Declarations (List2)
11842 3 => False, -- unused
11843 4 => True, -- End_Label (Node4)
11844 5 => False), -- Corresponding_Spec (Node5-Sem)
11846 N_Entry_Declaration =>
11847 (1 => True, -- Defining_Identifier (Node1)
11848 2 => False, -- unused
11849 3 => True, -- Parameter_Specifications (List3)
11850 4 => True, -- Discrete_Subtype_Definition (Node4)
11851 5 => False), -- Corresponding_Body (Node5-Sem)
11853 N_Accept_Statement =>
11854 (1 => True, -- Entry_Direct_Name (Node1)
11855 2 => True, -- Declarations (List2)
11856 3 => True, -- Parameter_Specifications (List3)
11857 4 => True, -- Handled_Statement_Sequence (Node4)
11858 5 => True), -- Entry_Index (Node5)
11860 N_Entry_Body =>
11861 (1 => True, -- Defining_Identifier (Node1)
11862 2 => True, -- Declarations (List2)
11863 3 => False, -- Activation_Chain_Entity (Node3-Sem)
11864 4 => True, -- Handled_Statement_Sequence (Node4)
11865 5 => True), -- Entry_Body_Formal_Part (Node5)
11867 N_Entry_Body_Formal_Part =>
11868 (1 => True, -- Condition (Node1)
11869 2 => False, -- unused
11870 3 => True, -- Parameter_Specifications (List3)
11871 4 => True, -- Entry_Index_Specification (Node4)
11872 5 => False), -- unused
11874 N_Entry_Index_Specification =>
11875 (1 => True, -- Defining_Identifier (Node1)
11876 2 => False, -- unused
11877 3 => False, -- unused
11878 4 => True, -- Discrete_Subtype_Definition (Node4)
11879 5 => False), -- unused
11881 N_Entry_Call_Statement =>
11882 (1 => False, -- unused
11883 2 => True, -- Name (Node2)
11884 3 => True, -- Parameter_Associations (List3)
11885 4 => False, -- First_Named_Actual (Node4-Sem)
11886 5 => False), -- unused
11888 N_Requeue_Statement =>
11889 (1 => False, -- unused
11890 2 => True, -- Name (Node2)
11891 3 => False, -- unused
11892 4 => False, -- unused
11893 5 => False), -- unused
11895 N_Delay_Until_Statement =>
11896 (1 => False, -- unused
11897 2 => False, -- unused
11898 3 => True, -- Expression (Node3)
11899 4 => False, -- unused
11900 5 => False), -- unused
11902 N_Delay_Relative_Statement =>
11903 (1 => False, -- unused
11904 2 => False, -- unused
11905 3 => True, -- Expression (Node3)
11906 4 => False, -- unused
11907 5 => False), -- unused
11909 N_Selective_Accept =>
11910 (1 => True, -- Select_Alternatives (List1)
11911 2 => False, -- unused
11912 3 => False, -- unused
11913 4 => True, -- Else_Statements (List4)
11914 5 => False), -- unused
11916 N_Accept_Alternative =>
11917 (1 => True, -- Condition (Node1)
11918 2 => True, -- Accept_Statement (Node2)
11919 3 => True, -- Statements (List3)
11920 4 => True, -- Pragmas_Before (List4)
11921 5 => False), -- Accept_Handler_Records (List5-Sem)
11923 N_Delay_Alternative =>
11924 (1 => True, -- Condition (Node1)
11925 2 => True, -- Delay_Statement (Node2)
11926 3 => True, -- Statements (List3)
11927 4 => True, -- Pragmas_Before (List4)
11928 5 => False), -- unused
11930 N_Terminate_Alternative =>
11931 (1 => True, -- Condition (Node1)
11932 2 => False, -- unused
11933 3 => False, -- unused
11934 4 => True, -- Pragmas_Before (List4)
11935 5 => True), -- Pragmas_After (List5)
11937 N_Timed_Entry_Call =>
11938 (1 => True, -- Entry_Call_Alternative (Node1)
11939 2 => False, -- unused
11940 3 => False, -- unused
11941 4 => True, -- Delay_Alternative (Node4)
11942 5 => False), -- unused
11944 N_Entry_Call_Alternative =>
11945 (1 => True, -- Entry_Call_Statement (Node1)
11946 2 => False, -- unused
11947 3 => True, -- Statements (List3)
11948 4 => True, -- Pragmas_Before (List4)
11949 5 => False), -- unused
11951 N_Conditional_Entry_Call =>
11952 (1 => True, -- Entry_Call_Alternative (Node1)
11953 2 => False, -- unused
11954 3 => False, -- unused
11955 4 => True, -- Else_Statements (List4)
11956 5 => False), -- unused
11958 N_Asynchronous_Select =>
11959 (1 => True, -- Triggering_Alternative (Node1)
11960 2 => True, -- Abortable_Part (Node2)
11961 3 => False, -- unused
11962 4 => False, -- unused
11963 5 => False), -- unused
11965 N_Triggering_Alternative =>
11966 (1 => True, -- Triggering_Statement (Node1)
11967 2 => False, -- unused
11968 3 => True, -- Statements (List3)
11969 4 => True, -- Pragmas_Before (List4)
11970 5 => False), -- unused
11972 N_Abortable_Part =>
11973 (1 => False, -- unused
11974 2 => False, -- unused
11975 3 => True, -- Statements (List3)
11976 4 => False, -- unused
11977 5 => False), -- unused
11979 N_Abort_Statement =>
11980 (1 => False, -- unused
11981 2 => True, -- Names (List2)
11982 3 => False, -- unused
11983 4 => False, -- unused
11984 5 => False), -- unused
11986 N_Compilation_Unit =>
11987 (1 => True, -- Context_Items (List1)
11988 2 => True, -- Unit (Node2)
11989 3 => False, -- First_Inlined_Subprogram (Node3-Sem)
11990 4 => False, -- Library_Unit (Node4-Sem)
11991 5 => True), -- Aux_Decls_Node (Node5)
11993 N_Compilation_Unit_Aux =>
11994 (1 => True, -- Actions (List1)
11995 2 => True, -- Declarations (List2)
11996 3 => False, -- Default_Storage_Pool (Node3)
11997 4 => True, -- Config_Pragmas (List4)
11998 5 => True), -- Pragmas_After (List5)
12000 N_With_Clause =>
12001 (1 => False, -- unused
12002 2 => True, -- Name (Node2)
12003 3 => False, -- unused
12004 4 => False, -- Library_Unit (Node4-Sem)
12005 5 => False), -- Corresponding_Spec (Node5-Sem)
12007 N_Subprogram_Body_Stub =>
12008 (1 => True, -- Specification (Node1)
12009 2 => False, -- Corresponding_Spec_Of_Stub (Node2-Sem)
12010 3 => False, -- unused
12011 4 => False, -- Library_Unit (Node4-Sem)
12012 5 => False), -- Corresponding_Body (Node5-Sem)
12014 N_Package_Body_Stub =>
12015 (1 => True, -- Defining_Identifier (Node1)
12016 2 => False, -- Corresponding_Spec_Of_Stub (Node2-Sem)
12017 3 => False, -- unused
12018 4 => False, -- Library_Unit (Node4-Sem)
12019 5 => False), -- Corresponding_Body (Node5-Sem)
12021 N_Task_Body_Stub =>
12022 (1 => True, -- Defining_Identifier (Node1)
12023 2 => False, -- Corresponding_Spec_Of_Stub (Node2-Sem)
12024 3 => False, -- unused
12025 4 => False, -- Library_Unit (Node4-Sem)
12026 5 => False), -- Corresponding_Body (Node5-Sem)
12028 N_Protected_Body_Stub =>
12029 (1 => True, -- Defining_Identifier (Node1)
12030 2 => False, -- Corresponding_Spec_Of_Stub (Node2-Sem)
12031 3 => False, -- unused
12032 4 => False, -- Library_Unit (Node4-Sem)
12033 5 => False), -- Corresponding_Body (Node5-Sem)
12035 N_Subunit =>
12036 (1 => True, -- Proper_Body (Node1)
12037 2 => True, -- Name (Node2)
12038 3 => False, -- Corresponding_Stub (Node3-Sem)
12039 4 => False, -- unused
12040 5 => False), -- unused
12042 N_Exception_Declaration =>
12043 (1 => True, -- Defining_Identifier (Node1)
12044 2 => False, -- unused
12045 3 => False, -- Expression (Node3-Sem)
12046 4 => False, -- unused
12047 5 => False), -- unused
12049 N_Handled_Sequence_Of_Statements =>
12050 (1 => True, -- At_End_Proc (Node1)
12051 2 => False, -- First_Real_Statement (Node2-Sem)
12052 3 => True, -- Statements (List3)
12053 4 => True, -- End_Label (Node4)
12054 5 => True), -- Exception_Handlers (List5)
12056 N_Exception_Handler =>
12057 (1 => False, -- Local_Raise_Statements (Elist1)
12058 2 => True, -- Choice_Parameter (Node2)
12059 3 => True, -- Statements (List3)
12060 4 => True, -- Exception_Choices (List4)
12061 5 => False), -- Exception_Label (Node5)
12063 N_Raise_Statement =>
12064 (1 => False, -- unused
12065 2 => True, -- Name (Node2)
12066 3 => True, -- Expression (Node3)
12067 4 => False, -- unused
12068 5 => False), -- unused
12070 N_Raise_Expression =>
12071 (1 => False, -- unused
12072 2 => True, -- Name (Node2)
12073 3 => True, -- Expression (Node3)
12074 4 => False, -- unused
12075 5 => False), -- Etype (Node5-Sem)
12077 N_Generic_Subprogram_Declaration =>
12078 (1 => True, -- Specification (Node1)
12079 2 => True, -- Generic_Formal_Declarations (List2)
12080 3 => False, -- unused
12081 4 => False, -- Parent_Spec (Node4-Sem)
12082 5 => False), -- Corresponding_Body (Node5-Sem)
12084 N_Generic_Package_Declaration =>
12085 (1 => True, -- Specification (Node1)
12086 2 => True, -- Generic_Formal_Declarations (List2)
12087 3 => False, -- Activation_Chain_Entity (Node3-Sem)
12088 4 => False, -- Parent_Spec (Node4-Sem)
12089 5 => False), -- Corresponding_Body (Node5-Sem)
12091 N_Package_Instantiation =>
12092 (1 => True, -- Defining_Unit_Name (Node1)
12093 2 => True, -- Name (Node2)
12094 3 => True, -- Generic_Associations (List3)
12095 4 => False, -- Parent_Spec (Node4-Sem)
12096 5 => False), -- Instance_Spec (Node5-Sem)
12098 N_Procedure_Instantiation =>
12099 (1 => True, -- Defining_Unit_Name (Node1)
12100 2 => True, -- Name (Node2)
12101 3 => True, -- Generic_Associations (List3)
12102 4 => False, -- Parent_Spec (Node4-Sem)
12103 5 => False), -- Instance_Spec (Node5-Sem)
12105 N_Function_Instantiation =>
12106 (1 => True, -- Defining_Unit_Name (Node1)
12107 2 => True, -- Name (Node2)
12108 3 => True, -- Generic_Associations (List3)
12109 4 => False, -- Parent_Spec (Node4-Sem)
12110 5 => False), -- Instance_Spec (Node5-Sem)
12112 N_Generic_Association =>
12113 (1 => True, -- Explicit_Generic_Actual_Parameter (Node1)
12114 2 => True, -- Selector_Name (Node2)
12115 3 => False, -- unused
12116 4 => False, -- unused
12117 5 => False), -- unused
12119 N_Formal_Object_Declaration =>
12120 (1 => True, -- Defining_Identifier (Node1)
12121 2 => False, -- unused
12122 3 => True, -- Access_Definition (Node3)
12123 4 => True, -- Subtype_Mark (Node4)
12124 5 => True), -- Default_Expression (Node5)
12126 N_Formal_Type_Declaration =>
12127 (1 => True, -- Defining_Identifier (Node1)
12128 2 => False, -- unused
12129 3 => True, -- Formal_Type_Definition (Node3)
12130 4 => True, -- Discriminant_Specifications (List4)
12131 5 => False), -- unused
12133 N_Formal_Private_Type_Definition =>
12134 (1 => False, -- unused
12135 2 => False, -- unused
12136 3 => False, -- unused
12137 4 => False, -- unused
12138 5 => False), -- unused
12140 N_Formal_Incomplete_Type_Definition =>
12141 (1 => False, -- unused
12142 2 => False, -- unused
12143 3 => False, -- unused
12144 4 => False, -- unused
12145 5 => False), -- unused
12147 N_Formal_Derived_Type_Definition =>
12148 (1 => False, -- unused
12149 2 => True, -- Interface_List (List2)
12150 3 => False, -- unused
12151 4 => True, -- Subtype_Mark (Node4)
12152 5 => False), -- unused
12154 N_Formal_Discrete_Type_Definition =>
12155 (1 => False, -- unused
12156 2 => False, -- unused
12157 3 => False, -- unused
12158 4 => False, -- unused
12159 5 => False), -- unused
12161 N_Formal_Signed_Integer_Type_Definition =>
12162 (1 => False, -- unused
12163 2 => False, -- unused
12164 3 => False, -- unused
12165 4 => False, -- unused
12166 5 => False), -- unused
12168 N_Formal_Modular_Type_Definition =>
12169 (1 => False, -- unused
12170 2 => False, -- unused
12171 3 => False, -- unused
12172 4 => False, -- unused
12173 5 => False), -- unused
12175 N_Formal_Floating_Point_Definition =>
12176 (1 => False, -- unused
12177 2 => False, -- unused
12178 3 => False, -- unused
12179 4 => False, -- unused
12180 5 => False), -- unused
12182 N_Formal_Ordinary_Fixed_Point_Definition =>
12183 (1 => False, -- unused
12184 2 => False, -- unused
12185 3 => False, -- unused
12186 4 => False, -- unused
12187 5 => False), -- unused
12189 N_Formal_Decimal_Fixed_Point_Definition =>
12190 (1 => False, -- unused
12191 2 => False, -- unused
12192 3 => False, -- unused
12193 4 => False, -- unused
12194 5 => False), -- unused
12196 N_Formal_Concrete_Subprogram_Declaration =>
12197 (1 => True, -- Specification (Node1)
12198 2 => True, -- Default_Name (Node2)
12199 3 => False, -- unused
12200 4 => False, -- unused
12201 5 => False), -- unused
12203 N_Formal_Abstract_Subprogram_Declaration =>
12204 (1 => True, -- Specification (Node1)
12205 2 => True, -- Default_Name (Node2)
12206 3 => False, -- unused
12207 4 => False, -- unused
12208 5 => False), -- unused
12210 N_Formal_Package_Declaration =>
12211 (1 => True, -- Defining_Identifier (Node1)
12212 2 => True, -- Name (Node2)
12213 3 => True, -- Generic_Associations (List3)
12214 4 => False, -- unused
12215 5 => False), -- Instance_Spec (Node5-Sem)
12217 N_Attribute_Definition_Clause =>
12218 (1 => True, -- Chars (Name1)
12219 2 => True, -- Name (Node2)
12220 3 => True, -- Expression (Node3)
12221 4 => False, -- unused
12222 5 => False), -- Next_Rep_Item (Node5-Sem)
12224 N_Aspect_Specification =>
12225 (1 => True, -- Identifier (Node1)
12226 2 => False, -- Aspect_Rep_Item (Node2-Sem)
12227 3 => True, -- Expression (Node3)
12228 4 => False, -- Entity (Node4-Sem)
12229 5 => False), -- Next_Rep_Item (Node5-Sem)
12231 N_Enumeration_Representation_Clause =>
12232 (1 => True, -- Identifier (Node1)
12233 2 => False, -- unused
12234 3 => True, -- Array_Aggregate (Node3)
12235 4 => False, -- unused
12236 5 => False), -- Next_Rep_Item (Node5-Sem)
12238 N_Record_Representation_Clause =>
12239 (1 => True, -- Identifier (Node1)
12240 2 => True, -- Mod_Clause (Node2)
12241 3 => True, -- Component_Clauses (List3)
12242 4 => False, -- unused
12243 5 => False), -- Next_Rep_Item (Node5-Sem)
12245 N_Component_Clause =>
12246 (1 => True, -- Component_Name (Node1)
12247 2 => True, -- Position (Node2)
12248 3 => True, -- First_Bit (Node3)
12249 4 => True, -- Last_Bit (Node4)
12250 5 => False), -- unused
12252 N_Code_Statement =>
12253 (1 => False, -- unused
12254 2 => False, -- unused
12255 3 => True, -- Expression (Node3)
12256 4 => False, -- unused
12257 5 => False), -- unused
12259 N_Op_Rotate_Left =>
12260 (1 => True, -- Chars (Name1)
12261 2 => True, -- Left_Opnd (Node2)
12262 3 => True, -- Right_Opnd (Node3)
12263 4 => False, -- Entity (Node4-Sem)
12264 5 => False), -- Etype (Node5-Sem)
12266 N_Op_Rotate_Right =>
12267 (1 => True, -- Chars (Name1)
12268 2 => True, -- Left_Opnd (Node2)
12269 3 => True, -- Right_Opnd (Node3)
12270 4 => False, -- Entity (Node4-Sem)
12271 5 => False), -- Etype (Node5-Sem)
12273 N_Op_Shift_Left =>
12274 (1 => True, -- Chars (Name1)
12275 2 => True, -- Left_Opnd (Node2)
12276 3 => True, -- Right_Opnd (Node3)
12277 4 => False, -- Entity (Node4-Sem)
12278 5 => False), -- Etype (Node5-Sem)
12280 N_Op_Shift_Right_Arithmetic =>
12281 (1 => True, -- Chars (Name1)
12282 2 => True, -- Left_Opnd (Node2)
12283 3 => True, -- Right_Opnd (Node3)
12284 4 => False, -- Entity (Node4-Sem)
12285 5 => False), -- Etype (Node5-Sem)
12287 N_Op_Shift_Right =>
12288 (1 => True, -- Chars (Name1)
12289 2 => True, -- Left_Opnd (Node2)
12290 3 => True, -- Right_Opnd (Node3)
12291 4 => False, -- Entity (Node4-Sem)
12292 5 => False), -- Etype (Node5-Sem)
12294 N_Delta_Constraint =>
12295 (1 => False, -- unused
12296 2 => False, -- unused
12297 3 => True, -- Delta_Expression (Node3)
12298 4 => True, -- Range_Constraint (Node4)
12299 5 => False), -- unused
12301 N_At_Clause =>
12302 (1 => True, -- Identifier (Node1)
12303 2 => False, -- unused
12304 3 => True, -- Expression (Node3)
12305 4 => False, -- unused
12306 5 => False), -- unused
12308 N_Mod_Clause =>
12309 (1 => False, -- unused
12310 2 => False, -- unused
12311 3 => True, -- Expression (Node3)
12312 4 => True, -- Pragmas_Before (List4)
12313 5 => False), -- unused
12315 N_If_Expression =>
12316 (1 => True, -- Expressions (List1)
12317 2 => False, -- Then_Actions (List2-Sem)
12318 3 => False, -- Else_Actions (List3-Sem)
12319 4 => False, -- unused
12320 5 => False), -- Etype (Node5-Sem)
12322 N_Compound_Statement =>
12323 (1 => True, -- Actions (List1)
12324 2 => False, -- unused
12325 3 => False, -- unused
12326 4 => False, -- unused
12327 5 => False), -- unused
12329 N_Contract =>
12330 (1 => False, -- Pre_Post_Conditions (Node1-Sem)
12331 2 => False, -- Contract_Test_Cases (Node2-Sem)
12332 3 => False, -- Classifications (Node3-Sem)
12333 4 => False, -- unused
12334 5 => False), -- unused
12336 N_Expanded_Name =>
12337 (1 => True, -- Chars (Name1)
12338 2 => True, -- Selector_Name (Node2)
12339 3 => True, -- Prefix (Node3)
12340 4 => False, -- Entity (Node4-Sem)
12341 5 => False), -- Etype (Node5-Sem)
12343 N_Expression_With_Actions =>
12344 (1 => True, -- Actions (List1)
12345 2 => False, -- unused
12346 3 => True, -- Expression (Node3)
12347 4 => False, -- unused
12348 5 => False), -- unused
12350 N_Free_Statement =>
12351 (1 => False, -- Storage_Pool (Node1-Sem)
12352 2 => False, -- Procedure_To_Call (Node2-Sem)
12353 3 => True, -- Expression (Node3)
12354 4 => False, -- Actual_Designated_Subtype (Node4-Sem)
12355 5 => False), -- unused
12357 N_Freeze_Entity =>
12358 (1 => True, -- Actions (List1)
12359 2 => False, -- Access_Types_To_Process (Elist2-Sem)
12360 3 => False, -- TSS_Elist (Elist3-Sem)
12361 4 => False, -- Entity (Node4-Sem)
12362 5 => False), -- First_Subtype_Link (Node5-Sem)
12364 N_Freeze_Generic_Entity =>
12365 (1 => False, -- unused
12366 2 => False, -- unused
12367 3 => False, -- unused
12368 4 => False, -- Entity (Node4-Sem)
12369 5 => False), -- unused
12371 N_Implicit_Label_Declaration =>
12372 (1 => True, -- Defining_Identifier (Node1)
12373 2 => False, -- Label_Construct (Node2-Sem)
12374 3 => False, -- unused
12375 4 => False, -- unused
12376 5 => False), -- unused
12378 N_Itype_Reference =>
12379 (1 => False, -- Itype (Node1-Sem)
12380 2 => False, -- unused
12381 3 => False, -- unused
12382 4 => False, -- unused
12383 5 => False), -- unused
12385 N_Raise_Constraint_Error =>
12386 (1 => True, -- Condition (Node1)
12387 2 => False, -- unused
12388 3 => True, -- Reason (Uint3)
12389 4 => False, -- unused
12390 5 => False), -- Etype (Node5-Sem)
12392 N_Raise_Program_Error =>
12393 (1 => True, -- Condition (Node1)
12394 2 => False, -- unused
12395 3 => True, -- Reason (Uint3)
12396 4 => False, -- unused
12397 5 => False), -- Etype (Node5-Sem)
12399 N_Raise_Storage_Error =>
12400 (1 => True, -- Condition (Node1)
12401 2 => False, -- unused
12402 3 => True, -- Reason (Uint3)
12403 4 => False, -- unused
12404 5 => False), -- Etype (Node5-Sem)
12406 N_Push_Constraint_Error_Label =>
12407 (1 => False, -- unused
12408 2 => False, -- unused
12409 3 => False, -- unused
12410 4 => False, -- unused
12411 5 => False), -- unused
12413 N_Push_Program_Error_Label =>
12414 (1 => False, -- Exception_Label
12415 2 => False, -- unused
12416 3 => False, -- unused
12417 4 => False, -- unused
12418 5 => False), -- Exception_Label
12420 N_Push_Storage_Error_Label =>
12421 (1 => False, -- Exception_Label
12422 2 => False, -- unused
12423 3 => False, -- unused
12424 4 => False, -- unused
12425 5 => False), -- Exception_Label
12427 N_Pop_Constraint_Error_Label =>
12428 (1 => False, -- unused
12429 2 => False, -- unused
12430 3 => False, -- unused
12431 4 => False, -- unused
12432 5 => False), -- unused
12434 N_Pop_Program_Error_Label =>
12435 (1 => False, -- unused
12436 2 => False, -- unused
12437 3 => False, -- unused
12438 4 => False, -- unused
12439 5 => False), -- unused
12441 N_Pop_Storage_Error_Label =>
12442 (1 => False, -- unused
12443 2 => False, -- unused
12444 3 => False, -- unused
12445 4 => False, -- unused
12446 5 => False), -- unused
12448 N_Reference =>
12449 (1 => False, -- unused
12450 2 => False, -- unused
12451 3 => True, -- Prefix (Node3)
12452 4 => False, -- unused
12453 5 => False), -- Etype (Node5-Sem)
12455 N_Unchecked_Expression =>
12456 (1 => False, -- unused
12457 2 => False, -- unused
12458 3 => True, -- Expression (Node3)
12459 4 => False, -- unused
12460 5 => False), -- Etype (Node5-Sem)
12462 N_Unchecked_Type_Conversion =>
12463 (1 => False, -- unused
12464 2 => False, -- unused
12465 3 => True, -- Expression (Node3)
12466 4 => True, -- Subtype_Mark (Node4)
12467 5 => False), -- Etype (Node5-Sem)
12469 N_Validate_Unchecked_Conversion =>
12470 (1 => False, -- Source_Type (Node1-Sem)
12471 2 => False, -- Target_Type (Node2-Sem)
12472 3 => False, -- unused
12473 4 => False, -- unused
12474 5 => False), -- unused
12476 -- Entries for SCIL nodes
12478 N_SCIL_Dispatch_Table_Tag_Init =>
12479 (1 => False, -- unused
12480 2 => False, -- unused
12481 3 => False, -- unused
12482 4 => False, -- SCIL_Entity (Node4-Sem)
12483 5 => False), -- unused
12485 N_SCIL_Dispatching_Call =>
12486 (1 => False, -- unused
12487 2 => False, -- SCIL_Target_Prim (Node2-Sem)
12488 3 => False, -- unused
12489 4 => False, -- SCIL_Entity (Node4-Sem)
12490 5 => False), -- SCIL_Controlling_Tag (Node5-Sem)
12492 N_SCIL_Membership_Test =>
12493 (1 => False, -- unused
12494 2 => False, -- unused
12495 3 => False, -- unused
12496 4 => False, -- SCIL_Entity (Node4-Sem)
12497 5 => False), -- SCIL_Tag_Value (Node5-Sem)
12499 -- Entries for Empty, Error and Unused. Even thought these have a Chars
12500 -- field for debugging purposes, they are not really syntactic fields, so
12501 -- we mark all fields as unused.
12503 N_Empty =>
12504 (1 => False, -- unused
12505 2 => False, -- unused
12506 3 => False, -- unused
12507 4 => False, -- unused
12508 5 => False), -- unused
12510 N_Error =>
12511 (1 => False, -- unused
12512 2 => False, -- unused
12513 3 => False, -- unused
12514 4 => False, -- unused
12515 5 => False), -- unused
12517 N_Unused_At_Start =>
12518 (1 => False, -- unused
12519 2 => False, -- unused
12520 3 => False, -- unused
12521 4 => False, -- unused
12522 5 => False), -- unused
12524 N_Unused_At_End =>
12525 (1 => False, -- unused
12526 2 => False, -- unused
12527 3 => False, -- unused
12528 4 => False, -- unused
12529 5 => False)); -- unused
12531 --------------------
12532 -- Inline Pragmas --
12533 --------------------
12535 pragma Inline (ABE_Is_Certain);
12536 pragma Inline (Abort_Present);
12537 pragma Inline (Abortable_Part);
12538 pragma Inline (Abstract_Present);
12539 pragma Inline (Accept_Handler_Records);
12540 pragma Inline (Accept_Statement);
12541 pragma Inline (Access_Definition);
12542 pragma Inline (Access_To_Subprogram_Definition);
12543 pragma Inline (Access_Types_To_Process);
12544 pragma Inline (Actions);
12545 pragma Inline (Activation_Chain_Entity);
12546 pragma Inline (Acts_As_Spec);
12547 pragma Inline (Actual_Designated_Subtype);
12548 pragma Inline (Address_Warning_Posted);
12549 pragma Inline (Aggregate_Bounds);
12550 pragma Inline (Aliased_Present);
12551 pragma Inline (All_Others);
12552 pragma Inline (All_Present);
12553 pragma Inline (Alternatives);
12554 pragma Inline (Ancestor_Part);
12555 pragma Inline (Atomic_Sync_Required);
12556 pragma Inline (Array_Aggregate);
12557 pragma Inline (Aspect_Rep_Item);
12558 pragma Inline (Assignment_OK);
12559 pragma Inline (Associated_Node);
12560 pragma Inline (At_End_Proc);
12561 pragma Inline (Attribute_Name);
12562 pragma Inline (Aux_Decls_Node);
12563 pragma Inline (Backwards_OK);
12564 pragma Inline (Bad_Is_Detected);
12565 pragma Inline (Body_To_Inline);
12566 pragma Inline (Body_Required);
12567 pragma Inline (By_Ref);
12568 pragma Inline (Box_Present);
12569 pragma Inline (Char_Literal_Value);
12570 pragma Inline (Chars);
12571 pragma Inline (Check_Address_Alignment);
12572 pragma Inline (Choice_Parameter);
12573 pragma Inline (Choices);
12574 pragma Inline (Class_Present);
12575 pragma Inline (Classifications);
12576 pragma Inline (Cleanup_Actions);
12577 pragma Inline (Comes_From_Extended_Return_Statement);
12578 pragma Inline (Compile_Time_Known_Aggregate);
12579 pragma Inline (Component_Associations);
12580 pragma Inline (Component_Clauses);
12581 pragma Inline (Component_Definition);
12582 pragma Inline (Component_Items);
12583 pragma Inline (Component_List);
12584 pragma Inline (Component_Name);
12585 pragma Inline (Componentwise_Assignment);
12586 pragma Inline (Condition);
12587 pragma Inline (Condition_Actions);
12588 pragma Inline (Config_Pragmas);
12589 pragma Inline (Constant_Present);
12590 pragma Inline (Constraint);
12591 pragma Inline (Constraints);
12592 pragma Inline (Context_Installed);
12593 pragma Inline (Context_Items);
12594 pragma Inline (Context_Pending);
12595 pragma Inline (Contract_Test_Cases);
12596 pragma Inline (Controlling_Argument);
12597 pragma Inline (Convert_To_Return_False);
12598 pragma Inline (Conversion_OK);
12599 pragma Inline (Corresponding_Aspect);
12600 pragma Inline (Corresponding_Body);
12601 pragma Inline (Corresponding_Formal_Spec);
12602 pragma Inline (Corresponding_Generic_Association);
12603 pragma Inline (Corresponding_Integer_Value);
12604 pragma Inline (Corresponding_Spec);
12605 pragma Inline (Corresponding_Spec_Of_Stub);
12606 pragma Inline (Corresponding_Stub);
12607 pragma Inline (Dcheck_Function);
12608 pragma Inline (Declarations);
12609 pragma Inline (Default_Expression);
12610 pragma Inline (Default_Storage_Pool);
12611 pragma Inline (Default_Name);
12612 pragma Inline (Defining_Identifier);
12613 pragma Inline (Defining_Unit_Name);
12614 pragma Inline (Delay_Alternative);
12615 pragma Inline (Delay_Statement);
12616 pragma Inline (Delta_Expression);
12617 pragma Inline (Digits_Expression);
12618 pragma Inline (Discr_Check_Funcs_Built);
12619 pragma Inline (Discrete_Choices);
12620 pragma Inline (Discrete_Range);
12621 pragma Inline (Discrete_Subtype_Definition);
12622 pragma Inline (Discrete_Subtype_Definitions);
12623 pragma Inline (Discriminant_Specifications);
12624 pragma Inline (Discriminant_Type);
12625 pragma Inline (Do_Accessibility_Check);
12626 pragma Inline (Do_Discriminant_Check);
12627 pragma Inline (Do_Length_Check);
12628 pragma Inline (Do_Division_Check);
12629 pragma Inline (Do_Overflow_Check);
12630 pragma Inline (Do_Range_Check);
12631 pragma Inline (Do_Storage_Check);
12632 pragma Inline (Do_Tag_Check);
12633 pragma Inline (Elaborate_Present);
12634 pragma Inline (Elaborate_All_Desirable);
12635 pragma Inline (Elaborate_All_Present);
12636 pragma Inline (Elaborate_Desirable);
12637 pragma Inline (Else_Actions);
12638 pragma Inline (Else_Statements);
12639 pragma Inline (Elsif_Parts);
12640 pragma Inline (Enclosing_Variant);
12641 pragma Inline (End_Label);
12642 pragma Inline (End_Span);
12643 pragma Inline (Entity);
12644 pragma Inline (Entity_Or_Associated_Node);
12645 pragma Inline (Entry_Body_Formal_Part);
12646 pragma Inline (Entry_Call_Alternative);
12647 pragma Inline (Entry_Call_Statement);
12648 pragma Inline (Entry_Direct_Name);
12649 pragma Inline (Entry_Index);
12650 pragma Inline (Entry_Index_Specification);
12651 pragma Inline (Etype);
12652 pragma Inline (Exception_Choices);
12653 pragma Inline (Exception_Handlers);
12654 pragma Inline (Exception_Junk);
12655 pragma Inline (Exception_Label);
12656 pragma Inline (Expansion_Delayed);
12657 pragma Inline (Explicit_Actual_Parameter);
12658 pragma Inline (Explicit_Generic_Actual_Parameter);
12659 pragma Inline (Expression);
12660 pragma Inline (Expressions);
12661 pragma Inline (First_Bit);
12662 pragma Inline (First_Inlined_Subprogram);
12663 pragma Inline (First_Name);
12664 pragma Inline (First_Named_Actual);
12665 pragma Inline (First_Real_Statement);
12666 pragma Inline (First_Subtype_Link);
12667 pragma Inline (Float_Truncate);
12668 pragma Inline (Formal_Type_Definition);
12669 pragma Inline (Forwards_OK);
12670 pragma Inline (From_Aspect_Specification);
12671 pragma Inline (From_At_End);
12672 pragma Inline (From_At_Mod);
12673 pragma Inline (From_Conditional_Expression);
12674 pragma Inline (From_Default);
12675 pragma Inline (Generalized_Indexing);
12676 pragma Inline (Generic_Associations);
12677 pragma Inline (Generic_Formal_Declarations);
12678 pragma Inline (Generic_Parent);
12679 pragma Inline (Generic_Parent_Type);
12680 pragma Inline (Handled_Statement_Sequence);
12681 pragma Inline (Handler_List_Entry);
12682 pragma Inline (Has_Created_Identifier);
12683 pragma Inline (Has_Dereference_Action);
12684 pragma Inline (Has_Dynamic_Length_Check);
12685 pragma Inline (Has_Dynamic_Range_Check);
12686 pragma Inline (Has_Init_Expression);
12687 pragma Inline (Has_Local_Raise);
12688 pragma Inline (Has_Self_Reference);
12689 pragma Inline (Has_SP_Choice);
12690 pragma Inline (Has_No_Elaboration_Code);
12691 pragma Inline (Has_Pragma_Suppress_All);
12692 pragma Inline (Has_Private_View);
12693 pragma Inline (Has_Relative_Deadline_Pragma);
12694 pragma Inline (Has_Storage_Size_Pragma);
12695 pragma Inline (Has_Wide_Character);
12696 pragma Inline (Has_Wide_Wide_Character);
12697 pragma Inline (Header_Size_Added);
12698 pragma Inline (Hidden_By_Use_Clause);
12699 pragma Inline (High_Bound);
12700 pragma Inline (Identifier);
12701 pragma Inline (Implicit_With);
12702 pragma Inline (Implicit_With_From_Instantiation);
12703 pragma Inline (Interface_List);
12704 pragma Inline (Interface_Present);
12705 pragma Inline (Includes_Infinities);
12706 pragma Inline (Import_Interface_Present);
12707 pragma Inline (In_Present);
12708 pragma Inline (Incomplete_View);
12709 pragma Inline (Inherited_Discriminant);
12710 pragma Inline (Instance_Spec);
12711 pragma Inline (Intval);
12712 pragma Inline (Iterator_Specification);
12713 pragma Inline (Is_Accessibility_Actual);
12714 pragma Inline (Is_Asynchronous_Call_Block);
12715 pragma Inline (Is_Boolean_Aspect);
12716 pragma Inline (Is_Checked);
12717 pragma Inline (Is_Component_Left_Opnd);
12718 pragma Inline (Is_Component_Right_Opnd);
12719 pragma Inline (Is_Controlling_Actual);
12720 pragma Inline (Is_Delayed_Aspect);
12721 pragma Inline (Is_Disabled);
12722 pragma Inline (Is_Dynamic_Coextension);
12723 pragma Inline (Is_Elsif);
12724 pragma Inline (Is_Entry_Barrier_Function);
12725 pragma Inline (Is_Expanded_Build_In_Place_Call);
12726 pragma Inline (Is_Finalization_Wrapper);
12727 pragma Inline (Is_Folded_In_Parser);
12728 pragma Inline (Is_Generic_Contract_Pragma);
12729 pragma Inline (Is_Ignored);
12730 pragma Inline (Is_In_Discriminant_Check);
12731 pragma Inline (Is_Inherited);
12732 pragma Inline (Is_Machine_Number);
12733 pragma Inline (Is_Null_Loop);
12734 pragma Inline (Is_Overloaded);
12735 pragma Inline (Is_Power_Of_2_For_Shift);
12736 pragma Inline (Is_Prefixed_Call);
12737 pragma Inline (Is_Protected_Subprogram_Body);
12738 pragma Inline (Is_Static_Coextension);
12739 pragma Inline (Is_Static_Expression);
12740 pragma Inline (Is_Subprogram_Descriptor);
12741 pragma Inline (Is_Task_Allocation_Block);
12742 pragma Inline (Is_Task_Master);
12743 pragma Inline (Iteration_Scheme);
12744 pragma Inline (Itype);
12745 pragma Inline (Kill_Range_Check);
12746 pragma Inline (Last_Bit);
12747 pragma Inline (Last_Name);
12748 pragma Inline (Library_Unit);
12749 pragma Inline (Label_Construct);
12750 pragma Inline (Left_Opnd);
12751 pragma Inline (Limited_View_Installed);
12752 pragma Inline (Limited_Present);
12753 pragma Inline (Literals);
12754 pragma Inline (Local_Raise_Not_OK);
12755 pragma Inline (Local_Raise_Statements);
12756 pragma Inline (Loop_Actions);
12757 pragma Inline (Loop_Parameter_Specification);
12758 pragma Inline (Low_Bound);
12759 pragma Inline (Mod_Clause);
12760 pragma Inline (More_Ids);
12761 pragma Inline (Must_Be_Byte_Aligned);
12762 pragma Inline (Must_Not_Freeze);
12763 pragma Inline (Must_Not_Override);
12764 pragma Inline (Must_Override);
12765 pragma Inline (Name);
12766 pragma Inline (Names);
12767 pragma Inline (Next_Entity);
12768 pragma Inline (Next_Exit_Statement);
12769 pragma Inline (Next_Implicit_With);
12770 pragma Inline (Next_Named_Actual);
12771 pragma Inline (Next_Pragma);
12772 pragma Inline (Next_Rep_Item);
12773 pragma Inline (Next_Use_Clause);
12774 pragma Inline (No_Ctrl_Actions);
12775 pragma Inline (No_Elaboration_Check);
12776 pragma Inline (No_Entities_Ref_In_Spec);
12777 pragma Inline (No_Initialization);
12778 pragma Inline (No_Minimize_Eliminate);
12779 pragma Inline (No_Truncation);
12780 pragma Inline (Non_Aliased_Prefix);
12781 pragma Inline (Null_Present);
12782 pragma Inline (Null_Excluding_Subtype);
12783 pragma Inline (Null_Exclusion_Present);
12784 pragma Inline (Null_Exclusion_In_Return_Present);
12785 pragma Inline (Null_Record_Present);
12786 pragma Inline (Object_Definition);
12787 pragma Inline (Of_Present);
12788 pragma Inline (Original_Discriminant);
12789 pragma Inline (Original_Entity);
12790 pragma Inline (Others_Discrete_Choices);
12791 pragma Inline (Out_Present);
12792 pragma Inline (Parameter_Associations);
12793 pragma Inline (Parameter_Specifications);
12794 pragma Inline (Parameter_Type);
12795 pragma Inline (Parent_Spec);
12796 pragma Inline (Position);
12797 pragma Inline (Pragma_Argument_Associations);
12798 pragma Inline (Pragma_Identifier);
12799 pragma Inline (Pragmas_After);
12800 pragma Inline (Pragmas_Before);
12801 pragma Inline (Pre_Post_Conditions);
12802 pragma Inline (Prefix);
12803 pragma Inline (Premature_Use);
12804 pragma Inline (Present_Expr);
12805 pragma Inline (Prev_Ids);
12806 pragma Inline (Print_In_Hex);
12807 pragma Inline (Private_Declarations);
12808 pragma Inline (Private_Present);
12809 pragma Inline (Procedure_To_Call);
12810 pragma Inline (Proper_Body);
12811 pragma Inline (Protected_Definition);
12812 pragma Inline (Protected_Present);
12813 pragma Inline (Raises_Constraint_Error);
12814 pragma Inline (Range_Constraint);
12815 pragma Inline (Range_Expression);
12816 pragma Inline (Real_Range_Specification);
12817 pragma Inline (Realval);
12818 pragma Inline (Reason);
12819 pragma Inline (Record_Extension_Part);
12820 pragma Inline (Redundant_Use);
12821 pragma Inline (Renaming_Exception);
12822 pragma Inline (Result_Definition);
12823 pragma Inline (Return_Object_Declarations);
12824 pragma Inline (Return_Statement_Entity);
12825 pragma Inline (Reverse_Present);
12826 pragma Inline (Right_Opnd);
12827 pragma Inline (Rounded_Result);
12828 pragma Inline (SCIL_Controlling_Tag);
12829 pragma Inline (SCIL_Entity);
12830 pragma Inline (SCIL_Tag_Value);
12831 pragma Inline (SCIL_Target_Prim);
12832 pragma Inline (Scope);
12833 pragma Inline (Select_Alternatives);
12834 pragma Inline (Selector_Name);
12835 pragma Inline (Selector_Names);
12836 pragma Inline (Shift_Count_OK);
12837 pragma Inline (Source_Type);
12838 pragma Inline (Specification);
12839 pragma Inline (Split_PPC);
12840 pragma Inline (Statements);
12841 pragma Inline (Storage_Pool);
12842 pragma Inline (Subpool_Handle_Name);
12843 pragma Inline (Strval);
12844 pragma Inline (Subtype_Indication);
12845 pragma Inline (Subtype_Mark);
12846 pragma Inline (Subtype_Marks);
12847 pragma Inline (Suppress_Assignment_Checks);
12848 pragma Inline (Suppress_Loop_Warnings);
12849 pragma Inline (Synchronized_Present);
12850 pragma Inline (Tagged_Present);
12851 pragma Inline (Target_Type);
12852 pragma Inline (Task_Definition);
12853 pragma Inline (Task_Present);
12854 pragma Inline (Then_Actions);
12855 pragma Inline (Then_Statements);
12856 pragma Inline (Triggering_Alternative);
12857 pragma Inline (Triggering_Statement);
12858 pragma Inline (Treat_Fixed_As_Integer);
12859 pragma Inline (TSS_Elist);
12860 pragma Inline (Type_Definition);
12861 pragma Inline (Uneval_Old_Accept);
12862 pragma Inline (Uneval_Old_Warn);
12863 pragma Inline (Unit);
12864 pragma Inline (Uninitialized_Variable);
12865 pragma Inline (Unknown_Discriminants_Present);
12866 pragma Inline (Unreferenced_In_Spec);
12867 pragma Inline (Variant_Part);
12868 pragma Inline (Variants);
12869 pragma Inline (Visible_Declarations);
12870 pragma Inline (Used_Operations);
12871 pragma Inline (Was_Originally_Stub);
12872 pragma Inline (Withed_Body);
12874 pragma Inline (Set_ABE_Is_Certain);
12875 pragma Inline (Set_Abort_Present);
12876 pragma Inline (Set_Abortable_Part);
12877 pragma Inline (Set_Abstract_Present);
12878 pragma Inline (Set_Accept_Handler_Records);
12879 pragma Inline (Set_Accept_Statement);
12880 pragma Inline (Set_Access_Definition);
12881 pragma Inline (Set_Access_To_Subprogram_Definition);
12882 pragma Inline (Set_Access_Types_To_Process);
12883 pragma Inline (Set_Actions);
12884 pragma Inline (Set_Activation_Chain_Entity);
12885 pragma Inline (Set_Acts_As_Spec);
12886 pragma Inline (Set_Actual_Designated_Subtype);
12887 pragma Inline (Set_Address_Warning_Posted);
12888 pragma Inline (Set_Aggregate_Bounds);
12889 pragma Inline (Set_Aliased_Present);
12890 pragma Inline (Set_All_Others);
12891 pragma Inline (Set_All_Present);
12892 pragma Inline (Set_Alternatives);
12893 pragma Inline (Set_Ancestor_Part);
12894 pragma Inline (Set_Array_Aggregate);
12895 pragma Inline (Set_Aspect_Rep_Item);
12896 pragma Inline (Set_Assignment_OK);
12897 pragma Inline (Set_Associated_Node);
12898 pragma Inline (Set_At_End_Proc);
12899 pragma Inline (Set_Atomic_Sync_Required);
12900 pragma Inline (Set_Attribute_Name);
12901 pragma Inline (Set_Aux_Decls_Node);
12902 pragma Inline (Set_Backwards_OK);
12903 pragma Inline (Set_Bad_Is_Detected);
12904 pragma Inline (Set_Body_Required);
12905 pragma Inline (Set_Body_To_Inline);
12906 pragma Inline (Set_Box_Present);
12907 pragma Inline (Set_By_Ref);
12908 pragma Inline (Set_Char_Literal_Value);
12909 pragma Inline (Set_Chars);
12910 pragma Inline (Set_Check_Address_Alignment);
12911 pragma Inline (Set_Choice_Parameter);
12912 pragma Inline (Set_Choices);
12913 pragma Inline (Set_Class_Present);
12914 pragma Inline (Set_Classifications);
12915 pragma Inline (Set_Cleanup_Actions);
12916 pragma Inline (Set_Comes_From_Extended_Return_Statement);
12917 pragma Inline (Set_Compile_Time_Known_Aggregate);
12918 pragma Inline (Set_Component_Associations);
12919 pragma Inline (Set_Component_Clauses);
12920 pragma Inline (Set_Component_Definition);
12921 pragma Inline (Set_Component_Items);
12922 pragma Inline (Set_Component_List);
12923 pragma Inline (Set_Component_Name);
12924 pragma Inline (Set_Componentwise_Assignment);
12925 pragma Inline (Set_Condition);
12926 pragma Inline (Set_Condition_Actions);
12927 pragma Inline (Set_Config_Pragmas);
12928 pragma Inline (Set_Constant_Present);
12929 pragma Inline (Set_Constraint);
12930 pragma Inline (Set_Constraints);
12931 pragma Inline (Set_Context_Installed);
12932 pragma Inline (Set_Context_Items);
12933 pragma Inline (Set_Context_Pending);
12934 pragma Inline (Set_Contract_Test_Cases);
12935 pragma Inline (Set_Controlling_Argument);
12936 pragma Inline (Set_Conversion_OK);
12937 pragma Inline (Set_Convert_To_Return_False);
12938 pragma Inline (Set_Corresponding_Aspect);
12939 pragma Inline (Set_Corresponding_Body);
12940 pragma Inline (Set_Corresponding_Formal_Spec);
12941 pragma Inline (Set_Corresponding_Generic_Association);
12942 pragma Inline (Set_Corresponding_Integer_Value);
12943 pragma Inline (Set_Corresponding_Spec);
12944 pragma Inline (Set_Corresponding_Spec_Of_Stub);
12945 pragma Inline (Set_Corresponding_Stub);
12946 pragma Inline (Set_Dcheck_Function);
12947 pragma Inline (Set_Declarations);
12948 pragma Inline (Set_Default_Expression);
12949 pragma Inline (Set_Default_Name);
12950 pragma Inline (Set_Default_Storage_Pool);
12951 pragma Inline (Set_Defining_Identifier);
12952 pragma Inline (Set_Defining_Unit_Name);
12953 pragma Inline (Set_Delay_Alternative);
12954 pragma Inline (Set_Delay_Statement);
12955 pragma Inline (Set_Delta_Expression);
12956 pragma Inline (Set_Digits_Expression);
12957 pragma Inline (Set_Discr_Check_Funcs_Built);
12958 pragma Inline (Set_Discrete_Choices);
12959 pragma Inline (Set_Discrete_Range);
12960 pragma Inline (Set_Discrete_Subtype_Definition);
12961 pragma Inline (Set_Discrete_Subtype_Definitions);
12962 pragma Inline (Set_Discriminant_Specifications);
12963 pragma Inline (Set_Discriminant_Type);
12964 pragma Inline (Set_Do_Accessibility_Check);
12965 pragma Inline (Set_Do_Discriminant_Check);
12966 pragma Inline (Set_Do_Division_Check);
12967 pragma Inline (Set_Do_Length_Check);
12968 pragma Inline (Set_Do_Overflow_Check);
12969 pragma Inline (Set_Do_Range_Check);
12970 pragma Inline (Set_Do_Storage_Check);
12971 pragma Inline (Set_Do_Tag_Check);
12972 pragma Inline (Set_Elaborate_All_Desirable);
12973 pragma Inline (Set_Elaborate_All_Present);
12974 pragma Inline (Set_Elaborate_Desirable);
12975 pragma Inline (Set_Elaborate_Present);
12976 pragma Inline (Set_Else_Actions);
12977 pragma Inline (Set_Else_Statements);
12978 pragma Inline (Set_Elsif_Parts);
12979 pragma Inline (Set_Enclosing_Variant);
12980 pragma Inline (Set_End_Label);
12981 pragma Inline (Set_End_Span);
12982 pragma Inline (Set_Entity);
12983 pragma Inline (Set_Entry_Body_Formal_Part);
12984 pragma Inline (Set_Entry_Call_Alternative);
12985 pragma Inline (Set_Entry_Call_Statement);
12986 pragma Inline (Set_Entry_Direct_Name);
12987 pragma Inline (Set_Entry_Index);
12988 pragma Inline (Set_Entry_Index_Specification);
12989 pragma Inline (Set_Etype);
12990 pragma Inline (Set_Exception_Choices);
12991 pragma Inline (Set_Exception_Handlers);
12992 pragma Inline (Set_Exception_Junk);
12993 pragma Inline (Set_Exception_Label);
12994 pragma Inline (Set_Expansion_Delayed);
12995 pragma Inline (Set_Explicit_Actual_Parameter);
12996 pragma Inline (Set_Explicit_Generic_Actual_Parameter);
12997 pragma Inline (Set_Expression);
12998 pragma Inline (Set_Expressions);
12999 pragma Inline (Set_First_Bit);
13000 pragma Inline (Set_First_Inlined_Subprogram);
13001 pragma Inline (Set_First_Name);
13002 pragma Inline (Set_First_Named_Actual);
13003 pragma Inline (Set_First_Real_Statement);
13004 pragma Inline (Set_First_Subtype_Link);
13005 pragma Inline (Set_Float_Truncate);
13006 pragma Inline (Set_Formal_Type_Definition);
13007 pragma Inline (Set_Forwards_OK);
13008 pragma Inline (Set_From_Aspect_Specification);
13009 pragma Inline (Set_From_At_End);
13010 pragma Inline (Set_From_At_Mod);
13011 pragma Inline (Set_From_Conditional_Expression);
13012 pragma Inline (Set_From_Default);
13013 pragma Inline (Set_Generalized_Indexing);
13014 pragma Inline (Set_Generic_Associations);
13015 pragma Inline (Set_Generic_Formal_Declarations);
13016 pragma Inline (Set_Generic_Parent);
13017 pragma Inline (Set_Generic_Parent_Type);
13018 pragma Inline (Set_Handled_Statement_Sequence);
13019 pragma Inline (Set_Handler_List_Entry);
13020 pragma Inline (Set_Has_Created_Identifier);
13021 pragma Inline (Set_Has_Dereference_Action);
13022 pragma Inline (Set_Has_Dynamic_Length_Check);
13023 pragma Inline (Set_Has_Dynamic_Range_Check);
13024 pragma Inline (Set_Has_Init_Expression);
13025 pragma Inline (Set_Has_Local_Raise);
13026 pragma Inline (Set_Has_No_Elaboration_Code);
13027 pragma Inline (Set_Has_Pragma_Suppress_All);
13028 pragma Inline (Set_Has_Private_View);
13029 pragma Inline (Set_Has_Relative_Deadline_Pragma);
13030 pragma Inline (Set_Has_Self_Reference);
13031 pragma Inline (Set_Has_SP_Choice);
13032 pragma Inline (Set_Has_Storage_Size_Pragma);
13033 pragma Inline (Set_Has_Wide_Character);
13034 pragma Inline (Set_Has_Wide_Wide_Character);
13035 pragma Inline (Set_Header_Size_Added);
13036 pragma Inline (Set_Hidden_By_Use_Clause);
13037 pragma Inline (Set_High_Bound);
13038 pragma Inline (Set_Identifier);
13039 pragma Inline (Set_Implicit_With);
13040 pragma Inline (Set_Import_Interface_Present);
13041 pragma Inline (Set_In_Present);
13042 pragma Inline (Set_Includes_Infinities);
13043 pragma Inline (Set_Incomplete_View);
13044 pragma Inline (Set_Inherited_Discriminant);
13045 pragma Inline (Set_Instance_Spec);
13046 pragma Inline (Set_Interface_List);
13047 pragma Inline (Set_Interface_Present);
13048 pragma Inline (Set_Intval);
13049 pragma Inline (Set_Is_Accessibility_Actual);
13050 pragma Inline (Set_Is_Asynchronous_Call_Block);
13051 pragma Inline (Set_Is_Boolean_Aspect);
13052 pragma Inline (Set_Is_Checked);
13053 pragma Inline (Set_Is_Component_Left_Opnd);
13054 pragma Inline (Set_Is_Component_Right_Opnd);
13055 pragma Inline (Set_Is_Controlling_Actual);
13056 pragma Inline (Set_Is_Delayed_Aspect);
13057 pragma Inline (Set_Is_Disabled);
13058 pragma Inline (Set_Is_Dynamic_Coextension);
13059 pragma Inline (Set_Is_Elsif);
13060 pragma Inline (Set_Is_Entry_Barrier_Function);
13061 pragma Inline (Set_Is_Expanded_Build_In_Place_Call);
13062 pragma Inline (Set_Is_Finalization_Wrapper);
13063 pragma Inline (Set_Is_Folded_In_Parser);
13064 pragma Inline (Set_Is_Generic_Contract_Pragma);
13065 pragma Inline (Set_Is_Ignored);
13066 pragma Inline (Set_Is_In_Discriminant_Check);
13067 pragma Inline (Set_Is_Inherited);
13068 pragma Inline (Set_Is_Machine_Number);
13069 pragma Inline (Set_Is_Null_Loop);
13070 pragma Inline (Set_Is_Overloaded);
13071 pragma Inline (Set_Is_Power_Of_2_For_Shift);
13072 pragma Inline (Set_Is_Prefixed_Call);
13073 pragma Inline (Set_Is_Protected_Subprogram_Body);
13074 pragma Inline (Set_Is_Static_Coextension);
13075 pragma Inline (Set_Is_Static_Expression);
13076 pragma Inline (Set_Is_Subprogram_Descriptor);
13077 pragma Inline (Set_Is_Task_Allocation_Block);
13078 pragma Inline (Set_Is_Task_Master);
13079 pragma Inline (Set_Iteration_Scheme);
13080 pragma Inline (Set_Iterator_Specification);
13081 pragma Inline (Set_Itype);
13082 pragma Inline (Set_Kill_Range_Check);
13083 pragma Inline (Set_Label_Construct);
13084 pragma Inline (Set_Last_Bit);
13085 pragma Inline (Set_Last_Name);
13086 pragma Inline (Set_Left_Opnd);
13087 pragma Inline (Set_Library_Unit);
13088 pragma Inline (Set_Limited_Present);
13089 pragma Inline (Set_Limited_View_Installed);
13090 pragma Inline (Set_Literals);
13091 pragma Inline (Set_Local_Raise_Not_OK);
13092 pragma Inline (Set_Local_Raise_Statements);
13093 pragma Inline (Set_Loop_Actions);
13094 pragma Inline (Set_Loop_Parameter_Specification);
13095 pragma Inline (Set_Low_Bound);
13096 pragma Inline (Set_Mod_Clause);
13097 pragma Inline (Set_More_Ids);
13098 pragma Inline (Set_Must_Be_Byte_Aligned);
13099 pragma Inline (Set_Must_Not_Freeze);
13100 pragma Inline (Set_Must_Not_Override);
13101 pragma Inline (Set_Must_Override);
13102 pragma Inline (Set_Name);
13103 pragma Inline (Set_Names);
13104 pragma Inline (Set_Next_Entity);
13105 pragma Inline (Set_Next_Exit_Statement);
13106 pragma Inline (Set_Next_Implicit_With);
13107 pragma Inline (Set_Next_Named_Actual);
13108 pragma Inline (Set_Next_Pragma);
13109 pragma Inline (Set_Next_Rep_Item);
13110 pragma Inline (Set_Next_Use_Clause);
13111 pragma Inline (Set_No_Ctrl_Actions);
13112 pragma Inline (Set_No_Elaboration_Check);
13113 pragma Inline (Set_No_Entities_Ref_In_Spec);
13114 pragma Inline (Set_No_Initialization);
13115 pragma Inline (Set_No_Minimize_Eliminate);
13116 pragma Inline (Set_No_Truncation);
13117 pragma Inline (Set_Non_Aliased_Prefix);
13118 pragma Inline (Set_Null_Excluding_Subtype);
13119 pragma Inline (Set_Null_Exclusion_Present);
13120 pragma Inline (Set_Null_Exclusion_In_Return_Present);
13121 pragma Inline (Set_Null_Present);
13122 pragma Inline (Set_Null_Record_Present);
13123 pragma Inline (Set_Object_Definition);
13124 pragma Inline (Set_Of_Present);
13125 pragma Inline (Set_Original_Discriminant);
13126 pragma Inline (Set_Original_Entity);
13127 pragma Inline (Set_Others_Discrete_Choices);
13128 pragma Inline (Set_Out_Present);
13129 pragma Inline (Set_Parameter_Associations);
13130 pragma Inline (Set_Parameter_Specifications);
13131 pragma Inline (Set_Parameter_Type);
13132 pragma Inline (Set_Parent_Spec);
13133 pragma Inline (Set_Position);
13134 pragma Inline (Set_Pragma_Argument_Associations);
13135 pragma Inline (Set_Pragma_Identifier);
13136 pragma Inline (Set_Pragmas_After);
13137 pragma Inline (Set_Pragmas_Before);
13138 pragma Inline (Set_Pre_Post_Conditions);
13139 pragma Inline (Set_Prefix);
13140 pragma Inline (Set_Premature_Use);
13141 pragma Inline (Set_Present_Expr);
13142 pragma Inline (Set_Prev_Ids);
13143 pragma Inline (Set_Print_In_Hex);
13144 pragma Inline (Set_Private_Declarations);
13145 pragma Inline (Set_Private_Present);
13146 pragma Inline (Set_Procedure_To_Call);
13147 pragma Inline (Set_Proper_Body);
13148 pragma Inline (Set_Protected_Definition);
13149 pragma Inline (Set_Protected_Present);
13150 pragma Inline (Set_Raises_Constraint_Error);
13151 pragma Inline (Set_Range_Constraint);
13152 pragma Inline (Set_Range_Expression);
13153 pragma Inline (Set_Real_Range_Specification);
13154 pragma Inline (Set_Realval);
13155 pragma Inline (Set_Reason);
13156 pragma Inline (Set_Record_Extension_Part);
13157 pragma Inline (Set_Redundant_Use);
13158 pragma Inline (Set_Renaming_Exception);
13159 pragma Inline (Set_Result_Definition);
13160 pragma Inline (Set_Return_Object_Declarations);
13161 pragma Inline (Set_Reverse_Present);
13162 pragma Inline (Set_Right_Opnd);
13163 pragma Inline (Set_Rounded_Result);
13164 pragma Inline (Set_SCIL_Controlling_Tag);
13165 pragma Inline (Set_SCIL_Entity);
13166 pragma Inline (Set_SCIL_Tag_Value);
13167 pragma Inline (Set_SCIL_Target_Prim);
13168 pragma Inline (Set_Scope);
13169 pragma Inline (Set_Select_Alternatives);
13170 pragma Inline (Set_Selector_Name);
13171 pragma Inline (Set_Selector_Names);
13172 pragma Inline (Set_Shift_Count_OK);
13173 pragma Inline (Set_Source_Type);
13174 pragma Inline (Set_Split_PPC);
13175 pragma Inline (Set_Statements);
13176 pragma Inline (Set_Storage_Pool);
13177 pragma Inline (Set_Strval);
13178 pragma Inline (Set_Subpool_Handle_Name);
13179 pragma Inline (Set_Subtype_Indication);
13180 pragma Inline (Set_Subtype_Mark);
13181 pragma Inline (Set_Subtype_Marks);
13182 pragma Inline (Set_Suppress_Assignment_Checks);
13183 pragma Inline (Set_Suppress_Loop_Warnings);
13184 pragma Inline (Set_Synchronized_Present);
13185 pragma Inline (Set_TSS_Elist);
13186 pragma Inline (Set_Tagged_Present);
13187 pragma Inline (Set_Target_Type);
13188 pragma Inline (Set_Task_Definition);
13189 pragma Inline (Set_Task_Present);
13190 pragma Inline (Set_Then_Actions);
13191 pragma Inline (Set_Then_Statements);
13192 pragma Inline (Set_Treat_Fixed_As_Integer);
13193 pragma Inline (Set_Triggering_Alternative);
13194 pragma Inline (Set_Triggering_Statement);
13195 pragma Inline (Set_Type_Definition);
13196 pragma Inline (Set_Uneval_Old_Accept);
13197 pragma Inline (Set_Uneval_Old_Warn);
13198 pragma Inline (Set_Unit);
13199 pragma Inline (Set_Uninitialized_Variable);
13200 pragma Inline (Set_Unknown_Discriminants_Present);
13201 pragma Inline (Set_Unreferenced_In_Spec);
13202 pragma Inline (Set_Used_Operations);
13203 pragma Inline (Set_Variant_Part);
13204 pragma Inline (Set_Variants);
13205 pragma Inline (Set_Visible_Declarations);
13206 pragma Inline (Set_Was_Originally_Stub);
13207 pragma Inline (Set_Withed_Body);
13209 end Sinfo;