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