[multiple changes]
[gcc.git] / gcc / ada / sinfo.adb
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT COMPILER COMPONENTS --
4 -- --
5 -- S I N F O --
6 -- --
7 -- B o d y --
8 -- --
9 -- Copyright (C) 1992-2011, Free Software Foundation, Inc. --
10 -- --
11 -- GNAT is free software; you can redistribute it and/or modify it under --
12 -- terms of the GNU General Public License as published by the Free Soft- --
13 -- ware Foundation; either version 3, or (at your option) any later ver- --
14 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE. --
17 -- --
18 -- As a special exception under Section 7 of GPL version 3, you are granted --
19 -- additional permissions described in the GCC Runtime Library Exception, --
20 -- version 3.1, as published by the Free Software Foundation. --
21 -- --
22 -- You should have received a copy of the GNU General Public License and --
23 -- a copy of the GCC Runtime Library Exception along with this program; --
24 -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
25 -- <http://www.gnu.org/licenses/>. --
26 -- --
27 -- GNAT was originally developed by the GNAT team at New York University. --
28 -- Extensive contributions were provided by Ada Core Technologies Inc. --
29 -- --
30 ------------------------------------------------------------------------------
31
32 pragma Style_Checks (All_Checks);
33 -- No subprogram ordering check, due to logical grouping
34
35 with Atree; use Atree;
36
37 package body Sinfo is
38
39 use Atree.Unchecked_Access;
40 -- This package is one of the few packages which is allowed to make direct
41 -- references to tree nodes (since it is in the business of providing a
42 -- higher level of tree access which other clients are expected to use and
43 -- which implements checks).
44
45 use Atree_Private_Part;
46 -- The only reason that we ask for direct access to the private part of
47 -- the tree package is so that we can directly reference the Nkind field
48 -- of nodes table entries. We do this since it helps the efficiency of
49 -- the Sinfo debugging checks considerably (note that when we are checking
50 -- Nkind values, we don't need to check for a valid node reference, because
51 -- we will check that anyway when we reference the field).
52
53 NT : Nodes.Table_Ptr renames Nodes.Table;
54 -- A short hand abbreviation, useful for the debugging checks
55
56 ----------------------------
57 -- Field Access Functions --
58 ----------------------------
59
60 function ABE_Is_Certain
61 (N : Node_Id) return Boolean is
62 begin
63 pragma Assert (False
64 or else NT (N).Nkind = N_Formal_Package_Declaration
65 or else NT (N).Nkind = N_Function_Call
66 or else NT (N).Nkind = N_Function_Instantiation
67 or else NT (N).Nkind = N_Package_Instantiation
68 or else NT (N).Nkind = N_Procedure_Call_Statement
69 or else NT (N).Nkind = N_Procedure_Instantiation);
70 return Flag18 (N);
71 end ABE_Is_Certain;
72
73 function Abort_Present
74 (N : Node_Id) return Boolean is
75 begin
76 pragma Assert (False
77 or else NT (N).Nkind = N_Requeue_Statement);
78 return Flag15 (N);
79 end Abort_Present;
80
81 function Abortable_Part
82 (N : Node_Id) return Node_Id is
83 begin
84 pragma Assert (False
85 or else NT (N).Nkind = N_Asynchronous_Select);
86 return Node2 (N);
87 end Abortable_Part;
88
89 function Abstract_Present
90 (N : Node_Id) return Boolean is
91 begin
92 pragma Assert (False
93 or else NT (N).Nkind = N_Derived_Type_Definition
94 or else NT (N).Nkind = N_Formal_Derived_Type_Definition
95 or else NT (N).Nkind = N_Formal_Private_Type_Definition
96 or else NT (N).Nkind = N_Private_Extension_Declaration
97 or else NT (N).Nkind = N_Private_Type_Declaration
98 or else NT (N).Nkind = N_Record_Definition);
99 return Flag4 (N);
100 end Abstract_Present;
101
102 function Accept_Handler_Records
103 (N : Node_Id) return List_Id is
104 begin
105 pragma Assert (False
106 or else NT (N).Nkind = N_Accept_Alternative);
107 return List5 (N);
108 end Accept_Handler_Records;
109
110 function Accept_Statement
111 (N : Node_Id) return Node_Id is
112 begin
113 pragma Assert (False
114 or else NT (N).Nkind = N_Accept_Alternative);
115 return Node2 (N);
116 end Accept_Statement;
117
118 function Access_Definition
119 (N : Node_Id) return Node_Id is
120 begin
121 pragma Assert (False
122 or else NT (N).Nkind = N_Component_Definition
123 or else NT (N).Nkind = N_Formal_Object_Declaration
124 or else NT (N).Nkind = N_Object_Renaming_Declaration);
125 return Node3 (N);
126 end Access_Definition;
127
128 function Access_To_Subprogram_Definition
129 (N : Node_Id) return Node_Id is
130 begin
131 pragma Assert (False
132 or else NT (N).Nkind = N_Access_Definition);
133 return Node3 (N);
134 end Access_To_Subprogram_Definition;
135
136 function Access_Types_To_Process
137 (N : Node_Id) return Elist_Id is
138 begin
139 pragma Assert (False
140 or else NT (N).Nkind = N_Freeze_Entity);
141 return Elist2 (N);
142 end Access_Types_To_Process;
143
144 function Actions
145 (N : Node_Id) return List_Id is
146 begin
147 pragma Assert (False
148 or else NT (N).Nkind = N_And_Then
149 or else NT (N).Nkind = N_Case_Expression_Alternative
150 or else NT (N).Nkind = N_Compilation_Unit_Aux
151 or else NT (N).Nkind = N_Expression_With_Actions
152 or else NT (N).Nkind = N_Freeze_Entity
153 or else NT (N).Nkind = N_Or_Else);
154 return List1 (N);
155 end Actions;
156
157 function Activation_Chain_Entity
158 (N : Node_Id) return Node_Id is
159 begin
160 pragma Assert (False
161 or else NT (N).Nkind = N_Block_Statement
162 or else NT (N).Nkind = N_Entry_Body
163 or else NT (N).Nkind = N_Generic_Package_Declaration
164 or else NT (N).Nkind = N_Package_Declaration
165 or else NT (N).Nkind = N_Subprogram_Body
166 or else NT (N).Nkind = N_Task_Body);
167 return Node3 (N);
168 end Activation_Chain_Entity;
169
170 function Acts_As_Spec
171 (N : Node_Id) return Boolean is
172 begin
173 pragma Assert (False
174 or else NT (N).Nkind = N_Compilation_Unit
175 or else NT (N).Nkind = N_Subprogram_Body);
176 return Flag4 (N);
177 end Acts_As_Spec;
178
179 function Actual_Designated_Subtype
180 (N : Node_Id) return Node_Id is
181 begin
182 pragma Assert (False
183 or else NT (N).Nkind = N_Explicit_Dereference
184 or else NT (N).Nkind = N_Free_Statement);
185 return Node4 (N);
186 end Actual_Designated_Subtype;
187
188 function Address_Warning_Posted
189 (N : Node_Id) return Boolean is
190 begin
191 pragma Assert (False
192 or else NT (N).Nkind = N_Attribute_Definition_Clause);
193 return Flag18 (N);
194 end Address_Warning_Posted;
195
196 function Aggregate_Bounds
197 (N : Node_Id) return Node_Id is
198 begin
199 pragma Assert (False
200 or else NT (N).Nkind = N_Aggregate);
201 return Node3 (N);
202 end Aggregate_Bounds;
203
204 function Aliased_Present
205 (N : Node_Id) return Boolean is
206 begin
207 pragma Assert (False
208 or else NT (N).Nkind = N_Component_Definition
209 or else NT (N).Nkind = N_Object_Declaration
210 or else NT (N).Nkind = N_Parameter_Specification);
211 return Flag4 (N);
212 end Aliased_Present;
213
214 function All_Others
215 (N : Node_Id) return Boolean is
216 begin
217 pragma Assert (False
218 or else NT (N).Nkind = N_Others_Choice);
219 return Flag11 (N);
220 end All_Others;
221
222 function All_Present
223 (N : Node_Id) return Boolean is
224 begin
225 pragma Assert (False
226 or else NT (N).Nkind = N_Access_Definition
227 or else NT (N).Nkind = N_Access_To_Object_Definition
228 or else NT (N).Nkind = N_Quantified_Expression
229 or else NT (N).Nkind = N_Use_Type_Clause);
230 return Flag15 (N);
231 end All_Present;
232
233 function Alternatives
234 (N : Node_Id) return List_Id is
235 begin
236 pragma Assert (False
237 or else NT (N).Nkind = N_Case_Expression
238 or else NT (N).Nkind = N_Case_Statement
239 or else NT (N).Nkind = N_In
240 or else NT (N).Nkind = N_Not_In);
241 return List4 (N);
242 end Alternatives;
243
244 function Ancestor_Part
245 (N : Node_Id) return Node_Id is
246 begin
247 pragma Assert (False
248 or else NT (N).Nkind = N_Extension_Aggregate);
249 return Node3 (N);
250 end Ancestor_Part;
251
252 function Atomic_Sync_Required
253 (N : Node_Id) return Boolean is
254 begin
255 pragma Assert (False
256 or else NT (N).Nkind = N_Expanded_Name
257 or else NT (N).Nkind = N_Explicit_Dereference
258 or else NT (N).Nkind = N_Identifier
259 or else NT (N).Nkind = N_Indexed_Component
260 or else NT (N).Nkind = N_Selected_Component);
261 return Flag14 (N);
262 end Atomic_Sync_Required;
263
264 function Array_Aggregate
265 (N : Node_Id) return Node_Id is
266 begin
267 pragma Assert (False
268 or else NT (N).Nkind = N_Enumeration_Representation_Clause);
269 return Node3 (N);
270 end Array_Aggregate;
271
272 function Aspect_Rep_Item
273 (N : Node_Id) return Node_Id is
274 begin
275 pragma Assert (False
276 or else NT (N).Nkind = N_Aspect_Specification);
277 return Node2 (N);
278 end Aspect_Rep_Item;
279
280 function Assignment_OK
281 (N : Node_Id) return Boolean is
282 begin
283 pragma Assert (False
284 or else NT (N).Nkind = N_Object_Declaration
285 or else NT (N).Nkind in N_Subexpr);
286 return Flag15 (N);
287 end Assignment_OK;
288
289 function Associated_Node
290 (N : Node_Id) return Node_Id is
291 begin
292 pragma Assert (False
293 or else NT (N).Nkind in N_Has_Entity
294 or else NT (N).Nkind = N_Aggregate
295 or else NT (N).Nkind = N_Extension_Aggregate
296 or else NT (N).Nkind = N_Selected_Component);
297 return Node4 (N);
298 end Associated_Node;
299
300 function At_End_Proc
301 (N : Node_Id) return Node_Id is
302 begin
303 pragma Assert (False
304 or else NT (N).Nkind = N_Handled_Sequence_Of_Statements);
305 return Node1 (N);
306 end At_End_Proc;
307
308 function Attribute_Name
309 (N : Node_Id) return Name_Id is
310 begin
311 pragma Assert (False
312 or else NT (N).Nkind = N_Attribute_Reference);
313 return Name2 (N);
314 end Attribute_Name;
315
316 function Aux_Decls_Node
317 (N : Node_Id) return Node_Id is
318 begin
319 pragma Assert (False
320 or else NT (N).Nkind = N_Compilation_Unit);
321 return Node5 (N);
322 end Aux_Decls_Node;
323
324 function Backwards_OK
325 (N : Node_Id) return Boolean is
326 begin
327 pragma Assert (False
328 or else NT (N).Nkind = N_Assignment_Statement);
329 return Flag6 (N);
330 end Backwards_OK;
331
332 function Bad_Is_Detected
333 (N : Node_Id) return Boolean is
334 begin
335 pragma Assert (False
336 or else NT (N).Nkind = N_Subprogram_Body);
337 return Flag15 (N);
338 end Bad_Is_Detected;
339
340 function Body_Required
341 (N : Node_Id) return Boolean is
342 begin
343 pragma Assert (False
344 or else NT (N).Nkind = N_Compilation_Unit);
345 return Flag13 (N);
346 end Body_Required;
347
348 function Body_To_Inline
349 (N : Node_Id) return Node_Id is
350 begin
351 pragma Assert (False
352 or else NT (N).Nkind = N_Subprogram_Declaration);
353 return Node3 (N);
354 end Body_To_Inline;
355
356 function Box_Present
357 (N : Node_Id) return Boolean is
358 begin
359 pragma Assert (False
360 or else NT (N).Nkind = N_Component_Association
361 or else NT (N).Nkind = N_Formal_Abstract_Subprogram_Declaration
362 or else NT (N).Nkind = N_Formal_Concrete_Subprogram_Declaration
363 or else NT (N).Nkind = N_Formal_Package_Declaration
364 or else NT (N).Nkind = N_Generic_Association);
365 return Flag15 (N);
366 end Box_Present;
367
368 function By_Ref
369 (N : Node_Id) return Boolean is
370 begin
371 pragma Assert (False
372 or else NT (N).Nkind = N_Extended_Return_Statement
373 or else NT (N).Nkind = N_Return_Statement);
374 return Flag5 (N);
375 end By_Ref;
376
377 function Char_Literal_Value
378 (N : Node_Id) return Uint is
379 begin
380 pragma Assert (False
381 or else NT (N).Nkind = N_Character_Literal);
382 return Uint2 (N);
383 end Char_Literal_Value;
384
385 function Chars
386 (N : Node_Id) return Name_Id is
387 begin
388 pragma Assert (False
389 or else NT (N).Nkind in N_Has_Chars);
390 return Name1 (N);
391 end Chars;
392
393 function Check_Address_Alignment
394 (N : Node_Id) return Boolean is
395 begin
396 pragma Assert (False
397 or else NT (N).Nkind = N_Attribute_Definition_Clause);
398 return Flag11 (N);
399 end Check_Address_Alignment;
400
401 function Choice_Parameter
402 (N : Node_Id) return Node_Id is
403 begin
404 pragma Assert (False
405 or else NT (N).Nkind = N_Exception_Handler);
406 return Node2 (N);
407 end Choice_Parameter;
408
409 function Choices
410 (N : Node_Id) return List_Id is
411 begin
412 pragma Assert (False
413 or else NT (N).Nkind = N_Component_Association);
414 return List1 (N);
415 end Choices;
416
417 function Class_Present
418 (N : Node_Id) return Boolean is
419 begin
420 pragma Assert (False
421 or else NT (N).Nkind = N_Aspect_Specification
422 or else NT (N).Nkind = N_Pragma);
423 return Flag6 (N);
424 end Class_Present;
425
426 function Comes_From_Extended_Return_Statement
427 (N : Node_Id) return Boolean is
428 begin
429 pragma Assert (False
430 or else NT (N).Nkind = N_Return_Statement);
431 return Flag18 (N);
432 end Comes_From_Extended_Return_Statement;
433
434 function Compile_Time_Known_Aggregate
435 (N : Node_Id) return Boolean is
436 begin
437 pragma Assert (False
438 or else NT (N).Nkind = N_Aggregate);
439 return Flag18 (N);
440 end Compile_Time_Known_Aggregate;
441
442 function Component_Associations
443 (N : Node_Id) return List_Id is
444 begin
445 pragma Assert (False
446 or else NT (N).Nkind = N_Aggregate
447 or else NT (N).Nkind = N_Extension_Aggregate);
448 return List2 (N);
449 end Component_Associations;
450
451 function Component_Clauses
452 (N : Node_Id) return List_Id is
453 begin
454 pragma Assert (False
455 or else NT (N).Nkind = N_Record_Representation_Clause);
456 return List3 (N);
457 end Component_Clauses;
458
459 function Component_Definition
460 (N : Node_Id) return Node_Id is
461 begin
462 pragma Assert (False
463 or else NT (N).Nkind = N_Component_Declaration
464 or else NT (N).Nkind = N_Constrained_Array_Definition
465 or else NT (N).Nkind = N_Unconstrained_Array_Definition);
466 return Node4 (N);
467 end Component_Definition;
468
469 function Component_Items
470 (N : Node_Id) return List_Id is
471 begin
472 pragma Assert (False
473 or else NT (N).Nkind = N_Component_List);
474 return List3 (N);
475 end Component_Items;
476
477 function Component_List
478 (N : Node_Id) return Node_Id is
479 begin
480 pragma Assert (False
481 or else NT (N).Nkind = N_Record_Definition
482 or else NT (N).Nkind = N_Variant);
483 return Node1 (N);
484 end Component_List;
485
486 function Component_Name
487 (N : Node_Id) return Node_Id is
488 begin
489 pragma Assert (False
490 or else NT (N).Nkind = N_Component_Clause);
491 return Node1 (N);
492 end Component_Name;
493
494 function Componentwise_Assignment
495 (N : Node_Id) return Boolean is
496 begin
497 pragma Assert (False
498 or else NT (N).Nkind = N_Assignment_Statement);
499 return Flag14 (N);
500 end Componentwise_Assignment;
501
502 function Condition
503 (N : Node_Id) return Node_Id is
504 begin
505 pragma Assert (False
506 or else NT (N).Nkind = N_Accept_Alternative
507 or else NT (N).Nkind = N_Delay_Alternative
508 or else NT (N).Nkind = N_Elsif_Part
509 or else NT (N).Nkind = N_Entry_Body_Formal_Part
510 or else NT (N).Nkind = N_Exit_Statement
511 or else NT (N).Nkind = N_If_Statement
512 or else NT (N).Nkind = N_Iteration_Scheme
513 or else NT (N).Nkind = N_Quantified_Expression
514 or else NT (N).Nkind = N_Raise_Constraint_Error
515 or else NT (N).Nkind = N_Raise_Program_Error
516 or else NT (N).Nkind = N_Raise_Storage_Error
517 or else NT (N).Nkind = N_Terminate_Alternative);
518 return Node1 (N);
519 end Condition;
520
521 function Condition_Actions
522 (N : Node_Id) return List_Id is
523 begin
524 pragma Assert (False
525 or else NT (N).Nkind = N_Elsif_Part
526 or else NT (N).Nkind = N_Iteration_Scheme);
527 return List3 (N);
528 end Condition_Actions;
529
530 function Config_Pragmas
531 (N : Node_Id) return List_Id is
532 begin
533 pragma Assert (False
534 or else NT (N).Nkind = N_Compilation_Unit_Aux);
535 return List4 (N);
536 end Config_Pragmas;
537
538 function Constant_Present
539 (N : Node_Id) return Boolean is
540 begin
541 pragma Assert (False
542 or else NT (N).Nkind = N_Access_Definition
543 or else NT (N).Nkind = N_Access_To_Object_Definition
544 or else NT (N).Nkind = N_Object_Declaration);
545 return Flag17 (N);
546 end Constant_Present;
547
548 function Constraint
549 (N : Node_Id) return Node_Id is
550 begin
551 pragma Assert (False
552 or else NT (N).Nkind = N_Subtype_Indication);
553 return Node3 (N);
554 end Constraint;
555
556 function Constraints
557 (N : Node_Id) return List_Id is
558 begin
559 pragma Assert (False
560 or else NT (N).Nkind = N_Index_Or_Discriminant_Constraint);
561 return List1 (N);
562 end Constraints;
563
564 function Context_Installed
565 (N : Node_Id) return Boolean is
566 begin
567 pragma Assert (False
568 or else NT (N).Nkind = N_With_Clause);
569 return Flag13 (N);
570 end Context_Installed;
571
572 function Context_Items
573 (N : Node_Id) return List_Id is
574 begin
575 pragma Assert (False
576 or else NT (N).Nkind = N_Compilation_Unit);
577 return List1 (N);
578 end Context_Items;
579
580 function Context_Pending
581 (N : Node_Id) return Boolean is
582 begin
583 pragma Assert (False
584 or else NT (N).Nkind = N_Compilation_Unit);
585 return Flag16 (N);
586 end Context_Pending;
587
588 function Controlling_Argument
589 (N : Node_Id) return Node_Id is
590 begin
591 pragma Assert (False
592 or else NT (N).Nkind = N_Function_Call
593 or else NT (N).Nkind = N_Procedure_Call_Statement);
594 return Node1 (N);
595 end Controlling_Argument;
596
597 function Conversion_OK
598 (N : Node_Id) return Boolean is
599 begin
600 pragma Assert (False
601 or else NT (N).Nkind = N_Type_Conversion);
602 return Flag14 (N);
603 end Conversion_OK;
604
605 function Corresponding_Aspect
606 (N : Node_Id) return Node_Id is
607 begin
608 pragma Assert (False
609 or else NT (N).Nkind = N_Pragma);
610 return Node3 (N);
611 end Corresponding_Aspect;
612
613 function Corresponding_Body
614 (N : Node_Id) return Node_Id is
615 begin
616 pragma Assert (False
617 or else NT (N).Nkind = N_Entry_Declaration
618 or else NT (N).Nkind = N_Generic_Package_Declaration
619 or else NT (N).Nkind = N_Generic_Subprogram_Declaration
620 or else NT (N).Nkind = N_Package_Body_Stub
621 or else NT (N).Nkind = N_Package_Declaration
622 or else NT (N).Nkind = N_Protected_Body_Stub
623 or else NT (N).Nkind = N_Protected_Type_Declaration
624 or else NT (N).Nkind = N_Subprogram_Body_Stub
625 or else NT (N).Nkind = N_Subprogram_Declaration
626 or else NT (N).Nkind = N_Task_Body_Stub
627 or else NT (N).Nkind = N_Task_Type_Declaration);
628 return Node5 (N);
629 end Corresponding_Body;
630
631 function Corresponding_Formal_Spec
632 (N : Node_Id) return Node_Id is
633 begin
634 pragma Assert (False
635 or else NT (N).Nkind = N_Subprogram_Renaming_Declaration);
636 return Node3 (N);
637 end Corresponding_Formal_Spec;
638
639 function Corresponding_Generic_Association
640 (N : Node_Id) return Node_Id is
641 begin
642 pragma Assert (False
643 or else NT (N).Nkind = N_Object_Declaration
644 or else NT (N).Nkind = N_Object_Renaming_Declaration);
645 return Node5 (N);
646 end Corresponding_Generic_Association;
647
648 function Corresponding_Integer_Value
649 (N : Node_Id) return Uint is
650 begin
651 pragma Assert (False
652 or else NT (N).Nkind = N_Real_Literal);
653 return Uint4 (N);
654 end Corresponding_Integer_Value;
655
656 function Corresponding_Spec
657 (N : Node_Id) return Node_Id is
658 begin
659 pragma Assert (False
660 or else NT (N).Nkind = N_Expression_Function
661 or else NT (N).Nkind = N_Package_Body
662 or else NT (N).Nkind = N_Protected_Body
663 or else NT (N).Nkind = N_Subprogram_Body
664 or else NT (N).Nkind = N_Subprogram_Renaming_Declaration
665 or else NT (N).Nkind = N_Task_Body
666 or else NT (N).Nkind = N_With_Clause);
667 return Node5 (N);
668 end Corresponding_Spec;
669
670 function Corresponding_Stub
671 (N : Node_Id) return Node_Id is
672 begin
673 pragma Assert (False
674 or else NT (N).Nkind = N_Subunit);
675 return Node3 (N);
676 end Corresponding_Stub;
677
678 function Dcheck_Function
679 (N : Node_Id) return Entity_Id is
680 begin
681 pragma Assert (False
682 or else NT (N).Nkind = N_Variant);
683 return Node5 (N);
684 end Dcheck_Function;
685
686 function Declarations
687 (N : Node_Id) return List_Id is
688 begin
689 pragma Assert (False
690 or else NT (N).Nkind = N_Accept_Statement
691 or else NT (N).Nkind = N_Block_Statement
692 or else NT (N).Nkind = N_Compilation_Unit_Aux
693 or else NT (N).Nkind = N_Entry_Body
694 or else NT (N).Nkind = N_Package_Body
695 or else NT (N).Nkind = N_Protected_Body
696 or else NT (N).Nkind = N_Subprogram_Body
697 or else NT (N).Nkind = N_Task_Body);
698 return List2 (N);
699 end Declarations;
700
701 function Default_Expression
702 (N : Node_Id) return Node_Id is
703 begin
704 pragma Assert (False
705 or else NT (N).Nkind = N_Formal_Object_Declaration
706 or else NT (N).Nkind = N_Parameter_Specification);
707 return Node5 (N);
708 end Default_Expression;
709
710 function Default_Storage_Pool
711 (N : Node_Id) return Node_Id is
712 begin
713 pragma Assert (False
714 or else NT (N).Nkind = N_Compilation_Unit_Aux);
715 return Node3 (N);
716 end Default_Storage_Pool;
717
718 function Default_Name
719 (N : Node_Id) return Node_Id is
720 begin
721 pragma Assert (False
722 or else NT (N).Nkind = N_Formal_Abstract_Subprogram_Declaration
723 or else NT (N).Nkind = N_Formal_Concrete_Subprogram_Declaration);
724 return Node2 (N);
725 end Default_Name;
726
727 function Defining_Identifier
728 (N : Node_Id) return Entity_Id is
729 begin
730 pragma Assert (False
731 or else NT (N).Nkind = N_Component_Declaration
732 or else NT (N).Nkind = N_Defining_Program_Unit_Name
733 or else NT (N).Nkind = N_Discriminant_Specification
734 or else NT (N).Nkind = N_Entry_Body
735 or else NT (N).Nkind = N_Entry_Declaration
736 or else NT (N).Nkind = N_Entry_Index_Specification
737 or else NT (N).Nkind = N_Exception_Declaration
738 or else NT (N).Nkind = N_Exception_Renaming_Declaration
739 or else NT (N).Nkind = N_Formal_Object_Declaration
740 or else NT (N).Nkind = N_Formal_Package_Declaration
741 or else NT (N).Nkind = N_Formal_Type_Declaration
742 or else NT (N).Nkind = N_Full_Type_Declaration
743 or else NT (N).Nkind = N_Implicit_Label_Declaration
744 or else NT (N).Nkind = N_Incomplete_Type_Declaration
745 or else NT (N).Nkind = N_Iterator_Specification
746 or else NT (N).Nkind = N_Loop_Parameter_Specification
747 or else NT (N).Nkind = N_Number_Declaration
748 or else NT (N).Nkind = N_Object_Declaration
749 or else NT (N).Nkind = N_Object_Renaming_Declaration
750 or else NT (N).Nkind = N_Package_Body_Stub
751 or else NT (N).Nkind = N_Parameter_Specification
752 or else NT (N).Nkind = N_Private_Extension_Declaration
753 or else NT (N).Nkind = N_Private_Type_Declaration
754 or else NT (N).Nkind = N_Protected_Body
755 or else NT (N).Nkind = N_Protected_Body_Stub
756 or else NT (N).Nkind = N_Protected_Type_Declaration
757 or else NT (N).Nkind = N_Single_Protected_Declaration
758 or else NT (N).Nkind = N_Single_Task_Declaration
759 or else NT (N).Nkind = N_Subtype_Declaration
760 or else NT (N).Nkind = N_Task_Body
761 or else NT (N).Nkind = N_Task_Body_Stub
762 or else NT (N).Nkind = N_Task_Type_Declaration);
763 return Node1 (N);
764 end Defining_Identifier;
765
766 function Defining_Unit_Name
767 (N : Node_Id) return Node_Id is
768 begin
769 pragma Assert (False
770 or else NT (N).Nkind = N_Function_Instantiation
771 or else NT (N).Nkind = N_Function_Specification
772 or else NT (N).Nkind = N_Generic_Function_Renaming_Declaration
773 or else NT (N).Nkind = N_Generic_Package_Renaming_Declaration
774 or else NT (N).Nkind = N_Generic_Procedure_Renaming_Declaration
775 or else NT (N).Nkind = N_Package_Body
776 or else NT (N).Nkind = N_Package_Instantiation
777 or else NT (N).Nkind = N_Package_Renaming_Declaration
778 or else NT (N).Nkind = N_Package_Specification
779 or else NT (N).Nkind = N_Procedure_Instantiation
780 or else NT (N).Nkind = N_Procedure_Specification);
781 return Node1 (N);
782 end Defining_Unit_Name;
783
784 function Delay_Alternative
785 (N : Node_Id) return Node_Id is
786 begin
787 pragma Assert (False
788 or else NT (N).Nkind = N_Timed_Entry_Call);
789 return Node4 (N);
790 end Delay_Alternative;
791
792 function Delay_Statement
793 (N : Node_Id) return Node_Id is
794 begin
795 pragma Assert (False
796 or else NT (N).Nkind = N_Delay_Alternative);
797 return Node2 (N);
798 end Delay_Statement;
799
800 function Delta_Expression
801 (N : Node_Id) return Node_Id is
802 begin
803 pragma Assert (False
804 or else NT (N).Nkind = N_Decimal_Fixed_Point_Definition
805 or else NT (N).Nkind = N_Delta_Constraint
806 or else NT (N).Nkind = N_Ordinary_Fixed_Point_Definition);
807 return Node3 (N);
808 end Delta_Expression;
809
810 function Digits_Expression
811 (N : Node_Id) return Node_Id is
812 begin
813 pragma Assert (False
814 or else NT (N).Nkind = N_Decimal_Fixed_Point_Definition
815 or else NT (N).Nkind = N_Digits_Constraint
816 or else NT (N).Nkind = N_Floating_Point_Definition);
817 return Node2 (N);
818 end Digits_Expression;
819
820 function Discr_Check_Funcs_Built
821 (N : Node_Id) return Boolean is
822 begin
823 pragma Assert (False
824 or else NT (N).Nkind = N_Full_Type_Declaration);
825 return Flag11 (N);
826 end Discr_Check_Funcs_Built;
827
828 function Discrete_Choices
829 (N : Node_Id) return List_Id is
830 begin
831 pragma Assert (False
832 or else NT (N).Nkind = N_Case_Expression_Alternative
833 or else NT (N).Nkind = N_Case_Statement_Alternative
834 or else NT (N).Nkind = N_Variant);
835 return List4 (N);
836 end Discrete_Choices;
837
838 function Discrete_Range
839 (N : Node_Id) return Node_Id is
840 begin
841 pragma Assert (False
842 or else NT (N).Nkind = N_Slice);
843 return Node4 (N);
844 end Discrete_Range;
845
846 function Discrete_Subtype_Definition
847 (N : Node_Id) return Node_Id is
848 begin
849 pragma Assert (False
850 or else NT (N).Nkind = N_Entry_Declaration
851 or else NT (N).Nkind = N_Entry_Index_Specification
852 or else NT (N).Nkind = N_Loop_Parameter_Specification);
853 return Node4 (N);
854 end Discrete_Subtype_Definition;
855
856 function Discrete_Subtype_Definitions
857 (N : Node_Id) return List_Id is
858 begin
859 pragma Assert (False
860 or else NT (N).Nkind = N_Constrained_Array_Definition);
861 return List2 (N);
862 end Discrete_Subtype_Definitions;
863
864 function Discriminant_Specifications
865 (N : Node_Id) return List_Id is
866 begin
867 pragma Assert (False
868 or else NT (N).Nkind = N_Formal_Type_Declaration
869 or else NT (N).Nkind = N_Full_Type_Declaration
870 or else NT (N).Nkind = N_Incomplete_Type_Declaration
871 or else NT (N).Nkind = N_Private_Extension_Declaration
872 or else NT (N).Nkind = N_Private_Type_Declaration
873 or else NT (N).Nkind = N_Protected_Type_Declaration
874 or else NT (N).Nkind = N_Task_Type_Declaration);
875 return List4 (N);
876 end Discriminant_Specifications;
877
878 function Discriminant_Type
879 (N : Node_Id) return Node_Id is
880 begin
881 pragma Assert (False
882 or else NT (N).Nkind = N_Discriminant_Specification);
883 return Node5 (N);
884 end Discriminant_Type;
885
886 function Do_Accessibility_Check
887 (N : Node_Id) return Boolean is
888 begin
889 pragma Assert (False
890 or else NT (N).Nkind = N_Parameter_Specification);
891 return Flag13 (N);
892 end Do_Accessibility_Check;
893
894 function Do_Discriminant_Check
895 (N : Node_Id) return Boolean is
896 begin
897 pragma Assert (False
898 or else NT (N).Nkind = N_Selected_Component);
899 return Flag13 (N);
900 end Do_Discriminant_Check;
901
902 function Do_Division_Check
903 (N : Node_Id) return Boolean is
904 begin
905 pragma Assert (False
906 or else NT (N).Nkind = N_Op_Divide
907 or else NT (N).Nkind = N_Op_Mod
908 or else NT (N).Nkind = N_Op_Rem);
909 return Flag13 (N);
910 end Do_Division_Check;
911
912 function Do_Length_Check
913 (N : Node_Id) return Boolean is
914 begin
915 pragma Assert (False
916 or else NT (N).Nkind = N_Assignment_Statement
917 or else NT (N).Nkind = N_Op_And
918 or else NT (N).Nkind = N_Op_Or
919 or else NT (N).Nkind = N_Op_Xor
920 or else NT (N).Nkind = N_Type_Conversion);
921 return Flag4 (N);
922 end Do_Length_Check;
923
924 function Do_Overflow_Check
925 (N : Node_Id) return Boolean is
926 begin
927 pragma Assert (False
928 or else NT (N).Nkind in N_Op
929 or else NT (N).Nkind = N_Attribute_Reference
930 or else NT (N).Nkind = N_Type_Conversion);
931 return Flag17 (N);
932 end Do_Overflow_Check;
933
934 function Do_Range_Check
935 (N : Node_Id) return Boolean is
936 begin
937 pragma Assert (False
938 or else NT (N).Nkind in N_Subexpr);
939 return Flag9 (N);
940 end Do_Range_Check;
941
942 function Do_Storage_Check
943 (N : Node_Id) return Boolean is
944 begin
945 pragma Assert (False
946 or else NT (N).Nkind = N_Allocator
947 or else NT (N).Nkind = N_Subprogram_Body);
948 return Flag17 (N);
949 end Do_Storage_Check;
950
951 function Do_Tag_Check
952 (N : Node_Id) return Boolean is
953 begin
954 pragma Assert (False
955 or else NT (N).Nkind = N_Assignment_Statement
956 or else NT (N).Nkind = N_Extended_Return_Statement
957 or else NT (N).Nkind = N_Function_Call
958 or else NT (N).Nkind = N_Procedure_Call_Statement
959 or else NT (N).Nkind = N_Return_Statement
960 or else NT (N).Nkind = N_Type_Conversion);
961 return Flag13 (N);
962 end Do_Tag_Check;
963
964 function Elaborate_All_Desirable
965 (N : Node_Id) return Boolean is
966 begin
967 pragma Assert (False
968 or else NT (N).Nkind = N_With_Clause);
969 return Flag9 (N);
970 end Elaborate_All_Desirable;
971
972 function Elaborate_All_Present
973 (N : Node_Id) return Boolean is
974 begin
975 pragma Assert (False
976 or else NT (N).Nkind = N_With_Clause);
977 return Flag14 (N);
978 end Elaborate_All_Present;
979
980 function Elaborate_Desirable
981 (N : Node_Id) return Boolean is
982 begin
983 pragma Assert (False
984 or else NT (N).Nkind = N_With_Clause);
985 return Flag11 (N);
986 end Elaborate_Desirable;
987
988 function Elaborate_Present
989 (N : Node_Id) return Boolean is
990 begin
991 pragma Assert (False
992 or else NT (N).Nkind = N_With_Clause);
993 return Flag4 (N);
994 end Elaborate_Present;
995
996 function Elaboration_Boolean
997 (N : Node_Id) return Node_Id is
998 begin
999 pragma Assert (False
1000 or else NT (N).Nkind = N_Function_Specification
1001 or else NT (N).Nkind = N_Procedure_Specification);
1002 return Node2 (N);
1003 end Elaboration_Boolean;
1004
1005 function Else_Actions
1006 (N : Node_Id) return List_Id is
1007 begin
1008 pragma Assert (False
1009 or else NT (N).Nkind = N_Conditional_Expression);
1010 return List3 (N);
1011 end Else_Actions;
1012
1013 function Else_Statements
1014 (N : Node_Id) return List_Id is
1015 begin
1016 pragma Assert (False
1017 or else NT (N).Nkind = N_Conditional_Entry_Call
1018 or else NT (N).Nkind = N_If_Statement
1019 or else NT (N).Nkind = N_Selective_Accept);
1020 return List4 (N);
1021 end Else_Statements;
1022
1023 function Elsif_Parts
1024 (N : Node_Id) return List_Id is
1025 begin
1026 pragma Assert (False
1027 or else NT (N).Nkind = N_If_Statement);
1028 return List3 (N);
1029 end Elsif_Parts;
1030
1031 function Enclosing_Variant
1032 (N : Node_Id) return Node_Id is
1033 begin
1034 pragma Assert (False
1035 or else NT (N).Nkind = N_Variant);
1036 return Node2 (N);
1037 end Enclosing_Variant;
1038
1039 function End_Label
1040 (N : Node_Id) return Node_Id is
1041 begin
1042 pragma Assert (False
1043 or else NT (N).Nkind = N_Enumeration_Type_Definition
1044 or else NT (N).Nkind = N_Handled_Sequence_Of_Statements
1045 or else NT (N).Nkind = N_Loop_Statement
1046 or else NT (N).Nkind = N_Package_Specification
1047 or else NT (N).Nkind = N_Protected_Body
1048 or else NT (N).Nkind = N_Protected_Definition
1049 or else NT (N).Nkind = N_Record_Definition
1050 or else NT (N).Nkind = N_Task_Definition);
1051 return Node4 (N);
1052 end End_Label;
1053
1054 function End_Span
1055 (N : Node_Id) return Uint is
1056 begin
1057 pragma Assert (False
1058 or else NT (N).Nkind = N_Case_Statement
1059 or else NT (N).Nkind = N_If_Statement);
1060 return Uint5 (N);
1061 end End_Span;
1062
1063 function Entity
1064 (N : Node_Id) return Node_Id is
1065 begin
1066 pragma Assert (False
1067 or else NT (N).Nkind in N_Has_Entity
1068 or else NT (N).Nkind = N_Aspect_Specification
1069 or else NT (N).Nkind = N_Attribute_Definition_Clause
1070 or else NT (N).Nkind = N_Freeze_Entity);
1071 return Node4 (N);
1072 end Entity;
1073
1074 function Entity_Or_Associated_Node
1075 (N : Node_Id) return Node_Id is
1076 begin
1077 pragma Assert (False
1078 or else NT (N).Nkind in N_Has_Entity
1079 or else NT (N).Nkind = N_Freeze_Entity);
1080 return Node4 (N);
1081 end Entity_Or_Associated_Node;
1082
1083 function Entry_Body_Formal_Part
1084 (N : Node_Id) return Node_Id is
1085 begin
1086 pragma Assert (False
1087 or else NT (N).Nkind = N_Entry_Body);
1088 return Node5 (N);
1089 end Entry_Body_Formal_Part;
1090
1091 function Entry_Call_Alternative
1092 (N : Node_Id) return Node_Id is
1093 begin
1094 pragma Assert (False
1095 or else NT (N).Nkind = N_Conditional_Entry_Call
1096 or else NT (N).Nkind = N_Timed_Entry_Call);
1097 return Node1 (N);
1098 end Entry_Call_Alternative;
1099
1100 function Entry_Call_Statement
1101 (N : Node_Id) return Node_Id is
1102 begin
1103 pragma Assert (False
1104 or else NT (N).Nkind = N_Entry_Call_Alternative);
1105 return Node1 (N);
1106 end Entry_Call_Statement;
1107
1108 function Entry_Direct_Name
1109 (N : Node_Id) return Node_Id is
1110 begin
1111 pragma Assert (False
1112 or else NT (N).Nkind = N_Accept_Statement);
1113 return Node1 (N);
1114 end Entry_Direct_Name;
1115
1116 function Entry_Index
1117 (N : Node_Id) return Node_Id is
1118 begin
1119 pragma Assert (False
1120 or else NT (N).Nkind = N_Accept_Statement);
1121 return Node5 (N);
1122 end Entry_Index;
1123
1124 function Entry_Index_Specification
1125 (N : Node_Id) return Node_Id is
1126 begin
1127 pragma Assert (False
1128 or else NT (N).Nkind = N_Entry_Body_Formal_Part);
1129 return Node4 (N);
1130 end Entry_Index_Specification;
1131
1132 function Etype
1133 (N : Node_Id) return Node_Id is
1134 begin
1135 pragma Assert (False
1136 or else NT (N).Nkind in N_Has_Etype);
1137 return Node5 (N);
1138 end Etype;
1139
1140 function Exception_Choices
1141 (N : Node_Id) return List_Id is
1142 begin
1143 pragma Assert (False
1144 or else NT (N).Nkind = N_Exception_Handler);
1145 return List4 (N);
1146 end Exception_Choices;
1147
1148 function Exception_Handlers
1149 (N : Node_Id) return List_Id is
1150 begin
1151 pragma Assert (False
1152 or else NT (N).Nkind = N_Handled_Sequence_Of_Statements);
1153 return List5 (N);
1154 end Exception_Handlers;
1155
1156 function Exception_Junk
1157 (N : Node_Id) return Boolean is
1158 begin
1159 pragma Assert (False
1160 or else NT (N).Nkind = N_Block_Statement
1161 or else NT (N).Nkind = N_Goto_Statement
1162 or else NT (N).Nkind = N_Label
1163 or else NT (N).Nkind = N_Object_Declaration
1164 or else NT (N).Nkind = N_Subtype_Declaration);
1165 return Flag8 (N);
1166 end Exception_Junk;
1167
1168 function Exception_Label
1169 (N : Node_Id) return Node_Id is
1170 begin
1171 pragma Assert (False
1172 or else NT (N).Nkind = N_Exception_Handler
1173 or else NT (N).Nkind = N_Push_Constraint_Error_Label
1174 or else NT (N).Nkind = N_Push_Program_Error_Label
1175 or else NT (N).Nkind = N_Push_Storage_Error_Label);
1176 return Node5 (N);
1177 end Exception_Label;
1178
1179 function Expansion_Delayed
1180 (N : Node_Id) return Boolean is
1181 begin
1182 pragma Assert (False
1183 or else NT (N).Nkind = N_Aggregate
1184 or else NT (N).Nkind = N_Extension_Aggregate);
1185 return Flag11 (N);
1186 end Expansion_Delayed;
1187
1188 function Explicit_Actual_Parameter
1189 (N : Node_Id) return Node_Id is
1190 begin
1191 pragma Assert (False
1192 or else NT (N).Nkind = N_Parameter_Association);
1193 return Node3 (N);
1194 end Explicit_Actual_Parameter;
1195
1196 function Explicit_Generic_Actual_Parameter
1197 (N : Node_Id) return Node_Id is
1198 begin
1199 pragma Assert (False
1200 or else NT (N).Nkind = N_Generic_Association);
1201 return Node1 (N);
1202 end Explicit_Generic_Actual_Parameter;
1203
1204 function Expression
1205 (N : Node_Id) return Node_Id is
1206 begin
1207 pragma Assert (False
1208 or else NT (N).Nkind = N_Allocator
1209 or else NT (N).Nkind = N_Aspect_Specification
1210 or else NT (N).Nkind = N_Assignment_Statement
1211 or else NT (N).Nkind = N_At_Clause
1212 or else NT (N).Nkind = N_Attribute_Definition_Clause
1213 or else NT (N).Nkind = N_Case_Expression
1214 or else NT (N).Nkind = N_Case_Expression_Alternative
1215 or else NT (N).Nkind = N_Case_Statement
1216 or else NT (N).Nkind = N_Code_Statement
1217 or else NT (N).Nkind = N_Component_Association
1218 or else NT (N).Nkind = N_Component_Declaration
1219 or else NT (N).Nkind = N_Delay_Relative_Statement
1220 or else NT (N).Nkind = N_Delay_Until_Statement
1221 or else NT (N).Nkind = N_Discriminant_Association
1222 or else NT (N).Nkind = N_Discriminant_Specification
1223 or else NT (N).Nkind = N_Exception_Declaration
1224 or else NT (N).Nkind = N_Expression_Function
1225 or else NT (N).Nkind = N_Expression_With_Actions
1226 or else NT (N).Nkind = N_Free_Statement
1227 or else NT (N).Nkind = N_Mod_Clause
1228 or else NT (N).Nkind = N_Modular_Type_Definition
1229 or else NT (N).Nkind = N_Number_Declaration
1230 or else NT (N).Nkind = N_Object_Declaration
1231 or else NT (N).Nkind = N_Parameter_Specification
1232 or else NT (N).Nkind = N_Pragma_Argument_Association
1233 or else NT (N).Nkind = N_Qualified_Expression
1234 or else NT (N).Nkind = N_Raise_Statement
1235 or else NT (N).Nkind = N_Return_Statement
1236 or else NT (N).Nkind = N_Type_Conversion
1237 or else NT (N).Nkind = N_Unchecked_Expression
1238 or else NT (N).Nkind = N_Unchecked_Type_Conversion);
1239 return Node3 (N);
1240 end Expression;
1241
1242 function Expressions
1243 (N : Node_Id) return List_Id is
1244 begin
1245 pragma Assert (False
1246 or else NT (N).Nkind = N_Aggregate
1247 or else NT (N).Nkind = N_Attribute_Reference
1248 or else NT (N).Nkind = N_Conditional_Expression
1249 or else NT (N).Nkind = N_Extension_Aggregate
1250 or else NT (N).Nkind = N_Indexed_Component);
1251 return List1 (N);
1252 end Expressions;
1253
1254 function First_Bit
1255 (N : Node_Id) return Node_Id is
1256 begin
1257 pragma Assert (False
1258 or else NT (N).Nkind = N_Component_Clause);
1259 return Node3 (N);
1260 end First_Bit;
1261
1262 function First_Inlined_Subprogram
1263 (N : Node_Id) return Entity_Id is
1264 begin
1265 pragma Assert (False
1266 or else NT (N).Nkind = N_Compilation_Unit);
1267 return Node3 (N);
1268 end First_Inlined_Subprogram;
1269
1270 function First_Name
1271 (N : Node_Id) return Boolean is
1272 begin
1273 pragma Assert (False
1274 or else NT (N).Nkind = N_With_Clause);
1275 return Flag5 (N);
1276 end First_Name;
1277
1278 function First_Named_Actual
1279 (N : Node_Id) return Node_Id is
1280 begin
1281 pragma Assert (False
1282 or else NT (N).Nkind = N_Entry_Call_Statement
1283 or else NT (N).Nkind = N_Function_Call
1284 or else NT (N).Nkind = N_Procedure_Call_Statement);
1285 return Node4 (N);
1286 end First_Named_Actual;
1287
1288 function First_Real_Statement
1289 (N : Node_Id) return Node_Id is
1290 begin
1291 pragma Assert (False
1292 or else NT (N).Nkind = N_Handled_Sequence_Of_Statements);
1293 return Node2 (N);
1294 end First_Real_Statement;
1295
1296 function First_Subtype_Link
1297 (N : Node_Id) return Entity_Id is
1298 begin
1299 pragma Assert (False
1300 or else NT (N).Nkind = N_Freeze_Entity);
1301 return Node5 (N);
1302 end First_Subtype_Link;
1303
1304 function Float_Truncate
1305 (N : Node_Id) return Boolean is
1306 begin
1307 pragma Assert (False
1308 or else NT (N).Nkind = N_Type_Conversion);
1309 return Flag11 (N);
1310 end Float_Truncate;
1311
1312 function Formal_Type_Definition
1313 (N : Node_Id) return Node_Id is
1314 begin
1315 pragma Assert (False
1316 or else NT (N).Nkind = N_Formal_Type_Declaration);
1317 return Node3 (N);
1318 end Formal_Type_Definition;
1319
1320 function Forwards_OK
1321 (N : Node_Id) return Boolean is
1322 begin
1323 pragma Assert (False
1324 or else NT (N).Nkind = N_Assignment_Statement);
1325 return Flag5 (N);
1326 end Forwards_OK;
1327
1328 function From_Aspect_Specification
1329 (N : Node_Id) return Boolean is
1330 begin
1331 pragma Assert (False
1332 or else NT (N).Nkind = N_Attribute_Definition_Clause
1333 or else NT (N).Nkind = N_Pragma);
1334 return Flag13 (N);
1335 end From_Aspect_Specification;
1336
1337 function From_At_End
1338 (N : Node_Id) return Boolean is
1339 begin
1340 pragma Assert (False
1341 or else NT (N).Nkind = N_Raise_Statement);
1342 return Flag4 (N);
1343 end From_At_End;
1344
1345 function From_At_Mod
1346 (N : Node_Id) return Boolean is
1347 begin
1348 pragma Assert (False
1349 or else NT (N).Nkind = N_Attribute_Definition_Clause);
1350 return Flag4 (N);
1351 end From_At_Mod;
1352
1353 function From_Default
1354 (N : Node_Id) return Boolean is
1355 begin
1356 pragma Assert (False
1357 or else NT (N).Nkind = N_Subprogram_Renaming_Declaration);
1358 return Flag6 (N);
1359 end From_Default;
1360
1361 function Generic_Associations
1362 (N : Node_Id) return List_Id is
1363 begin
1364 pragma Assert (False
1365 or else NT (N).Nkind = N_Formal_Package_Declaration
1366 or else NT (N).Nkind = N_Function_Instantiation
1367 or else NT (N).Nkind = N_Package_Instantiation
1368 or else NT (N).Nkind = N_Procedure_Instantiation);
1369 return List3 (N);
1370 end Generic_Associations;
1371
1372 function Generic_Formal_Declarations
1373 (N : Node_Id) return List_Id is
1374 begin
1375 pragma Assert (False
1376 or else NT (N).Nkind = N_Generic_Package_Declaration
1377 or else NT (N).Nkind = N_Generic_Subprogram_Declaration);
1378 return List2 (N);
1379 end Generic_Formal_Declarations;
1380
1381 function Generic_Parent
1382 (N : Node_Id) return Node_Id is
1383 begin
1384 pragma Assert (False
1385 or else NT (N).Nkind = N_Function_Specification
1386 or else NT (N).Nkind = N_Package_Specification
1387 or else NT (N).Nkind = N_Procedure_Specification);
1388 return Node5 (N);
1389 end Generic_Parent;
1390
1391 function Generic_Parent_Type
1392 (N : Node_Id) return Node_Id is
1393 begin
1394 pragma Assert (False
1395 or else NT (N).Nkind = N_Subtype_Declaration);
1396 return Node4 (N);
1397 end Generic_Parent_Type;
1398
1399 function Handled_Statement_Sequence
1400 (N : Node_Id) return Node_Id is
1401 begin
1402 pragma Assert (False
1403 or else NT (N).Nkind = N_Accept_Statement
1404 or else NT (N).Nkind = N_Block_Statement
1405 or else NT (N).Nkind = N_Entry_Body
1406 or else NT (N).Nkind = N_Extended_Return_Statement
1407 or else NT (N).Nkind = N_Package_Body
1408 or else NT (N).Nkind = N_Subprogram_Body
1409 or else NT (N).Nkind = N_Task_Body);
1410 return Node4 (N);
1411 end Handled_Statement_Sequence;
1412
1413 function Handler_List_Entry
1414 (N : Node_Id) return Node_Id is
1415 begin
1416 pragma Assert (False
1417 or else NT (N).Nkind = N_Object_Declaration);
1418 return Node2 (N);
1419 end Handler_List_Entry;
1420
1421 function Has_Created_Identifier
1422 (N : Node_Id) return Boolean is
1423 begin
1424 pragma Assert (False
1425 or else NT (N).Nkind = N_Block_Statement
1426 or else NT (N).Nkind = N_Loop_Statement);
1427 return Flag15 (N);
1428 end Has_Created_Identifier;
1429
1430 function Has_Dynamic_Length_Check
1431 (N : Node_Id) return Boolean is
1432 begin
1433 pragma Assert (False
1434 or else NT (N).Nkind in N_Subexpr);
1435 return Flag10 (N);
1436 end Has_Dynamic_Length_Check;
1437
1438 function Has_Dynamic_Range_Check
1439 (N : Node_Id) return Boolean is
1440 begin
1441 pragma Assert (False
1442 or else NT (N).Nkind = N_Subtype_Declaration
1443 or else NT (N).Nkind in N_Subexpr);
1444 return Flag12 (N);
1445 end Has_Dynamic_Range_Check;
1446
1447 function Has_Init_Expression
1448 (N : Node_Id) return Boolean is
1449 begin
1450 pragma Assert (False
1451 or else NT (N).Nkind = N_Object_Declaration);
1452 return Flag14 (N);
1453 end Has_Init_Expression;
1454
1455 function Has_Local_Raise
1456 (N : Node_Id) return Boolean is
1457 begin
1458 pragma Assert (False
1459 or else NT (N).Nkind = N_Exception_Handler);
1460 return Flag8 (N);
1461 end Has_Local_Raise;
1462
1463 function Has_No_Elaboration_Code
1464 (N : Node_Id) return Boolean is
1465 begin
1466 pragma Assert (False
1467 or else NT (N).Nkind = N_Compilation_Unit);
1468 return Flag17 (N);
1469 end Has_No_Elaboration_Code;
1470
1471 function Has_Pragma_CPU
1472 (N : Node_Id) return Boolean is
1473 begin
1474 pragma Assert (False
1475 or else NT (N).Nkind = N_Subprogram_Body
1476 or else NT (N).Nkind = N_Task_Definition);
1477 return Flag14 (N);
1478 end Has_Pragma_CPU;
1479
1480 function Has_Pragma_Dispatching_Domain
1481 (N : Node_Id) return Boolean is
1482 begin
1483 pragma Assert (False
1484 or else NT (N).Nkind = N_Task_Definition);
1485 return Flag15 (N);
1486 end Has_Pragma_Dispatching_Domain;
1487
1488 function Has_Pragma_Priority
1489 (N : Node_Id) return Boolean is
1490 begin
1491 pragma Assert (False
1492 or else NT (N).Nkind = N_Protected_Definition
1493 or else NT (N).Nkind = N_Subprogram_Body
1494 or else NT (N).Nkind = N_Task_Definition);
1495 return Flag6 (N);
1496 end Has_Pragma_Priority;
1497
1498 function Has_Pragma_Suppress_All
1499 (N : Node_Id) return Boolean is
1500 begin
1501 pragma Assert (False
1502 or else NT (N).Nkind = N_Compilation_Unit);
1503 return Flag14 (N);
1504 end Has_Pragma_Suppress_All;
1505
1506 function Has_Private_View
1507 (N : Node_Id) return Boolean is
1508 begin
1509 pragma Assert (False
1510 or else NT (N).Nkind in N_Op
1511 or else NT (N).Nkind = N_Character_Literal
1512 or else NT (N).Nkind = N_Expanded_Name
1513 or else NT (N).Nkind = N_Identifier
1514 or else NT (N).Nkind = N_Operator_Symbol);
1515 return Flag11 (N);
1516 end Has_Private_View;
1517
1518 function Has_Relative_Deadline_Pragma
1519 (N : Node_Id) return Boolean is
1520 begin
1521 pragma Assert (False
1522 or else NT (N).Nkind = N_Subprogram_Body
1523 or else NT (N).Nkind = N_Task_Definition);
1524 return Flag9 (N);
1525 end Has_Relative_Deadline_Pragma;
1526
1527 function Has_Self_Reference
1528 (N : Node_Id) return Boolean is
1529 begin
1530 pragma Assert (False
1531 or else NT (N).Nkind = N_Aggregate
1532 or else NT (N).Nkind = N_Extension_Aggregate);
1533 return Flag13 (N);
1534 end Has_Self_Reference;
1535
1536 function Has_Storage_Size_Pragma
1537 (N : Node_Id) return Boolean is
1538 begin
1539 pragma Assert (False
1540 or else NT (N).Nkind = N_Task_Definition);
1541 return Flag5 (N);
1542 end Has_Storage_Size_Pragma;
1543
1544 function Has_Task_Info_Pragma
1545 (N : Node_Id) return Boolean is
1546 begin
1547 pragma Assert (False
1548 or else NT (N).Nkind = N_Task_Definition);
1549 return Flag7 (N);
1550 end Has_Task_Info_Pragma;
1551
1552 function Has_Task_Name_Pragma
1553 (N : Node_Id) return Boolean is
1554 begin
1555 pragma Assert (False
1556 or else NT (N).Nkind = N_Task_Definition);
1557 return Flag8 (N);
1558 end Has_Task_Name_Pragma;
1559
1560 function Has_Wide_Character
1561 (N : Node_Id) return Boolean is
1562 begin
1563 pragma Assert (False
1564 or else NT (N).Nkind = N_String_Literal);
1565 return Flag11 (N);
1566 end Has_Wide_Character;
1567
1568 function Has_Wide_Wide_Character
1569 (N : Node_Id) return Boolean is
1570 begin
1571 pragma Assert (False
1572 or else NT (N).Nkind = N_String_Literal);
1573 return Flag13 (N);
1574 end Has_Wide_Wide_Character;
1575
1576 function Header_Size_Added
1577 (N : Node_Id) return Boolean is
1578 begin
1579 pragma Assert (False
1580 or else NT (N).Nkind = N_Attribute_Reference);
1581 return Flag11 (N);
1582 end Header_Size_Added;
1583
1584 function Hidden_By_Use_Clause
1585 (N : Node_Id) return Elist_Id is
1586 begin
1587 pragma Assert (False
1588 or else NT (N).Nkind = N_Use_Package_Clause
1589 or else NT (N).Nkind = N_Use_Type_Clause);
1590 return Elist4 (N);
1591 end Hidden_By_Use_Clause;
1592
1593 function High_Bound
1594 (N : Node_Id) return Node_Id is
1595 begin
1596 pragma Assert (False
1597 or else NT (N).Nkind = N_Range
1598 or else NT (N).Nkind = N_Real_Range_Specification
1599 or else NT (N).Nkind = N_Signed_Integer_Type_Definition);
1600 return Node2 (N);
1601 end High_Bound;
1602
1603 function Identifier
1604 (N : Node_Id) return Node_Id is
1605 begin
1606 pragma Assert (False
1607 or else NT (N).Nkind = N_Aspect_Specification
1608 or else NT (N).Nkind = N_At_Clause
1609 or else NT (N).Nkind = N_Block_Statement
1610 or else NT (N).Nkind = N_Designator
1611 or else NT (N).Nkind = N_Enumeration_Representation_Clause
1612 or else NT (N).Nkind = N_Label
1613 or else NT (N).Nkind = N_Loop_Statement
1614 or else NT (N).Nkind = N_Record_Representation_Clause
1615 or else NT (N).Nkind = N_Subprogram_Info);
1616 return Node1 (N);
1617 end Identifier;
1618
1619 function Implicit_With
1620 (N : Node_Id) return Boolean is
1621 begin
1622 pragma Assert (False
1623 or else NT (N).Nkind = N_With_Clause);
1624 return Flag16 (N);
1625 end Implicit_With;
1626
1627 function Interface_List
1628 (N : Node_Id) return List_Id is
1629 begin
1630 pragma Assert (False
1631 or else NT (N).Nkind = N_Derived_Type_Definition
1632 or else NT (N).Nkind = N_Formal_Derived_Type_Definition
1633 or else NT (N).Nkind = N_Private_Extension_Declaration
1634 or else NT (N).Nkind = N_Protected_Type_Declaration
1635 or else NT (N).Nkind = N_Record_Definition
1636 or else NT (N).Nkind = N_Single_Protected_Declaration
1637 or else NT (N).Nkind = N_Single_Task_Declaration
1638 or else NT (N).Nkind = N_Task_Type_Declaration);
1639 return List2 (N);
1640 end Interface_List;
1641
1642 function Interface_Present
1643 (N : Node_Id) return Boolean is
1644 begin
1645 pragma Assert (False
1646 or else NT (N).Nkind = N_Derived_Type_Definition
1647 or else NT (N).Nkind = N_Record_Definition);
1648 return Flag16 (N);
1649 end Interface_Present;
1650
1651 function Import_Interface_Present
1652 (N : Node_Id) return Boolean is
1653 begin
1654 pragma Assert (False
1655 or else NT (N).Nkind = N_Pragma);
1656 return Flag16 (N);
1657 end Import_Interface_Present;
1658
1659 function In_Present
1660 (N : Node_Id) return Boolean is
1661 begin
1662 pragma Assert (False
1663 or else NT (N).Nkind = N_Formal_Object_Declaration
1664 or else NT (N).Nkind = N_Parameter_Specification);
1665 return Flag15 (N);
1666 end In_Present;
1667
1668 function Includes_Infinities
1669 (N : Node_Id) return Boolean is
1670 begin
1671 pragma Assert (False
1672 or else NT (N).Nkind = N_Range);
1673 return Flag11 (N);
1674 end Includes_Infinities;
1675
1676 function Inherited_Discriminant
1677 (N : Node_Id) return Boolean is
1678 begin
1679 pragma Assert (False
1680 or else NT (N).Nkind = N_Component_Association);
1681 return Flag13 (N);
1682 end Inherited_Discriminant;
1683
1684 function Instance_Spec
1685 (N : Node_Id) return Node_Id is
1686 begin
1687 pragma Assert (False
1688 or else NT (N).Nkind = N_Formal_Package_Declaration
1689 or else NT (N).Nkind = N_Function_Instantiation
1690 or else NT (N).Nkind = N_Package_Instantiation
1691 or else NT (N).Nkind = N_Procedure_Instantiation);
1692 return Node5 (N);
1693 end Instance_Spec;
1694
1695 function Intval
1696 (N : Node_Id) return Uint is
1697 begin
1698 pragma Assert (False
1699 or else NT (N).Nkind = N_Integer_Literal);
1700 return Uint3 (N);
1701 end Intval;
1702
1703 function Is_Accessibility_Actual
1704 (N : Node_Id) return Boolean is
1705 begin
1706 pragma Assert (False
1707 or else NT (N).Nkind = N_Parameter_Association);
1708 return Flag13 (N);
1709 end Is_Accessibility_Actual;
1710
1711 function Is_Asynchronous_Call_Block
1712 (N : Node_Id) return Boolean is
1713 begin
1714 pragma Assert (False
1715 or else NT (N).Nkind = N_Block_Statement);
1716 return Flag7 (N);
1717 end Is_Asynchronous_Call_Block;
1718
1719 function Is_Boolean_Aspect
1720 (N : Node_Id) return Boolean is
1721 begin
1722 pragma Assert (False
1723 or else NT (N).Nkind = N_Aspect_Specification);
1724 return Flag16 (N);
1725 end Is_Boolean_Aspect;
1726
1727 function Is_Component_Left_Opnd
1728 (N : Node_Id) return Boolean is
1729 begin
1730 pragma Assert (False
1731 or else NT (N).Nkind = N_Op_Concat);
1732 return Flag13 (N);
1733 end Is_Component_Left_Opnd;
1734
1735 function Is_Component_Right_Opnd
1736 (N : Node_Id) return Boolean is
1737 begin
1738 pragma Assert (False
1739 or else NT (N).Nkind = N_Op_Concat);
1740 return Flag14 (N);
1741 end Is_Component_Right_Opnd;
1742
1743 function Is_Controlling_Actual
1744 (N : Node_Id) return Boolean is
1745 begin
1746 pragma Assert (False
1747 or else NT (N).Nkind in N_Subexpr);
1748 return Flag16 (N);
1749 end Is_Controlling_Actual;
1750
1751 function Is_Delayed_Aspect
1752 (N : Node_Id) return Boolean is
1753 begin
1754 pragma Assert (False
1755 or else NT (N).Nkind = N_Aspect_Specification
1756 or else NT (N).Nkind = N_Attribute_Definition_Clause
1757 or else NT (N).Nkind = N_Pragma);
1758 return Flag14 (N);
1759 end Is_Delayed_Aspect;
1760
1761 function Is_Dynamic_Coextension
1762 (N : Node_Id) return Boolean is
1763 begin
1764 pragma Assert (False
1765 or else NT (N).Nkind = N_Allocator);
1766 return Flag18 (N);
1767 end Is_Dynamic_Coextension;
1768
1769 function Is_Elsif
1770 (N : Node_Id) return Boolean is
1771 begin
1772 pragma Assert (False
1773 or else NT (N).Nkind = N_Conditional_Expression);
1774 return Flag13 (N);
1775 end Is_Elsif;
1776
1777 function Is_Entry_Barrier_Function
1778 (N : Node_Id) return Boolean is
1779 begin
1780 pragma Assert (False
1781 or else NT (N).Nkind = N_Subprogram_Body);
1782 return Flag8 (N);
1783 end Is_Entry_Barrier_Function;
1784
1785 function Is_Expanded_Build_In_Place_Call
1786 (N : Node_Id) return Boolean is
1787 begin
1788 pragma Assert (False
1789 or else NT (N).Nkind = N_Function_Call);
1790 return Flag11 (N);
1791 end Is_Expanded_Build_In_Place_Call;
1792
1793 function Is_Folded_In_Parser
1794 (N : Node_Id) return Boolean is
1795 begin
1796 pragma Assert (False
1797 or else NT (N).Nkind = N_String_Literal);
1798 return Flag4 (N);
1799 end Is_Folded_In_Parser;
1800
1801 function Is_In_Discriminant_Check
1802 (N : Node_Id) return Boolean is
1803 begin
1804 pragma Assert (False
1805 or else NT (N).Nkind = N_Selected_Component);
1806 return Flag11 (N);
1807 end Is_In_Discriminant_Check;
1808
1809 function Is_Machine_Number
1810 (N : Node_Id) return Boolean is
1811 begin
1812 pragma Assert (False
1813 or else NT (N).Nkind = N_Real_Literal);
1814 return Flag11 (N);
1815 end Is_Machine_Number;
1816
1817 function Is_Null_Loop
1818 (N : Node_Id) return Boolean is
1819 begin
1820 pragma Assert (False
1821 or else NT (N).Nkind = N_Loop_Statement);
1822 return Flag16 (N);
1823 end Is_Null_Loop;
1824
1825 function Is_Overloaded
1826 (N : Node_Id) return Boolean is
1827 begin
1828 pragma Assert (False
1829 or else NT (N).Nkind in N_Subexpr);
1830 return Flag5 (N);
1831 end Is_Overloaded;
1832
1833 function Is_Power_Of_2_For_Shift
1834 (N : Node_Id) return Boolean is
1835 begin
1836 pragma Assert (False
1837 or else NT (N).Nkind = N_Op_Expon);
1838 return Flag13 (N);
1839 end Is_Power_Of_2_For_Shift;
1840
1841 function Is_Protected_Subprogram_Body
1842 (N : Node_Id) return Boolean is
1843 begin
1844 pragma Assert (False
1845 or else NT (N).Nkind = N_Subprogram_Body);
1846 return Flag7 (N);
1847 end Is_Protected_Subprogram_Body;
1848
1849 function Is_Static_Coextension
1850 (N : Node_Id) return Boolean is
1851 begin
1852 pragma Assert (False
1853 or else NT (N).Nkind = N_Allocator);
1854 return Flag14 (N);
1855 end Is_Static_Coextension;
1856
1857 function Is_Static_Expression
1858 (N : Node_Id) return Boolean is
1859 begin
1860 pragma Assert (False
1861 or else NT (N).Nkind in N_Subexpr);
1862 return Flag6 (N);
1863 end Is_Static_Expression;
1864
1865 function Is_Subprogram_Descriptor
1866 (N : Node_Id) return Boolean is
1867 begin
1868 pragma Assert (False
1869 or else NT (N).Nkind = N_Object_Declaration);
1870 return Flag16 (N);
1871 end Is_Subprogram_Descriptor;
1872
1873 function Is_Task_Allocation_Block
1874 (N : Node_Id) return Boolean is
1875 begin
1876 pragma Assert (False
1877 or else NT (N).Nkind = N_Block_Statement);
1878 return Flag6 (N);
1879 end Is_Task_Allocation_Block;
1880
1881 function Is_Task_Master
1882 (N : Node_Id) return Boolean is
1883 begin
1884 pragma Assert (False
1885 or else NT (N).Nkind = N_Block_Statement
1886 or else NT (N).Nkind = N_Subprogram_Body
1887 or else NT (N).Nkind = N_Task_Body);
1888 return Flag5 (N);
1889 end Is_Task_Master;
1890
1891 function Iteration_Scheme
1892 (N : Node_Id) return Node_Id is
1893 begin
1894 pragma Assert (False
1895 or else NT (N).Nkind = N_Loop_Statement);
1896 return Node2 (N);
1897 end Iteration_Scheme;
1898
1899 function Iterator_Specification
1900 (N : Node_Id) return Node_Id is
1901 begin
1902 pragma Assert (False
1903 or else NT (N).Nkind = N_Iteration_Scheme
1904 or else NT (N).Nkind = N_Quantified_Expression);
1905 return Node2 (N);
1906 end Iterator_Specification;
1907
1908 function Itype
1909 (N : Node_Id) return Node_Id is
1910 begin
1911 pragma Assert (False
1912 or else NT (N).Nkind = N_Itype_Reference);
1913 return Node1 (N);
1914 end Itype;
1915
1916 function Kill_Range_Check
1917 (N : Node_Id) return Boolean is
1918 begin
1919 pragma Assert (False
1920 or else NT (N).Nkind = N_Unchecked_Type_Conversion);
1921 return Flag11 (N);
1922 end Kill_Range_Check;
1923
1924 function Label_Construct
1925 (N : Node_Id) return Node_Id is
1926 begin
1927 pragma Assert (False
1928 or else NT (N).Nkind = N_Implicit_Label_Declaration);
1929 return Node2 (N);
1930 end Label_Construct;
1931
1932 function Last_Bit
1933 (N : Node_Id) return Node_Id is
1934 begin
1935 pragma Assert (False
1936 or else NT (N).Nkind = N_Component_Clause);
1937 return Node4 (N);
1938 end Last_Bit;
1939
1940 function Last_Name
1941 (N : Node_Id) return Boolean is
1942 begin
1943 pragma Assert (False
1944 or else NT (N).Nkind = N_With_Clause);
1945 return Flag6 (N);
1946 end Last_Name;
1947
1948 function Left_Opnd
1949 (N : Node_Id) return Node_Id is
1950 begin
1951 pragma Assert (False
1952 or else NT (N).Nkind = N_And_Then
1953 or else NT (N).Nkind = N_In
1954 or else NT (N).Nkind = N_Not_In
1955 or else NT (N).Nkind = N_Or_Else
1956 or else NT (N).Nkind in N_Binary_Op);
1957 return Node2 (N);
1958 end Left_Opnd;
1959
1960 function Library_Unit
1961 (N : Node_Id) return Node_Id is
1962 begin
1963 pragma Assert (False
1964 or else NT (N).Nkind = N_Compilation_Unit
1965 or else NT (N).Nkind = N_Package_Body_Stub
1966 or else NT (N).Nkind = N_Protected_Body_Stub
1967 or else NT (N).Nkind = N_Subprogram_Body_Stub
1968 or else NT (N).Nkind = N_Task_Body_Stub
1969 or else NT (N).Nkind = N_With_Clause);
1970 return Node4 (N);
1971 end Library_Unit;
1972
1973 function Limited_View_Installed
1974 (N : Node_Id) return Boolean is
1975 begin
1976 pragma Assert (False
1977 or else NT (N).Nkind = N_Package_Specification
1978 or else NT (N).Nkind = N_With_Clause);
1979 return Flag18 (N);
1980 end Limited_View_Installed;
1981
1982 function Limited_Present
1983 (N : Node_Id) return Boolean is
1984 begin
1985 pragma Assert (False
1986 or else NT (N).Nkind = N_Derived_Type_Definition
1987 or else NT (N).Nkind = N_Formal_Derived_Type_Definition
1988 or else NT (N).Nkind = N_Formal_Private_Type_Definition
1989 or else NT (N).Nkind = N_Private_Extension_Declaration
1990 or else NT (N).Nkind = N_Private_Type_Declaration
1991 or else NT (N).Nkind = N_Record_Definition
1992 or else NT (N).Nkind = N_With_Clause);
1993 return Flag17 (N);
1994 end Limited_Present;
1995
1996 function Literals
1997 (N : Node_Id) return List_Id is
1998 begin
1999 pragma Assert (False
2000 or else NT (N).Nkind = N_Enumeration_Type_Definition);
2001 return List1 (N);
2002 end Literals;
2003
2004 function Local_Raise_Not_OK
2005 (N : Node_Id) return Boolean is
2006 begin
2007 pragma Assert (False
2008 or else NT (N).Nkind = N_Exception_Handler);
2009 return Flag7 (N);
2010 end Local_Raise_Not_OK;
2011
2012 function Local_Raise_Statements
2013 (N : Node_Id) return Elist_Id is
2014 begin
2015 pragma Assert (False
2016 or else NT (N).Nkind = N_Exception_Handler);
2017 return Elist1 (N);
2018 end Local_Raise_Statements;
2019
2020 function Loop_Actions
2021 (N : Node_Id) return List_Id is
2022 begin
2023 pragma Assert (False
2024 or else NT (N).Nkind = N_Component_Association);
2025 return List2 (N);
2026 end Loop_Actions;
2027
2028 function Loop_Parameter_Specification
2029 (N : Node_Id) return Node_Id is
2030 begin
2031 pragma Assert (False
2032 or else NT (N).Nkind = N_Iteration_Scheme
2033 or else NT (N).Nkind = N_Quantified_Expression);
2034 return Node4 (N);
2035 end Loop_Parameter_Specification;
2036
2037 function Low_Bound
2038 (N : Node_Id) return Node_Id is
2039 begin
2040 pragma Assert (False
2041 or else NT (N).Nkind = N_Range
2042 or else NT (N).Nkind = N_Real_Range_Specification
2043 or else NT (N).Nkind = N_Signed_Integer_Type_Definition);
2044 return Node1 (N);
2045 end Low_Bound;
2046
2047 function Mod_Clause
2048 (N : Node_Id) return Node_Id is
2049 begin
2050 pragma Assert (False
2051 or else NT (N).Nkind = N_Record_Representation_Clause);
2052 return Node2 (N);
2053 end Mod_Clause;
2054
2055 function More_Ids
2056 (N : Node_Id) return Boolean is
2057 begin
2058 pragma Assert (False
2059 or else NT (N).Nkind = N_Component_Declaration
2060 or else NT (N).Nkind = N_Discriminant_Specification
2061 or else NT (N).Nkind = N_Exception_Declaration
2062 or else NT (N).Nkind = N_Formal_Object_Declaration
2063 or else NT (N).Nkind = N_Number_Declaration
2064 or else NT (N).Nkind = N_Object_Declaration
2065 or else NT (N).Nkind = N_Parameter_Specification);
2066 return Flag5 (N);
2067 end More_Ids;
2068
2069 function Must_Be_Byte_Aligned
2070 (N : Node_Id) return Boolean is
2071 begin
2072 pragma Assert (False
2073 or else NT (N).Nkind = N_Attribute_Reference);
2074 return Flag14 (N);
2075 end Must_Be_Byte_Aligned;
2076
2077 function Must_Not_Freeze
2078 (N : Node_Id) return Boolean is
2079 begin
2080 pragma Assert (False
2081 or else NT (N).Nkind = N_Subtype_Indication
2082 or else NT (N).Nkind in N_Subexpr);
2083 return Flag8 (N);
2084 end Must_Not_Freeze;
2085
2086 function Must_Not_Override
2087 (N : Node_Id) return Boolean is
2088 begin
2089 pragma Assert (False
2090 or else NT (N).Nkind = N_Entry_Declaration
2091 or else NT (N).Nkind = N_Function_Instantiation
2092 or else NT (N).Nkind = N_Function_Specification
2093 or else NT (N).Nkind = N_Procedure_Instantiation
2094 or else NT (N).Nkind = N_Procedure_Specification);
2095 return Flag15 (N);
2096 end Must_Not_Override;
2097
2098 function Must_Override
2099 (N : Node_Id) return Boolean is
2100 begin
2101 pragma Assert (False
2102 or else NT (N).Nkind = N_Entry_Declaration
2103 or else NT (N).Nkind = N_Function_Instantiation
2104 or else NT (N).Nkind = N_Function_Specification
2105 or else NT (N).Nkind = N_Procedure_Instantiation
2106 or else NT (N).Nkind = N_Procedure_Specification);
2107 return Flag14 (N);
2108 end Must_Override;
2109
2110 function Name
2111 (N : Node_Id) return Node_Id is
2112 begin
2113 pragma Assert (False
2114 or else NT (N).Nkind = N_Assignment_Statement
2115 or else NT (N).Nkind = N_Attribute_Definition_Clause
2116 or else NT (N).Nkind = N_Defining_Program_Unit_Name
2117 or else NT (N).Nkind = N_Designator
2118 or else NT (N).Nkind = N_Entry_Call_Statement
2119 or else NT (N).Nkind = N_Exception_Renaming_Declaration
2120 or else NT (N).Nkind = N_Exit_Statement
2121 or else NT (N).Nkind = N_Formal_Package_Declaration
2122 or else NT (N).Nkind = N_Function_Call
2123 or else NT (N).Nkind = N_Function_Instantiation
2124 or else NT (N).Nkind = N_Generic_Function_Renaming_Declaration
2125 or else NT (N).Nkind = N_Generic_Package_Renaming_Declaration
2126 or else NT (N).Nkind = N_Generic_Procedure_Renaming_Declaration
2127 or else NT (N).Nkind = N_Goto_Statement
2128 or else NT (N).Nkind = N_Iterator_Specification
2129 or else NT (N).Nkind = N_Object_Renaming_Declaration
2130 or else NT (N).Nkind = N_Package_Instantiation
2131 or else NT (N).Nkind = N_Package_Renaming_Declaration
2132 or else NT (N).Nkind = N_Procedure_Call_Statement
2133 or else NT (N).Nkind = N_Procedure_Instantiation
2134 or else NT (N).Nkind = N_Raise_Statement
2135 or else NT (N).Nkind = N_Requeue_Statement
2136 or else NT (N).Nkind = N_Subprogram_Renaming_Declaration
2137 or else NT (N).Nkind = N_Subunit
2138 or else NT (N).Nkind = N_Variant_Part
2139 or else NT (N).Nkind = N_With_Clause);
2140 return Node2 (N);
2141 end Name;
2142
2143 function Names
2144 (N : Node_Id) return List_Id is
2145 begin
2146 pragma Assert (False
2147 or else NT (N).Nkind = N_Abort_Statement
2148 or else NT (N).Nkind = N_Use_Package_Clause);
2149 return List2 (N);
2150 end Names;
2151
2152 function Next_Entity
2153 (N : Node_Id) return Node_Id is
2154 begin
2155 pragma Assert (False
2156 or else NT (N).Nkind = N_Defining_Character_Literal
2157 or else NT (N).Nkind = N_Defining_Identifier
2158 or else NT (N).Nkind = N_Defining_Operator_Symbol);
2159 return Node2 (N);
2160 end Next_Entity;
2161
2162 function Next_Exit_Statement
2163 (N : Node_Id) return Node_Id is
2164 begin
2165 pragma Assert (False
2166 or else NT (N).Nkind = N_Exit_Statement);
2167 return Node3 (N);
2168 end Next_Exit_Statement;
2169
2170 function Next_Implicit_With
2171 (N : Node_Id) return Node_Id is
2172 begin
2173 pragma Assert (False
2174 or else NT (N).Nkind = N_With_Clause);
2175 return Node3 (N);
2176 end Next_Implicit_With;
2177
2178 function Next_Named_Actual
2179 (N : Node_Id) return Node_Id is
2180 begin
2181 pragma Assert (False
2182 or else NT (N).Nkind = N_Parameter_Association);
2183 return Node4 (N);
2184 end Next_Named_Actual;
2185
2186 function Next_Pragma
2187 (N : Node_Id) return Node_Id is
2188 begin
2189 pragma Assert (False
2190 or else NT (N).Nkind = N_Pragma);
2191 return Node1 (N);
2192 end Next_Pragma;
2193
2194 function Next_Rep_Item
2195 (N : Node_Id) return Node_Id is
2196 begin
2197 pragma Assert (False
2198 or else NT (N).Nkind = N_Aspect_Specification
2199 or else NT (N).Nkind = N_Attribute_Definition_Clause
2200 or else NT (N).Nkind = N_Enumeration_Representation_Clause
2201 or else NT (N).Nkind = N_Pragma
2202 or else NT (N).Nkind = N_Record_Representation_Clause);
2203 return Node5 (N);
2204 end Next_Rep_Item;
2205
2206 function Next_Use_Clause
2207 (N : Node_Id) return Node_Id is
2208 begin
2209 pragma Assert (False
2210 or else NT (N).Nkind = N_Use_Package_Clause
2211 or else NT (N).Nkind = N_Use_Type_Clause);
2212 return Node3 (N);
2213 end Next_Use_Clause;
2214
2215 function No_Ctrl_Actions
2216 (N : Node_Id) return Boolean is
2217 begin
2218 pragma Assert (False
2219 or else NT (N).Nkind = N_Assignment_Statement);
2220 return Flag7 (N);
2221 end No_Ctrl_Actions;
2222
2223 function No_Elaboration_Check
2224 (N : Node_Id) return Boolean is
2225 begin
2226 pragma Assert (False
2227 or else NT (N).Nkind = N_Function_Call
2228 or else NT (N).Nkind = N_Procedure_Call_Statement);
2229 return Flag14 (N);
2230 end No_Elaboration_Check;
2231
2232 function No_Entities_Ref_In_Spec
2233 (N : Node_Id) return Boolean is
2234 begin
2235 pragma Assert (False
2236 or else NT (N).Nkind = N_With_Clause);
2237 return Flag8 (N);
2238 end No_Entities_Ref_In_Spec;
2239
2240 function No_Initialization
2241 (N : Node_Id) return Boolean is
2242 begin
2243 pragma Assert (False
2244 or else NT (N).Nkind = N_Allocator
2245 or else NT (N).Nkind = N_Object_Declaration);
2246 return Flag13 (N);
2247 end No_Initialization;
2248
2249 function No_Truncation
2250 (N : Node_Id) return Boolean is
2251 begin
2252 pragma Assert (False
2253 or else NT (N).Nkind = N_Unchecked_Type_Conversion);
2254 return Flag17 (N);
2255 end No_Truncation;
2256
2257 function Null_Present
2258 (N : Node_Id) return Boolean is
2259 begin
2260 pragma Assert (False
2261 or else NT (N).Nkind = N_Component_List
2262 or else NT (N).Nkind = N_Procedure_Specification
2263 or else NT (N).Nkind = N_Record_Definition);
2264 return Flag13 (N);
2265 end Null_Present;
2266
2267 function Null_Exclusion_Present
2268 (N : Node_Id) return Boolean is
2269 begin
2270 pragma Assert (False
2271 or else NT (N).Nkind = N_Access_Definition
2272 or else NT (N).Nkind = N_Access_Function_Definition
2273 or else NT (N).Nkind = N_Access_Procedure_Definition
2274 or else NT (N).Nkind = N_Access_To_Object_Definition
2275 or else NT (N).Nkind = N_Allocator
2276 or else NT (N).Nkind = N_Component_Definition
2277 or else NT (N).Nkind = N_Derived_Type_Definition
2278 or else NT (N).Nkind = N_Discriminant_Specification
2279 or else NT (N).Nkind = N_Formal_Object_Declaration
2280 or else NT (N).Nkind = N_Function_Specification
2281 or else NT (N).Nkind = N_Object_Declaration
2282 or else NT (N).Nkind = N_Object_Renaming_Declaration
2283 or else NT (N).Nkind = N_Parameter_Specification
2284 or else NT (N).Nkind = N_Subtype_Declaration);
2285 return Flag11 (N);
2286 end Null_Exclusion_Present;
2287
2288 function Null_Exclusion_In_Return_Present
2289 (N : Node_Id) return Boolean is
2290 begin
2291 pragma Assert (False
2292 or else NT (N).Nkind = N_Access_Function_Definition);
2293 return Flag14 (N);
2294 end Null_Exclusion_In_Return_Present;
2295
2296 function Null_Record_Present
2297 (N : Node_Id) return Boolean is
2298 begin
2299 pragma Assert (False
2300 or else NT (N).Nkind = N_Aggregate
2301 or else NT (N).Nkind = N_Extension_Aggregate);
2302 return Flag17 (N);
2303 end Null_Record_Present;
2304
2305 function Object_Definition
2306 (N : Node_Id) return Node_Id is
2307 begin
2308 pragma Assert (False
2309 or else NT (N).Nkind = N_Object_Declaration);
2310 return Node4 (N);
2311 end Object_Definition;
2312
2313 function Of_Present
2314 (N : Node_Id) return Boolean is
2315 begin
2316 pragma Assert (False
2317 or else NT (N).Nkind = N_Iterator_Specification);
2318 return Flag16 (N);
2319 end Of_Present;
2320
2321 function Original_Discriminant
2322 (N : Node_Id) return Node_Id is
2323 begin
2324 pragma Assert (False
2325 or else NT (N).Nkind = N_Identifier);
2326 return Node2 (N);
2327 end Original_Discriminant;
2328
2329 function Original_Entity
2330 (N : Node_Id) return Entity_Id is
2331 begin
2332 pragma Assert (False
2333 or else NT (N).Nkind = N_Integer_Literal
2334 or else NT (N).Nkind = N_Real_Literal);
2335 return Node2 (N);
2336 end Original_Entity;
2337
2338 function Others_Discrete_Choices
2339 (N : Node_Id) return List_Id is
2340 begin
2341 pragma Assert (False
2342 or else NT (N).Nkind = N_Others_Choice);
2343 return List1 (N);
2344 end Others_Discrete_Choices;
2345
2346 function Out_Present
2347 (N : Node_Id) return Boolean is
2348 begin
2349 pragma Assert (False
2350 or else NT (N).Nkind = N_Formal_Object_Declaration
2351 or else NT (N).Nkind = N_Parameter_Specification);
2352 return Flag17 (N);
2353 end Out_Present;
2354
2355 function Parameter_Associations
2356 (N : Node_Id) return List_Id is
2357 begin
2358 pragma Assert (False
2359 or else NT (N).Nkind = N_Entry_Call_Statement
2360 or else NT (N).Nkind = N_Function_Call
2361 or else NT (N).Nkind = N_Procedure_Call_Statement);
2362 return List3 (N);
2363 end Parameter_Associations;
2364
2365 function Parameter_List_Truncated
2366 (N : Node_Id) return Boolean is
2367 begin
2368 pragma Assert (False
2369 or else NT (N).Nkind = N_Function_Call
2370 or else NT (N).Nkind = N_Procedure_Call_Statement);
2371 return Flag17 (N);
2372 end Parameter_List_Truncated;
2373
2374 function Parameter_Specifications
2375 (N : Node_Id) return List_Id is
2376 begin
2377 pragma Assert (False
2378 or else NT (N).Nkind = N_Accept_Statement
2379 or else NT (N).Nkind = N_Access_Function_Definition
2380 or else NT (N).Nkind = N_Access_Procedure_Definition
2381 or else NT (N).Nkind = N_Entry_Body_Formal_Part
2382 or else NT (N).Nkind = N_Entry_Declaration
2383 or else NT (N).Nkind = N_Function_Specification
2384 or else NT (N).Nkind = N_Procedure_Specification);
2385 return List3 (N);
2386 end Parameter_Specifications;
2387
2388 function Parameter_Type
2389 (N : Node_Id) return Node_Id is
2390 begin
2391 pragma Assert (False
2392 or else NT (N).Nkind = N_Parameter_Specification);
2393 return Node2 (N);
2394 end Parameter_Type;
2395
2396 function Parent_Spec
2397 (N : Node_Id) return Node_Id is
2398 begin
2399 pragma Assert (False
2400 or else NT (N).Nkind = N_Function_Instantiation
2401 or else NT (N).Nkind = N_Generic_Function_Renaming_Declaration
2402 or else NT (N).Nkind = N_Generic_Package_Declaration
2403 or else NT (N).Nkind = N_Generic_Package_Renaming_Declaration
2404 or else NT (N).Nkind = N_Generic_Procedure_Renaming_Declaration
2405 or else NT (N).Nkind = N_Generic_Subprogram_Declaration
2406 or else NT (N).Nkind = N_Package_Declaration
2407 or else NT (N).Nkind = N_Package_Instantiation
2408 or else NT (N).Nkind = N_Package_Renaming_Declaration
2409 or else NT (N).Nkind = N_Procedure_Instantiation
2410 or else NT (N).Nkind = N_Subprogram_Declaration
2411 or else NT (N).Nkind = N_Subprogram_Renaming_Declaration);
2412 return Node4 (N);
2413 end Parent_Spec;
2414
2415 function Position
2416 (N : Node_Id) return Node_Id is
2417 begin
2418 pragma Assert (False
2419 or else NT (N).Nkind = N_Component_Clause);
2420 return Node2 (N);
2421 end Position;
2422
2423 function Pragma_Argument_Associations
2424 (N : Node_Id) return List_Id is
2425 begin
2426 pragma Assert (False
2427 or else NT (N).Nkind = N_Pragma);
2428 return List2 (N);
2429 end Pragma_Argument_Associations;
2430
2431 function Pragma_Identifier
2432 (N : Node_Id) return Node_Id is
2433 begin
2434 pragma Assert (False
2435 or else NT (N).Nkind = N_Pragma);
2436 return Node4 (N);
2437 end Pragma_Identifier;
2438
2439 function Pragmas_After
2440 (N : Node_Id) return List_Id is
2441 begin
2442 pragma Assert (False
2443 or else NT (N).Nkind = N_Compilation_Unit_Aux
2444 or else NT (N).Nkind = N_Terminate_Alternative);
2445 return List5 (N);
2446 end Pragmas_After;
2447
2448 function Pragmas_Before
2449 (N : Node_Id) return List_Id is
2450 begin
2451 pragma Assert (False
2452 or else NT (N).Nkind = N_Accept_Alternative
2453 or else NT (N).Nkind = N_Delay_Alternative
2454 or else NT (N).Nkind = N_Entry_Call_Alternative
2455 or else NT (N).Nkind = N_Mod_Clause
2456 or else NT (N).Nkind = N_Terminate_Alternative
2457 or else NT (N).Nkind = N_Triggering_Alternative);
2458 return List4 (N);
2459 end Pragmas_Before;
2460
2461 function Prefix
2462 (N : Node_Id) return Node_Id is
2463 begin
2464 pragma Assert (False
2465 or else NT (N).Nkind = N_Attribute_Reference
2466 or else NT (N).Nkind = N_Expanded_Name
2467 or else NT (N).Nkind = N_Explicit_Dereference
2468 or else NT (N).Nkind = N_Indexed_Component
2469 or else NT (N).Nkind = N_Reference
2470 or else NT (N).Nkind = N_Selected_Component
2471 or else NT (N).Nkind = N_Slice);
2472 return Node3 (N);
2473 end Prefix;
2474
2475 function Premature_Use
2476 (N : Node_Id) return Node_Id is
2477 begin
2478 pragma Assert (False
2479 or else NT (N).Nkind = N_Incomplete_Type_Declaration);
2480 return Node5 (N);
2481 end Premature_Use;
2482
2483 function Present_Expr
2484 (N : Node_Id) return Uint is
2485 begin
2486 pragma Assert (False
2487 or else NT (N).Nkind = N_Variant);
2488 return Uint3 (N);
2489 end Present_Expr;
2490
2491 function Prev_Ids
2492 (N : Node_Id) return Boolean is
2493 begin
2494 pragma Assert (False
2495 or else NT (N).Nkind = N_Component_Declaration
2496 or else NT (N).Nkind = N_Discriminant_Specification
2497 or else NT (N).Nkind = N_Exception_Declaration
2498 or else NT (N).Nkind = N_Formal_Object_Declaration
2499 or else NT (N).Nkind = N_Number_Declaration
2500 or else NT (N).Nkind = N_Object_Declaration
2501 or else NT (N).Nkind = N_Parameter_Specification);
2502 return Flag6 (N);
2503 end Prev_Ids;
2504
2505 function Print_In_Hex
2506 (N : Node_Id) return Boolean is
2507 begin
2508 pragma Assert (False
2509 or else NT (N).Nkind = N_Integer_Literal);
2510 return Flag13 (N);
2511 end Print_In_Hex;
2512
2513 function Private_Declarations
2514 (N : Node_Id) return List_Id is
2515 begin
2516 pragma Assert (False
2517 or else NT (N).Nkind = N_Package_Specification
2518 or else NT (N).Nkind = N_Protected_Definition
2519 or else NT (N).Nkind = N_Task_Definition);
2520 return List3 (N);
2521 end Private_Declarations;
2522
2523 function Private_Present
2524 (N : Node_Id) return Boolean is
2525 begin
2526 pragma Assert (False
2527 or else NT (N).Nkind = N_Compilation_Unit
2528 or else NT (N).Nkind = N_Formal_Derived_Type_Definition
2529 or else NT (N).Nkind = N_With_Clause);
2530 return Flag15 (N);
2531 end Private_Present;
2532
2533 function Procedure_To_Call
2534 (N : Node_Id) return Node_Id is
2535 begin
2536 pragma Assert (False
2537 or else NT (N).Nkind = N_Allocator
2538 or else NT (N).Nkind = N_Extended_Return_Statement
2539 or else NT (N).Nkind = N_Free_Statement
2540 or else NT (N).Nkind = N_Return_Statement);
2541 return Node2 (N);
2542 end Procedure_To_Call;
2543
2544 function Proper_Body
2545 (N : Node_Id) return Node_Id is
2546 begin
2547 pragma Assert (False
2548 or else NT (N).Nkind = N_Subunit);
2549 return Node1 (N);
2550 end Proper_Body;
2551
2552 function Protected_Definition
2553 (N : Node_Id) return Node_Id is
2554 begin
2555 pragma Assert (False
2556 or else NT (N).Nkind = N_Protected_Type_Declaration
2557 or else NT (N).Nkind = N_Single_Protected_Declaration);
2558 return Node3 (N);
2559 end Protected_Definition;
2560
2561 function Protected_Present
2562 (N : Node_Id) return Boolean is
2563 begin
2564 pragma Assert (False
2565 or else NT (N).Nkind = N_Access_Function_Definition
2566 or else NT (N).Nkind = N_Access_Procedure_Definition
2567 or else NT (N).Nkind = N_Derived_Type_Definition
2568 or else NT (N).Nkind = N_Record_Definition);
2569 return Flag6 (N);
2570 end Protected_Present;
2571
2572 function Raises_Constraint_Error
2573 (N : Node_Id) return Boolean is
2574 begin
2575 pragma Assert (False
2576 or else NT (N).Nkind in N_Subexpr);
2577 return Flag7 (N);
2578 end Raises_Constraint_Error;
2579
2580 function Range_Constraint
2581 (N : Node_Id) return Node_Id is
2582 begin
2583 pragma Assert (False
2584 or else NT (N).Nkind = N_Delta_Constraint
2585 or else NT (N).Nkind = N_Digits_Constraint);
2586 return Node4 (N);
2587 end Range_Constraint;
2588
2589 function Range_Expression
2590 (N : Node_Id) return Node_Id is
2591 begin
2592 pragma Assert (False
2593 or else NT (N).Nkind = N_Range_Constraint);
2594 return Node4 (N);
2595 end Range_Expression;
2596
2597 function Real_Range_Specification
2598 (N : Node_Id) return Node_Id is
2599 begin
2600 pragma Assert (False
2601 or else NT (N).Nkind = N_Decimal_Fixed_Point_Definition
2602 or else NT (N).Nkind = N_Floating_Point_Definition
2603 or else NT (N).Nkind = N_Ordinary_Fixed_Point_Definition);
2604 return Node4 (N);
2605 end Real_Range_Specification;
2606
2607 function Realval
2608 (N : Node_Id) return Ureal is
2609 begin
2610 pragma Assert (False
2611 or else NT (N).Nkind = N_Real_Literal);
2612 return Ureal3 (N);
2613 end Realval;
2614
2615 function Reason
2616 (N : Node_Id) return Uint is
2617 begin
2618 pragma Assert (False
2619 or else NT (N).Nkind = N_Raise_Constraint_Error
2620 or else NT (N).Nkind = N_Raise_Program_Error
2621 or else NT (N).Nkind = N_Raise_Storage_Error);
2622 return Uint3 (N);
2623 end Reason;
2624
2625 function Record_Extension_Part
2626 (N : Node_Id) return Node_Id is
2627 begin
2628 pragma Assert (False
2629 or else NT (N).Nkind = N_Derived_Type_Definition);
2630 return Node3 (N);
2631 end Record_Extension_Part;
2632
2633 function Redundant_Use
2634 (N : Node_Id) return Boolean is
2635 begin
2636 pragma Assert (False
2637 or else NT (N).Nkind = N_Attribute_Reference
2638 or else NT (N).Nkind = N_Expanded_Name
2639 or else NT (N).Nkind = N_Identifier);
2640 return Flag13 (N);
2641 end Redundant_Use;
2642
2643 function Renaming_Exception
2644 (N : Node_Id) return Node_Id is
2645 begin
2646 pragma Assert (False
2647 or else NT (N).Nkind = N_Exception_Declaration);
2648 return Node2 (N);
2649 end Renaming_Exception;
2650
2651 function Result_Definition
2652 (N : Node_Id) return Node_Id is
2653 begin
2654 pragma Assert (False
2655 or else NT (N).Nkind = N_Access_Function_Definition
2656 or else NT (N).Nkind = N_Function_Specification);
2657 return Node4 (N);
2658 end Result_Definition;
2659
2660 function Return_Object_Declarations
2661 (N : Node_Id) return List_Id is
2662 begin
2663 pragma Assert (False
2664 or else NT (N).Nkind = N_Extended_Return_Statement);
2665 return List3 (N);
2666 end Return_Object_Declarations;
2667
2668 function Return_Statement_Entity
2669 (N : Node_Id) return Node_Id is
2670 begin
2671 pragma Assert (False
2672 or else NT (N).Nkind = N_Extended_Return_Statement
2673 or else NT (N).Nkind = N_Return_Statement);
2674 return Node5 (N);
2675 end Return_Statement_Entity;
2676
2677 function Reverse_Present
2678 (N : Node_Id) return Boolean is
2679 begin
2680 pragma Assert (False
2681 or else NT (N).Nkind = N_Iterator_Specification
2682 or else NT (N).Nkind = N_Loop_Parameter_Specification);
2683 return Flag15 (N);
2684 end Reverse_Present;
2685
2686 function Right_Opnd
2687 (N : Node_Id) return Node_Id is
2688 begin
2689 pragma Assert (False
2690 or else NT (N).Nkind in N_Op
2691 or else NT (N).Nkind = N_And_Then
2692 or else NT (N).Nkind = N_In
2693 or else NT (N).Nkind = N_Not_In
2694 or else NT (N).Nkind = N_Or_Else);
2695 return Node3 (N);
2696 end Right_Opnd;
2697
2698 function Rounded_Result
2699 (N : Node_Id) return Boolean is
2700 begin
2701 pragma Assert (False
2702 or else NT (N).Nkind = N_Op_Divide
2703 or else NT (N).Nkind = N_Op_Multiply
2704 or else NT (N).Nkind = N_Type_Conversion);
2705 return Flag18 (N);
2706 end Rounded_Result;
2707
2708 function SCIL_Controlling_Tag
2709 (N : Node_Id) return Node_Id is
2710 begin
2711 pragma Assert (False
2712 or else NT (N).Nkind = N_SCIL_Dispatching_Call);
2713 return Node5 (N);
2714 end SCIL_Controlling_Tag;
2715
2716 function SCIL_Entity
2717 (N : Node_Id) return Node_Id is
2718 begin
2719 pragma Assert (False
2720 or else NT (N).Nkind = N_SCIL_Dispatch_Table_Tag_Init
2721 or else NT (N).Nkind = N_SCIL_Dispatching_Call
2722 or else NT (N).Nkind = N_SCIL_Membership_Test);
2723 return Node4 (N);
2724 end SCIL_Entity;
2725
2726 function SCIL_Tag_Value
2727 (N : Node_Id) return Node_Id is
2728 begin
2729 pragma Assert (False
2730 or else NT (N).Nkind = N_SCIL_Membership_Test);
2731 return Node5 (N);
2732 end SCIL_Tag_Value;
2733
2734 function SCIL_Target_Prim
2735 (N : Node_Id) return Node_Id is
2736 begin
2737 pragma Assert (False
2738 or else NT (N).Nkind = N_SCIL_Dispatching_Call);
2739 return Node2 (N);
2740 end SCIL_Target_Prim;
2741
2742 function Scope
2743 (N : Node_Id) return Node_Id is
2744 begin
2745 pragma Assert (False
2746 or else NT (N).Nkind = N_Defining_Character_Literal
2747 or else NT (N).Nkind = N_Defining_Identifier
2748 or else NT (N).Nkind = N_Defining_Operator_Symbol);
2749 return Node3 (N);
2750 end Scope;
2751
2752 function Select_Alternatives
2753 (N : Node_Id) return List_Id is
2754 begin
2755 pragma Assert (False
2756 or else NT (N).Nkind = N_Selective_Accept);
2757 return List1 (N);
2758 end Select_Alternatives;
2759
2760 function Selector_Name
2761 (N : Node_Id) return Node_Id is
2762 begin
2763 pragma Assert (False
2764 or else NT (N).Nkind = N_Expanded_Name
2765 or else NT (N).Nkind = N_Generic_Association
2766 or else NT (N).Nkind = N_Parameter_Association
2767 or else NT (N).Nkind = N_Selected_Component);
2768 return Node2 (N);
2769 end Selector_Name;
2770
2771 function Selector_Names
2772 (N : Node_Id) return List_Id is
2773 begin
2774 pragma Assert (False
2775 or else NT (N).Nkind = N_Discriminant_Association);
2776 return List1 (N);
2777 end Selector_Names;
2778
2779 function Shift_Count_OK
2780 (N : Node_Id) return Boolean is
2781 begin
2782 pragma Assert (False
2783 or else NT (N).Nkind = N_Op_Rotate_Left
2784 or else NT (N).Nkind = N_Op_Rotate_Right
2785 or else NT (N).Nkind = N_Op_Shift_Left
2786 or else NT (N).Nkind = N_Op_Shift_Right
2787 or else NT (N).Nkind = N_Op_Shift_Right_Arithmetic);
2788 return Flag4 (N);
2789 end Shift_Count_OK;
2790
2791 function Source_Type
2792 (N : Node_Id) return Entity_Id is
2793 begin
2794 pragma Assert (False
2795 or else NT (N).Nkind = N_Validate_Unchecked_Conversion);
2796 return Node1 (N);
2797 end Source_Type;
2798
2799 function Spec_PPC_List
2800 (N : Node_Id) return Node_Id is
2801 begin
2802 pragma Assert (False
2803 or else NT (N).Nkind = N_Contract);
2804 return Node1 (N);
2805 end Spec_PPC_List;
2806
2807 function Spec_TC_List
2808 (N : Node_Id) return Node_Id is
2809 begin
2810 pragma Assert (False
2811 or else NT (N).Nkind = N_Contract);
2812 return Node2 (N);
2813 end Spec_TC_List;
2814
2815 function Specification
2816 (N : Node_Id) return Node_Id is
2817 begin
2818 pragma Assert (False
2819 or else NT (N).Nkind = N_Abstract_Subprogram_Declaration
2820 or else NT (N).Nkind = N_Expression_Function
2821 or else NT (N).Nkind = N_Formal_Abstract_Subprogram_Declaration
2822 or else NT (N).Nkind = N_Formal_Concrete_Subprogram_Declaration
2823 or else NT (N).Nkind = N_Generic_Package_Declaration
2824 or else NT (N).Nkind = N_Generic_Subprogram_Declaration
2825 or else NT (N).Nkind = N_Package_Declaration
2826 or else NT (N).Nkind = N_Subprogram_Body
2827 or else NT (N).Nkind = N_Subprogram_Body_Stub
2828 or else NT (N).Nkind = N_Subprogram_Declaration
2829 or else NT (N).Nkind = N_Subprogram_Renaming_Declaration);
2830 return Node1 (N);
2831 end Specification;
2832
2833 function Split_PPC
2834 (N : Node_Id) return Boolean is
2835 begin
2836 pragma Assert (False
2837 or else NT (N).Nkind = N_Aspect_Specification
2838 or else NT (N).Nkind = N_Pragma);
2839 return Flag17 (N);
2840 end Split_PPC;
2841
2842 function Statements
2843 (N : Node_Id) return List_Id is
2844 begin
2845 pragma Assert (False
2846 or else NT (N).Nkind = N_Abortable_Part
2847 or else NT (N).Nkind = N_Accept_Alternative
2848 or else NT (N).Nkind = N_Case_Statement_Alternative
2849 or else NT (N).Nkind = N_Delay_Alternative
2850 or else NT (N).Nkind = N_Entry_Call_Alternative
2851 or else NT (N).Nkind = N_Exception_Handler
2852 or else NT (N).Nkind = N_Handled_Sequence_Of_Statements
2853 or else NT (N).Nkind = N_Loop_Statement
2854 or else NT (N).Nkind = N_Triggering_Alternative);
2855 return List3 (N);
2856 end Statements;
2857
2858 function Static_Processing_OK
2859 (N : Node_Id) return Boolean is
2860 begin
2861 pragma Assert (False
2862 or else NT (N).Nkind = N_Aggregate);
2863 return Flag4 (N);
2864 end Static_Processing_OK;
2865
2866 function Storage_Pool
2867 (N : Node_Id) return Node_Id is
2868 begin
2869 pragma Assert (False
2870 or else NT (N).Nkind = N_Allocator
2871 or else NT (N).Nkind = N_Extended_Return_Statement
2872 or else NT (N).Nkind = N_Free_Statement
2873 or else NT (N).Nkind = N_Return_Statement);
2874 return Node1 (N);
2875 end Storage_Pool;
2876
2877 function Subpool_Handle_Name
2878 (N : Node_Id) return Node_Id is
2879 begin
2880 pragma Assert (False
2881 or else NT (N).Nkind = N_Allocator);
2882 return Node4 (N);
2883 end Subpool_Handle_Name;
2884
2885 function Strval
2886 (N : Node_Id) return String_Id is
2887 begin
2888 pragma Assert (False
2889 or else NT (N).Nkind = N_Operator_Symbol
2890 or else NT (N).Nkind = N_String_Literal);
2891 return Str3 (N);
2892 end Strval;
2893
2894 function Subtype_Indication
2895 (N : Node_Id) return Node_Id is
2896 begin
2897 pragma Assert (False
2898 or else NT (N).Nkind = N_Access_To_Object_Definition
2899 or else NT (N).Nkind = N_Component_Definition
2900 or else NT (N).Nkind = N_Derived_Type_Definition
2901 or else NT (N).Nkind = N_Iterator_Specification
2902 or else NT (N).Nkind = N_Private_Extension_Declaration
2903 or else NT (N).Nkind = N_Subtype_Declaration);
2904 return Node5 (N);
2905 end Subtype_Indication;
2906
2907 function Suppress_Assignment_Checks
2908 (N : Node_Id) return Boolean is
2909 begin
2910 pragma Assert (False
2911 or else NT (N).Nkind = N_Assignment_Statement
2912 or else NT (N).Nkind = N_Object_Declaration);
2913 return Flag18 (N);
2914 end Suppress_Assignment_Checks;
2915
2916 function Suppress_Loop_Warnings
2917 (N : Node_Id) return Boolean is
2918 begin
2919 pragma Assert (False
2920 or else NT (N).Nkind = N_Loop_Statement);
2921 return Flag17 (N);
2922 end Suppress_Loop_Warnings;
2923
2924 function Subtype_Mark
2925 (N : Node_Id) return Node_Id is
2926 begin
2927 pragma Assert (False
2928 or else NT (N).Nkind = N_Access_Definition
2929 or else NT (N).Nkind = N_Formal_Derived_Type_Definition
2930 or else NT (N).Nkind = N_Formal_Object_Declaration
2931 or else NT (N).Nkind = N_Object_Renaming_Declaration
2932 or else NT (N).Nkind = N_Qualified_Expression
2933 or else NT (N).Nkind = N_Subtype_Indication
2934 or else NT (N).Nkind = N_Type_Conversion
2935 or else NT (N).Nkind = N_Unchecked_Type_Conversion);
2936 return Node4 (N);
2937 end Subtype_Mark;
2938
2939 function Subtype_Marks
2940 (N : Node_Id) return List_Id is
2941 begin
2942 pragma Assert (False
2943 or else NT (N).Nkind = N_Unconstrained_Array_Definition
2944 or else NT (N).Nkind = N_Use_Type_Clause);
2945 return List2 (N);
2946 end Subtype_Marks;
2947
2948 function Synchronized_Present
2949 (N : Node_Id) return Boolean is
2950 begin
2951 pragma Assert (False
2952 or else NT (N).Nkind = N_Derived_Type_Definition
2953 or else NT (N).Nkind = N_Formal_Derived_Type_Definition
2954 or else NT (N).Nkind = N_Private_Extension_Declaration
2955 or else NT (N).Nkind = N_Record_Definition);
2956 return Flag7 (N);
2957 end Synchronized_Present;
2958
2959 function Tagged_Present
2960 (N : Node_Id) return Boolean is
2961 begin
2962 pragma Assert (False
2963 or else NT (N).Nkind = N_Formal_Incomplete_Type_Definition
2964 or else NT (N).Nkind = N_Formal_Private_Type_Definition
2965 or else NT (N).Nkind = N_Incomplete_Type_Declaration
2966 or else NT (N).Nkind = N_Private_Type_Declaration
2967 or else NT (N).Nkind = N_Record_Definition);
2968 return Flag15 (N);
2969 end Tagged_Present;
2970
2971 function Target_Type
2972 (N : Node_Id) return Entity_Id is
2973 begin
2974 pragma Assert (False
2975 or else NT (N).Nkind = N_Validate_Unchecked_Conversion);
2976 return Node2 (N);
2977 end Target_Type;
2978
2979 function Task_Definition
2980 (N : Node_Id) return Node_Id is
2981 begin
2982 pragma Assert (False
2983 or else NT (N).Nkind = N_Single_Task_Declaration
2984 or else NT (N).Nkind = N_Task_Type_Declaration);
2985 return Node3 (N);
2986 end Task_Definition;
2987
2988 function Task_Present
2989 (N : Node_Id) return Boolean is
2990 begin
2991 pragma Assert (False
2992 or else NT (N).Nkind = N_Derived_Type_Definition
2993 or else NT (N).Nkind = N_Record_Definition);
2994 return Flag5 (N);
2995 end Task_Present;
2996
2997 function Then_Actions
2998 (N : Node_Id) return List_Id is
2999 begin
3000 pragma Assert (False
3001 or else NT (N).Nkind = N_Conditional_Expression);
3002 return List2 (N);
3003 end Then_Actions;
3004
3005 function Then_Statements
3006 (N : Node_Id) return List_Id is
3007 begin
3008 pragma Assert (False
3009 or else NT (N).Nkind = N_Elsif_Part
3010 or else NT (N).Nkind = N_If_Statement);
3011 return List2 (N);
3012 end Then_Statements;
3013
3014 function Treat_Fixed_As_Integer
3015 (N : Node_Id) return Boolean is
3016 begin
3017 pragma Assert (False
3018 or else NT (N).Nkind = N_Op_Divide
3019 or else NT (N).Nkind = N_Op_Mod
3020 or else NT (N).Nkind = N_Op_Multiply
3021 or else NT (N).Nkind = N_Op_Rem);
3022 return Flag14 (N);
3023 end Treat_Fixed_As_Integer;
3024
3025 function Triggering_Alternative
3026 (N : Node_Id) return Node_Id is
3027 begin
3028 pragma Assert (False
3029 or else NT (N).Nkind = N_Asynchronous_Select);
3030 return Node1 (N);
3031 end Triggering_Alternative;
3032
3033 function Triggering_Statement
3034 (N : Node_Id) return Node_Id is
3035 begin
3036 pragma Assert (False
3037 or else NT (N).Nkind = N_Triggering_Alternative);
3038 return Node1 (N);
3039 end Triggering_Statement;
3040
3041 function TSS_Elist
3042 (N : Node_Id) return Elist_Id is
3043 begin
3044 pragma Assert (False
3045 or else NT (N).Nkind = N_Freeze_Entity);
3046 return Elist3 (N);
3047 end TSS_Elist;
3048
3049 function Type_Definition
3050 (N : Node_Id) return Node_Id is
3051 begin
3052 pragma Assert (False
3053 or else NT (N).Nkind = N_Full_Type_Declaration);
3054 return Node3 (N);
3055 end Type_Definition;
3056
3057 function Unit
3058 (N : Node_Id) return Node_Id is
3059 begin
3060 pragma Assert (False
3061 or else NT (N).Nkind = N_Compilation_Unit);
3062 return Node2 (N);
3063 end Unit;
3064
3065 function Unknown_Discriminants_Present
3066 (N : Node_Id) return Boolean is
3067 begin
3068 pragma Assert (False
3069 or else NT (N).Nkind = N_Formal_Type_Declaration
3070 or else NT (N).Nkind = N_Incomplete_Type_Declaration
3071 or else NT (N).Nkind = N_Private_Extension_Declaration
3072 or else NT (N).Nkind = N_Private_Type_Declaration);
3073 return Flag13 (N);
3074 end Unknown_Discriminants_Present;
3075
3076 function Unreferenced_In_Spec
3077 (N : Node_Id) return Boolean is
3078 begin
3079 pragma Assert (False
3080 or else NT (N).Nkind = N_With_Clause);
3081 return Flag7 (N);
3082 end Unreferenced_In_Spec;
3083
3084 function Variant_Part
3085 (N : Node_Id) return Node_Id is
3086 begin
3087 pragma Assert (False
3088 or else NT (N).Nkind = N_Component_List);
3089 return Node4 (N);
3090 end Variant_Part;
3091
3092 function Variants
3093 (N : Node_Id) return List_Id is
3094 begin
3095 pragma Assert (False
3096 or else NT (N).Nkind = N_Variant_Part);
3097 return List1 (N);
3098 end Variants;
3099
3100 function Visible_Declarations
3101 (N : Node_Id) return List_Id is
3102 begin
3103 pragma Assert (False
3104 or else NT (N).Nkind = N_Package_Specification
3105 or else NT (N).Nkind = N_Protected_Definition
3106 or else NT (N).Nkind = N_Task_Definition);
3107 return List2 (N);
3108 end Visible_Declarations;
3109
3110 function Used_Operations
3111 (N : Node_Id) return Elist_Id is
3112 begin
3113 pragma Assert (False
3114 or else NT (N).Nkind = N_Use_Type_Clause);
3115 return Elist5 (N);
3116 end Used_Operations;
3117
3118 function Was_Originally_Stub
3119 (N : Node_Id) return Boolean is
3120 begin
3121 pragma Assert (False
3122 or else NT (N).Nkind = N_Package_Body
3123 or else NT (N).Nkind = N_Protected_Body
3124 or else NT (N).Nkind = N_Subprogram_Body
3125 or else NT (N).Nkind = N_Task_Body);
3126 return Flag13 (N);
3127 end Was_Originally_Stub;
3128
3129 function Withed_Body
3130 (N : Node_Id) return Node_Id is
3131 begin
3132 pragma Assert (False
3133 or else NT (N).Nkind = N_With_Clause);
3134 return Node1 (N);
3135 end Withed_Body;
3136
3137 --------------------------
3138 -- Field Set Procedures --
3139 --------------------------
3140
3141 procedure Set_ABE_Is_Certain
3142 (N : Node_Id; Val : Boolean := True) is
3143 begin
3144 pragma Assert (False
3145 or else NT (N).Nkind = N_Formal_Package_Declaration
3146 or else NT (N).Nkind = N_Function_Call
3147 or else NT (N).Nkind = N_Function_Instantiation
3148 or else NT (N).Nkind = N_Package_Instantiation
3149 or else NT (N).Nkind = N_Procedure_Call_Statement
3150 or else NT (N).Nkind = N_Procedure_Instantiation);
3151 Set_Flag18 (N, Val);
3152 end Set_ABE_Is_Certain;
3153
3154 procedure Set_Abort_Present
3155 (N : Node_Id; Val : Boolean := True) is
3156 begin
3157 pragma Assert (False
3158 or else NT (N).Nkind = N_Requeue_Statement);
3159 Set_Flag15 (N, Val);
3160 end Set_Abort_Present;
3161
3162 procedure Set_Abortable_Part
3163 (N : Node_Id; Val : Node_Id) is
3164 begin
3165 pragma Assert (False
3166 or else NT (N).Nkind = N_Asynchronous_Select);
3167 Set_Node2_With_Parent (N, Val);
3168 end Set_Abortable_Part;
3169
3170 procedure Set_Abstract_Present
3171 (N : Node_Id; Val : Boolean := True) is
3172 begin
3173 pragma Assert (False
3174 or else NT (N).Nkind = N_Derived_Type_Definition
3175 or else NT (N).Nkind = N_Formal_Derived_Type_Definition
3176 or else NT (N).Nkind = N_Formal_Private_Type_Definition
3177 or else NT (N).Nkind = N_Private_Extension_Declaration
3178 or else NT (N).Nkind = N_Private_Type_Declaration
3179 or else NT (N).Nkind = N_Record_Definition);
3180 Set_Flag4 (N, Val);
3181 end Set_Abstract_Present;
3182
3183 procedure Set_Accept_Handler_Records
3184 (N : Node_Id; Val : List_Id) is
3185 begin
3186 pragma Assert (False
3187 or else NT (N).Nkind = N_Accept_Alternative);
3188 Set_List5 (N, Val); -- semantic field, no parent set
3189 end Set_Accept_Handler_Records;
3190
3191 procedure Set_Accept_Statement
3192 (N : Node_Id; Val : Node_Id) is
3193 begin
3194 pragma Assert (False
3195 or else NT (N).Nkind = N_Accept_Alternative);
3196 Set_Node2_With_Parent (N, Val);
3197 end Set_Accept_Statement;
3198
3199 procedure Set_Access_Definition
3200 (N : Node_Id; Val : Node_Id) is
3201 begin
3202 pragma Assert (False
3203 or else NT (N).Nkind = N_Component_Definition
3204 or else NT (N).Nkind = N_Formal_Object_Declaration
3205 or else NT (N).Nkind = N_Object_Renaming_Declaration);
3206 Set_Node3_With_Parent (N, Val);
3207 end Set_Access_Definition;
3208
3209 procedure Set_Access_To_Subprogram_Definition
3210 (N : Node_Id; Val : Node_Id) is
3211 begin
3212 pragma Assert (False
3213 or else NT (N).Nkind = N_Access_Definition);
3214 Set_Node3_With_Parent (N, Val);
3215 end Set_Access_To_Subprogram_Definition;
3216
3217 procedure Set_Access_Types_To_Process
3218 (N : Node_Id; Val : Elist_Id) is
3219 begin
3220 pragma Assert (False
3221 or else NT (N).Nkind = N_Freeze_Entity);
3222 Set_Elist2 (N, Val); -- semantic field, no parent set
3223 end Set_Access_Types_To_Process;
3224
3225 procedure Set_Actions
3226 (N : Node_Id; Val : List_Id) is
3227 begin
3228 pragma Assert (False
3229 or else NT (N).Nkind = N_And_Then
3230 or else NT (N).Nkind = N_Case_Expression_Alternative
3231 or else NT (N).Nkind = N_Compilation_Unit_Aux
3232 or else NT (N).Nkind = N_Expression_With_Actions
3233 or else NT (N).Nkind = N_Freeze_Entity
3234 or else NT (N).Nkind = N_Or_Else);
3235 Set_List1_With_Parent (N, Val);
3236 end Set_Actions;
3237
3238 procedure Set_Activation_Chain_Entity
3239 (N : Node_Id; Val : Node_Id) is
3240 begin
3241 pragma Assert (False
3242 or else NT (N).Nkind = N_Block_Statement
3243 or else NT (N).Nkind = N_Entry_Body
3244 or else NT (N).Nkind = N_Generic_Package_Declaration
3245 or else NT (N).Nkind = N_Package_Declaration
3246 or else NT (N).Nkind = N_Subprogram_Body
3247 or else NT (N).Nkind = N_Task_Body);
3248 Set_Node3 (N, Val); -- semantic field, no parent set
3249 end Set_Activation_Chain_Entity;
3250
3251 procedure Set_Acts_As_Spec
3252 (N : Node_Id; Val : Boolean := True) is
3253 begin
3254 pragma Assert (False
3255 or else NT (N).Nkind = N_Compilation_Unit
3256 or else NT (N).Nkind = N_Subprogram_Body);
3257 Set_Flag4 (N, Val);
3258 end Set_Acts_As_Spec;
3259
3260 procedure Set_Actual_Designated_Subtype
3261 (N : Node_Id; Val : Node_Id) is
3262 begin
3263 pragma Assert (False
3264 or else NT (N).Nkind = N_Explicit_Dereference
3265 or else NT (N).Nkind = N_Free_Statement);
3266 Set_Node4 (N, Val);
3267 end Set_Actual_Designated_Subtype;
3268
3269 procedure Set_Address_Warning_Posted
3270 (N : Node_Id; Val : Boolean := True) is
3271 begin
3272 pragma Assert (False
3273 or else NT (N).Nkind = N_Attribute_Definition_Clause);
3274 Set_Flag18 (N, Val);
3275 end Set_Address_Warning_Posted;
3276
3277 procedure Set_Aggregate_Bounds
3278 (N : Node_Id; Val : Node_Id) is
3279 begin
3280 pragma Assert (False
3281 or else NT (N).Nkind = N_Aggregate);
3282 Set_Node3 (N, Val); -- semantic field, no parent set
3283 end Set_Aggregate_Bounds;
3284
3285 procedure Set_Aliased_Present
3286 (N : Node_Id; Val : Boolean := True) is
3287 begin
3288 pragma Assert (False
3289 or else NT (N).Nkind = N_Component_Definition
3290 or else NT (N).Nkind = N_Object_Declaration
3291 or else NT (N).Nkind = N_Parameter_Specification);
3292 Set_Flag4 (N, Val);
3293 end Set_Aliased_Present;
3294
3295 procedure Set_All_Others
3296 (N : Node_Id; Val : Boolean := True) is
3297 begin
3298 pragma Assert (False
3299 or else NT (N).Nkind = N_Others_Choice);
3300 Set_Flag11 (N, Val);
3301 end Set_All_Others;
3302
3303 procedure Set_All_Present
3304 (N : Node_Id; Val : Boolean := True) is
3305 begin
3306 pragma Assert (False
3307 or else NT (N).Nkind = N_Access_Definition
3308 or else NT (N).Nkind = N_Access_To_Object_Definition
3309 or else NT (N).Nkind = N_Quantified_Expression
3310 or else NT (N).Nkind = N_Use_Type_Clause);
3311 Set_Flag15 (N, Val);
3312 end Set_All_Present;
3313
3314 procedure Set_Alternatives
3315 (N : Node_Id; Val : List_Id) is
3316 begin
3317 pragma Assert (False
3318 or else NT (N).Nkind = N_Case_Expression
3319 or else NT (N).Nkind = N_Case_Statement
3320 or else NT (N).Nkind = N_In
3321 or else NT (N).Nkind = N_Not_In);
3322 Set_List4_With_Parent (N, Val);
3323 end Set_Alternatives;
3324
3325 procedure Set_Ancestor_Part
3326 (N : Node_Id; Val : Node_Id) is
3327 begin
3328 pragma Assert (False
3329 or else NT (N).Nkind = N_Extension_Aggregate);
3330 Set_Node3_With_Parent (N, Val);
3331 end Set_Ancestor_Part;
3332
3333 procedure Set_Atomic_Sync_Required
3334 (N : Node_Id; Val : Boolean := True) is
3335 begin
3336 pragma Assert (False
3337 or else NT (N).Nkind = N_Expanded_Name
3338 or else NT (N).Nkind = N_Explicit_Dereference
3339 or else NT (N).Nkind = N_Identifier
3340 or else NT (N).Nkind = N_Indexed_Component
3341 or else NT (N).Nkind = N_Selected_Component);
3342 Set_Flag14 (N, Val);
3343 end Set_Atomic_Sync_Required;
3344
3345 procedure Set_Array_Aggregate
3346 (N : Node_Id; Val : Node_Id) is
3347 begin
3348 pragma Assert (False
3349 or else NT (N).Nkind = N_Enumeration_Representation_Clause);
3350 Set_Node3_With_Parent (N, Val);
3351 end Set_Array_Aggregate;
3352
3353 procedure Set_Aspect_Rep_Item
3354 (N : Node_Id; Val : Node_Id) is
3355 begin
3356 pragma Assert (False
3357 or else NT (N).Nkind = N_Aspect_Specification);
3358 Set_Node2 (N, Val);
3359 end Set_Aspect_Rep_Item;
3360
3361 procedure Set_Assignment_OK
3362 (N : Node_Id; Val : Boolean := True) is
3363 begin
3364 pragma Assert (False
3365 or else NT (N).Nkind = N_Object_Declaration
3366 or else NT (N).Nkind in N_Subexpr);
3367 Set_Flag15 (N, Val);
3368 end Set_Assignment_OK;
3369
3370 procedure Set_Associated_Node
3371 (N : Node_Id; Val : Node_Id) is
3372 begin
3373 pragma Assert (False
3374 or else NT (N).Nkind in N_Has_Entity
3375 or else NT (N).Nkind = N_Aggregate
3376 or else NT (N).Nkind = N_Extension_Aggregate
3377 or else NT (N).Nkind = N_Selected_Component);
3378 Set_Node4 (N, Val); -- semantic field, no parent set
3379 end Set_Associated_Node;
3380
3381 procedure Set_At_End_Proc
3382 (N : Node_Id; Val : Node_Id) is
3383 begin
3384 pragma Assert (False
3385 or else NT (N).Nkind = N_Handled_Sequence_Of_Statements);
3386 Set_Node1 (N, Val);
3387 end Set_At_End_Proc;
3388
3389 procedure Set_Attribute_Name
3390 (N : Node_Id; Val : Name_Id) is
3391 begin
3392 pragma Assert (False
3393 or else NT (N).Nkind = N_Attribute_Reference);
3394 Set_Name2 (N, Val);
3395 end Set_Attribute_Name;
3396
3397 procedure Set_Aux_Decls_Node
3398 (N : Node_Id; Val : Node_Id) is
3399 begin
3400 pragma Assert (False
3401 or else NT (N).Nkind = N_Compilation_Unit);
3402 Set_Node5_With_Parent (N, Val);
3403 end Set_Aux_Decls_Node;
3404
3405 procedure Set_Backwards_OK
3406 (N : Node_Id; Val : Boolean := True) is
3407 begin
3408 pragma Assert (False
3409 or else NT (N).Nkind = N_Assignment_Statement);
3410 Set_Flag6 (N, Val);
3411 end Set_Backwards_OK;
3412
3413 procedure Set_Bad_Is_Detected
3414 (N : Node_Id; Val : Boolean := True) is
3415 begin
3416 pragma Assert (False
3417 or else NT (N).Nkind = N_Subprogram_Body);
3418 Set_Flag15 (N, Val);
3419 end Set_Bad_Is_Detected;
3420
3421 procedure Set_Body_Required
3422 (N : Node_Id; Val : Boolean := True) is
3423 begin
3424 pragma Assert (False
3425 or else NT (N).Nkind = N_Compilation_Unit);
3426 Set_Flag13 (N, Val);
3427 end Set_Body_Required;
3428
3429 procedure Set_Body_To_Inline
3430 (N : Node_Id; Val : Node_Id) is
3431 begin
3432 pragma Assert (False
3433 or else NT (N).Nkind = N_Subprogram_Declaration);
3434 Set_Node3 (N, Val);
3435 end Set_Body_To_Inline;
3436
3437 procedure Set_Box_Present
3438 (N : Node_Id; Val : Boolean := True) is
3439 begin
3440 pragma Assert (False
3441 or else NT (N).Nkind = N_Component_Association
3442 or else NT (N).Nkind = N_Formal_Abstract_Subprogram_Declaration
3443 or else NT (N).Nkind = N_Formal_Concrete_Subprogram_Declaration
3444 or else NT (N).Nkind = N_Formal_Package_Declaration
3445 or else NT (N).Nkind = N_Generic_Association);
3446 Set_Flag15 (N, Val);
3447 end Set_Box_Present;
3448
3449 procedure Set_By_Ref
3450 (N : Node_Id; Val : Boolean := True) is
3451 begin
3452 pragma Assert (False
3453 or else NT (N).Nkind = N_Extended_Return_Statement
3454 or else NT (N).Nkind = N_Return_Statement);
3455 Set_Flag5 (N, Val);
3456 end Set_By_Ref;
3457
3458 procedure Set_Char_Literal_Value
3459 (N : Node_Id; Val : Uint) is
3460 begin
3461 pragma Assert (False
3462 or else NT (N).Nkind = N_Character_Literal);
3463 Set_Uint2 (N, Val);
3464 end Set_Char_Literal_Value;
3465
3466 procedure Set_Chars
3467 (N : Node_Id; Val : Name_Id) is
3468 begin
3469 pragma Assert (False
3470 or else NT (N).Nkind in N_Has_Chars);
3471 Set_Name1 (N, Val);
3472 end Set_Chars;
3473
3474 procedure Set_Check_Address_Alignment
3475 (N : Node_Id; Val : Boolean := True) is
3476 begin
3477 pragma Assert (False
3478 or else NT (N).Nkind = N_Attribute_Definition_Clause);
3479 Set_Flag11 (N, Val);
3480 end Set_Check_Address_Alignment;
3481
3482 procedure Set_Choice_Parameter
3483 (N : Node_Id; Val : Node_Id) is
3484 begin
3485 pragma Assert (False
3486 or else NT (N).Nkind = N_Exception_Handler);
3487 Set_Node2_With_Parent (N, Val);
3488 end Set_Choice_Parameter;
3489
3490 procedure Set_Choices
3491 (N : Node_Id; Val : List_Id) is
3492 begin
3493 pragma Assert (False
3494 or else NT (N).Nkind = N_Component_Association);
3495 Set_List1_With_Parent (N, Val);
3496 end Set_Choices;
3497
3498 procedure Set_Class_Present
3499 (N : Node_Id; Val : Boolean := True) is
3500 begin
3501 pragma Assert (False
3502 or else NT (N).Nkind = N_Aspect_Specification
3503 or else NT (N).Nkind = N_Pragma);
3504 Set_Flag6 (N, Val);
3505 end Set_Class_Present;
3506
3507 procedure Set_Comes_From_Extended_Return_Statement
3508 (N : Node_Id; Val : Boolean := True) is
3509 begin
3510 pragma Assert (False
3511 or else NT (N).Nkind = N_Return_Statement);
3512 Set_Flag18 (N, Val);
3513 end Set_Comes_From_Extended_Return_Statement;
3514
3515 procedure Set_Compile_Time_Known_Aggregate
3516 (N : Node_Id; Val : Boolean := True) is
3517 begin
3518 pragma Assert (False
3519 or else NT (N).Nkind = N_Aggregate);
3520 Set_Flag18 (N, Val);
3521 end Set_Compile_Time_Known_Aggregate;
3522
3523 procedure Set_Component_Associations
3524 (N : Node_Id; Val : List_Id) is
3525 begin
3526 pragma Assert (False
3527 or else NT (N).Nkind = N_Aggregate
3528 or else NT (N).Nkind = N_Extension_Aggregate);
3529 Set_List2_With_Parent (N, Val);
3530 end Set_Component_Associations;
3531
3532 procedure Set_Component_Clauses
3533 (N : Node_Id; Val : List_Id) is
3534 begin
3535 pragma Assert (False
3536 or else NT (N).Nkind = N_Record_Representation_Clause);
3537 Set_List3_With_Parent (N, Val);
3538 end Set_Component_Clauses;
3539
3540 procedure Set_Component_Definition
3541 (N : Node_Id; Val : Node_Id) is
3542 begin
3543 pragma Assert (False
3544 or else NT (N).Nkind = N_Component_Declaration
3545 or else NT (N).Nkind = N_Constrained_Array_Definition
3546 or else NT (N).Nkind = N_Unconstrained_Array_Definition);
3547 Set_Node4_With_Parent (N, Val);
3548 end Set_Component_Definition;
3549
3550 procedure Set_Component_Items
3551 (N : Node_Id; Val : List_Id) is
3552 begin
3553 pragma Assert (False
3554 or else NT (N).Nkind = N_Component_List);
3555 Set_List3_With_Parent (N, Val);
3556 end Set_Component_Items;
3557
3558 procedure Set_Component_List
3559 (N : Node_Id; Val : Node_Id) is
3560 begin
3561 pragma Assert (False
3562 or else NT (N).Nkind = N_Record_Definition
3563 or else NT (N).Nkind = N_Variant);
3564 Set_Node1_With_Parent (N, Val);
3565 end Set_Component_List;
3566
3567 procedure Set_Component_Name
3568 (N : Node_Id; Val : Node_Id) is
3569 begin
3570 pragma Assert (False
3571 or else NT (N).Nkind = N_Component_Clause);
3572 Set_Node1_With_Parent (N, Val);
3573 end Set_Component_Name;
3574
3575 procedure Set_Componentwise_Assignment
3576 (N : Node_Id; Val : Boolean := True) is
3577 begin
3578 pragma Assert (False
3579 or else NT (N).Nkind = N_Assignment_Statement);
3580 Set_Flag14 (N, Val);
3581 end Set_Componentwise_Assignment;
3582
3583 procedure Set_Condition
3584 (N : Node_Id; Val : Node_Id) is
3585 begin
3586 pragma Assert (False
3587 or else NT (N).Nkind = N_Accept_Alternative
3588 or else NT (N).Nkind = N_Delay_Alternative
3589 or else NT (N).Nkind = N_Elsif_Part
3590 or else NT (N).Nkind = N_Entry_Body_Formal_Part
3591 or else NT (N).Nkind = N_Exit_Statement
3592 or else NT (N).Nkind = N_If_Statement
3593 or else NT (N).Nkind = N_Iteration_Scheme
3594 or else NT (N).Nkind = N_Quantified_Expression
3595 or else NT (N).Nkind = N_Raise_Constraint_Error
3596 or else NT (N).Nkind = N_Raise_Program_Error
3597 or else NT (N).Nkind = N_Raise_Storage_Error
3598 or else NT (N).Nkind = N_Terminate_Alternative);
3599 Set_Node1_With_Parent (N, Val);
3600 end Set_Condition;
3601
3602 procedure Set_Condition_Actions
3603 (N : Node_Id; Val : List_Id) is
3604 begin
3605 pragma Assert (False
3606 or else NT (N).Nkind = N_Elsif_Part
3607 or else NT (N).Nkind = N_Iteration_Scheme);
3608 Set_List3 (N, Val); -- semantic field, no parent set
3609 end Set_Condition_Actions;
3610
3611 procedure Set_Config_Pragmas
3612 (N : Node_Id; Val : List_Id) is
3613 begin
3614 pragma Assert (False
3615 or else NT (N).Nkind = N_Compilation_Unit_Aux);
3616 Set_List4_With_Parent (N, Val);
3617 end Set_Config_Pragmas;
3618
3619 procedure Set_Constant_Present
3620 (N : Node_Id; Val : Boolean := True) is
3621 begin
3622 pragma Assert (False
3623 or else NT (N).Nkind = N_Access_Definition
3624 or else NT (N).Nkind = N_Access_To_Object_Definition
3625 or else NT (N).Nkind = N_Object_Declaration);
3626 Set_Flag17 (N, Val);
3627 end Set_Constant_Present;
3628
3629 procedure Set_Constraint
3630 (N : Node_Id; Val : Node_Id) is
3631 begin
3632 pragma Assert (False
3633 or else NT (N).Nkind = N_Subtype_Indication);
3634 Set_Node3_With_Parent (N, Val);
3635 end Set_Constraint;
3636
3637 procedure Set_Constraints
3638 (N : Node_Id; Val : List_Id) is
3639 begin
3640 pragma Assert (False
3641 or else NT (N).Nkind = N_Index_Or_Discriminant_Constraint);
3642 Set_List1_With_Parent (N, Val);
3643 end Set_Constraints;
3644
3645 procedure Set_Context_Installed
3646 (N : Node_Id; Val : Boolean := True) is
3647 begin
3648 pragma Assert (False
3649 or else NT (N).Nkind = N_With_Clause);
3650 Set_Flag13 (N, Val);
3651 end Set_Context_Installed;
3652
3653 procedure Set_Context_Items
3654 (N : Node_Id; Val : List_Id) is
3655 begin
3656 pragma Assert (False
3657 or else NT (N).Nkind = N_Compilation_Unit);
3658 Set_List1_With_Parent (N, Val);
3659 end Set_Context_Items;
3660
3661 procedure Set_Context_Pending
3662 (N : Node_Id; Val : Boolean := True) is
3663 begin
3664 pragma Assert (False
3665 or else NT (N).Nkind = N_Compilation_Unit);
3666 Set_Flag16 (N, Val);
3667 end Set_Context_Pending;
3668
3669 procedure Set_Controlling_Argument
3670 (N : Node_Id; Val : Node_Id) is
3671 begin
3672 pragma Assert (False
3673 or else NT (N).Nkind = N_Function_Call
3674 or else NT (N).Nkind = N_Procedure_Call_Statement);
3675 Set_Node1 (N, Val); -- semantic field, no parent set
3676 end Set_Controlling_Argument;
3677
3678 procedure Set_Conversion_OK
3679 (N : Node_Id; Val : Boolean := True) is
3680 begin
3681 pragma Assert (False
3682 or else NT (N).Nkind = N_Type_Conversion);
3683 Set_Flag14 (N, Val);
3684 end Set_Conversion_OK;
3685
3686 procedure Set_Corresponding_Aspect
3687 (N : Node_Id; Val : Node_Id) is
3688 begin
3689 pragma Assert (False
3690 or else NT (N).Nkind = N_Pragma);
3691 Set_Node3 (N, Val);
3692 end Set_Corresponding_Aspect;
3693
3694 procedure Set_Corresponding_Body
3695 (N : Node_Id; Val : Node_Id) is
3696 begin
3697 pragma Assert (False
3698 or else NT (N).Nkind = N_Entry_Declaration
3699 or else NT (N).Nkind = N_Generic_Package_Declaration
3700 or else NT (N).Nkind = N_Generic_Subprogram_Declaration
3701 or else NT (N).Nkind = N_Package_Body_Stub
3702 or else NT (N).Nkind = N_Package_Declaration
3703 or else NT (N).Nkind = N_Protected_Body_Stub
3704 or else NT (N).Nkind = N_Protected_Type_Declaration
3705 or else NT (N).Nkind = N_Subprogram_Body_Stub
3706 or else NT (N).Nkind = N_Subprogram_Declaration
3707 or else NT (N).Nkind = N_Task_Body_Stub
3708 or else NT (N).Nkind = N_Task_Type_Declaration);
3709 Set_Node5 (N, Val); -- semantic field, no parent set
3710 end Set_Corresponding_Body;
3711
3712 procedure Set_Corresponding_Formal_Spec
3713 (N : Node_Id; Val : Node_Id) is
3714 begin
3715 pragma Assert (False
3716 or else NT (N).Nkind = N_Subprogram_Renaming_Declaration);
3717 Set_Node3 (N, Val); -- semantic field, no parent set
3718 end Set_Corresponding_Formal_Spec;
3719
3720 procedure Set_Corresponding_Generic_Association
3721 (N : Node_Id; Val : Node_Id) is
3722 begin
3723 pragma Assert (False
3724 or else NT (N).Nkind = N_Object_Declaration
3725 or else NT (N).Nkind = N_Object_Renaming_Declaration);
3726 Set_Node5 (N, Val); -- semantic field, no parent set
3727 end Set_Corresponding_Generic_Association;
3728
3729 procedure Set_Corresponding_Integer_Value
3730 (N : Node_Id; Val : Uint) is
3731 begin
3732 pragma Assert (False
3733 or else NT (N).Nkind = N_Real_Literal);
3734 Set_Uint4 (N, Val); -- semantic field, no parent set
3735 end Set_Corresponding_Integer_Value;
3736
3737 procedure Set_Corresponding_Spec
3738 (N : Node_Id; Val : Node_Id) is
3739 begin
3740 pragma Assert (False
3741 or else NT (N).Nkind = N_Expression_Function
3742 or else NT (N).Nkind = N_Package_Body
3743 or else NT (N).Nkind = N_Protected_Body
3744 or else NT (N).Nkind = N_Subprogram_Body
3745 or else NT (N).Nkind = N_Subprogram_Renaming_Declaration
3746 or else NT (N).Nkind = N_Task_Body
3747 or else NT (N).Nkind = N_With_Clause);
3748 Set_Node5 (N, Val); -- semantic field, no parent set
3749 end Set_Corresponding_Spec;
3750
3751 procedure Set_Corresponding_Stub
3752 (N : Node_Id; Val : Node_Id) is
3753 begin
3754 pragma Assert (False
3755 or else NT (N).Nkind = N_Subunit);
3756 Set_Node3 (N, Val);
3757 end Set_Corresponding_Stub;
3758
3759 procedure Set_Dcheck_Function
3760 (N : Node_Id; Val : Entity_Id) is
3761 begin
3762 pragma Assert (False
3763 or else NT (N).Nkind = N_Variant);
3764 Set_Node5 (N, Val); -- semantic field, no parent set
3765 end Set_Dcheck_Function;
3766
3767 procedure Set_Declarations
3768 (N : Node_Id; Val : List_Id) is
3769 begin
3770 pragma Assert (False
3771 or else NT (N).Nkind = N_Accept_Statement
3772 or else NT (N).Nkind = N_Block_Statement
3773 or else NT (N).Nkind = N_Compilation_Unit_Aux
3774 or else NT (N).Nkind = N_Entry_Body
3775 or else NT (N).Nkind = N_Package_Body
3776 or else NT (N).Nkind = N_Protected_Body
3777 or else NT (N).Nkind = N_Subprogram_Body
3778 or else NT (N).Nkind = N_Task_Body);
3779 Set_List2_With_Parent (N, Val);
3780 end Set_Declarations;
3781
3782 procedure Set_Default_Expression
3783 (N : Node_Id; Val : Node_Id) is
3784 begin
3785 pragma Assert (False
3786 or else NT (N).Nkind = N_Formal_Object_Declaration
3787 or else NT (N).Nkind = N_Parameter_Specification);
3788 Set_Node5 (N, Val); -- semantic field, no parent set
3789 end Set_Default_Expression;
3790
3791 procedure Set_Default_Storage_Pool
3792 (N : Node_Id; Val : Node_Id) is
3793 begin
3794 pragma Assert (False
3795 or else NT (N).Nkind = N_Compilation_Unit_Aux);
3796 Set_Node3 (N, Val); -- semantic field, no parent set
3797 end Set_Default_Storage_Pool;
3798
3799 procedure Set_Default_Name
3800 (N : Node_Id; Val : Node_Id) is
3801 begin
3802 pragma Assert (False
3803 or else NT (N).Nkind = N_Formal_Abstract_Subprogram_Declaration
3804 or else NT (N).Nkind = N_Formal_Concrete_Subprogram_Declaration);
3805 Set_Node2_With_Parent (N, Val);
3806 end Set_Default_Name;
3807
3808 procedure Set_Defining_Identifier
3809 (N : Node_Id; Val : Entity_Id) is
3810 begin
3811 pragma Assert (False
3812 or else NT (N).Nkind = N_Component_Declaration
3813 or else NT (N).Nkind = N_Defining_Program_Unit_Name
3814 or else NT (N).Nkind = N_Discriminant_Specification
3815 or else NT (N).Nkind = N_Entry_Body
3816 or else NT (N).Nkind = N_Entry_Declaration
3817 or else NT (N).Nkind = N_Entry_Index_Specification
3818 or else NT (N).Nkind = N_Exception_Declaration
3819 or else NT (N).Nkind = N_Exception_Renaming_Declaration
3820 or else NT (N).Nkind = N_Formal_Object_Declaration
3821 or else NT (N).Nkind = N_Formal_Package_Declaration
3822 or else NT (N).Nkind = N_Formal_Type_Declaration
3823 or else NT (N).Nkind = N_Full_Type_Declaration
3824 or else NT (N).Nkind = N_Implicit_Label_Declaration
3825 or else NT (N).Nkind = N_Incomplete_Type_Declaration
3826 or else NT (N).Nkind = N_Iterator_Specification
3827 or else NT (N).Nkind = N_Loop_Parameter_Specification
3828 or else NT (N).Nkind = N_Number_Declaration
3829 or else NT (N).Nkind = N_Object_Declaration
3830 or else NT (N).Nkind = N_Object_Renaming_Declaration
3831 or else NT (N).Nkind = N_Package_Body_Stub
3832 or else NT (N).Nkind = N_Parameter_Specification
3833 or else NT (N).Nkind = N_Private_Extension_Declaration
3834 or else NT (N).Nkind = N_Private_Type_Declaration
3835 or else NT (N).Nkind = N_Protected_Body
3836 or else NT (N).Nkind = N_Protected_Body_Stub
3837 or else NT (N).Nkind = N_Protected_Type_Declaration
3838 or else NT (N).Nkind = N_Single_Protected_Declaration
3839 or else NT (N).Nkind = N_Single_Task_Declaration
3840 or else NT (N).Nkind = N_Subtype_Declaration
3841 or else NT (N).Nkind = N_Task_Body
3842 or else NT (N).Nkind = N_Task_Body_Stub
3843 or else NT (N).Nkind = N_Task_Type_Declaration);
3844 Set_Node1_With_Parent (N, Val);
3845 end Set_Defining_Identifier;
3846
3847 procedure Set_Defining_Unit_Name
3848 (N : Node_Id; Val : Node_Id) is
3849 begin
3850 pragma Assert (False
3851 or else NT (N).Nkind = N_Function_Instantiation
3852 or else NT (N).Nkind = N_Function_Specification
3853 or else NT (N).Nkind = N_Generic_Function_Renaming_Declaration
3854 or else NT (N).Nkind = N_Generic_Package_Renaming_Declaration
3855 or else NT (N).Nkind = N_Generic_Procedure_Renaming_Declaration
3856 or else NT (N).Nkind = N_Package_Body
3857 or else NT (N).Nkind = N_Package_Instantiation
3858 or else NT (N).Nkind = N_Package_Renaming_Declaration
3859 or else NT (N).Nkind = N_Package_Specification
3860 or else NT (N).Nkind = N_Procedure_Instantiation
3861 or else NT (N).Nkind = N_Procedure_Specification);
3862 Set_Node1_With_Parent (N, Val);
3863 end Set_Defining_Unit_Name;
3864
3865 procedure Set_Delay_Alternative
3866 (N : Node_Id; Val : Node_Id) is
3867 begin
3868 pragma Assert (False
3869 or else NT (N).Nkind = N_Timed_Entry_Call);
3870 Set_Node4_With_Parent (N, Val);
3871 end Set_Delay_Alternative;
3872
3873 procedure Set_Delay_Statement
3874 (N : Node_Id; Val : Node_Id) is
3875 begin
3876 pragma Assert (False
3877 or else NT (N).Nkind = N_Delay_Alternative);
3878 Set_Node2_With_Parent (N, Val);
3879 end Set_Delay_Statement;
3880
3881 procedure Set_Delta_Expression
3882 (N : Node_Id; Val : Node_Id) is
3883 begin
3884 pragma Assert (False
3885 or else NT (N).Nkind = N_Decimal_Fixed_Point_Definition
3886 or else NT (N).Nkind = N_Delta_Constraint
3887 or else NT (N).Nkind = N_Ordinary_Fixed_Point_Definition);
3888 Set_Node3_With_Parent (N, Val);
3889 end Set_Delta_Expression;
3890
3891 procedure Set_Digits_Expression
3892 (N : Node_Id; Val : Node_Id) is
3893 begin
3894 pragma Assert (False
3895 or else NT (N).Nkind = N_Decimal_Fixed_Point_Definition
3896 or else NT (N).Nkind = N_Digits_Constraint
3897 or else NT (N).Nkind = N_Floating_Point_Definition);
3898 Set_Node2_With_Parent (N, Val);
3899 end Set_Digits_Expression;
3900
3901 procedure Set_Discr_Check_Funcs_Built
3902 (N : Node_Id; Val : Boolean := True) is
3903 begin
3904 pragma Assert (False
3905 or else NT (N).Nkind = N_Full_Type_Declaration);
3906 Set_Flag11 (N, Val);
3907 end Set_Discr_Check_Funcs_Built;
3908
3909 procedure Set_Discrete_Choices
3910 (N : Node_Id; Val : List_Id) is
3911 begin
3912 pragma Assert (False
3913 or else NT (N).Nkind = N_Case_Expression_Alternative
3914 or else NT (N).Nkind = N_Case_Statement_Alternative
3915 or else NT (N).Nkind = N_Variant);
3916 Set_List4_With_Parent (N, Val);
3917 end Set_Discrete_Choices;
3918
3919 procedure Set_Discrete_Range
3920 (N : Node_Id; Val : Node_Id) is
3921 begin
3922 pragma Assert (False
3923 or else NT (N).Nkind = N_Slice);
3924 Set_Node4_With_Parent (N, Val);
3925 end Set_Discrete_Range;
3926
3927 procedure Set_Discrete_Subtype_Definition
3928 (N : Node_Id; Val : Node_Id) is
3929 begin
3930 pragma Assert (False
3931 or else NT (N).Nkind = N_Entry_Declaration
3932 or else NT (N).Nkind = N_Entry_Index_Specification
3933 or else NT (N).Nkind = N_Loop_Parameter_Specification);
3934 Set_Node4_With_Parent (N, Val);
3935 end Set_Discrete_Subtype_Definition;
3936
3937 procedure Set_Discrete_Subtype_Definitions
3938 (N : Node_Id; Val : List_Id) is
3939 begin
3940 pragma Assert (False
3941 or else NT (N).Nkind = N_Constrained_Array_Definition);
3942 Set_List2_With_Parent (N, Val);
3943 end Set_Discrete_Subtype_Definitions;
3944
3945 procedure Set_Discriminant_Specifications
3946 (N : Node_Id; Val : List_Id) is
3947 begin
3948 pragma Assert (False
3949 or else NT (N).Nkind = N_Formal_Type_Declaration
3950 or else NT (N).Nkind = N_Full_Type_Declaration
3951 or else NT (N).Nkind = N_Incomplete_Type_Declaration
3952 or else NT (N).Nkind = N_Private_Extension_Declaration
3953 or else NT (N).Nkind = N_Private_Type_Declaration
3954 or else NT (N).Nkind = N_Protected_Type_Declaration
3955 or else NT (N).Nkind = N_Task_Type_Declaration);
3956 Set_List4_With_Parent (N, Val);
3957 end Set_Discriminant_Specifications;
3958
3959 procedure Set_Discriminant_Type
3960 (N : Node_Id; Val : Node_Id) is
3961 begin
3962 pragma Assert (False
3963 or else NT (N).Nkind = N_Discriminant_Specification);
3964 Set_Node5_With_Parent (N, Val);
3965 end Set_Discriminant_Type;
3966
3967 procedure Set_Do_Accessibility_Check
3968 (N : Node_Id; Val : Boolean := True) is
3969 begin
3970 pragma Assert (False
3971 or else NT (N).Nkind = N_Parameter_Specification);
3972 Set_Flag13 (N, Val);
3973 end Set_Do_Accessibility_Check;
3974
3975 procedure Set_Do_Discriminant_Check
3976 (N : Node_Id; Val : Boolean := True) is
3977 begin
3978 pragma Assert (False
3979 or else NT (N).Nkind = N_Selected_Component);
3980 Set_Flag13 (N, Val);
3981 end Set_Do_Discriminant_Check;
3982
3983 procedure Set_Do_Division_Check
3984 (N : Node_Id; Val : Boolean := True) is
3985 begin
3986 pragma Assert (False
3987 or else NT (N).Nkind = N_Op_Divide
3988 or else NT (N).Nkind = N_Op_Mod
3989 or else NT (N).Nkind = N_Op_Rem);
3990 Set_Flag13 (N, Val);
3991 end Set_Do_Division_Check;
3992
3993 procedure Set_Do_Length_Check
3994 (N : Node_Id; Val : Boolean := True) is
3995 begin
3996 pragma Assert (False
3997 or else NT (N).Nkind = N_Assignment_Statement
3998 or else NT (N).Nkind = N_Op_And
3999 or else NT (N).Nkind = N_Op_Or
4000 or else NT (N).Nkind = N_Op_Xor
4001 or else NT (N).Nkind = N_Type_Conversion);
4002 Set_Flag4 (N, Val);
4003 end Set_Do_Length_Check;
4004
4005 procedure Set_Do_Overflow_Check
4006 (N : Node_Id; Val : Boolean := True) is
4007 begin
4008 pragma Assert (False
4009 or else NT (N).Nkind in N_Op
4010 or else NT (N).Nkind = N_Attribute_Reference
4011 or else NT (N).Nkind = N_Type_Conversion);
4012 Set_Flag17 (N, Val);
4013 end Set_Do_Overflow_Check;
4014
4015 procedure Set_Do_Range_Check
4016 (N : Node_Id; Val : Boolean := True) is
4017 begin
4018 pragma Assert (False
4019 or else NT (N).Nkind in N_Subexpr);
4020 Set_Flag9 (N, Val);
4021 end Set_Do_Range_Check;
4022
4023 procedure Set_Do_Storage_Check
4024 (N : Node_Id; Val : Boolean := True) is
4025 begin
4026 pragma Assert (False
4027 or else NT (N).Nkind = N_Allocator
4028 or else NT (N).Nkind = N_Subprogram_Body);
4029 Set_Flag17 (N, Val);
4030 end Set_Do_Storage_Check;
4031
4032 procedure Set_Do_Tag_Check
4033 (N : Node_Id; Val : Boolean := True) is
4034 begin
4035 pragma Assert (False
4036 or else NT (N).Nkind = N_Assignment_Statement
4037 or else NT (N).Nkind = N_Extended_Return_Statement
4038 or else NT (N).Nkind = N_Function_Call
4039 or else NT (N).Nkind = N_Procedure_Call_Statement
4040 or else NT (N).Nkind = N_Return_Statement
4041 or else NT (N).Nkind = N_Type_Conversion);
4042 Set_Flag13 (N, Val);
4043 end Set_Do_Tag_Check;
4044
4045 procedure Set_Elaborate_All_Desirable
4046 (N : Node_Id; Val : Boolean := True) is
4047 begin
4048 pragma Assert (False
4049 or else NT (N).Nkind = N_With_Clause);
4050 Set_Flag9 (N, Val);
4051 end Set_Elaborate_All_Desirable;
4052
4053 procedure Set_Elaborate_All_Present
4054 (N : Node_Id; Val : Boolean := True) is
4055 begin
4056 pragma Assert (False
4057 or else NT (N).Nkind = N_With_Clause);
4058 Set_Flag14 (N, Val);
4059 end Set_Elaborate_All_Present;
4060
4061 procedure Set_Elaborate_Desirable
4062 (N : Node_Id; Val : Boolean := True) is
4063 begin
4064 pragma Assert (False
4065 or else NT (N).Nkind = N_With_Clause);
4066 Set_Flag11 (N, Val);
4067 end Set_Elaborate_Desirable;
4068
4069 procedure Set_Elaborate_Present
4070 (N : Node_Id; Val : Boolean := True) is
4071 begin
4072 pragma Assert (False
4073 or else NT (N).Nkind = N_With_Clause);
4074 Set_Flag4 (N, Val);
4075 end Set_Elaborate_Present;
4076
4077 procedure Set_Elaboration_Boolean
4078 (N : Node_Id; Val : Node_Id) is
4079 begin
4080 pragma Assert (False
4081 or else NT (N).Nkind = N_Function_Specification
4082 or else NT (N).Nkind = N_Procedure_Specification);
4083 Set_Node2 (N, Val);
4084 end Set_Elaboration_Boolean;
4085
4086 procedure Set_Else_Actions
4087 (N : Node_Id; Val : List_Id) is
4088 begin
4089 pragma Assert (False
4090 or else NT (N).Nkind = N_Conditional_Expression);
4091 Set_List3 (N, Val); -- semantic field, no parent set
4092 end Set_Else_Actions;
4093
4094 procedure Set_Else_Statements
4095 (N : Node_Id; Val : List_Id) is
4096 begin
4097 pragma Assert (False
4098 or else NT (N).Nkind = N_Conditional_Entry_Call
4099 or else NT (N).Nkind = N_If_Statement
4100 or else NT (N).Nkind = N_Selective_Accept);
4101 Set_List4_With_Parent (N, Val);
4102 end Set_Else_Statements;
4103
4104 procedure Set_Elsif_Parts
4105 (N : Node_Id; Val : List_Id) is
4106 begin
4107 pragma Assert (False
4108 or else NT (N).Nkind = N_If_Statement);
4109 Set_List3_With_Parent (N, Val);
4110 end Set_Elsif_Parts;
4111
4112 procedure Set_Enclosing_Variant
4113 (N : Node_Id; Val : Node_Id) is
4114 begin
4115 pragma Assert (False
4116 or else NT (N).Nkind = N_Variant);
4117 Set_Node2 (N, Val); -- semantic field, no parent set
4118 end Set_Enclosing_Variant;
4119
4120 procedure Set_End_Label
4121 (N : Node_Id; Val : Node_Id) is
4122 begin
4123 pragma Assert (False
4124 or else NT (N).Nkind = N_Enumeration_Type_Definition
4125 or else NT (N).Nkind = N_Handled_Sequence_Of_Statements
4126 or else NT (N).Nkind = N_Loop_Statement
4127 or else NT (N).Nkind = N_Package_Specification
4128 or else NT (N).Nkind = N_Protected_Body
4129 or else NT (N).Nkind = N_Protected_Definition
4130 or else NT (N).Nkind = N_Record_Definition
4131 or else NT (N).Nkind = N_Task_Definition);
4132 Set_Node4_With_Parent (N, Val);
4133 end Set_End_Label;
4134
4135 procedure Set_End_Span
4136 (N : Node_Id; Val : Uint) is
4137 begin
4138 pragma Assert (False
4139 or else NT (N).Nkind = N_Case_Statement
4140 or else NT (N).Nkind = N_If_Statement);
4141 Set_Uint5 (N, Val);
4142 end Set_End_Span;
4143
4144 procedure Set_Entity
4145 (N : Node_Id; Val : Node_Id) is
4146 begin
4147 pragma Assert (False
4148 or else NT (N).Nkind in N_Has_Entity
4149 or else NT (N).Nkind = N_Aspect_Specification
4150 or else NT (N).Nkind = N_Attribute_Definition_Clause
4151 or else NT (N).Nkind = N_Freeze_Entity);
4152 Set_Node4 (N, Val); -- semantic field, no parent set
4153 end Set_Entity;
4154
4155 procedure Set_Entry_Body_Formal_Part
4156 (N : Node_Id; Val : Node_Id) is
4157 begin
4158 pragma Assert (False
4159 or else NT (N).Nkind = N_Entry_Body);
4160 Set_Node5_With_Parent (N, Val);
4161 end Set_Entry_Body_Formal_Part;
4162
4163 procedure Set_Entry_Call_Alternative
4164 (N : Node_Id; Val : Node_Id) is
4165 begin
4166 pragma Assert (False
4167 or else NT (N).Nkind = N_Conditional_Entry_Call
4168 or else NT (N).Nkind = N_Timed_Entry_Call);
4169 Set_Node1_With_Parent (N, Val);
4170 end Set_Entry_Call_Alternative;
4171
4172 procedure Set_Entry_Call_Statement
4173 (N : Node_Id; Val : Node_Id) is
4174 begin
4175 pragma Assert (False
4176 or else NT (N).Nkind = N_Entry_Call_Alternative);
4177 Set_Node1_With_Parent (N, Val);
4178 end Set_Entry_Call_Statement;
4179
4180 procedure Set_Entry_Direct_Name
4181 (N : Node_Id; Val : Node_Id) is
4182 begin
4183 pragma Assert (False
4184 or else NT (N).Nkind = N_Accept_Statement);
4185 Set_Node1_With_Parent (N, Val);
4186 end Set_Entry_Direct_Name;
4187
4188 procedure Set_Entry_Index
4189 (N : Node_Id; Val : Node_Id) is
4190 begin
4191 pragma Assert (False
4192 or else NT (N).Nkind = N_Accept_Statement);
4193 Set_Node5_With_Parent (N, Val);
4194 end Set_Entry_Index;
4195
4196 procedure Set_Entry_Index_Specification
4197 (N : Node_Id; Val : Node_Id) is
4198 begin
4199 pragma Assert (False
4200 or else NT (N).Nkind = N_Entry_Body_Formal_Part);
4201 Set_Node4_With_Parent (N, Val);
4202 end Set_Entry_Index_Specification;
4203
4204 procedure Set_Etype
4205 (N : Node_Id; Val : Node_Id) is
4206 begin
4207 pragma Assert (False
4208 or else NT (N).Nkind in N_Has_Etype);
4209 Set_Node5 (N, Val); -- semantic field, no parent set
4210 end Set_Etype;
4211
4212 procedure Set_Exception_Choices
4213 (N : Node_Id; Val : List_Id) is
4214 begin
4215 pragma Assert (False
4216 or else NT (N).Nkind = N_Exception_Handler);
4217 Set_List4_With_Parent (N, Val);
4218 end Set_Exception_Choices;
4219
4220 procedure Set_Exception_Handlers
4221 (N : Node_Id; Val : List_Id) is
4222 begin
4223 pragma Assert (False
4224 or else NT (N).Nkind = N_Handled_Sequence_Of_Statements);
4225 Set_List5_With_Parent (N, Val);
4226 end Set_Exception_Handlers;
4227
4228 procedure Set_Exception_Junk
4229 (N : Node_Id; Val : Boolean := True) is
4230 begin
4231 pragma Assert (False
4232 or else NT (N).Nkind = N_Block_Statement
4233 or else NT (N).Nkind = N_Goto_Statement
4234 or else NT (N).Nkind = N_Label
4235 or else NT (N).Nkind = N_Object_Declaration
4236 or else NT (N).Nkind = N_Subtype_Declaration);
4237 Set_Flag8 (N, Val);
4238 end Set_Exception_Junk;
4239
4240 procedure Set_Exception_Label
4241 (N : Node_Id; Val : Node_Id) is
4242 begin
4243 pragma Assert (False
4244 or else NT (N).Nkind = N_Exception_Handler
4245 or else NT (N).Nkind = N_Push_Constraint_Error_Label
4246 or else NT (N).Nkind = N_Push_Program_Error_Label
4247 or else NT (N).Nkind = N_Push_Storage_Error_Label);
4248 Set_Node5 (N, Val); -- semantic field, no parent set
4249 end Set_Exception_Label;
4250
4251 procedure Set_Expansion_Delayed
4252 (N : Node_Id; Val : Boolean := True) is
4253 begin
4254 pragma Assert (False
4255 or else NT (N).Nkind = N_Aggregate
4256 or else NT (N).Nkind = N_Extension_Aggregate);
4257 Set_Flag11 (N, Val);
4258 end Set_Expansion_Delayed;
4259
4260 procedure Set_Explicit_Actual_Parameter
4261 (N : Node_Id; Val : Node_Id) is
4262 begin
4263 pragma Assert (False
4264 or else NT (N).Nkind = N_Parameter_Association);
4265 Set_Node3_With_Parent (N, Val);
4266 end Set_Explicit_Actual_Parameter;
4267
4268 procedure Set_Explicit_Generic_Actual_Parameter
4269 (N : Node_Id; Val : Node_Id) is
4270 begin
4271 pragma Assert (False
4272 or else NT (N).Nkind = N_Generic_Association);
4273 Set_Node1_With_Parent (N, Val);
4274 end Set_Explicit_Generic_Actual_Parameter;
4275
4276 procedure Set_Expression
4277 (N : Node_Id; Val : Node_Id) is
4278 begin
4279 pragma Assert (False
4280 or else NT (N).Nkind = N_Allocator
4281 or else NT (N).Nkind = N_Aspect_Specification
4282 or else NT (N).Nkind = N_Assignment_Statement
4283 or else NT (N).Nkind = N_At_Clause
4284 or else NT (N).Nkind = N_Attribute_Definition_Clause
4285 or else NT (N).Nkind = N_Case_Expression
4286 or else NT (N).Nkind = N_Case_Expression_Alternative
4287 or else NT (N).Nkind = N_Case_Statement
4288 or else NT (N).Nkind = N_Code_Statement
4289 or else NT (N).Nkind = N_Component_Association
4290 or else NT (N).Nkind = N_Component_Declaration
4291 or else NT (N).Nkind = N_Delay_Relative_Statement
4292 or else NT (N).Nkind = N_Delay_Until_Statement
4293 or else NT (N).Nkind = N_Discriminant_Association
4294 or else NT (N).Nkind = N_Discriminant_Specification
4295 or else NT (N).Nkind = N_Exception_Declaration
4296 or else NT (N).Nkind = N_Expression_Function
4297 or else NT (N).Nkind = N_Expression_With_Actions
4298 or else NT (N).Nkind = N_Free_Statement
4299 or else NT (N).Nkind = N_Mod_Clause
4300 or else NT (N).Nkind = N_Modular_Type_Definition
4301 or else NT (N).Nkind = N_Number_Declaration
4302 or else NT (N).Nkind = N_Object_Declaration
4303 or else NT (N).Nkind = N_Parameter_Specification
4304 or else NT (N).Nkind = N_Pragma_Argument_Association
4305 or else NT (N).Nkind = N_Qualified_Expression
4306 or else NT (N).Nkind = N_Raise_Statement
4307 or else NT (N).Nkind = N_Return_Statement
4308 or else NT (N).Nkind = N_Type_Conversion
4309 or else NT (N).Nkind = N_Unchecked_Expression
4310 or else NT (N).Nkind = N_Unchecked_Type_Conversion);
4311 Set_Node3_With_Parent (N, Val);
4312 end Set_Expression;
4313
4314 procedure Set_Expressions
4315 (N : Node_Id; Val : List_Id) is
4316 begin
4317 pragma Assert (False
4318 or else NT (N).Nkind = N_Aggregate
4319 or else NT (N).Nkind = N_Attribute_Reference
4320 or else NT (N).Nkind = N_Conditional_Expression
4321 or else NT (N).Nkind = N_Extension_Aggregate
4322 or else NT (N).Nkind = N_Indexed_Component);
4323 Set_List1_With_Parent (N, Val);
4324 end Set_Expressions;
4325
4326 procedure Set_First_Bit
4327 (N : Node_Id; Val : Node_Id) is
4328 begin
4329 pragma Assert (False
4330 or else NT (N).Nkind = N_Component_Clause);
4331 Set_Node3_With_Parent (N, Val);
4332 end Set_First_Bit;
4333
4334 procedure Set_First_Inlined_Subprogram
4335 (N : Node_Id; Val : Entity_Id) is
4336 begin
4337 pragma Assert (False
4338 or else NT (N).Nkind = N_Compilation_Unit);
4339 Set_Node3 (N, Val); -- semantic field, no parent set
4340 end Set_First_Inlined_Subprogram;
4341
4342 procedure Set_First_Name
4343 (N : Node_Id; Val : Boolean := True) is
4344 begin
4345 pragma Assert (False
4346 or else NT (N).Nkind = N_With_Clause);
4347 Set_Flag5 (N, Val);
4348 end Set_First_Name;
4349
4350 procedure Set_First_Named_Actual
4351 (N : Node_Id; Val : Node_Id) is
4352 begin
4353 pragma Assert (False
4354 or else NT (N).Nkind = N_Entry_Call_Statement
4355 or else NT (N).Nkind = N_Function_Call
4356 or else NT (N).Nkind = N_Procedure_Call_Statement);
4357 Set_Node4 (N, Val); -- semantic field, no parent set
4358 end Set_First_Named_Actual;
4359
4360 procedure Set_First_Real_Statement
4361 (N : Node_Id; Val : Node_Id) is
4362 begin
4363 pragma Assert (False
4364 or else NT (N).Nkind = N_Handled_Sequence_Of_Statements);
4365 Set_Node2 (N, Val); -- semantic field, no parent set
4366 end Set_First_Real_Statement;
4367
4368 procedure Set_First_Subtype_Link
4369 (N : Node_Id; Val : Entity_Id) is
4370 begin
4371 pragma Assert (False
4372 or else NT (N).Nkind = N_Freeze_Entity);
4373 Set_Node5 (N, Val); -- semantic field, no parent set
4374 end Set_First_Subtype_Link;
4375
4376 procedure Set_Float_Truncate
4377 (N : Node_Id; Val : Boolean := True) is
4378 begin
4379 pragma Assert (False
4380 or else NT (N).Nkind = N_Type_Conversion);
4381 Set_Flag11 (N, Val);
4382 end Set_Float_Truncate;
4383
4384 procedure Set_Formal_Type_Definition
4385 (N : Node_Id; Val : Node_Id) is
4386 begin
4387 pragma Assert (False
4388 or else NT (N).Nkind = N_Formal_Type_Declaration);
4389 Set_Node3_With_Parent (N, Val);
4390 end Set_Formal_Type_Definition;
4391
4392 procedure Set_Forwards_OK
4393 (N : Node_Id; Val : Boolean := True) is
4394 begin
4395 pragma Assert (False
4396 or else NT (N).Nkind = N_Assignment_Statement);
4397 Set_Flag5 (N, Val);
4398 end Set_Forwards_OK;
4399
4400 procedure Set_From_Aspect_Specification
4401 (N : Node_Id; Val : Boolean := True) is
4402 begin
4403 pragma Assert (False
4404 or else NT (N).Nkind = N_Attribute_Definition_Clause
4405 or else NT (N).Nkind = N_Pragma);
4406 Set_Flag13 (N, Val);
4407 end Set_From_Aspect_Specification;
4408
4409 procedure Set_From_At_End
4410 (N : Node_Id; Val : Boolean := True) is
4411 begin
4412 pragma Assert (False
4413 or else NT (N).Nkind = N_Raise_Statement);
4414 Set_Flag4 (N, Val);
4415 end Set_From_At_End;
4416
4417 procedure Set_From_At_Mod
4418 (N : Node_Id; Val : Boolean := True) is
4419 begin
4420 pragma Assert (False
4421 or else NT (N).Nkind = N_Attribute_Definition_Clause);
4422 Set_Flag4 (N, Val);
4423 end Set_From_At_Mod;
4424
4425 procedure Set_From_Default
4426 (N : Node_Id; Val : Boolean := True) is
4427 begin
4428 pragma Assert (False
4429 or else NT (N).Nkind = N_Subprogram_Renaming_Declaration);
4430 Set_Flag6 (N, Val);
4431 end Set_From_Default;
4432
4433 procedure Set_Generic_Associations
4434 (N : Node_Id; Val : List_Id) is
4435 begin
4436 pragma Assert (False
4437 or else NT (N).Nkind = N_Formal_Package_Declaration
4438 or else NT (N).Nkind = N_Function_Instantiation
4439 or else NT (N).Nkind = N_Package_Instantiation
4440 or else NT (N).Nkind = N_Procedure_Instantiation);
4441 Set_List3_With_Parent (N, Val);
4442 end Set_Generic_Associations;
4443
4444 procedure Set_Generic_Formal_Declarations
4445 (N : Node_Id; Val : List_Id) is
4446 begin
4447 pragma Assert (False
4448 or else NT (N).Nkind = N_Generic_Package_Declaration
4449 or else NT (N).Nkind = N_Generic_Subprogram_Declaration);
4450 Set_List2_With_Parent (N, Val);
4451 end Set_Generic_Formal_Declarations;
4452
4453 procedure Set_Generic_Parent
4454 (N : Node_Id; Val : Node_Id) is
4455 begin
4456 pragma Assert (False
4457 or else NT (N).Nkind = N_Function_Specification
4458 or else NT (N).Nkind = N_Package_Specification
4459 or else NT (N).Nkind = N_Procedure_Specification);
4460 Set_Node5 (N, Val);
4461 end Set_Generic_Parent;
4462
4463 procedure Set_Generic_Parent_Type
4464 (N : Node_Id; Val : Node_Id) is
4465 begin
4466 pragma Assert (False
4467 or else NT (N).Nkind = N_Subtype_Declaration);
4468 Set_Node4 (N, Val);
4469 end Set_Generic_Parent_Type;
4470
4471 procedure Set_Handled_Statement_Sequence
4472 (N : Node_Id; Val : Node_Id) is
4473 begin
4474 pragma Assert (False
4475 or else NT (N).Nkind = N_Accept_Statement
4476 or else NT (N).Nkind = N_Block_Statement
4477 or else NT (N).Nkind = N_Entry_Body
4478 or else NT (N).Nkind = N_Extended_Return_Statement
4479 or else NT (N).Nkind = N_Package_Body
4480 or else NT (N).Nkind = N_Subprogram_Body
4481 or else NT (N).Nkind = N_Task_Body);
4482 Set_Node4_With_Parent (N, Val);
4483 end Set_Handled_Statement_Sequence;
4484
4485 procedure Set_Handler_List_Entry
4486 (N : Node_Id; Val : Node_Id) is
4487 begin
4488 pragma Assert (False
4489 or else NT (N).Nkind = N_Object_Declaration);
4490 Set_Node2 (N, Val);
4491 end Set_Handler_List_Entry;
4492
4493 procedure Set_Has_Created_Identifier
4494 (N : Node_Id; Val : Boolean := True) is
4495 begin
4496 pragma Assert (False
4497 or else NT (N).Nkind = N_Block_Statement
4498 or else NT (N).Nkind = N_Loop_Statement);
4499 Set_Flag15 (N, Val);
4500 end Set_Has_Created_Identifier;
4501
4502 procedure Set_Has_Dynamic_Length_Check
4503 (N : Node_Id; Val : Boolean := True) is
4504 begin
4505 pragma Assert (False
4506 or else NT (N).Nkind in N_Subexpr);
4507 Set_Flag10 (N, Val);
4508 end Set_Has_Dynamic_Length_Check;
4509
4510 procedure Set_Has_Dynamic_Range_Check
4511 (N : Node_Id; Val : Boolean := True) is
4512 begin
4513 pragma Assert (False
4514 or else NT (N).Nkind = N_Subtype_Declaration
4515 or else NT (N).Nkind in N_Subexpr);
4516 Set_Flag12 (N, Val);
4517 end Set_Has_Dynamic_Range_Check;
4518
4519 procedure Set_Has_Init_Expression
4520 (N : Node_Id; Val : Boolean := True) is
4521 begin
4522 pragma Assert (False
4523 or else NT (N).Nkind = N_Object_Declaration);
4524 Set_Flag14 (N, Val);
4525 end Set_Has_Init_Expression;
4526
4527 procedure Set_Has_Local_Raise
4528 (N : Node_Id; Val : Boolean := True) is
4529 begin
4530 pragma Assert (False
4531 or else NT (N).Nkind = N_Exception_Handler);
4532 Set_Flag8 (N, Val);
4533 end Set_Has_Local_Raise;
4534
4535 procedure Set_Has_No_Elaboration_Code
4536 (N : Node_Id; Val : Boolean := True) is
4537 begin
4538 pragma Assert (False
4539 or else NT (N).Nkind = N_Compilation_Unit);
4540 Set_Flag17 (N, Val);
4541 end Set_Has_No_Elaboration_Code;
4542
4543 procedure Set_Has_Pragma_CPU
4544 (N : Node_Id; Val : Boolean := True) is
4545 begin
4546 pragma Assert (False
4547 or else NT (N).Nkind = N_Subprogram_Body
4548 or else NT (N).Nkind = N_Task_Definition);
4549 Set_Flag14 (N, Val);
4550 end Set_Has_Pragma_CPU;
4551
4552 procedure Set_Has_Pragma_Dispatching_Domain
4553 (N : Node_Id; Val : Boolean := True) is
4554 begin
4555 pragma Assert (False
4556 or else NT (N).Nkind = N_Task_Definition);
4557 Set_Flag15 (N, Val);
4558 end Set_Has_Pragma_Dispatching_Domain;
4559
4560 procedure Set_Has_Pragma_Priority
4561 (N : Node_Id; Val : Boolean := True) is
4562 begin
4563 pragma Assert (False
4564 or else NT (N).Nkind = N_Protected_Definition
4565 or else NT (N).Nkind = N_Subprogram_Body
4566 or else NT (N).Nkind = N_Task_Definition);
4567 Set_Flag6 (N, Val);
4568 end Set_Has_Pragma_Priority;
4569
4570 procedure Set_Has_Pragma_Suppress_All
4571 (N : Node_Id; Val : Boolean := True) is
4572 begin
4573 pragma Assert (False
4574 or else NT (N).Nkind = N_Compilation_Unit);
4575 Set_Flag14 (N, Val);
4576 end Set_Has_Pragma_Suppress_All;
4577
4578 procedure Set_Has_Private_View
4579 (N : Node_Id; Val : Boolean := True) is
4580 begin
4581 pragma Assert (False
4582 or else NT (N).Nkind in N_Op
4583 or else NT (N).Nkind = N_Character_Literal
4584 or else NT (N).Nkind = N_Expanded_Name
4585 or else NT (N).Nkind = N_Identifier
4586 or else NT (N).Nkind = N_Operator_Symbol);
4587 Set_Flag11 (N, Val);
4588 end Set_Has_Private_View;
4589
4590 procedure Set_Has_Relative_Deadline_Pragma
4591 (N : Node_Id; Val : Boolean := True) is
4592 begin
4593 pragma Assert (False
4594 or else NT (N).Nkind = N_Subprogram_Body
4595 or else NT (N).Nkind = N_Task_Definition);
4596 Set_Flag9 (N, Val);
4597 end Set_Has_Relative_Deadline_Pragma;
4598
4599 procedure Set_Has_Self_Reference
4600 (N : Node_Id; Val : Boolean := True) is
4601 begin
4602 pragma Assert (False
4603 or else NT (N).Nkind = N_Aggregate
4604 or else NT (N).Nkind = N_Extension_Aggregate);
4605 Set_Flag13 (N, Val);
4606 end Set_Has_Self_Reference;
4607
4608 procedure Set_Has_Storage_Size_Pragma
4609 (N : Node_Id; Val : Boolean := True) is
4610 begin
4611 pragma Assert (False
4612 or else NT (N).Nkind = N_Task_Definition);
4613 Set_Flag5 (N, Val);
4614 end Set_Has_Storage_Size_Pragma;
4615
4616 procedure Set_Has_Task_Info_Pragma
4617 (N : Node_Id; Val : Boolean := True) is
4618 begin
4619 pragma Assert (False
4620 or else NT (N).Nkind = N_Task_Definition);
4621 Set_Flag7 (N, Val);
4622 end Set_Has_Task_Info_Pragma;
4623
4624 procedure Set_Has_Task_Name_Pragma
4625 (N : Node_Id; Val : Boolean := True) is
4626 begin
4627 pragma Assert (False
4628 or else NT (N).Nkind = N_Task_Definition);
4629 Set_Flag8 (N, Val);
4630 end Set_Has_Task_Name_Pragma;
4631
4632 procedure Set_Has_Wide_Character
4633 (N : Node_Id; Val : Boolean := True) is
4634 begin
4635 pragma Assert (False
4636 or else NT (N).Nkind = N_String_Literal);
4637 Set_Flag11 (N, Val);
4638 end Set_Has_Wide_Character;
4639
4640 procedure Set_Has_Wide_Wide_Character
4641 (N : Node_Id; Val : Boolean := True) is
4642 begin
4643 pragma Assert (False
4644 or else NT (N).Nkind = N_String_Literal);
4645 Set_Flag13 (N, Val);
4646 end Set_Has_Wide_Wide_Character;
4647
4648 procedure Set_Header_Size_Added
4649 (N : Node_Id; Val : Boolean := True) is
4650 begin
4651 pragma Assert (False
4652 or else NT (N).Nkind = N_Attribute_Reference);
4653 Set_Flag11 (N, Val);
4654 end Set_Header_Size_Added;
4655
4656 procedure Set_Hidden_By_Use_Clause
4657 (N : Node_Id; Val : Elist_Id) is
4658 begin
4659 pragma Assert (False
4660 or else NT (N).Nkind = N_Use_Package_Clause
4661 or else NT (N).Nkind = N_Use_Type_Clause);
4662 Set_Elist4 (N, Val);
4663 end Set_Hidden_By_Use_Clause;
4664
4665 procedure Set_High_Bound
4666 (N : Node_Id; Val : Node_Id) is
4667 begin
4668 pragma Assert (False
4669 or else NT (N).Nkind = N_Range
4670 or else NT (N).Nkind = N_Real_Range_Specification
4671 or else NT (N).Nkind = N_Signed_Integer_Type_Definition);
4672 Set_Node2_With_Parent (N, Val);
4673 end Set_High_Bound;
4674
4675 procedure Set_Identifier
4676 (N : Node_Id; Val : Node_Id) is
4677 begin
4678 pragma Assert (False
4679 or else NT (N).Nkind = N_Aspect_Specification
4680 or else NT (N).Nkind = N_At_Clause
4681 or else NT (N).Nkind = N_Block_Statement
4682 or else NT (N).Nkind = N_Designator
4683 or else NT (N).Nkind = N_Enumeration_Representation_Clause
4684 or else NT (N).Nkind = N_Label
4685 or else NT (N).Nkind = N_Loop_Statement
4686 or else NT (N).Nkind = N_Record_Representation_Clause
4687 or else NT (N).Nkind = N_Subprogram_Info);
4688 Set_Node1_With_Parent (N, Val);
4689 end Set_Identifier;
4690
4691 procedure Set_Implicit_With
4692 (N : Node_Id; Val : Boolean := True) is
4693 begin
4694 pragma Assert (False
4695 or else NT (N).Nkind = N_With_Clause);
4696 Set_Flag16 (N, Val);
4697 end Set_Implicit_With;
4698
4699 procedure Set_Interface_List
4700 (N : Node_Id; Val : List_Id) is
4701 begin
4702 pragma Assert (False
4703 or else NT (N).Nkind = N_Derived_Type_Definition
4704 or else NT (N).Nkind = N_Formal_Derived_Type_Definition
4705 or else NT (N).Nkind = N_Private_Extension_Declaration
4706 or else NT (N).Nkind = N_Protected_Type_Declaration
4707 or else NT (N).Nkind = N_Record_Definition
4708 or else NT (N).Nkind = N_Single_Protected_Declaration
4709 or else NT (N).Nkind = N_Single_Task_Declaration
4710 or else NT (N).Nkind = N_Task_Type_Declaration);
4711 Set_List2_With_Parent (N, Val);
4712 end Set_Interface_List;
4713
4714 procedure Set_Interface_Present
4715 (N : Node_Id; Val : Boolean := True) is
4716 begin
4717 pragma Assert (False
4718 or else NT (N).Nkind = N_Derived_Type_Definition
4719 or else NT (N).Nkind = N_Record_Definition);
4720 Set_Flag16 (N, Val);
4721 end Set_Interface_Present;
4722
4723 procedure Set_Import_Interface_Present
4724 (N : Node_Id; Val : Boolean := True) is
4725 begin
4726 pragma Assert (False
4727 or else NT (N).Nkind = N_Pragma);
4728 Set_Flag16 (N, Val);
4729 end Set_Import_Interface_Present;
4730
4731 procedure Set_In_Present
4732 (N : Node_Id; Val : Boolean := True) is
4733 begin
4734 pragma Assert (False
4735 or else NT (N).Nkind = N_Formal_Object_Declaration
4736 or else NT (N).Nkind = N_Parameter_Specification);
4737 Set_Flag15 (N, Val);
4738 end Set_In_Present;
4739
4740 procedure Set_Includes_Infinities
4741 (N : Node_Id; Val : Boolean := True) is
4742 begin
4743 pragma Assert (False
4744 or else NT (N).Nkind = N_Range);
4745 Set_Flag11 (N, Val);
4746 end Set_Includes_Infinities;
4747
4748 procedure Set_Inherited_Discriminant
4749 (N : Node_Id; Val : Boolean := True) is
4750 begin
4751 pragma Assert (False
4752 or else NT (N).Nkind = N_Component_Association);
4753 Set_Flag13 (N, Val);
4754 end Set_Inherited_Discriminant;
4755
4756 procedure Set_Instance_Spec
4757 (N : Node_Id; Val : Node_Id) is
4758 begin
4759 pragma Assert (False
4760 or else NT (N).Nkind = N_Formal_Package_Declaration
4761 or else NT (N).Nkind = N_Function_Instantiation
4762 or else NT (N).Nkind = N_Package_Instantiation
4763 or else NT (N).Nkind = N_Procedure_Instantiation);
4764 Set_Node5 (N, Val); -- semantic field, no Parent set
4765 end Set_Instance_Spec;
4766
4767 procedure Set_Intval
4768 (N : Node_Id; Val : Uint) is
4769 begin
4770 pragma Assert (False
4771 or else NT (N).Nkind = N_Integer_Literal);
4772 Set_Uint3 (N, Val);
4773 end Set_Intval;
4774
4775 procedure Set_Is_Accessibility_Actual
4776 (N : Node_Id; Val : Boolean := True) is
4777 begin
4778 pragma Assert (False
4779 or else NT (N).Nkind = N_Parameter_Association);
4780 Set_Flag13 (N, Val);
4781 end Set_Is_Accessibility_Actual;
4782
4783 procedure Set_Is_Asynchronous_Call_Block
4784 (N : Node_Id; Val : Boolean := True) is
4785 begin
4786 pragma Assert (False
4787 or else NT (N).Nkind = N_Block_Statement);
4788 Set_Flag7 (N, Val);
4789 end Set_Is_Asynchronous_Call_Block;
4790
4791 procedure Set_Is_Boolean_Aspect
4792 (N : Node_Id; Val : Boolean := True) is
4793 begin
4794 pragma Assert (False
4795 or else NT (N).Nkind = N_Aspect_Specification);
4796 Set_Flag16 (N, Val);
4797 end Set_Is_Boolean_Aspect;
4798
4799 procedure Set_Is_Component_Left_Opnd
4800 (N : Node_Id; Val : Boolean := True) is
4801 begin
4802 pragma Assert (False
4803 or else NT (N).Nkind = N_Op_Concat);
4804 Set_Flag13 (N, Val);
4805 end Set_Is_Component_Left_Opnd;
4806
4807 procedure Set_Is_Component_Right_Opnd
4808 (N : Node_Id; Val : Boolean := True) is
4809 begin
4810 pragma Assert (False
4811 or else NT (N).Nkind = N_Op_Concat);
4812 Set_Flag14 (N, Val);
4813 end Set_Is_Component_Right_Opnd;
4814
4815 procedure Set_Is_Controlling_Actual
4816 (N : Node_Id; Val : Boolean := True) is
4817 begin
4818 pragma Assert (False
4819 or else NT (N).Nkind in N_Subexpr);
4820 Set_Flag16 (N, Val);
4821 end Set_Is_Controlling_Actual;
4822
4823 procedure Set_Is_Delayed_Aspect
4824 (N : Node_Id; Val : Boolean := True) is
4825 begin
4826 pragma Assert (False
4827 or else NT (N).Nkind = N_Aspect_Specification
4828 or else NT (N).Nkind = N_Attribute_Definition_Clause
4829 or else NT (N).Nkind = N_Pragma);
4830 Set_Flag14 (N, Val);
4831 end Set_Is_Delayed_Aspect;
4832
4833 procedure Set_Is_Dynamic_Coextension
4834 (N : Node_Id; Val : Boolean := True) is
4835 begin
4836 pragma Assert (False
4837 or else NT (N).Nkind = N_Allocator);
4838 Set_Flag18 (N, Val);
4839 end Set_Is_Dynamic_Coextension;
4840
4841 procedure Set_Is_Elsif
4842 (N : Node_Id; Val : Boolean := True) is
4843 begin
4844 pragma Assert (False
4845 or else NT (N).Nkind = N_Conditional_Expression);
4846 Set_Flag13 (N, Val);
4847 end Set_Is_Elsif;
4848
4849 procedure Set_Is_Entry_Barrier_Function
4850 (N : Node_Id; Val : Boolean := True) is
4851 begin
4852 pragma Assert (False
4853 or else NT (N).Nkind = N_Subprogram_Body);
4854 Set_Flag8 (N, Val);
4855 end Set_Is_Entry_Barrier_Function;
4856
4857 procedure Set_Is_Expanded_Build_In_Place_Call
4858 (N : Node_Id; Val : Boolean := True) is
4859 begin
4860 pragma Assert (False
4861 or else NT (N).Nkind = N_Function_Call);
4862 Set_Flag11 (N, Val);
4863 end Set_Is_Expanded_Build_In_Place_Call;
4864
4865 procedure Set_Is_Folded_In_Parser
4866 (N : Node_Id; Val : Boolean := True) is
4867 begin
4868 pragma Assert (False
4869 or else NT (N).Nkind = N_String_Literal);
4870 Set_Flag4 (N, Val);
4871 end Set_Is_Folded_In_Parser;
4872
4873 procedure Set_Is_In_Discriminant_Check
4874 (N : Node_Id; Val : Boolean := True) is
4875 begin
4876 pragma Assert (False
4877 or else NT (N).Nkind = N_Selected_Component);
4878 Set_Flag11 (N, Val);
4879 end Set_Is_In_Discriminant_Check;
4880
4881 procedure Set_Is_Machine_Number
4882 (N : Node_Id; Val : Boolean := True) is
4883 begin
4884 pragma Assert (False
4885 or else NT (N).Nkind = N_Real_Literal);
4886 Set_Flag11 (N, Val);
4887 end Set_Is_Machine_Number;
4888
4889 procedure Set_Is_Null_Loop
4890 (N : Node_Id; Val : Boolean := True) is
4891 begin
4892 pragma Assert (False
4893 or else NT (N).Nkind = N_Loop_Statement);
4894 Set_Flag16 (N, Val);
4895 end Set_Is_Null_Loop;
4896
4897 procedure Set_Is_Overloaded
4898 (N : Node_Id; Val : Boolean := True) is
4899 begin
4900 pragma Assert (False
4901 or else NT (N).Nkind in N_Subexpr);
4902 Set_Flag5 (N, Val);
4903 end Set_Is_Overloaded;
4904
4905 procedure Set_Is_Power_Of_2_For_Shift
4906 (N : Node_Id; Val : Boolean := True) is
4907 begin
4908 pragma Assert (False
4909 or else NT (N).Nkind = N_Op_Expon);
4910 Set_Flag13 (N, Val);
4911 end Set_Is_Power_Of_2_For_Shift;
4912
4913 procedure Set_Is_Protected_Subprogram_Body
4914 (N : Node_Id; Val : Boolean := True) is
4915 begin
4916 pragma Assert (False
4917 or else NT (N).Nkind = N_Subprogram_Body);
4918 Set_Flag7 (N, Val);
4919 end Set_Is_Protected_Subprogram_Body;
4920
4921 procedure Set_Is_Static_Coextension
4922 (N : Node_Id; Val : Boolean := True) is
4923 begin
4924 pragma Assert (False
4925 or else NT (N).Nkind = N_Allocator);
4926 Set_Flag14 (N, Val);
4927 end Set_Is_Static_Coextension;
4928
4929 procedure Set_Is_Static_Expression
4930 (N : Node_Id; Val : Boolean := True) is
4931 begin
4932 pragma Assert (False
4933 or else NT (N).Nkind in N_Subexpr);
4934 Set_Flag6 (N, Val);
4935 end Set_Is_Static_Expression;
4936
4937 procedure Set_Is_Subprogram_Descriptor
4938 (N : Node_Id; Val : Boolean := True) is
4939 begin
4940 pragma Assert (False
4941 or else NT (N).Nkind = N_Object_Declaration);
4942 Set_Flag16 (N, Val);
4943 end Set_Is_Subprogram_Descriptor;
4944
4945 procedure Set_Is_Task_Allocation_Block
4946 (N : Node_Id; Val : Boolean := True) is
4947 begin
4948 pragma Assert (False
4949 or else NT (N).Nkind = N_Block_Statement);
4950 Set_Flag6 (N, Val);
4951 end Set_Is_Task_Allocation_Block;
4952
4953 procedure Set_Is_Task_Master
4954 (N : Node_Id; Val : Boolean := True) is
4955 begin
4956 pragma Assert (False
4957 or else NT (N).Nkind = N_Block_Statement
4958 or else NT (N).Nkind = N_Subprogram_Body
4959 or else NT (N).Nkind = N_Task_Body);
4960 Set_Flag5 (N, Val);
4961 end Set_Is_Task_Master;
4962
4963 procedure Set_Iteration_Scheme
4964 (N : Node_Id; Val : Node_Id) is
4965 begin
4966 pragma Assert (False
4967 or else NT (N).Nkind = N_Loop_Statement);
4968 Set_Node2_With_Parent (N, Val);
4969 end Set_Iteration_Scheme;
4970
4971 procedure Set_Iterator_Specification
4972 (N : Node_Id; Val : Node_Id) is
4973 begin
4974 pragma Assert (False
4975 or else NT (N).Nkind = N_Iteration_Scheme
4976 or else NT (N).Nkind = N_Quantified_Expression);
4977 Set_Node2_With_Parent (N, Val);
4978 end Set_Iterator_Specification;
4979
4980 procedure Set_Itype
4981 (N : Node_Id; Val : Entity_Id) is
4982 begin
4983 pragma Assert (False
4984 or else NT (N).Nkind = N_Itype_Reference);
4985 Set_Node1 (N, Val); -- no parent, semantic field
4986 end Set_Itype;
4987
4988 procedure Set_Kill_Range_Check
4989 (N : Node_Id; Val : Boolean := True) is
4990 begin
4991 pragma Assert (False
4992 or else NT (N).Nkind = N_Unchecked_Type_Conversion);
4993 Set_Flag11 (N, Val);
4994 end Set_Kill_Range_Check;
4995
4996 procedure Set_Label_Construct
4997 (N : Node_Id; Val : Node_Id) is
4998 begin
4999 pragma Assert (False
5000 or else NT (N).Nkind = N_Implicit_Label_Declaration);
5001 Set_Node2 (N, Val); -- semantic field, no parent set
5002 end Set_Label_Construct;
5003
5004 procedure Set_Last_Bit
5005 (N : Node_Id; Val : Node_Id) is
5006 begin
5007 pragma Assert (False
5008 or else NT (N).Nkind = N_Component_Clause);
5009 Set_Node4_With_Parent (N, Val);
5010 end Set_Last_Bit;
5011
5012 procedure Set_Last_Name
5013 (N : Node_Id; Val : Boolean := True) is
5014 begin
5015 pragma Assert (False
5016 or else NT (N).Nkind = N_With_Clause);
5017 Set_Flag6 (N, Val);
5018 end Set_Last_Name;
5019
5020 procedure Set_Left_Opnd
5021 (N : Node_Id; Val : Node_Id) is
5022 begin
5023 pragma Assert (False
5024 or else NT (N).Nkind = N_And_Then
5025 or else NT (N).Nkind = N_In
5026 or else NT (N).Nkind = N_Not_In
5027 or else NT (N).Nkind = N_Or_Else
5028 or else NT (N).Nkind in N_Binary_Op);
5029 Set_Node2_With_Parent (N, Val);
5030 end Set_Left_Opnd;
5031
5032 procedure Set_Library_Unit
5033 (N : Node_Id; Val : Node_Id) is
5034 begin
5035 pragma Assert (False
5036 or else NT (N).Nkind = N_Compilation_Unit
5037 or else NT (N).Nkind = N_Package_Body_Stub
5038 or else NT (N).Nkind = N_Protected_Body_Stub
5039 or else NT (N).Nkind = N_Subprogram_Body_Stub
5040 or else NT (N).Nkind = N_Task_Body_Stub
5041 or else NT (N).Nkind = N_With_Clause);
5042 Set_Node4 (N, Val); -- semantic field, no parent set
5043 end Set_Library_Unit;
5044
5045 procedure Set_Limited_View_Installed
5046 (N : Node_Id; Val : Boolean := True) is
5047 begin
5048 pragma Assert (False
5049 or else NT (N).Nkind = N_Package_Specification
5050 or else NT (N).Nkind = N_With_Clause);
5051 Set_Flag18 (N, Val);
5052 end Set_Limited_View_Installed;
5053
5054 procedure Set_Limited_Present
5055 (N : Node_Id; Val : Boolean := True) is
5056 begin
5057 pragma Assert (False
5058 or else NT (N).Nkind = N_Derived_Type_Definition
5059 or else NT (N).Nkind = N_Formal_Derived_Type_Definition
5060 or else NT (N).Nkind = N_Formal_Private_Type_Definition
5061 or else NT (N).Nkind = N_Private_Extension_Declaration
5062 or else NT (N).Nkind = N_Private_Type_Declaration
5063 or else NT (N).Nkind = N_Record_Definition
5064 or else NT (N).Nkind = N_With_Clause);
5065 Set_Flag17 (N, Val);
5066 end Set_Limited_Present;
5067
5068 procedure Set_Literals
5069 (N : Node_Id; Val : List_Id) is
5070 begin
5071 pragma Assert (False
5072 or else NT (N).Nkind = N_Enumeration_Type_Definition);
5073 Set_List1_With_Parent (N, Val);
5074 end Set_Literals;
5075
5076 procedure Set_Local_Raise_Not_OK
5077 (N : Node_Id; Val : Boolean := True) is
5078 begin
5079 pragma Assert (False
5080 or else NT (N).Nkind = N_Exception_Handler);
5081 Set_Flag7 (N, Val);
5082 end Set_Local_Raise_Not_OK;
5083
5084 procedure Set_Local_Raise_Statements
5085 (N : Node_Id; Val : Elist_Id) is
5086 begin
5087 pragma Assert (False
5088 or else NT (N).Nkind = N_Exception_Handler);
5089 Set_Elist1 (N, Val);
5090 end Set_Local_Raise_Statements;
5091
5092 procedure Set_Loop_Actions
5093 (N : Node_Id; Val : List_Id) is
5094 begin
5095 pragma Assert (False
5096 or else NT (N).Nkind = N_Component_Association);
5097 Set_List2 (N, Val); -- semantic field, no parent set
5098 end Set_Loop_Actions;
5099
5100 procedure Set_Loop_Parameter_Specification
5101 (N : Node_Id; Val : Node_Id) is
5102 begin
5103 pragma Assert (False
5104 or else NT (N).Nkind = N_Iteration_Scheme
5105 or else NT (N).Nkind = N_Quantified_Expression);
5106 Set_Node4_With_Parent (N, Val);
5107 end Set_Loop_Parameter_Specification;
5108
5109 procedure Set_Low_Bound
5110 (N : Node_Id; Val : Node_Id) is
5111 begin
5112 pragma Assert (False
5113 or else NT (N).Nkind = N_Range
5114 or else NT (N).Nkind = N_Real_Range_Specification
5115 or else NT (N).Nkind = N_Signed_Integer_Type_Definition);
5116 Set_Node1_With_Parent (N, Val);
5117 end Set_Low_Bound;
5118
5119 procedure Set_Mod_Clause
5120 (N : Node_Id; Val : Node_Id) is
5121 begin
5122 pragma Assert (False
5123 or else NT (N).Nkind = N_Record_Representation_Clause);
5124 Set_Node2_With_Parent (N, Val);
5125 end Set_Mod_Clause;
5126
5127 procedure Set_More_Ids
5128 (N : Node_Id; Val : Boolean := True) is
5129 begin
5130 pragma Assert (False
5131 or else NT (N).Nkind = N_Component_Declaration
5132 or else NT (N).Nkind = N_Discriminant_Specification
5133 or else NT (N).Nkind = N_Exception_Declaration
5134 or else NT (N).Nkind = N_Formal_Object_Declaration
5135 or else NT (N).Nkind = N_Number_Declaration
5136 or else NT (N).Nkind = N_Object_Declaration
5137 or else NT (N).Nkind = N_Parameter_Specification);
5138 Set_Flag5 (N, Val);
5139 end Set_More_Ids;
5140
5141 procedure Set_Must_Be_Byte_Aligned
5142 (N : Node_Id; Val : Boolean := True) is
5143 begin
5144 pragma Assert (False
5145 or else NT (N).Nkind = N_Attribute_Reference);
5146 Set_Flag14 (N, Val);
5147 end Set_Must_Be_Byte_Aligned;
5148
5149 procedure Set_Must_Not_Freeze
5150 (N : Node_Id; Val : Boolean := True) is
5151 begin
5152 pragma Assert (False
5153 or else NT (N).Nkind = N_Subtype_Indication
5154 or else NT (N).Nkind in N_Subexpr);
5155 Set_Flag8 (N, Val);
5156 end Set_Must_Not_Freeze;
5157
5158 procedure Set_Must_Not_Override
5159 (N : Node_Id; Val : Boolean := True) is
5160 begin
5161 pragma Assert (False
5162 or else NT (N).Nkind = N_Entry_Declaration
5163 or else NT (N).Nkind = N_Function_Instantiation
5164 or else NT (N).Nkind = N_Function_Specification
5165 or else NT (N).Nkind = N_Procedure_Instantiation
5166 or else NT (N).Nkind = N_Procedure_Specification);
5167 Set_Flag15 (N, Val);
5168 end Set_Must_Not_Override;
5169
5170 procedure Set_Must_Override
5171 (N : Node_Id; Val : Boolean := True) is
5172 begin
5173 pragma Assert (False
5174 or else NT (N).Nkind = N_Entry_Declaration
5175 or else NT (N).Nkind = N_Function_Instantiation
5176 or else NT (N).Nkind = N_Function_Specification
5177 or else NT (N).Nkind = N_Procedure_Instantiation
5178 or else NT (N).Nkind = N_Procedure_Specification);
5179 Set_Flag14 (N, Val);
5180 end Set_Must_Override;
5181
5182 procedure Set_Name
5183 (N : Node_Id; Val : Node_Id) is
5184 begin
5185 pragma Assert (False
5186 or else NT (N).Nkind = N_Assignment_Statement
5187 or else NT (N).Nkind = N_Attribute_Definition_Clause
5188 or else NT (N).Nkind = N_Defining_Program_Unit_Name
5189 or else NT (N).Nkind = N_Designator
5190 or else NT (N).Nkind = N_Entry_Call_Statement
5191 or else NT (N).Nkind = N_Exception_Renaming_Declaration
5192 or else NT (N).Nkind = N_Exit_Statement
5193 or else NT (N).Nkind = N_Formal_Package_Declaration
5194 or else NT (N).Nkind = N_Function_Call
5195 or else NT (N).Nkind = N_Function_Instantiation
5196 or else NT (N).Nkind = N_Generic_Function_Renaming_Declaration
5197 or else NT (N).Nkind = N_Generic_Package_Renaming_Declaration
5198 or else NT (N).Nkind = N_Generic_Procedure_Renaming_Declaration
5199 or else NT (N).Nkind = N_Goto_Statement
5200 or else NT (N).Nkind = N_Iterator_Specification
5201 or else NT (N).Nkind = N_Object_Renaming_Declaration
5202 or else NT (N).Nkind = N_Package_Instantiation
5203 or else NT (N).Nkind = N_Package_Renaming_Declaration
5204 or else NT (N).Nkind = N_Procedure_Call_Statement
5205 or else NT (N).Nkind = N_Procedure_Instantiation
5206 or else NT (N).Nkind = N_Raise_Statement
5207 or else NT (N).Nkind = N_Requeue_Statement
5208 or else NT (N).Nkind = N_Subprogram_Renaming_Declaration
5209 or else NT (N).Nkind = N_Subunit
5210 or else NT (N).Nkind = N_Variant_Part
5211 or else NT (N).Nkind = N_With_Clause);
5212 Set_Node2_With_Parent (N, Val);
5213 end Set_Name;
5214
5215 procedure Set_Names
5216 (N : Node_Id; Val : List_Id) is
5217 begin
5218 pragma Assert (False
5219 or else NT (N).Nkind = N_Abort_Statement
5220 or else NT (N).Nkind = N_Use_Package_Clause);
5221 Set_List2_With_Parent (N, Val);
5222 end Set_Names;
5223
5224 procedure Set_Next_Entity
5225 (N : Node_Id; Val : Node_Id) is
5226 begin
5227 pragma Assert (False
5228 or else NT (N).Nkind = N_Defining_Character_Literal
5229 or else NT (N).Nkind = N_Defining_Identifier
5230 or else NT (N).Nkind = N_Defining_Operator_Symbol);
5231 Set_Node2 (N, Val); -- semantic field, no parent set
5232 end Set_Next_Entity;
5233
5234 procedure Set_Next_Exit_Statement
5235 (N : Node_Id; Val : Node_Id) is
5236 begin
5237 pragma Assert (False
5238 or else NT (N).Nkind = N_Exit_Statement);
5239 Set_Node3 (N, Val); -- semantic field, no parent set
5240 end Set_Next_Exit_Statement;
5241
5242 procedure Set_Next_Implicit_With
5243 (N : Node_Id; Val : Node_Id) is
5244 begin
5245 pragma Assert (False
5246 or else NT (N).Nkind = N_With_Clause);
5247 Set_Node3 (N, Val); -- semantic field, no parent set
5248 end Set_Next_Implicit_With;
5249
5250 procedure Set_Next_Named_Actual
5251 (N : Node_Id; Val : Node_Id) is
5252 begin
5253 pragma Assert (False
5254 or else NT (N).Nkind = N_Parameter_Association);
5255 Set_Node4 (N, Val); -- semantic field, no parent set
5256 end Set_Next_Named_Actual;
5257
5258 procedure Set_Next_Pragma
5259 (N : Node_Id; Val : Node_Id) is
5260 begin
5261 pragma Assert (False
5262 or else NT (N).Nkind = N_Pragma);
5263 Set_Node1 (N, Val); -- semantic field, no parent set
5264 end Set_Next_Pragma;
5265
5266 procedure Set_Next_Rep_Item
5267 (N : Node_Id; Val : Node_Id) is
5268 begin
5269 pragma Assert (False
5270 or else NT (N).Nkind = N_Aspect_Specification
5271 or else NT (N).Nkind = N_Attribute_Definition_Clause
5272 or else NT (N).Nkind = N_Enumeration_Representation_Clause
5273 or else NT (N).Nkind = N_Pragma
5274 or else NT (N).Nkind = N_Record_Representation_Clause);
5275 Set_Node5 (N, Val); -- semantic field, no parent set
5276 end Set_Next_Rep_Item;
5277
5278 procedure Set_Next_Use_Clause
5279 (N : Node_Id; Val : Node_Id) is
5280 begin
5281 pragma Assert (False
5282 or else NT (N).Nkind = N_Use_Package_Clause
5283 or else NT (N).Nkind = N_Use_Type_Clause);
5284 Set_Node3 (N, Val); -- semantic field, no parent set
5285 end Set_Next_Use_Clause;
5286
5287 procedure Set_No_Ctrl_Actions
5288 (N : Node_Id; Val : Boolean := True) is
5289 begin
5290 pragma Assert (False
5291 or else NT (N).Nkind = N_Assignment_Statement);
5292 Set_Flag7 (N, Val);
5293 end Set_No_Ctrl_Actions;
5294
5295 procedure Set_No_Elaboration_Check
5296 (N : Node_Id; Val : Boolean := True) is
5297 begin
5298 pragma Assert (False
5299 or else NT (N).Nkind = N_Function_Call
5300 or else NT (N).Nkind = N_Procedure_Call_Statement);
5301 Set_Flag14 (N, Val);
5302 end Set_No_Elaboration_Check;
5303
5304 procedure Set_No_Entities_Ref_In_Spec
5305 (N : Node_Id; Val : Boolean := True) is
5306 begin
5307 pragma Assert (False
5308 or else NT (N).Nkind = N_With_Clause);
5309 Set_Flag8 (N, Val);
5310 end Set_No_Entities_Ref_In_Spec;
5311
5312 procedure Set_No_Initialization
5313 (N : Node_Id; Val : Boolean := True) is
5314 begin
5315 pragma Assert (False
5316 or else NT (N).Nkind = N_Allocator
5317 or else NT (N).Nkind = N_Object_Declaration);
5318 Set_Flag13 (N, Val);
5319 end Set_No_Initialization;
5320
5321 procedure Set_No_Truncation
5322 (N : Node_Id; Val : Boolean := True) is
5323 begin
5324 pragma Assert (False
5325 or else NT (N).Nkind = N_Unchecked_Type_Conversion);
5326 Set_Flag17 (N, Val);
5327 end Set_No_Truncation;
5328
5329 procedure Set_Null_Present
5330 (N : Node_Id; Val : Boolean := True) is
5331 begin
5332 pragma Assert (False
5333 or else NT (N).Nkind = N_Component_List
5334 or else NT (N).Nkind = N_Procedure_Specification
5335 or else NT (N).Nkind = N_Record_Definition);
5336 Set_Flag13 (N, Val);
5337 end Set_Null_Present;
5338
5339 procedure Set_Null_Exclusion_Present
5340 (N : Node_Id; Val : Boolean := True) is
5341 begin
5342 pragma Assert (False
5343 or else NT (N).Nkind = N_Access_Definition
5344 or else NT (N).Nkind = N_Access_Function_Definition
5345 or else NT (N).Nkind = N_Access_Procedure_Definition
5346 or else NT (N).Nkind = N_Access_To_Object_Definition
5347 or else NT (N).Nkind = N_Allocator
5348 or else NT (N).Nkind = N_Component_Definition
5349 or else NT (N).Nkind = N_Derived_Type_Definition
5350 or else NT (N).Nkind = N_Discriminant_Specification
5351 or else NT (N).Nkind = N_Formal_Object_Declaration
5352 or else NT (N).Nkind = N_Function_Specification
5353 or else NT (N).Nkind = N_Object_Declaration
5354 or else NT (N).Nkind = N_Object_Renaming_Declaration
5355 or else NT (N).Nkind = N_Parameter_Specification
5356 or else NT (N).Nkind = N_Subtype_Declaration);
5357 Set_Flag11 (N, Val);
5358 end Set_Null_Exclusion_Present;
5359
5360 procedure Set_Null_Exclusion_In_Return_Present
5361 (N : Node_Id; Val : Boolean := True) is
5362 begin
5363 pragma Assert (False
5364 or else NT (N).Nkind = N_Access_Function_Definition);
5365 Set_Flag14 (N, Val);
5366 end Set_Null_Exclusion_In_Return_Present;
5367
5368 procedure Set_Null_Record_Present
5369 (N : Node_Id; Val : Boolean := True) is
5370 begin
5371 pragma Assert (False
5372 or else NT (N).Nkind = N_Aggregate
5373 or else NT (N).Nkind = N_Extension_Aggregate);
5374 Set_Flag17 (N, Val);
5375 end Set_Null_Record_Present;
5376
5377 procedure Set_Object_Definition
5378 (N : Node_Id; Val : Node_Id) is
5379 begin
5380 pragma Assert (False
5381 or else NT (N).Nkind = N_Object_Declaration);
5382 Set_Node4_With_Parent (N, Val);
5383 end Set_Object_Definition;
5384
5385 procedure Set_Of_Present
5386 (N : Node_Id; Val : Boolean := True) is
5387 begin
5388 pragma Assert (False
5389 or else NT (N).Nkind = N_Iterator_Specification);
5390 Set_Flag16 (N, Val);
5391 end Set_Of_Present;
5392
5393 procedure Set_Original_Discriminant
5394 (N : Node_Id; Val : Node_Id) is
5395 begin
5396 pragma Assert (False
5397 or else NT (N).Nkind = N_Identifier);
5398 Set_Node2 (N, Val); -- semantic field, no parent set
5399 end Set_Original_Discriminant;
5400
5401 procedure Set_Original_Entity
5402 (N : Node_Id; Val : Entity_Id) is
5403 begin
5404 pragma Assert (False
5405 or else NT (N).Nkind = N_Integer_Literal
5406 or else NT (N).Nkind = N_Real_Literal);
5407 Set_Node2 (N, Val); -- semantic field, no parent set
5408 end Set_Original_Entity;
5409
5410 procedure Set_Others_Discrete_Choices
5411 (N : Node_Id; Val : List_Id) is
5412 begin
5413 pragma Assert (False
5414 or else NT (N).Nkind = N_Others_Choice);
5415 Set_List1_With_Parent (N, Val);
5416 end Set_Others_Discrete_Choices;
5417
5418 procedure Set_Out_Present
5419 (N : Node_Id; Val : Boolean := True) is
5420 begin
5421 pragma Assert (False
5422 or else NT (N).Nkind = N_Formal_Object_Declaration
5423 or else NT (N).Nkind = N_Parameter_Specification);
5424 Set_Flag17 (N, Val);
5425 end Set_Out_Present;
5426
5427 procedure Set_Parameter_Associations
5428 (N : Node_Id; Val : List_Id) is
5429 begin
5430 pragma Assert (False
5431 or else NT (N).Nkind = N_Entry_Call_Statement
5432 or else NT (N).Nkind = N_Function_Call
5433 or else NT (N).Nkind = N_Procedure_Call_Statement);
5434 Set_List3_With_Parent (N, Val);
5435 end Set_Parameter_Associations;
5436
5437 procedure Set_Parameter_List_Truncated
5438 (N : Node_Id; Val : Boolean := True) is
5439 begin
5440 pragma Assert (False
5441 or else NT (N).Nkind = N_Function_Call
5442 or else NT (N).Nkind = N_Procedure_Call_Statement);
5443 Set_Flag17 (N, Val);
5444 end Set_Parameter_List_Truncated;
5445
5446 procedure Set_Parameter_Specifications
5447 (N : Node_Id; Val : List_Id) is
5448 begin
5449 pragma Assert (False
5450 or else NT (N).Nkind = N_Accept_Statement
5451 or else NT (N).Nkind = N_Access_Function_Definition
5452 or else NT (N).Nkind = N_Access_Procedure_Definition
5453 or else NT (N).Nkind = N_Entry_Body_Formal_Part
5454 or else NT (N).Nkind = N_Entry_Declaration
5455 or else NT (N).Nkind = N_Function_Specification
5456 or else NT (N).Nkind = N_Procedure_Specification);
5457 Set_List3_With_Parent (N, Val);
5458 end Set_Parameter_Specifications;
5459
5460 procedure Set_Parameter_Type
5461 (N : Node_Id; Val : Node_Id) is
5462 begin
5463 pragma Assert (False
5464 or else NT (N).Nkind = N_Parameter_Specification);
5465 Set_Node2_With_Parent (N, Val);
5466 end Set_Parameter_Type;
5467
5468 procedure Set_Parent_Spec
5469 (N : Node_Id; Val : Node_Id) is
5470 begin
5471 pragma Assert (False
5472 or else NT (N).Nkind = N_Function_Instantiation
5473 or else NT (N).Nkind = N_Generic_Function_Renaming_Declaration
5474 or else NT (N).Nkind = N_Generic_Package_Declaration
5475 or else NT (N).Nkind = N_Generic_Package_Renaming_Declaration
5476 or else NT (N).Nkind = N_Generic_Procedure_Renaming_Declaration
5477 or else NT (N).Nkind = N_Generic_Subprogram_Declaration
5478 or else NT (N).Nkind = N_Package_Declaration
5479 or else NT (N).Nkind = N_Package_Instantiation
5480 or else NT (N).Nkind = N_Package_Renaming_Declaration
5481 or else NT (N).Nkind = N_Procedure_Instantiation
5482 or else NT (N).Nkind = N_Subprogram_Declaration
5483 or else NT (N).Nkind = N_Subprogram_Renaming_Declaration);
5484 Set_Node4 (N, Val); -- semantic field, no parent set
5485 end Set_Parent_Spec;
5486
5487 procedure Set_Position
5488 (N : Node_Id; Val : Node_Id) is
5489 begin
5490 pragma Assert (False
5491 or else NT (N).Nkind = N_Component_Clause);
5492 Set_Node2_With_Parent (N, Val);
5493 end Set_Position;
5494
5495 procedure Set_Pragma_Argument_Associations
5496 (N : Node_Id; Val : List_Id) is
5497 begin
5498 pragma Assert (False
5499 or else NT (N).Nkind = N_Pragma);
5500 Set_List2_With_Parent (N, Val);
5501 end Set_Pragma_Argument_Associations;
5502
5503 procedure Set_Pragma_Identifier
5504 (N : Node_Id; Val : Node_Id) is
5505 begin
5506 pragma Assert (False
5507 or else NT (N).Nkind = N_Pragma);
5508 Set_Node4_With_Parent (N, Val);
5509 end Set_Pragma_Identifier;
5510
5511 procedure Set_Pragmas_After
5512 (N : Node_Id; Val : List_Id) is
5513 begin
5514 pragma Assert (False
5515 or else NT (N).Nkind = N_Compilation_Unit_Aux
5516 or else NT (N).Nkind = N_Terminate_Alternative);
5517 Set_List5_With_Parent (N, Val);
5518 end Set_Pragmas_After;
5519
5520 procedure Set_Pragmas_Before
5521 (N : Node_Id; Val : List_Id) is
5522 begin
5523 pragma Assert (False
5524 or else NT (N).Nkind = N_Accept_Alternative
5525 or else NT (N).Nkind = N_Delay_Alternative
5526 or else NT (N).Nkind = N_Entry_Call_Alternative
5527 or else NT (N).Nkind = N_Mod_Clause
5528 or else NT (N).Nkind = N_Terminate_Alternative
5529 or else NT (N).Nkind = N_Triggering_Alternative);
5530 Set_List4_With_Parent (N, Val);
5531 end Set_Pragmas_Before;
5532
5533 procedure Set_Prefix
5534 (N : Node_Id; Val : Node_Id) is
5535 begin
5536 pragma Assert (False
5537 or else NT (N).Nkind = N_Attribute_Reference
5538 or else NT (N).Nkind = N_Expanded_Name
5539 or else NT (N).Nkind = N_Explicit_Dereference
5540 or else NT (N).Nkind = N_Indexed_Component
5541 or else NT (N).Nkind = N_Reference
5542 or else NT (N).Nkind = N_Selected_Component
5543 or else NT (N).Nkind = N_Slice);
5544 Set_Node3_With_Parent (N, Val);
5545 end Set_Prefix;
5546
5547 procedure Set_Premature_Use
5548 (N : Node_Id; Val : Node_Id) is
5549 begin
5550 pragma Assert (False
5551 or else NT (N).Nkind = N_Incomplete_Type_Declaration);
5552 Set_Node5 (N, Val);
5553 end Set_Premature_Use;
5554
5555 procedure Set_Present_Expr
5556 (N : Node_Id; Val : Uint) is
5557 begin
5558 pragma Assert (False
5559 or else NT (N).Nkind = N_Variant);
5560 Set_Uint3 (N, Val);
5561 end Set_Present_Expr;
5562
5563 procedure Set_Prev_Ids
5564 (N : Node_Id; Val : Boolean := True) is
5565 begin
5566 pragma Assert (False
5567 or else NT (N).Nkind = N_Component_Declaration
5568 or else NT (N).Nkind = N_Discriminant_Specification
5569 or else NT (N).Nkind = N_Exception_Declaration
5570 or else NT (N).Nkind = N_Formal_Object_Declaration
5571 or else NT (N).Nkind = N_Number_Declaration
5572 or else NT (N).Nkind = N_Object_Declaration
5573 or else NT (N).Nkind = N_Parameter_Specification);
5574 Set_Flag6 (N, Val);
5575 end Set_Prev_Ids;
5576
5577 procedure Set_Print_In_Hex
5578 (N : Node_Id; Val : Boolean := True) is
5579 begin
5580 pragma Assert (False
5581 or else NT (N).Nkind = N_Integer_Literal);
5582 Set_Flag13 (N, Val);
5583 end Set_Print_In_Hex;
5584
5585 procedure Set_Private_Declarations
5586 (N : Node_Id; Val : List_Id) is
5587 begin
5588 pragma Assert (False
5589 or else NT (N).Nkind = N_Package_Specification
5590 or else NT (N).Nkind = N_Protected_Definition
5591 or else NT (N).Nkind = N_Task_Definition);
5592 Set_List3_With_Parent (N, Val);
5593 end Set_Private_Declarations;
5594
5595 procedure Set_Private_Present
5596 (N : Node_Id; Val : Boolean := True) is
5597 begin
5598 pragma Assert (False
5599 or else NT (N).Nkind = N_Compilation_Unit
5600 or else NT (N).Nkind = N_Formal_Derived_Type_Definition
5601 or else NT (N).Nkind = N_With_Clause);
5602 Set_Flag15 (N, Val);
5603 end Set_Private_Present;
5604
5605 procedure Set_Procedure_To_Call
5606 (N : Node_Id; Val : Node_Id) is
5607 begin
5608 pragma Assert (False
5609 or else NT (N).Nkind = N_Allocator
5610 or else NT (N).Nkind = N_Extended_Return_Statement
5611 or else NT (N).Nkind = N_Free_Statement
5612 or else NT (N).Nkind = N_Return_Statement);
5613 Set_Node2 (N, Val); -- semantic field, no parent set
5614 end Set_Procedure_To_Call;
5615
5616 procedure Set_Proper_Body
5617 (N : Node_Id; Val : Node_Id) is
5618 begin
5619 pragma Assert (False
5620 or else NT (N).Nkind = N_Subunit);
5621 Set_Node1_With_Parent (N, Val);
5622 end Set_Proper_Body;
5623
5624 procedure Set_Protected_Definition
5625 (N : Node_Id; Val : Node_Id) is
5626 begin
5627 pragma Assert (False
5628 or else NT (N).Nkind = N_Protected_Type_Declaration
5629 or else NT (N).Nkind = N_Single_Protected_Declaration);
5630 Set_Node3_With_Parent (N, Val);
5631 end Set_Protected_Definition;
5632
5633 procedure Set_Protected_Present
5634 (N : Node_Id; Val : Boolean := True) is
5635 begin
5636 pragma Assert (False
5637 or else NT (N).Nkind = N_Access_Function_Definition
5638 or else NT (N).Nkind = N_Access_Procedure_Definition
5639 or else NT (N).Nkind = N_Derived_Type_Definition
5640 or else NT (N).Nkind = N_Record_Definition);
5641 Set_Flag6 (N, Val);
5642 end Set_Protected_Present;
5643
5644 procedure Set_Raises_Constraint_Error
5645 (N : Node_Id; Val : Boolean := True) is
5646 begin
5647 pragma Assert (False
5648 or else NT (N).Nkind in N_Subexpr);
5649 Set_Flag7 (N, Val);
5650 end Set_Raises_Constraint_Error;
5651
5652 procedure Set_Range_Constraint
5653 (N : Node_Id; Val : Node_Id) is
5654 begin
5655 pragma Assert (False
5656 or else NT (N).Nkind = N_Delta_Constraint
5657 or else NT (N).Nkind = N_Digits_Constraint);
5658 Set_Node4_With_Parent (N, Val);
5659 end Set_Range_Constraint;
5660
5661 procedure Set_Range_Expression
5662 (N : Node_Id; Val : Node_Id) is
5663 begin
5664 pragma Assert (False
5665 or else NT (N).Nkind = N_Range_Constraint);
5666 Set_Node4_With_Parent (N, Val);
5667 end Set_Range_Expression;
5668
5669 procedure Set_Real_Range_Specification
5670 (N : Node_Id; Val : Node_Id) is
5671 begin
5672 pragma Assert (False
5673 or else NT (N).Nkind = N_Decimal_Fixed_Point_Definition
5674 or else NT (N).Nkind = N_Floating_Point_Definition
5675 or else NT (N).Nkind = N_Ordinary_Fixed_Point_Definition);
5676 Set_Node4_With_Parent (N, Val);
5677 end Set_Real_Range_Specification;
5678
5679 procedure Set_Realval
5680 (N : Node_Id; Val : Ureal) is
5681 begin
5682 pragma Assert (False
5683 or else NT (N).Nkind = N_Real_Literal);
5684 Set_Ureal3 (N, Val);
5685 end Set_Realval;
5686
5687 procedure Set_Reason
5688 (N : Node_Id; Val : Uint) is
5689 begin
5690 pragma Assert (False
5691 or else NT (N).Nkind = N_Raise_Constraint_Error
5692 or else NT (N).Nkind = N_Raise_Program_Error
5693 or else NT (N).Nkind = N_Raise_Storage_Error);
5694 Set_Uint3 (N, Val);
5695 end Set_Reason;
5696
5697 procedure Set_Record_Extension_Part
5698 (N : Node_Id; Val : Node_Id) is
5699 begin
5700 pragma Assert (False
5701 or else NT (N).Nkind = N_Derived_Type_Definition);
5702 Set_Node3_With_Parent (N, Val);
5703 end Set_Record_Extension_Part;
5704
5705 procedure Set_Redundant_Use
5706 (N : Node_Id; Val : Boolean := True) is
5707 begin
5708 pragma Assert (False
5709 or else NT (N).Nkind = N_Attribute_Reference
5710 or else NT (N).Nkind = N_Expanded_Name
5711 or else NT (N).Nkind = N_Identifier);
5712 Set_Flag13 (N, Val);
5713 end Set_Redundant_Use;
5714
5715 procedure Set_Renaming_Exception
5716 (N : Node_Id; Val : Node_Id) is
5717 begin
5718 pragma Assert (False
5719 or else NT (N).Nkind = N_Exception_Declaration);
5720 Set_Node2 (N, Val);
5721 end Set_Renaming_Exception;
5722
5723 procedure Set_Result_Definition
5724 (N : Node_Id; Val : Node_Id) is
5725 begin
5726 pragma Assert (False
5727 or else NT (N).Nkind = N_Access_Function_Definition
5728 or else NT (N).Nkind = N_Function_Specification);
5729 Set_Node4_With_Parent (N, Val);
5730 end Set_Result_Definition;
5731
5732 procedure Set_Return_Object_Declarations
5733 (N : Node_Id; Val : List_Id) is
5734 begin
5735 pragma Assert (False
5736 or else NT (N).Nkind = N_Extended_Return_Statement);
5737 Set_List3_With_Parent (N, Val);
5738 end Set_Return_Object_Declarations;
5739
5740 procedure Set_Return_Statement_Entity
5741 (N : Node_Id; Val : Node_Id) is
5742 begin
5743 pragma Assert (False
5744 or else NT (N).Nkind = N_Extended_Return_Statement
5745 or else NT (N).Nkind = N_Return_Statement);
5746 Set_Node5 (N, Val); -- semantic field, no parent set
5747 end Set_Return_Statement_Entity;
5748
5749 procedure Set_Reverse_Present
5750 (N : Node_Id; Val : Boolean := True) is
5751 begin
5752 pragma Assert (False
5753 or else NT (N).Nkind = N_Iterator_Specification
5754 or else NT (N).Nkind = N_Loop_Parameter_Specification);
5755 Set_Flag15 (N, Val);
5756 end Set_Reverse_Present;
5757
5758 procedure Set_Right_Opnd
5759 (N : Node_Id; Val : Node_Id) is
5760 begin
5761 pragma Assert (False
5762 or else NT (N).Nkind in N_Op
5763 or else NT (N).Nkind = N_And_Then
5764 or else NT (N).Nkind = N_In
5765 or else NT (N).Nkind = N_Not_In
5766 or else NT (N).Nkind = N_Or_Else);
5767 Set_Node3_With_Parent (N, Val);
5768 end Set_Right_Opnd;
5769
5770 procedure Set_Rounded_Result
5771 (N : Node_Id; Val : Boolean := True) is
5772 begin
5773 pragma Assert (False
5774 or else NT (N).Nkind = N_Op_Divide
5775 or else NT (N).Nkind = N_Op_Multiply
5776 or else NT (N).Nkind = N_Type_Conversion);
5777 Set_Flag18 (N, Val);
5778 end Set_Rounded_Result;
5779
5780 procedure Set_SCIL_Controlling_Tag
5781 (N : Node_Id; Val : Node_Id) is
5782 begin
5783 pragma Assert (False
5784 or else NT (N).Nkind = N_SCIL_Dispatching_Call);
5785 Set_Node5 (N, Val); -- semantic field, no parent set
5786 end Set_SCIL_Controlling_Tag;
5787
5788 procedure Set_SCIL_Entity
5789 (N : Node_Id; Val : Node_Id) is
5790 begin
5791 pragma Assert (False
5792 or else NT (N).Nkind = N_SCIL_Dispatch_Table_Tag_Init
5793 or else NT (N).Nkind = N_SCIL_Dispatching_Call
5794 or else NT (N).Nkind = N_SCIL_Membership_Test);
5795 Set_Node4 (N, Val); -- semantic field, no parent set
5796 end Set_SCIL_Entity;
5797
5798 procedure Set_SCIL_Tag_Value
5799 (N : Node_Id; Val : Node_Id) is
5800 begin
5801 pragma Assert (False
5802 or else NT (N).Nkind = N_SCIL_Membership_Test);
5803 Set_Node5 (N, Val); -- semantic field, no parent set
5804 end Set_SCIL_Tag_Value;
5805
5806 procedure Set_SCIL_Target_Prim
5807 (N : Node_Id; Val : Node_Id) is
5808 begin
5809 pragma Assert (False
5810 or else NT (N).Nkind = N_SCIL_Dispatching_Call);
5811 Set_Node2 (N, Val); -- semantic field, no parent set
5812 end Set_SCIL_Target_Prim;
5813
5814 procedure Set_Scope
5815 (N : Node_Id; Val : Node_Id) is
5816 begin
5817 pragma Assert (False
5818 or else NT (N).Nkind = N_Defining_Character_Literal
5819 or else NT (N).Nkind = N_Defining_Identifier
5820 or else NT (N).Nkind = N_Defining_Operator_Symbol);
5821 Set_Node3 (N, Val); -- semantic field, no parent set
5822 end Set_Scope;
5823
5824 procedure Set_Select_Alternatives
5825 (N : Node_Id; Val : List_Id) is
5826 begin
5827 pragma Assert (False
5828 or else NT (N).Nkind = N_Selective_Accept);
5829 Set_List1_With_Parent (N, Val);
5830 end Set_Select_Alternatives;
5831
5832 procedure Set_Selector_Name
5833 (N : Node_Id; Val : Node_Id) is
5834 begin
5835 pragma Assert (False
5836 or else NT (N).Nkind = N_Expanded_Name
5837 or else NT (N).Nkind = N_Generic_Association
5838 or else NT (N).Nkind = N_Parameter_Association
5839 or else NT (N).Nkind = N_Selected_Component);
5840 Set_Node2_With_Parent (N, Val);
5841 end Set_Selector_Name;
5842
5843 procedure Set_Selector_Names
5844 (N : Node_Id; Val : List_Id) is
5845 begin
5846 pragma Assert (False
5847 or else NT (N).Nkind = N_Discriminant_Association);
5848 Set_List1_With_Parent (N, Val);
5849 end Set_Selector_Names;
5850
5851 procedure Set_Shift_Count_OK
5852 (N : Node_Id; Val : Boolean := True) is
5853 begin
5854 pragma Assert (False
5855 or else NT (N).Nkind = N_Op_Rotate_Left
5856 or else NT (N).Nkind = N_Op_Rotate_Right
5857 or else NT (N).Nkind = N_Op_Shift_Left
5858 or else NT (N).Nkind = N_Op_Shift_Right
5859 or else NT (N).Nkind = N_Op_Shift_Right_Arithmetic);
5860 Set_Flag4 (N, Val);
5861 end Set_Shift_Count_OK;
5862
5863 procedure Set_Source_Type
5864 (N : Node_Id; Val : Entity_Id) is
5865 begin
5866 pragma Assert (False
5867 or else NT (N).Nkind = N_Validate_Unchecked_Conversion);
5868 Set_Node1 (N, Val); -- semantic field, no parent set
5869 end Set_Source_Type;
5870
5871 procedure Set_Spec_PPC_List
5872 (N : Node_Id; Val : Node_Id) is
5873 begin
5874 pragma Assert (False
5875 or else NT (N).Nkind = N_Contract);
5876 Set_Node1 (N, Val); -- semantic field, no parent set
5877 end Set_Spec_PPC_List;
5878
5879 procedure Set_Spec_TC_List
5880 (N : Node_Id; Val : Node_Id) is
5881 begin
5882 pragma Assert (False
5883 or else NT (N).Nkind = N_Contract);
5884 Set_Node2 (N, Val); -- semantic field, no parent set
5885 end Set_Spec_TC_List;
5886
5887 procedure Set_Specification
5888 (N : Node_Id; Val : Node_Id) is
5889 begin
5890 pragma Assert (False
5891 or else NT (N).Nkind = N_Abstract_Subprogram_Declaration
5892 or else NT (N).Nkind = N_Expression_Function
5893 or else NT (N).Nkind = N_Formal_Abstract_Subprogram_Declaration
5894 or else NT (N).Nkind = N_Formal_Concrete_Subprogram_Declaration
5895 or else NT (N).Nkind = N_Generic_Package_Declaration
5896 or else NT (N).Nkind = N_Generic_Subprogram_Declaration
5897 or else NT (N).Nkind = N_Package_Declaration
5898 or else NT (N).Nkind = N_Subprogram_Body
5899 or else NT (N).Nkind = N_Subprogram_Body_Stub
5900 or else NT (N).Nkind = N_Subprogram_Declaration
5901 or else NT (N).Nkind = N_Subprogram_Renaming_Declaration);
5902 Set_Node1_With_Parent (N, Val);
5903 end Set_Specification;
5904
5905 procedure Set_Split_PPC
5906 (N : Node_Id; Val : Boolean) is
5907 begin
5908 pragma Assert (False
5909 or else NT (N).Nkind = N_Aspect_Specification
5910 or else NT (N).Nkind = N_Pragma);
5911 Set_Flag17 (N, Val);
5912 end Set_Split_PPC;
5913
5914 procedure Set_Statements
5915 (N : Node_Id; Val : List_Id) is
5916 begin
5917 pragma Assert (False
5918 or else NT (N).Nkind = N_Abortable_Part
5919 or else NT (N).Nkind = N_Accept_Alternative
5920 or else NT (N).Nkind = N_Case_Statement_Alternative
5921 or else NT (N).Nkind = N_Delay_Alternative
5922 or else NT (N).Nkind = N_Entry_Call_Alternative
5923 or else NT (N).Nkind = N_Exception_Handler
5924 or else NT (N).Nkind = N_Handled_Sequence_Of_Statements
5925 or else NT (N).Nkind = N_Loop_Statement
5926 or else NT (N).Nkind = N_Triggering_Alternative);
5927 Set_List3_With_Parent (N, Val);
5928 end Set_Statements;
5929
5930 procedure Set_Static_Processing_OK
5931 (N : Node_Id; Val : Boolean) is
5932 begin
5933 pragma Assert (False
5934 or else NT (N).Nkind = N_Aggregate);
5935 Set_Flag4 (N, Val);
5936 end Set_Static_Processing_OK;
5937
5938 procedure Set_Storage_Pool
5939 (N : Node_Id; Val : Node_Id) is
5940 begin
5941 pragma Assert (False
5942 or else NT (N).Nkind = N_Allocator
5943 or else NT (N).Nkind = N_Extended_Return_Statement
5944 or else NT (N).Nkind = N_Free_Statement
5945 or else NT (N).Nkind = N_Return_Statement);
5946 Set_Node1 (N, Val); -- semantic field, no parent set
5947 end Set_Storage_Pool;
5948
5949 procedure Set_Subpool_Handle_Name
5950 (N : Node_Id; Val : Node_Id) is
5951 begin
5952 pragma Assert (False
5953 or else NT (N).Nkind = N_Allocator);
5954 Set_Node4_With_Parent (N, Val);
5955 end Set_Subpool_Handle_Name;
5956
5957 procedure Set_Strval
5958 (N : Node_Id; Val : String_Id) is
5959 begin
5960 pragma Assert (False
5961 or else NT (N).Nkind = N_Operator_Symbol
5962 or else NT (N).Nkind = N_String_Literal);
5963 Set_Str3 (N, Val);
5964 end Set_Strval;
5965
5966 procedure Set_Subtype_Indication
5967 (N : Node_Id; Val : Node_Id) is
5968 begin
5969 pragma Assert (False
5970 or else NT (N).Nkind = N_Access_To_Object_Definition
5971 or else NT (N).Nkind = N_Component_Definition
5972 or else NT (N).Nkind = N_Derived_Type_Definition
5973 or else NT (N).Nkind = N_Iterator_Specification
5974 or else NT (N).Nkind = N_Private_Extension_Declaration
5975 or else NT (N).Nkind = N_Subtype_Declaration);
5976 Set_Node5_With_Parent (N, Val);
5977 end Set_Subtype_Indication;
5978
5979 procedure Set_Subtype_Mark
5980 (N : Node_Id; Val : Node_Id) is
5981 begin
5982 pragma Assert (False
5983 or else NT (N).Nkind = N_Access_Definition
5984 or else NT (N).Nkind = N_Formal_Derived_Type_Definition
5985 or else NT (N).Nkind = N_Formal_Object_Declaration
5986 or else NT (N).Nkind = N_Object_Renaming_Declaration
5987 or else NT (N).Nkind = N_Qualified_Expression
5988 or else NT (N).Nkind = N_Subtype_Indication
5989 or else NT (N).Nkind = N_Type_Conversion
5990 or else NT (N).Nkind = N_Unchecked_Type_Conversion);
5991 Set_Node4_With_Parent (N, Val);
5992 end Set_Subtype_Mark;
5993
5994 procedure Set_Subtype_Marks
5995 (N : Node_Id; Val : List_Id) is
5996 begin
5997 pragma Assert (False
5998 or else NT (N).Nkind = N_Unconstrained_Array_Definition
5999 or else NT (N).Nkind = N_Use_Type_Clause);
6000 Set_List2_With_Parent (N, Val);
6001 end Set_Subtype_Marks;
6002
6003 procedure Set_Suppress_Assignment_Checks
6004 (N : Node_Id; Val : Boolean := True) is
6005 begin
6006 pragma Assert (False
6007 or else NT (N).Nkind = N_Assignment_Statement
6008 or else NT (N).Nkind = N_Object_Declaration);
6009 Set_Flag18 (N, Val);
6010 end Set_Suppress_Assignment_Checks;
6011
6012 procedure Set_Suppress_Loop_Warnings
6013 (N : Node_Id; Val : Boolean := True) is
6014 begin
6015 pragma Assert (False
6016 or else NT (N).Nkind = N_Loop_Statement);
6017 Set_Flag17 (N, Val);
6018 end Set_Suppress_Loop_Warnings;
6019
6020 procedure Set_Synchronized_Present
6021 (N : Node_Id; Val : Boolean := True) is
6022 begin
6023 pragma Assert (False
6024 or else NT (N).Nkind = N_Derived_Type_Definition
6025 or else NT (N).Nkind = N_Formal_Derived_Type_Definition
6026 or else NT (N).Nkind = N_Private_Extension_Declaration
6027 or else NT (N).Nkind = N_Record_Definition);
6028 Set_Flag7 (N, Val);
6029 end Set_Synchronized_Present;
6030
6031 procedure Set_Tagged_Present
6032 (N : Node_Id; Val : Boolean := True) is
6033 begin
6034 pragma Assert (False
6035 or else NT (N).Nkind = N_Formal_Incomplete_Type_Definition
6036 or else NT (N).Nkind = N_Formal_Private_Type_Definition
6037 or else NT (N).Nkind = N_Incomplete_Type_Declaration
6038 or else NT (N).Nkind = N_Private_Type_Declaration
6039 or else NT (N).Nkind = N_Record_Definition);
6040 Set_Flag15 (N, Val);
6041 end Set_Tagged_Present;
6042
6043 procedure Set_Target_Type
6044 (N : Node_Id; Val : Entity_Id) is
6045 begin
6046 pragma Assert (False
6047 or else NT (N).Nkind = N_Validate_Unchecked_Conversion);
6048 Set_Node2 (N, Val); -- semantic field, no parent set
6049 end Set_Target_Type;
6050
6051 procedure Set_Task_Definition
6052 (N : Node_Id; Val : Node_Id) is
6053 begin
6054 pragma Assert (False
6055 or else NT (N).Nkind = N_Single_Task_Declaration
6056 or else NT (N).Nkind = N_Task_Type_Declaration);
6057 Set_Node3_With_Parent (N, Val);
6058 end Set_Task_Definition;
6059
6060 procedure Set_Task_Present
6061 (N : Node_Id; Val : Boolean := True) is
6062 begin
6063 pragma Assert (False
6064 or else NT (N).Nkind = N_Derived_Type_Definition
6065 or else NT (N).Nkind = N_Record_Definition);
6066 Set_Flag5 (N, Val);
6067 end Set_Task_Present;
6068
6069 procedure Set_Then_Actions
6070 (N : Node_Id; Val : List_Id) is
6071 begin
6072 pragma Assert (False
6073 or else NT (N).Nkind = N_Conditional_Expression);
6074 Set_List2 (N, Val); -- semantic field, no parent set
6075 end Set_Then_Actions;
6076
6077 procedure Set_Then_Statements
6078 (N : Node_Id; Val : List_Id) is
6079 begin
6080 pragma Assert (False
6081 or else NT (N).Nkind = N_Elsif_Part
6082 or else NT (N).Nkind = N_If_Statement);
6083 Set_List2_With_Parent (N, Val);
6084 end Set_Then_Statements;
6085
6086 procedure Set_Treat_Fixed_As_Integer
6087 (N : Node_Id; Val : Boolean := True) is
6088 begin
6089 pragma Assert (False
6090 or else NT (N).Nkind = N_Op_Divide
6091 or else NT (N).Nkind = N_Op_Mod
6092 or else NT (N).Nkind = N_Op_Multiply
6093 or else NT (N).Nkind = N_Op_Rem);
6094 Set_Flag14 (N, Val);
6095 end Set_Treat_Fixed_As_Integer;
6096
6097 procedure Set_Triggering_Alternative
6098 (N : Node_Id; Val : Node_Id) is
6099 begin
6100 pragma Assert (False
6101 or else NT (N).Nkind = N_Asynchronous_Select);
6102 Set_Node1_With_Parent (N, Val);
6103 end Set_Triggering_Alternative;
6104
6105 procedure Set_Triggering_Statement
6106 (N : Node_Id; Val : Node_Id) is
6107 begin
6108 pragma Assert (False
6109 or else NT (N).Nkind = N_Triggering_Alternative);
6110 Set_Node1_With_Parent (N, Val);
6111 end Set_Triggering_Statement;
6112
6113 procedure Set_TSS_Elist
6114 (N : Node_Id; Val : Elist_Id) is
6115 begin
6116 pragma Assert (False
6117 or else NT (N).Nkind = N_Freeze_Entity);
6118 Set_Elist3 (N, Val); -- semantic field, no parent set
6119 end Set_TSS_Elist;
6120
6121 procedure Set_Type_Definition
6122 (N : Node_Id; Val : Node_Id) is
6123 begin
6124 pragma Assert (False
6125 or else NT (N).Nkind = N_Full_Type_Declaration);
6126 Set_Node3_With_Parent (N, Val);
6127 end Set_Type_Definition;
6128
6129 procedure Set_Unit
6130 (N : Node_Id; Val : Node_Id) is
6131 begin
6132 pragma Assert (False
6133 or else NT (N).Nkind = N_Compilation_Unit);
6134 Set_Node2_With_Parent (N, Val);
6135 end Set_Unit;
6136
6137 procedure Set_Unknown_Discriminants_Present
6138 (N : Node_Id; Val : Boolean := True) is
6139 begin
6140 pragma Assert (False
6141 or else NT (N).Nkind = N_Formal_Type_Declaration
6142 or else NT (N).Nkind = N_Incomplete_Type_Declaration
6143 or else NT (N).Nkind = N_Private_Extension_Declaration
6144 or else NT (N).Nkind = N_Private_Type_Declaration);
6145 Set_Flag13 (N, Val);
6146 end Set_Unknown_Discriminants_Present;
6147
6148 procedure Set_Unreferenced_In_Spec
6149 (N : Node_Id; Val : Boolean := True) is
6150 begin
6151 pragma Assert (False
6152 or else NT (N).Nkind = N_With_Clause);
6153 Set_Flag7 (N, Val);
6154 end Set_Unreferenced_In_Spec;
6155
6156 procedure Set_Variant_Part
6157 (N : Node_Id; Val : Node_Id) is
6158 begin
6159 pragma Assert (False
6160 or else NT (N).Nkind = N_Component_List);
6161 Set_Node4_With_Parent (N, Val);
6162 end Set_Variant_Part;
6163
6164 procedure Set_Variants
6165 (N : Node_Id; Val : List_Id) is
6166 begin
6167 pragma Assert (False
6168 or else NT (N).Nkind = N_Variant_Part);
6169 Set_List1_With_Parent (N, Val);
6170 end Set_Variants;
6171
6172 procedure Set_Visible_Declarations
6173 (N : Node_Id; Val : List_Id) is
6174 begin
6175 pragma Assert (False
6176 or else NT (N).Nkind = N_Package_Specification
6177 or else NT (N).Nkind = N_Protected_Definition
6178 or else NT (N).Nkind = N_Task_Definition);
6179 Set_List2_With_Parent (N, Val);
6180 end Set_Visible_Declarations;
6181
6182 procedure Set_Used_Operations
6183 (N : Node_Id; Val : Elist_Id) is
6184 begin
6185 pragma Assert (False
6186 or else NT (N).Nkind = N_Use_Type_Clause);
6187 Set_Elist5 (N, Val);
6188 end Set_Used_Operations;
6189
6190 procedure Set_Was_Originally_Stub
6191 (N : Node_Id; Val : Boolean := True) is
6192 begin
6193 pragma Assert (False
6194 or else NT (N).Nkind = N_Package_Body
6195 or else NT (N).Nkind = N_Protected_Body
6196 or else NT (N).Nkind = N_Subprogram_Body
6197 or else NT (N).Nkind = N_Task_Body);
6198 Set_Flag13 (N, Val);
6199 end Set_Was_Originally_Stub;
6200
6201 procedure Set_Withed_Body
6202 (N : Node_Id; Val : Node_Id) is
6203 begin
6204 pragma Assert (False
6205 or else NT (N).Nkind = N_With_Clause);
6206 Set_Node1 (N, Val);
6207 end Set_Withed_Body;
6208
6209 -------------------------
6210 -- Iterator Procedures --
6211 -------------------------
6212
6213 procedure Next_Entity (N : in out Node_Id) is
6214 begin
6215 N := Next_Entity (N);
6216 end Next_Entity;
6217
6218 procedure Next_Named_Actual (N : in out Node_Id) is
6219 begin
6220 N := Next_Named_Actual (N);
6221 end Next_Named_Actual;
6222
6223 procedure Next_Rep_Item (N : in out Node_Id) is
6224 begin
6225 N := Next_Rep_Item (N);
6226 end Next_Rep_Item;
6227
6228 procedure Next_Use_Clause (N : in out Node_Id) is
6229 begin
6230 N := Next_Use_Clause (N);
6231 end Next_Use_Clause;
6232
6233 ------------------
6234 -- End_Location --
6235 ------------------
6236
6237 function End_Location (N : Node_Id) return Source_Ptr is
6238 L : constant Uint := End_Span (N);
6239 begin
6240 if L = No_Uint then
6241 return No_Location;
6242 else
6243 return Source_Ptr (Int (Sloc (N)) + UI_To_Int (L));
6244 end if;
6245 end End_Location;
6246
6247 --------------------
6248 -- Get_Pragma_Arg --
6249 --------------------
6250
6251 function Get_Pragma_Arg (Arg : Node_Id) return Node_Id is
6252 begin
6253 if Nkind (Arg) = N_Pragma_Argument_Association then
6254 return Expression (Arg);
6255 else
6256 return Arg;
6257 end if;
6258 end Get_Pragma_Arg;
6259
6260 ----------------------
6261 -- Set_End_Location --
6262 ----------------------
6263
6264 procedure Set_End_Location (N : Node_Id; S : Source_Ptr) is
6265 begin
6266 Set_End_Span (N,
6267 UI_From_Int (Int (S) - Int (Sloc (N))));
6268 end Set_End_Location;
6269
6270 --------------
6271 -- Nkind_In --
6272 --------------
6273
6274 function Nkind_In
6275 (T : Node_Kind;
6276 V1 : Node_Kind;
6277 V2 : Node_Kind) return Boolean
6278 is
6279 begin
6280 return T = V1 or else
6281 T = V2;
6282 end Nkind_In;
6283
6284 function Nkind_In
6285 (T : Node_Kind;
6286 V1 : Node_Kind;
6287 V2 : Node_Kind;
6288 V3 : Node_Kind) return Boolean
6289 is
6290 begin
6291 return T = V1 or else
6292 T = V2 or else
6293 T = V3;
6294 end Nkind_In;
6295
6296 function Nkind_In
6297 (T : Node_Kind;
6298 V1 : Node_Kind;
6299 V2 : Node_Kind;
6300 V3 : Node_Kind;
6301 V4 : Node_Kind) return Boolean
6302 is
6303 begin
6304 return T = V1 or else
6305 T = V2 or else
6306 T = V3 or else
6307 T = V4;
6308 end Nkind_In;
6309
6310 function Nkind_In
6311 (T : Node_Kind;
6312 V1 : Node_Kind;
6313 V2 : Node_Kind;
6314 V3 : Node_Kind;
6315 V4 : Node_Kind;
6316 V5 : Node_Kind) return Boolean
6317 is
6318 begin
6319 return T = V1 or else
6320 T = V2 or else
6321 T = V3 or else
6322 T = V4 or else
6323 T = V5;
6324 end Nkind_In;
6325
6326 function Nkind_In
6327 (T : Node_Kind;
6328 V1 : Node_Kind;
6329 V2 : Node_Kind;
6330 V3 : Node_Kind;
6331 V4 : Node_Kind;
6332 V5 : Node_Kind;
6333 V6 : Node_Kind) return Boolean
6334 is
6335 begin
6336 return T = V1 or else
6337 T = V2 or else
6338 T = V3 or else
6339 T = V4 or else
6340 T = V5 or else
6341 T = V6;
6342 end Nkind_In;
6343
6344 function Nkind_In
6345 (T : Node_Kind;
6346 V1 : Node_Kind;
6347 V2 : Node_Kind;
6348 V3 : Node_Kind;
6349 V4 : Node_Kind;
6350 V5 : Node_Kind;
6351 V6 : Node_Kind;
6352 V7 : Node_Kind) return Boolean
6353 is
6354 begin
6355 return T = V1 or else
6356 T = V2 or else
6357 T = V3 or else
6358 T = V4 or else
6359 T = V5 or else
6360 T = V6 or else
6361 T = V7;
6362 end Nkind_In;
6363
6364 function Nkind_In
6365 (T : Node_Kind;
6366 V1 : Node_Kind;
6367 V2 : Node_Kind;
6368 V3 : Node_Kind;
6369 V4 : Node_Kind;
6370 V5 : Node_Kind;
6371 V6 : Node_Kind;
6372 V7 : Node_Kind;
6373 V8 : Node_Kind) return Boolean
6374 is
6375 begin
6376 return T = V1 or else
6377 T = V2 or else
6378 T = V3 or else
6379 T = V4 or else
6380 T = V5 or else
6381 T = V6 or else
6382 T = V7 or else
6383 T = V8;
6384 end Nkind_In;
6385
6386 function Nkind_In
6387 (T : Node_Kind;
6388 V1 : Node_Kind;
6389 V2 : Node_Kind;
6390 V3 : Node_Kind;
6391 V4 : Node_Kind;
6392 V5 : Node_Kind;
6393 V6 : Node_Kind;
6394 V7 : Node_Kind;
6395 V8 : Node_Kind;
6396 V9 : Node_Kind) return Boolean
6397 is
6398 begin
6399 return T = V1 or else
6400 T = V2 or else
6401 T = V3 or else
6402 T = V4 or else
6403 T = V5 or else
6404 T = V6 or else
6405 T = V7 or else
6406 T = V8 or else
6407 T = V9;
6408 end Nkind_In;
6409
6410 -----------------
6411 -- Pragma_Name --
6412 -----------------
6413
6414 function Pragma_Name (N : Node_Id) return Name_Id is
6415 begin
6416 return Chars (Pragma_Identifier (N));
6417 end Pragma_Name;
6418
6419 end Sinfo;