1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
9 -- Copyright (C) 1992-2016, Free Software Foundation, Inc. --
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. See the GNU General Public License --
17 -- for more details. You should have received a copy of the GNU General --
18 -- Public License distributed with GNAT; see file COPYING3. If not, go to --
19 -- http://www.gnu.org/licenses for a complete copy of the license. --
21 -- GNAT was originally developed by the GNAT team at New York University. --
22 -- Extensive contributions were provided by Ada Core Technologies Inc. --
24 ------------------------------------------------------------------------------
26 with Aspects
; use Aspects
;
27 with Atree
; use Atree
;
28 with Casing
; use Casing
;
29 with Csets
; use Csets
;
30 with Debug
; use Debug
;
31 with Einfo
; use Einfo
;
32 with Fname
; use Fname
;
34 with Namet
; use Namet
;
35 with Nlists
; use Nlists
;
37 with Output
; use Output
;
38 with Rtsfind
; use Rtsfind
;
39 with Sem_Eval
; use Sem_Eval
;
40 with Sem_Util
; use Sem_Util
;
41 with Sinfo
; use Sinfo
;
42 with Sinput
; use Sinput
;
43 with Sinput
.D
; use Sinput
.D
;
44 with Snames
; use Snames
;
45 with Stand
; use Stand
;
46 with Stringt
; use Stringt
;
47 with Uintp
; use Uintp
;
48 with Uname
; use Uname
;
49 with Urealp
; use Urealp
;
51 package body Sprint
is
52 Current_Source_File
: Source_File_Index
;
53 -- Index of source file whose generated code is being dumped
55 Dump_Node
: Node_Id
:= Empty
;
56 -- This is set to the current node, used for printing line numbers. In
57 -- Debug_Generated_Code mode, Dump_Node is set to the current node
58 -- requiring Sloc fixup, until Set_Debug_Sloc is called to set the proper
59 -- value. The call clears it back to Empty.
61 First_Debug_Sloc
: Source_Ptr
;
62 -- Sloc of first byte of the current output file if we are generating a
65 Debug_Sloc
: Source_Ptr
;
66 -- Sloc of first byte of line currently being written if we are
67 -- generating a source debug file.
69 Dump_Original_Only
: Boolean;
70 -- Set True if the -gnatdo (dump original tree) flag is set
72 Dump_Generated_Only
: Boolean;
73 -- Set True if the -gnatdG (dump generated tree) debug flag is set
74 -- or for Print_Generated_Code (-gnatG) or Dump_Generated_Code (-gnatD).
76 Dump_Freeze_Null
: Boolean;
77 -- Set True if empty freeze nodes and non-source null statements output.
78 -- Note that freeze nodes containing freeze actions are always output,
79 -- as are freeze nodes for itypes, which in general have the effect of
80 -- causing elaboration of the itype.
82 Freeze_Indent
: Int
:= 0;
83 -- Keep track of freeze indent level (controls output of blank lines before
84 -- procedures within expression freeze actions). Relevant only if we are
85 -- not in Dump_Source_Text mode, since in Dump_Source_Text mode we don't
86 -- output these blank lines in any case.
89 -- Number of columns for current line output indentation
91 Indent_Annull_Flag
: Boolean := False;
92 -- Set True if subsequent Write_Indent call to be ignored, gets reset
93 -- by this call, so it is only active to suppress a single indent call.
95 Last_Line_Printed
: Physical_Line_Number
;
96 -- This keeps track of the physical line number of the last source line
97 -- that has been output. The value is only valid in Dump_Source_Text mode.
99 -------------------------------
100 -- Operator Precedence Table --
101 -------------------------------
103 -- This table is used to decide whether a subexpression needs to be
104 -- parenthesized. The rule is that if an operand of an operator (which
105 -- for this purpose includes AND THEN and OR ELSE) is itself an operator
106 -- with a lower precedence than the operator (or equal precedence if
107 -- appearing as the right operand), then parentheses are required.
109 Op_Prec
: constant array (N_Subexpr
) of Short_Short_Integer :=
142 procedure Sprint_Left_Opnd
(N
: Node_Id
);
143 -- Print left operand of operator, parenthesizing if necessary
145 procedure Sprint_Right_Opnd
(N
: Node_Id
);
146 -- Print right operand of operator, parenthesizing if necessary
148 -----------------------
149 -- Local Subprograms --
150 -----------------------
152 procedure Col_Check
(N
: Nat
);
153 -- Check that at least N characters remain on current line, and if not,
154 -- then start an extra line with two characters extra indentation for
155 -- continuing text on the next line.
157 procedure Extra_Blank_Line
;
158 -- In some situations we write extra blank lines to separate the generated
159 -- code to make it more readable. However, these extra blank lines are not
160 -- generated in Dump_Source_Text mode, since there the source text lines
161 -- output with preceding blank lines are quite sufficient as separators.
162 -- This procedure writes a blank line if Dump_Source_Text is False.
164 procedure Indent_Annull
;
165 -- Causes following call to Write_Indent to be ignored. This is used when
166 -- a higher level node wants to stop a lower level node from starting a
167 -- new line, when it would otherwise be inclined to do so (e.g. the case
168 -- of an accept statement called from an accept alternative with a guard)
170 procedure Indent_Begin
;
171 -- Increase indentation level
173 procedure Indent_End
;
174 -- Decrease indentation level
176 procedure Print_Debug_Line
(S
: String);
177 -- Used to print output lines in Debug_Generated_Code mode (this is used
178 -- as the argument for a call to Set_Special_Output in package Output).
180 procedure Process_TFAI_RR_Flags
(Nod
: Node_Id
);
181 -- Given a divide, multiplication or division node, check the flags
182 -- Treat_Fixed_As_Integer and Rounded_Flags, and if set, output the
183 -- appropriate special syntax characters (# and @).
185 procedure Set_Debug_Sloc
;
186 -- If Dump_Node is non-empty, this routine sets the appropriate value
187 -- in its Sloc field, from the current location in the debug source file
188 -- that is currently being written.
190 procedure Sprint_And_List
(List
: List_Id
);
191 -- Print the given list with items separated by vertical "and"
193 procedure Sprint_Aspect_Specifications
195 Semicolon
: Boolean);
196 -- Node is a declaration node that has aspect specifications (Has_Aspects
197 -- flag set True). It outputs the aspect specifications. For the case
198 -- of Semicolon = True, it is called after outputting the terminating
199 -- semicolon for the related node. The effect is to remove the semicolon
200 -- and print the aspect specifications followed by a terminating semicolon.
201 -- For the case of Semicolon False, no semicolon is removed or output, and
202 -- all the aspects are printed on a single line.
204 procedure Sprint_Bar_List
(List
: List_Id
);
205 -- Print the given list with items separated by vertical bars
207 procedure Sprint_End_Label
210 -- Print the end label for a Handled_Sequence_Of_Statements in a body.
211 -- If there is no end label, use the defining identifier of the enclosing
212 -- construct. If the end label is present, treat it as a reference to the
213 -- defining entity of the construct: this guarantees that it carries the
214 -- proper sloc information for debugging purposes.
216 procedure Sprint_Node_Actual
(Node
: Node_Id
);
217 -- This routine prints its node argument. It is a lower level routine than
218 -- Sprint_Node, in that it does not bother about rewritten trees.
220 procedure Sprint_Node_Sloc
(Node
: Node_Id
);
221 -- Like Sprint_Node, but in addition, in Debug_Generated_Code mode,
222 -- sets the Sloc of the current debug node to be a copy of the Sloc
223 -- of the sprinted node Node. Note that this is done after printing
224 -- Node, so that the Sloc is the proper updated value for the debug file.
226 procedure Update_Itype
(Node
: Node_Id
);
227 -- Update the Sloc of an itype that is not attached to the tree, when
228 -- debugging expanded code. This routine is called from nodes whose
229 -- type can be an Itype, such as defining_identifiers that may be of
230 -- an anonymous access type, or ranges in slices.
232 procedure Write_Char_Sloc
(C
: Character);
233 -- Like Write_Char, except that if C is non-blank, Set_Debug_Sloc is
234 -- called to ensure that the current node has a proper Sloc set.
236 procedure Write_Condition_And_Reason
(Node
: Node_Id
);
237 -- Write Condition and Reason codes of Raise_xxx_Error node
239 procedure Write_Corresponding_Source
(S
: String);
240 -- If S is a string with a single keyword (possibly followed by a space),
241 -- and if the next non-comment non-blank source line matches this keyword,
242 -- then output all source lines up to this matching line.
244 procedure Write_Discr_Specs
(N
: Node_Id
);
245 -- Output discriminant specification for node, which is any of the type
246 -- declarations that can have discriminants.
248 procedure Write_Ekind
(E
: Entity_Id
);
249 -- Write the String corresponding to the Ekind without "E_"
251 procedure Write_Id
(N
: Node_Id
);
252 -- N is a node with a Chars field. This procedure writes the name that
253 -- will be used in the generated code associated with the name. For a
254 -- node with no associated entity, this is simply the Chars field. For
255 -- the case where there is an entity associated with the node, we print
256 -- the name associated with the entity (since it may have been encoded).
257 -- One other special case is that an entity has an active external name
258 -- (i.e. an external name present with no address clause), then this
259 -- external name is output. This procedure also deals with outputting
260 -- declarations of referenced itypes, if not output earlier.
262 function Write_Identifiers
(Node
: Node_Id
) return Boolean;
263 -- Handle node where the grammar has a list of defining identifiers, but
264 -- the tree has a separate declaration for each identifier. Handles the
265 -- printing of the defining identifier, and returns True if the type and
266 -- initialization information is to be printed, False if it is to be
267 -- skipped (the latter case happens when printing defining identifiers
268 -- other than the first in the original tree output case).
270 procedure Write_Implicit_Def
(E
: Entity_Id
);
271 pragma Warnings
(Off
, Write_Implicit_Def
);
272 -- Write the definition of the implicit type E according to its Ekind
273 -- For now a debugging procedure, but might be used in the future.
275 procedure Write_Indent
;
276 -- Start a new line and write indentation spacing
278 function Write_Indent_Identifiers
(Node
: Node_Id
) return Boolean;
279 -- Like Write_Identifiers except that each new printed declaration
280 -- is at the start of a new line.
282 function Write_Indent_Identifiers_Sloc
(Node
: Node_Id
) return Boolean;
283 -- Like Write_Indent_Identifiers except that in Debug_Generated_Code
284 -- mode, the Sloc of the current debug node is set to point to the
285 -- first output identifier.
287 procedure Write_Indent_Str
(S
: String);
288 -- Start a new line and write indent spacing followed by given string
290 procedure Write_Indent_Str_Sloc
(S
: String);
291 -- Like Write_Indent_Str, but in addition, in Debug_Generated_Code mode,
292 -- the Sloc of the current node is set to the first non-blank character
295 procedure Write_Itype
(Typ
: Entity_Id
);
296 -- If Typ is an Itype that has not been written yet, write it. If Typ is
297 -- any other kind of entity or tree node, the call is ignored.
299 procedure Write_Name_With_Col_Check
(N
: Name_Id
);
300 -- Write name (using Write_Name) with initial column check, and possible
301 -- initial Write_Indent (to get new line) if current line is too full.
303 procedure Write_Name_With_Col_Check_Sloc
(N
: Name_Id
);
304 -- Like Write_Name_With_Col_Check but in addition, in Debug_Generated_Code
305 -- mode, sets Sloc of current debug node to first character of name.
307 procedure Write_Operator
(N
: Node_Id
; S
: String);
308 -- Like Write_Str_Sloc, used for operators, encloses the string in
309 -- characters {} if the Do_Overflow flag is set on the node N.
311 procedure Write_Param_Specs
(N
: Node_Id
);
312 -- Output parameter specifications for node N (which is a subprogram, or
313 -- entry or entry family or access-subprogram-definition, all of which
314 -- have a Parameter_Specificatioons field).
316 procedure Write_Rewrite_Str
(S
: String);
317 -- Writes out a string (typically containing <<< or >>>}) for a node
318 -- created by rewriting the tree. Suppressed if we are outputting the
319 -- generated code only, since in this case we don't specially mark nodes
320 -- created by rewriting).
322 procedure Write_Source_Line
(L
: Physical_Line_Number
);
323 -- If writing of interspersed source lines is enabled, then write the given
324 -- line from the source file, preceded by Eol, then an extra blank line if
325 -- the line has at least one blank, is not a comment and is not line one,
326 -- then "--" and the line number followed by period followed by text of the
327 -- source line (without terminating Eol). If interspersed source line
328 -- output not enabled, then the call has no effect.
330 procedure Write_Source_Lines
(L
: Physical_Line_Number
);
331 -- If writing of interspersed source lines is enabled, then writes source
332 -- lines Last_Line_Printed + 1 .. L, and updates Last_Line_Printed. If
333 -- interspersed source line output not enabled, then call has no effect.
335 procedure Write_Str_Sloc
(S
: String);
336 -- Like Write_Str, but sets debug Sloc of current debug node to first
337 -- non-blank character if a current debug node is active.
339 procedure Write_Str_With_Col_Check
(S
: String);
340 -- Write string (using Write_Str) with initial column check, and possible
341 -- initial Write_Indent (to get new line) if current line is too full.
343 procedure Write_Str_With_Col_Check_Sloc
(S
: String);
344 -- Like Write_Str_With_Col_Check, but sets debug Sloc of current debug
345 -- node to first non-blank character if a current debug node is active.
347 procedure Write_Subprogram_Name
(N
: Node_Id
);
348 -- N is the Name field of a function call or procedure statement call.
349 -- The effect of the call is to output the name, preceded by a $ if the
350 -- call is identified as an implicit call to a run time routine.
352 procedure Write_Uint_With_Col_Check
(U
: Uint
; Format
: UI_Format
);
353 -- Write Uint (using UI_Write) with initial column check, and possible
354 -- initial Write_Indent (to get new line) if current line is too full.
355 -- The format parameter determines the output format (see UI_Write).
357 procedure Write_Uint_With_Col_Check_Sloc
(U
: Uint
; Format
: UI_Format
);
358 -- Write Uint (using UI_Write) with initial column check, and possible
359 -- initial Write_Indent (to get new line) if current line is too full.
360 -- The format parameter determines the output format (see UI_Write).
361 -- In addition, in Debug_Generated_Code mode, sets the current node
362 -- Sloc to the first character of the output value.
364 procedure Write_Ureal_With_Col_Check_Sloc
(U
: Ureal
);
365 -- Write Ureal (using same output format as UR_Write) with column checks
366 -- and a possible initial Write_Indent (to get new line) if current line
367 -- is too full. In addition, in Debug_Generated_Code mode, sets the
368 -- current node Sloc to the first character of the output value.
374 procedure Col_Check
(N
: Nat
) is
376 if N
+ Column
> Sprint_Line_Limit
then
377 Write_Indent_Str
(" ");
381 ----------------------
382 -- Extra_Blank_Line --
383 ----------------------
385 procedure Extra_Blank_Line
is
387 if not Dump_Source_Text
then
390 end Extra_Blank_Line
;
396 procedure Indent_Annull
is
398 Indent_Annull_Flag
:= True;
405 procedure Indent_Begin
is
407 Indent
:= Indent
+ 3;
414 procedure Indent_End
is
416 Indent
:= Indent
- 3;
423 procedure pg
(Arg
: Union_Id
) is
425 Dump_Generated_Only
:= True;
426 Dump_Original_Only
:= False;
427 Dump_Freeze_Null
:= True;
428 Current_Source_File
:= No_Source_File
;
430 if Arg
in List_Range
then
431 Sprint_Node_List
(List_Id
(Arg
), New_Lines
=> True);
433 elsif Arg
in Node_Range
then
434 Sprint_Node
(Node_Id
(Arg
));
447 procedure po
(Arg
: Union_Id
) is
449 Dump_Generated_Only
:= False;
450 Dump_Original_Only
:= True;
451 Current_Source_File
:= No_Source_File
;
453 if Arg
in List_Range
then
454 Sprint_Node_List
(List_Id
(Arg
), New_Lines
=> True);
456 elsif Arg
in Node_Range
then
457 Sprint_Node
(Node_Id
(Arg
));
466 ----------------------
467 -- Print_Debug_Line --
468 ----------------------
470 procedure Print_Debug_Line
(S
: String) is
472 Write_Debug_Line
(S
, Debug_Sloc
);
473 end Print_Debug_Line
;
475 ---------------------------
476 -- Process_TFAI_RR_Flags --
477 ---------------------------
479 procedure Process_TFAI_RR_Flags
(Nod
: Node_Id
) is
481 if Treat_Fixed_As_Integer
(Nod
) then
485 if Rounded_Result
(Nod
) then
488 end Process_TFAI_RR_Flags
;
494 procedure ps
(Arg
: Union_Id
) is
496 Dump_Generated_Only
:= False;
497 Dump_Original_Only
:= False;
498 Current_Source_File
:= No_Source_File
;
500 if Arg
in List_Range
then
501 Sprint_Node_List
(List_Id
(Arg
), New_Lines
=> True);
503 elsif Arg
in Node_Range
then
504 Sprint_Node
(Node_Id
(Arg
));
517 procedure Set_Debug_Sloc
is
519 if Debug_Generated_Code
and then Present
(Dump_Node
) then
521 Loc
: constant Source_Ptr
:= Sloc
(Dump_Node
);
524 -- Do not change the location of nodes defined in package Standard
525 -- and nodes of pragmas scanned by Targparm.
527 if Loc
<= Standard_Location
then
530 -- Update the location of a node which is part of the current .dg
531 -- output. This situation occurs in comma separated parameter
532 -- declarations since each parameter references the same parameter
533 -- type node (ie. obj1, obj2 : <param-type>).
535 -- Note: This case is needed here since we cannot use the routine
536 -- In_Extended_Main_Code_Unit with nodes whose location is a .dg
539 elsif Loc
>= First_Debug_Sloc
then
540 Set_Sloc
(Dump_Node
, Debug_Sloc
+ Source_Ptr
(Column
- 1));
542 -- Do not change the location of nodes which are not part of the
545 elsif not In_Extended_Main_Code_Unit
(Loc
) then
549 Set_Sloc
(Dump_Node
, Debug_Sloc
+ Source_Ptr
(Column
- 1));
553 -- We do not know the actual end location in the generated code and
554 -- it could be much closer than in the source code, so play safe.
556 if Nkind_In
(Dump_Node
, N_Case_Statement
, N_If_Statement
) then
557 Set_End_Location
(Dump_Node
, Debug_Sloc
+ Source_Ptr
(Column
- 1));
568 procedure Source_Dump
is
571 -- Put underline under string we just printed
577 procedure Underline
is
578 Col
: constant Int
:= Column
;
583 while Col
> Column
loop
590 -- Start of processing for Source_Dump
593 Dump_Generated_Only
:= Debug_Flag_G
or
594 Print_Generated_Code
or
595 Debug_Generated_Code
;
596 Dump_Original_Only
:= Debug_Flag_O
;
597 Dump_Freeze_Null
:= Debug_Flag_S
or Debug_Flag_G
;
599 -- Note that we turn off the tree dump flags immediately, before
600 -- starting the dump. This avoids generating two copies of the dump
601 -- if an abort occurs after printing the dump, and more importantly,
602 -- avoids an infinite loop if an abort occurs during the dump.
605 Current_Source_File
:= No_Source_File
;
606 Debug_Flag_Z
:= False;
609 Write_Str
("Source recreated from tree of Standard (spec)");
611 Sprint_Node
(Standard_Package_Node
);
616 if Debug_Flag_S
or Dump_Generated_Only
or Dump_Original_Only
then
617 Debug_Flag_G
:= False;
618 Debug_Flag_O
:= False;
619 Debug_Flag_S
:= False;
620 First_Debug_Sloc
:= No_Location
;
622 -- Dump requested units
624 for U
in Main_Unit
.. Last_Unit
loop
625 Current_Source_File
:= Source_Index
(U
);
627 -- Dump all units if -gnatdf set, otherwise dump only the source
628 -- files that are in the extended main source. Note that, if we
629 -- are generating debug files, generating that of the main unit
630 -- has an effect on the outcome of In_Extended_Main_Source_Unit
631 -- because slocs are rewritten, so we also test for equality of
632 -- Cunit_Entity to work around this effect.
635 or else In_Extended_Main_Source_Unit
(Cunit_Entity
(U
))
636 or else Cunit_Entity
(U
) = Cunit_Entity
(Main_Unit
)
638 -- If we are generating debug files, setup to write them
640 if Debug_Generated_Code
then
641 Set_Special_Output
(Print_Debug_Line
'Access);
642 Create_Debug_Source
(Source_Index
(U
), Debug_Sloc
);
643 First_Debug_Sloc
:= Debug_Sloc
;
644 Write_Source_Line
(1);
645 Last_Line_Printed
:= 1;
647 -- If this unit has the same entity as the main unit, for
648 -- example is the spec of a stand-alone instantiation of
649 -- a package and the main unit is the body, its debug file
650 -- will also be the same. Therefore, we need to print again
651 -- the main unit to have both units in the debug file.
654 and then Cunit_Entity
(U
) = Cunit_Entity
(Main_Unit
)
656 Sprint_Node
(Cunit
(Main_Unit
));
660 Sprint_Node
(Cunit
(U
));
661 Write_Source_Lines
(Last_Source_Line
(Current_Source_File
));
664 Set_Special_Output
(null);
666 -- Normal output to standard output file
669 Write_Str
("Source recreated from tree for ");
670 Write_Unit_Name
(Unit_Name
(U
));
672 Write_Source_Line
(1);
673 Last_Line_Printed
:= 1;
674 Sprint_Node
(Cunit
(U
));
675 Write_Source_Lines
(Last_Source_Line
(Current_Source_File
));
684 ---------------------
685 -- Sprint_And_List --
686 ---------------------
688 procedure Sprint_And_List
(List
: List_Id
) is
691 if Is_Non_Empty_List
(List
) then
692 Node
:= First
(List
);
696 exit when Node
= Empty
;
702 ----------------------------------
703 -- Sprint_Aspect_Specifications --
704 ----------------------------------
706 procedure Sprint_Aspect_Specifications
710 AS
: constant List_Id
:= Aspect_Specifications
(Node
);
715 Write_Erase_Char
(';');
716 Indent
:= Indent
+ 2;
719 Indent
:= Indent
+ 5;
722 Write_Str
(" with ");
727 Sprint_Node
(Identifier
(A
));
729 if Class_Present
(A
) then
730 Write_Str
("'Class");
733 if Present
(Expression
(A
)) then
735 Sprint_Node
(Expression
(A
));
749 Indent
:= Indent
- 7;
752 end Sprint_Aspect_Specifications
;
754 ---------------------
755 -- Sprint_Bar_List --
756 ---------------------
758 procedure Sprint_Bar_List
(List
: List_Id
) is
761 if Is_Non_Empty_List
(List
) then
762 Node
:= First
(List
);
766 exit when Node
= Empty
;
772 ----------------------
773 -- Sprint_End_Label --
774 ----------------------
776 procedure Sprint_End_Label
782 and then Present
(End_Label
(Node
))
783 and then Is_Entity_Name
(End_Label
(Node
))
785 Set_Entity
(End_Label
(Node
), Default
);
787 -- For a function whose name is an operator, use the qualified name
788 -- created for the defining entity.
790 if Nkind
(End_Label
(Node
)) = N_Operator_Symbol
then
791 Set_Chars
(End_Label
(Node
), Chars
(Default
));
794 Sprint_Node
(End_Label
(Node
));
796 Sprint_Node
(Default
);
798 end Sprint_End_Label
;
800 -----------------------
801 -- Sprint_Comma_List --
802 -----------------------
804 procedure Sprint_Comma_List
(List
: List_Id
) is
808 if Is_Non_Empty_List
(List
) then
809 Node
:= First
(List
);
813 exit when Node
= Empty
;
815 if not Is_Rewrite_Insertion
(Node
)
816 or else not Dump_Original_Only
822 end Sprint_Comma_List
;
824 --------------------------
825 -- Sprint_Indented_List --
826 --------------------------
828 procedure Sprint_Indented_List
(List
: List_Id
) is
831 Sprint_Node_List
(List
);
833 end Sprint_Indented_List
;
835 ---------------------
836 -- Sprint_Left_Opnd --
837 ---------------------
839 procedure Sprint_Left_Opnd
(N
: Node_Id
) is
840 Opnd
: constant Node_Id
:= Left_Opnd
(N
);
843 if Paren_Count
(Opnd
) /= 0
844 or else Op_Prec
(Nkind
(Opnd
)) >= Op_Prec
(Nkind
(N
))
853 end Sprint_Left_Opnd
;
859 procedure Sprint_Node
(Node
: Node_Id
) is
861 if Is_Rewrite_Insertion
(Node
) then
862 if not Dump_Original_Only
then
864 -- For special cases of nodes that always output <<< >>>
865 -- do not duplicate the output at this point.
867 if Nkind
(Node
) = N_Freeze_Entity
868 or else Nkind
(Node
) = N_Freeze_Generic_Entity
869 or else Nkind
(Node
) = N_Implicit_Label_Declaration
871 Sprint_Node_Actual
(Node
);
873 -- Normal case where <<< >>> may be required
876 Write_Rewrite_Str
("<<<");
877 Sprint_Node_Actual
(Node
);
878 Write_Rewrite_Str
(">>>");
882 elsif Is_Rewrite_Substitution
(Node
) then
884 -- Case of dump generated only
886 if Dump_Generated_Only
then
887 Sprint_Node_Actual
(Node
);
889 -- Case of dump original only
891 elsif Dump_Original_Only
then
892 Sprint_Node_Actual
(Original_Node
(Node
));
894 -- Case of both being dumped
897 Sprint_Node_Actual
(Original_Node
(Node
));
898 Write_Rewrite_Str
("<<<");
899 Sprint_Node_Actual
(Node
);
900 Write_Rewrite_Str
(">>>");
904 Sprint_Node_Actual
(Node
);
908 ------------------------
909 -- Sprint_Node_Actual --
910 ------------------------
912 procedure Sprint_Node_Actual
(Node
: Node_Id
) is
913 Save_Dump_Node
: constant Node_Id
:= Dump_Node
;
920 for J
in 1 .. Paren_Count
(Node
) loop
921 Write_Str_With_Col_Check
("(");
924 -- Setup current dump node
928 if Nkind
(Node
) in N_Subexpr
929 and then Do_Range_Check
(Node
)
931 Write_Str_With_Col_Check
("{");
934 -- Select print circuit based on node kind
937 when N_Abort_Statement
=>
938 Write_Indent_Str_Sloc
("abort ");
939 Sprint_Comma_List
(Names
(Node
));
942 when N_Abortable_Part
=>
944 Write_Str_Sloc
("abort ");
945 Sprint_Indented_List
(Statements
(Node
));
947 when N_Abstract_Subprogram_Declaration
=>
949 Sprint_Node
(Specification
(Node
));
950 Write_Str_With_Col_Check
(" is ");
951 Write_Str_Sloc
("abstract;");
953 when N_Accept_Alternative
=>
954 Sprint_Node_List
(Pragmas_Before
(Node
));
956 if Present
(Condition
(Node
)) then
957 Write_Indent_Str
("when ");
958 Sprint_Node
(Condition
(Node
));
963 Sprint_Node_Sloc
(Accept_Statement
(Node
));
964 Sprint_Node_List
(Statements
(Node
));
966 when N_Accept_Statement
=>
967 Write_Indent_Str_Sloc
("accept ");
968 Write_Id
(Entry_Direct_Name
(Node
));
970 if Present
(Entry_Index
(Node
)) then
971 Write_Str_With_Col_Check
(" (");
972 Sprint_Node
(Entry_Index
(Node
));
976 Write_Param_Specs
(Node
);
978 if Present
(Handled_Statement_Sequence
(Node
)) then
979 Write_Str_With_Col_Check
(" do");
980 Sprint_Node
(Handled_Statement_Sequence
(Node
));
981 Write_Indent_Str
("end ");
982 Write_Id
(Entry_Direct_Name
(Node
));
987 when N_Access_Definition
=>
991 if Present
(Access_To_Subprogram_Definition
(Node
)) then
992 Sprint_Node
(Access_To_Subprogram_Definition
(Node
));
996 if Null_Exclusion_Present
(Node
) then
997 Write_Str
("not null ");
1000 Write_Str_With_Col_Check_Sloc
("access ");
1002 if All_Present
(Node
) then
1004 elsif Constant_Present
(Node
) then
1005 Write_Str
("constant ");
1008 Sprint_Node
(Subtype_Mark
(Node
));
1011 when N_Access_Function_Definition
=>
1013 -- Ada 2005 (AI-231)
1015 if Null_Exclusion_Present
(Node
) then
1016 Write_Str
("not null ");
1019 Write_Str_With_Col_Check_Sloc
("access ");
1021 if Protected_Present
(Node
) then
1022 Write_Str_With_Col_Check
("protected ");
1025 Write_Str_With_Col_Check
("function");
1026 Write_Param_Specs
(Node
);
1027 Write_Str_With_Col_Check
(" return ");
1028 Sprint_Node
(Result_Definition
(Node
));
1030 when N_Access_Procedure_Definition
=>
1032 -- Ada 2005 (AI-231)
1034 if Null_Exclusion_Present
(Node
) then
1035 Write_Str
("not null ");
1038 Write_Str_With_Col_Check_Sloc
("access ");
1040 if Protected_Present
(Node
) then
1041 Write_Str_With_Col_Check
("protected ");
1044 Write_Str_With_Col_Check
("procedure");
1045 Write_Param_Specs
(Node
);
1047 when N_Access_To_Object_Definition
=>
1048 Write_Str_With_Col_Check_Sloc
("access ");
1050 if All_Present
(Node
) then
1051 Write_Str_With_Col_Check
("all ");
1052 elsif Constant_Present
(Node
) then
1053 Write_Str_With_Col_Check
("constant ");
1056 -- Ada 2005 (AI-231)
1058 if Null_Exclusion_Present
(Node
) then
1059 Write_Str
("not null ");
1062 Sprint_Node
(Subtype_Indication
(Node
));
1065 if Null_Record_Present
(Node
) then
1066 Write_Str_With_Col_Check_Sloc
("(null record)");
1069 Write_Str_With_Col_Check_Sloc
("(");
1071 if Present
(Expressions
(Node
)) then
1072 Sprint_Comma_List
(Expressions
(Node
));
1074 if Present
(Component_Associations
(Node
))
1075 and then not Is_Empty_List
(Component_Associations
(Node
))
1081 if Present
(Component_Associations
(Node
))
1082 and then not Is_Empty_List
(Component_Associations
(Node
))
1090 Nd
:= First
(Component_Associations
(Node
));
1098 if not Is_Rewrite_Insertion
(Nd
)
1099 or else not Dump_Original_Only
1113 Write_Str_With_Col_Check_Sloc
("new ");
1115 -- Ada 2005 (AI-231)
1117 if Null_Exclusion_Present
(Node
) then
1118 Write_Str
("not null ");
1121 Sprint_Node
(Expression
(Node
));
1123 if Present
(Storage_Pool
(Node
)) then
1124 Write_Str_With_Col_Check
("[storage_pool = ");
1125 Sprint_Node
(Storage_Pool
(Node
));
1130 Sprint_Left_Opnd
(Node
);
1131 Write_Str_Sloc
(" and then ");
1132 Sprint_Right_Opnd
(Node
);
1134 -- Note: the following code for N_Aspect_Specification is not
1135 -- normally used, since we deal with aspects as part of a
1136 -- declaration, but it is here in case we deliberately try
1137 -- to print an N_Aspect_Speficiation node (e.g. from GDB).
1139 when N_Aspect_Specification
=>
1140 Sprint_Node
(Identifier
(Node
));
1142 Sprint_Node
(Expression
(Node
));
1144 when N_Assignment_Statement
=>
1146 Sprint_Node
(Name
(Node
));
1147 Write_Str_Sloc
(" := ");
1148 Sprint_Node
(Expression
(Node
));
1151 when N_Asynchronous_Select
=>
1152 Write_Indent_Str_Sloc
("select");
1154 Sprint_Node
(Triggering_Alternative
(Node
));
1157 -- Note: let the printing of Abortable_Part handle outputting
1158 -- the ABORT keyword, so that the Sloc can be set correctly.
1160 Write_Indent_Str
("then ");
1161 Sprint_Node
(Abortable_Part
(Node
));
1162 Write_Indent_Str
("end select;");
1165 Write_Indent_Str_Sloc
("for ");
1166 Write_Id
(Identifier
(Node
));
1167 Write_Str_With_Col_Check
(" use at ");
1168 Sprint_Node
(Expression
(Node
));
1171 when N_Attribute_Definition_Clause
=>
1172 Write_Indent_Str_Sloc
("for ");
1173 Sprint_Node
(Name
(Node
));
1175 Write_Name_With_Col_Check
(Chars
(Node
));
1176 Write_Str_With_Col_Check
(" use ");
1177 Sprint_Node
(Expression
(Node
));
1180 when N_Attribute_Reference
=>
1181 if Is_Procedure_Attribute_Name
(Attribute_Name
(Node
)) then
1185 Sprint_Node
(Prefix
(Node
));
1186 Write_Char_Sloc
(''');
1187 Write_Name_With_Col_Check
(Attribute_Name
(Node
));
1188 Sprint_Paren_Comma_List
(Expressions
(Node
));
1190 if Is_Procedure_Attribute_Name
(Attribute_Name
(Node
)) then
1194 when N_Block_Statement
=>
1197 if Present
(Identifier
(Node
))
1198 and then (not Has_Created_Identifier
(Node
)
1199 or else not Dump_Original_Only
)
1201 Write_Rewrite_Str
("<<<");
1202 Write_Id
(Identifier
(Node
));
1204 Write_Rewrite_Str
(">>>");
1207 if Present
(Declarations
(Node
)) then
1208 Write_Str_With_Col_Check_Sloc
("declare");
1209 Sprint_Indented_List
(Declarations
(Node
));
1213 Write_Str_With_Col_Check_Sloc
("begin");
1214 Sprint_Node
(Handled_Statement_Sequence
(Node
));
1215 Write_Indent_Str
("end");
1217 if Present
(Identifier
(Node
))
1218 and then (not Has_Created_Identifier
(Node
)
1219 or else not Dump_Original_Only
)
1221 Write_Rewrite_Str
("<<<");
1223 Write_Id
(Identifier
(Node
));
1224 Write_Rewrite_Str
(">>>");
1229 when N_Case_Expression
=>
1231 Has_Parens
: constant Boolean := Paren_Count
(Node
) > 0;
1235 -- The syntax for case_expression does not include parentheses,
1236 -- but sometimes parentheses are required, so unconditionally
1237 -- generate them here unless already present.
1239 if not Has_Parens
then
1243 Write_Str_With_Col_Check_Sloc
("case ");
1244 Sprint_Node
(Expression
(Node
));
1245 Write_Str_With_Col_Check
(" is");
1247 Alt
:= First
(Alternatives
(Node
));
1255 if not Has_Parens
then
1260 when N_Case_Expression_Alternative
=>
1261 Write_Str_With_Col_Check
(" when ");
1262 Sprint_Bar_List
(Discrete_Choices
(Node
));
1264 Sprint_Node
(Expression
(Node
));
1266 when N_Case_Statement
=>
1267 Write_Indent_Str_Sloc
("case ");
1268 Sprint_Node
(Expression
(Node
));
1270 Sprint_Indented_List
(Alternatives
(Node
));
1271 Write_Indent_Str
("end case;");
1273 when N_Case_Statement_Alternative
=>
1274 Write_Indent_Str_Sloc
("when ");
1275 Sprint_Bar_List
(Discrete_Choices
(Node
));
1277 Sprint_Indented_List
(Statements
(Node
));
1279 when N_Character_Literal
=>
1280 if Column
> Sprint_Line_Limit
- 2 then
1281 Write_Indent_Str
(" ");
1284 Write_Char_Sloc
(''');
1285 Write_Char_Code
(UI_To_CC
(Char_Literal_Value
(Node
)));
1288 when N_Code_Statement
=>
1291 Sprint_Node
(Expression
(Node
));
1294 when N_Compilation_Unit
=>
1295 Sprint_Node_List
(Context_Items
(Node
));
1296 Sprint_Opt_Node_List
(Declarations
(Aux_Decls_Node
(Node
)));
1298 if Private_Present
(Node
) then
1299 Write_Indent_Str
("private ");
1303 Sprint_Node_Sloc
(Unit
(Node
));
1305 if Present
(Actions
(Aux_Decls_Node
(Node
)))
1307 Present
(Pragmas_After
(Aux_Decls_Node
(Node
)))
1312 Sprint_Opt_Node_List
(Actions
(Aux_Decls_Node
(Node
)));
1313 Sprint_Opt_Node_List
(Pragmas_After
(Aux_Decls_Node
(Node
)));
1315 when N_Compilation_Unit_Aux
=>
1316 null; -- nothing to do, never used, see above
1318 when N_Component_Association
=>
1320 Sprint_Bar_List
(Choices
(Node
));
1323 -- Ada 2005 (AI-287): Print the box if present
1325 if Box_Present
(Node
) then
1326 Write_Str_With_Col_Check
("<>");
1328 Sprint_Node
(Expression
(Node
));
1331 when N_Iterated_Component_Association
=>
1333 Write_Str
(" for ");
1334 Write_Id
(Defining_Identifier
(Node
));
1336 Sprint_Bar_List
(Discrete_Choices
(Node
));
1338 Sprint_Node
(Expression
(Node
));
1340 when N_Component_Clause
=>
1342 Sprint_Node
(Component_Name
(Node
));
1343 Write_Str_Sloc
(" at ");
1344 Sprint_Node
(Position
(Node
));
1346 Write_Str_With_Col_Check
("range ");
1347 Sprint_Node
(First_Bit
(Node
));
1349 Sprint_Node
(Last_Bit
(Node
));
1352 when N_Component_Definition
=>
1355 -- Ada 2005 (AI-230): Access definition components
1357 if Present
(Access_Definition
(Node
)) then
1358 Sprint_Node
(Access_Definition
(Node
));
1360 elsif Present
(Subtype_Indication
(Node
)) then
1361 if Aliased_Present
(Node
) then
1362 Write_Str_With_Col_Check
("aliased ");
1365 -- Ada 2005 (AI-231)
1367 if Null_Exclusion_Present
(Node
) then
1368 Write_Str
(" not null ");
1371 Sprint_Node
(Subtype_Indication
(Node
));
1374 Write_Str
(" ??? ");
1377 when N_Component_Declaration
=>
1378 if Write_Indent_Identifiers_Sloc
(Node
) then
1380 Sprint_Node
(Component_Definition
(Node
));
1382 if Present
(Expression
(Node
)) then
1384 Sprint_Node
(Expression
(Node
));
1390 when N_Component_List
=>
1391 if Null_Present
(Node
) then
1393 Write_Indent_Str_Sloc
("null");
1399 Sprint_Indented_List
(Component_Items
(Node
));
1400 Sprint_Node
(Variant_Part
(Node
));
1403 when N_Compound_Statement
=>
1404 Write_Indent_Str
("do");
1406 Sprint_Node_List
(Actions
(Node
));
1408 Write_Indent_Str
("end;");
1410 when N_Conditional_Entry_Call
=>
1411 Write_Indent_Str_Sloc
("select");
1413 Sprint_Node
(Entry_Call_Alternative
(Node
));
1415 Write_Indent_Str
("else");
1416 Sprint_Indented_List
(Else_Statements
(Node
));
1417 Write_Indent_Str
("end select;");
1419 when N_Constrained_Array_Definition
=>
1420 Write_Str_With_Col_Check_Sloc
("array ");
1421 Sprint_Paren_Comma_List
(Discrete_Subtype_Definitions
(Node
));
1424 Sprint_Node
(Component_Definition
(Node
));
1426 -- A contract node should not appear in the tree. It is a semantic
1427 -- node attached to entry and [generic] subprogram entities. But we
1428 -- still provide meaningful output, in case called from the debugger.
1436 Write_Str
("N_Contract node");
1439 Write_Indent_Str
("Pre_Post_Conditions");
1442 P
:= Pre_Post_Conditions
(Node
);
1443 while Present
(P
) loop
1445 P
:= Next_Pragma
(P
);
1451 Write_Indent_Str
("Contract_Test_Cases");
1454 P
:= Contract_Test_Cases
(Node
);
1455 while Present
(P
) loop
1457 P
:= Next_Pragma
(P
);
1463 Write_Indent_Str
("Classifications");
1466 P
:= Classifications
(Node
);
1467 while Present
(P
) loop
1469 P
:= Next_Pragma
(P
);
1477 when N_Decimal_Fixed_Point_Definition
=>
1478 Write_Str_With_Col_Check_Sloc
(" delta ");
1479 Sprint_Node
(Delta_Expression
(Node
));
1480 Write_Str_With_Col_Check
("digits ");
1481 Sprint_Node
(Digits_Expression
(Node
));
1482 Sprint_Opt_Node
(Real_Range_Specification
(Node
));
1484 when N_Defining_Character_Literal
=>
1485 Write_Name_With_Col_Check_Sloc
(Chars
(Node
));
1487 when N_Defining_Identifier
=>
1491 when N_Defining_Operator_Symbol
=>
1492 Write_Name_With_Col_Check_Sloc
(Chars
(Node
));
1494 when N_Defining_Program_Unit_Name
=>
1496 Sprint_Node
(Name
(Node
));
1498 Write_Id
(Defining_Identifier
(Node
));
1500 when N_Delay_Alternative
=>
1501 Sprint_Node_List
(Pragmas_Before
(Node
));
1503 if Present
(Condition
(Node
)) then
1505 Write_Str_With_Col_Check
("when ");
1506 Sprint_Node
(Condition
(Node
));
1511 Sprint_Node_Sloc
(Delay_Statement
(Node
));
1512 Sprint_Node_List
(Statements
(Node
));
1514 when N_Delay_Relative_Statement
=>
1515 Write_Indent_Str_Sloc
("delay ");
1516 Sprint_Node
(Expression
(Node
));
1519 when N_Delay_Until_Statement
=>
1520 Write_Indent_Str_Sloc
("delay until ");
1521 Sprint_Node
(Expression
(Node
));
1524 when N_Delta_Constraint
=>
1525 Write_Str_With_Col_Check_Sloc
("delta ");
1526 Sprint_Node
(Delta_Expression
(Node
));
1527 Sprint_Opt_Node
(Range_Constraint
(Node
));
1529 when N_Derived_Type_Definition
=>
1530 if Abstract_Present
(Node
) then
1531 Write_Str_With_Col_Check
("abstract ");
1534 Write_Str_With_Col_Check
("new ");
1536 -- Ada 2005 (AI-231)
1538 if Null_Exclusion_Present
(Node
) then
1539 Write_Str_With_Col_Check
("not null ");
1542 Sprint_Node
(Subtype_Indication
(Node
));
1544 if Present
(Interface_List
(Node
)) then
1545 Write_Str_With_Col_Check
(" and ");
1546 Sprint_And_List
(Interface_List
(Node
));
1547 Write_Str_With_Col_Check
(" with ");
1550 if Present
(Record_Extension_Part
(Node
)) then
1551 if No
(Interface_List
(Node
)) then
1552 Write_Str_With_Col_Check
(" with ");
1555 Sprint_Node
(Record_Extension_Part
(Node
));
1558 when N_Designator
=>
1559 Sprint_Node
(Name
(Node
));
1560 Write_Char_Sloc
('.');
1561 Write_Id
(Identifier
(Node
));
1563 when N_Digits_Constraint
=>
1564 Write_Str_With_Col_Check_Sloc
("digits ");
1565 Sprint_Node
(Digits_Expression
(Node
));
1566 Sprint_Opt_Node
(Range_Constraint
(Node
));
1568 when N_Discriminant_Association
=>
1571 if Present
(Selector_Names
(Node
)) then
1572 Sprint_Bar_List
(Selector_Names
(Node
));
1577 Sprint_Node
(Expression
(Node
));
1579 when N_Discriminant_Specification
=>
1582 if Write_Identifiers
(Node
) then
1585 if Null_Exclusion_Present
(Node
) then
1586 Write_Str
("not null ");
1589 Sprint_Node
(Discriminant_Type
(Node
));
1591 if Present
(Expression
(Node
)) then
1593 Sprint_Node
(Expression
(Node
));
1599 when N_Elsif_Part
=>
1600 Write_Indent_Str_Sloc
("elsif ");
1601 Sprint_Node
(Condition
(Node
));
1602 Write_Str_With_Col_Check
(" then");
1603 Sprint_Indented_List
(Then_Statements
(Node
));
1608 when N_Entry_Body
=>
1609 Write_Indent_Str_Sloc
("entry ");
1610 Write_Id
(Defining_Identifier
(Node
));
1611 Sprint_Node
(Entry_Body_Formal_Part
(Node
));
1612 Write_Str_With_Col_Check
(" is");
1613 Sprint_Indented_List
(Declarations
(Node
));
1614 Write_Indent_Str
("begin");
1615 Sprint_Node
(Handled_Statement_Sequence
(Node
));
1616 Write_Indent_Str
("end ");
1617 Write_Id
(Defining_Identifier
(Node
));
1620 when N_Entry_Body_Formal_Part
=>
1621 if Present
(Entry_Index_Specification
(Node
)) then
1622 Write_Str_With_Col_Check_Sloc
(" (");
1623 Sprint_Node
(Entry_Index_Specification
(Node
));
1627 Write_Param_Specs
(Node
);
1628 Write_Str_With_Col_Check_Sloc
(" when ");
1629 Sprint_Node
(Condition
(Node
));
1631 when N_Entry_Call_Alternative
=>
1632 Sprint_Node_List
(Pragmas_Before
(Node
));
1633 Sprint_Node_Sloc
(Entry_Call_Statement
(Node
));
1634 Sprint_Node_List
(Statements
(Node
));
1636 when N_Entry_Call_Statement
=>
1638 Sprint_Node_Sloc
(Name
(Node
));
1639 Sprint_Opt_Paren_Comma_List
(Parameter_Associations
(Node
));
1642 when N_Entry_Declaration
=>
1643 Write_Indent_Str_Sloc
("entry ");
1644 Write_Id
(Defining_Identifier
(Node
));
1646 if Present
(Discrete_Subtype_Definition
(Node
)) then
1647 Write_Str_With_Col_Check
(" (");
1648 Sprint_Node
(Discrete_Subtype_Definition
(Node
));
1652 Write_Param_Specs
(Node
);
1655 when N_Entry_Index_Specification
=>
1656 Write_Str_With_Col_Check_Sloc
("for ");
1657 Write_Id
(Defining_Identifier
(Node
));
1658 Write_Str_With_Col_Check
(" in ");
1659 Sprint_Node
(Discrete_Subtype_Definition
(Node
));
1661 when N_Enumeration_Representation_Clause
=>
1662 Write_Indent_Str_Sloc
("for ");
1663 Write_Id
(Identifier
(Node
));
1664 Write_Str_With_Col_Check
(" use ");
1665 Sprint_Node
(Array_Aggregate
(Node
));
1668 when N_Enumeration_Type_Definition
=>
1671 -- Skip attempt to print Literals field if it's not there and
1672 -- we are in package Standard (case of Character, which is
1673 -- handled specially (without an explicit literals list).
1675 if Sloc
(Node
) > Standard_Location
1676 or else Present
(Literals
(Node
))
1678 Sprint_Paren_Comma_List
(Literals
(Node
));
1682 Write_Str_With_Col_Check_Sloc
("<error>");
1684 when N_Exception_Declaration
=>
1685 if Write_Indent_Identifiers
(Node
) then
1686 Write_Str_With_Col_Check
(" : ");
1688 if Is_Statically_Allocated
(Defining_Identifier
(Node
)) then
1689 Write_Str_With_Col_Check
("static ");
1692 Write_Str_Sloc
("exception");
1694 if Present
(Expression
(Node
)) then
1696 Sprint_Node
(Expression
(Node
));
1702 when N_Exception_Handler
=>
1703 Write_Indent_Str_Sloc
("when ");
1705 if Present
(Choice_Parameter
(Node
)) then
1706 Sprint_Node
(Choice_Parameter
(Node
));
1710 Sprint_Bar_List
(Exception_Choices
(Node
));
1712 Sprint_Indented_List
(Statements
(Node
));
1714 when N_Exception_Renaming_Declaration
=>
1717 Sprint_Node
(Defining_Identifier
(Node
));
1718 Write_Str_With_Col_Check
(" : exception renames ");
1719 Sprint_Node
(Name
(Node
));
1722 when N_Exit_Statement
=>
1723 Write_Indent_Str_Sloc
("exit");
1724 Sprint_Opt_Node
(Name
(Node
));
1726 if Present
(Condition
(Node
)) then
1727 Write_Str_With_Col_Check
(" when ");
1728 Sprint_Node
(Condition
(Node
));
1733 when N_Expanded_Name
=>
1734 Sprint_Node
(Prefix
(Node
));
1735 Write_Char_Sloc
('.');
1736 Sprint_Node
(Selector_Name
(Node
));
1738 when N_Explicit_Dereference
=>
1739 Sprint_Node
(Prefix
(Node
));
1740 Write_Char_Sloc
('.');
1741 Write_Str_Sloc
("all");
1743 when N_Expression_With_Actions
=>
1745 Write_Indent_Str_Sloc
("do ");
1747 Sprint_Node_List
(Actions
(Node
));
1750 Write_Str_With_Col_Check_Sloc
("in ");
1751 Sprint_Node
(Expression
(Node
));
1752 Write_Str_With_Col_Check
(" end");
1756 when N_Expression_Function
=>
1758 Sprint_Node_Sloc
(Specification
(Node
));
1762 Sprint_Node
(Expression
(Node
));
1766 when N_Extended_Return_Statement
=>
1767 Write_Indent_Str_Sloc
("return ");
1768 Sprint_Node_List
(Return_Object_Declarations
(Node
));
1770 if Present
(Handled_Statement_Sequence
(Node
)) then
1771 Write_Str_With_Col_Check
(" do");
1772 Sprint_Node
(Handled_Statement_Sequence
(Node
));
1773 Write_Indent_Str
("end return;");
1775 Write_Indent_Str
(";");
1778 when N_Delta_Aggregate
=>
1779 Write_Str_With_Col_Check_Sloc
("(");
1780 Sprint_Node
(Expression
(Node
));
1781 Write_Str_With_Col_Check
(" with delta ");
1782 Sprint_Comma_List
(Component_Associations
(Node
));
1785 when N_Extension_Aggregate
=>
1786 Write_Str_With_Col_Check_Sloc
("(");
1787 Sprint_Node
(Ancestor_Part
(Node
));
1788 Write_Str_With_Col_Check
(" with ");
1790 if Null_Record_Present
(Node
) then
1791 Write_Str_With_Col_Check
("null record");
1793 if Present
(Expressions
(Node
)) then
1794 Sprint_Comma_List
(Expressions
(Node
));
1796 if Present
(Component_Associations
(Node
)) then
1801 if Present
(Component_Associations
(Node
)) then
1802 Sprint_Comma_List
(Component_Associations
(Node
));
1808 when N_Floating_Point_Definition
=>
1809 Write_Str_With_Col_Check_Sloc
("digits ");
1810 Sprint_Node
(Digits_Expression
(Node
));
1811 Sprint_Opt_Node
(Real_Range_Specification
(Node
));
1813 when N_Formal_Decimal_Fixed_Point_Definition
=>
1814 Write_Str_With_Col_Check_Sloc
("delta <> digits <>");
1816 when N_Formal_Derived_Type_Definition
=>
1817 Write_Str_With_Col_Check_Sloc
("new ");
1818 Sprint_Node
(Subtype_Mark
(Node
));
1820 if Present
(Interface_List
(Node
)) then
1821 Write_Str_With_Col_Check
(" and ");
1822 Sprint_And_List
(Interface_List
(Node
));
1825 if Private_Present
(Node
) then
1826 Write_Str_With_Col_Check
(" with private");
1829 when N_Formal_Abstract_Subprogram_Declaration
=>
1830 Write_Indent_Str_Sloc
("with ");
1831 Sprint_Node
(Specification
(Node
));
1833 Write_Str_With_Col_Check
(" is abstract");
1835 if Box_Present
(Node
) then
1836 Write_Str_With_Col_Check
(" <>");
1837 elsif Present
(Default_Name
(Node
)) then
1838 Write_Str_With_Col_Check
(" ");
1839 Sprint_Node
(Default_Name
(Node
));
1844 when N_Formal_Concrete_Subprogram_Declaration
=>
1845 Write_Indent_Str_Sloc
("with ");
1846 Sprint_Node
(Specification
(Node
));
1848 if Box_Present
(Node
) then
1849 Write_Str_With_Col_Check
(" is <>");
1850 elsif Present
(Default_Name
(Node
)) then
1851 Write_Str_With_Col_Check
(" is ");
1852 Sprint_Node
(Default_Name
(Node
));
1857 when N_Formal_Discrete_Type_Definition
=>
1858 Write_Str_With_Col_Check_Sloc
("<>");
1860 when N_Formal_Floating_Point_Definition
=>
1861 Write_Str_With_Col_Check_Sloc
("digits <>");
1863 when N_Formal_Modular_Type_Definition
=>
1864 Write_Str_With_Col_Check_Sloc
("mod <>");
1866 when N_Formal_Object_Declaration
=>
1869 if Write_Indent_Identifiers
(Node
) then
1872 if In_Present
(Node
) then
1873 Write_Str_With_Col_Check
("in ");
1876 if Out_Present
(Node
) then
1877 Write_Str_With_Col_Check
("out ");
1880 if Present
(Subtype_Mark
(Node
)) then
1882 -- Ada 2005 (AI-423): Formal object with null exclusion
1884 if Null_Exclusion_Present
(Node
) then
1885 Write_Str
("not null ");
1888 Sprint_Node
(Subtype_Mark
(Node
));
1890 -- Ada 2005 (AI-423): Formal object with access definition
1893 pragma Assert
(Present
(Access_Definition
(Node
)));
1895 Sprint_Node
(Access_Definition
(Node
));
1898 if Present
(Default_Expression
(Node
)) then
1900 Sprint_Node
(Default_Expression
(Node
));
1906 when N_Formal_Ordinary_Fixed_Point_Definition
=>
1907 Write_Str_With_Col_Check_Sloc
("delta <>");
1909 when N_Formal_Package_Declaration
=>
1910 Write_Indent_Str_Sloc
("with package ");
1911 Write_Id
(Defining_Identifier
(Node
));
1912 Write_Str_With_Col_Check
(" is new ");
1913 Sprint_Node
(Name
(Node
));
1914 Write_Str_With_Col_Check
(" (<>);");
1916 when N_Formal_Private_Type_Definition
=>
1917 if Abstract_Present
(Node
) then
1918 Write_Str_With_Col_Check
("abstract ");
1921 if Tagged_Present
(Node
) then
1922 Write_Str_With_Col_Check
("tagged ");
1925 if Limited_Present
(Node
) then
1926 Write_Str_With_Col_Check
("limited ");
1929 Write_Str_With_Col_Check_Sloc
("private");
1931 when N_Formal_Incomplete_Type_Definition
=>
1932 if Tagged_Present
(Node
) then
1933 Write_Str_With_Col_Check
("is tagged ");
1936 when N_Formal_Signed_Integer_Type_Definition
=>
1937 Write_Str_With_Col_Check_Sloc
("range <>");
1939 when N_Formal_Type_Declaration
=>
1940 Write_Indent_Str_Sloc
("type ");
1941 Write_Id
(Defining_Identifier
(Node
));
1943 if Present
(Discriminant_Specifications
(Node
)) then
1944 Write_Discr_Specs
(Node
);
1945 elsif Unknown_Discriminants_Present
(Node
) then
1946 Write_Str_With_Col_Check
("(<>)");
1949 if Nkind
(Formal_Type_Definition
(Node
)) /=
1950 N_Formal_Incomplete_Type_Definition
1952 Write_Str_With_Col_Check
(" is ");
1955 Sprint_Node
(Formal_Type_Definition
(Node
));
1958 when N_Free_Statement
=>
1959 Write_Indent_Str_Sloc
("free ");
1960 Sprint_Node
(Expression
(Node
));
1963 when N_Freeze_Entity
=>
1964 if Dump_Original_Only
then
1967 -- A freeze node is output if it has some effect (i.e. non-empty
1968 -- actions, or freeze node for an itype, which causes elaboration
1969 -- of the itype), and is also always output if Dump_Freeze_Null
1972 elsif Present
(Actions
(Node
))
1973 or else Is_Itype
(Entity
(Node
))
1974 or else Dump_Freeze_Null
1977 Write_Rewrite_Str
("<<<");
1978 Write_Str_With_Col_Check_Sloc
("freeze ");
1979 Write_Id
(Entity
(Node
));
1982 if No
(Actions
(Node
)) then
1986 -- Output freeze actions. We increment Freeze_Indent during
1987 -- this output to avoid generating extra blank lines before
1988 -- any procedures included in the freeze actions.
1990 Freeze_Indent
:= Freeze_Indent
+ 1;
1991 Sprint_Indented_List
(Actions
(Node
));
1992 Freeze_Indent
:= Freeze_Indent
- 1;
1993 Write_Indent_Str
("]");
1996 Write_Rewrite_Str
(">>>");
1999 when N_Freeze_Generic_Entity
=>
2000 if Dump_Original_Only
then
2005 Write_Str_With_Col_Check_Sloc
("freeze_generic ");
2006 Write_Id
(Entity
(Node
));
2009 when N_Full_Type_Declaration
=>
2010 Write_Indent_Str_Sloc
("type ");
2011 Sprint_Node
(Defining_Identifier
(Node
));
2012 Write_Discr_Specs
(Node
);
2013 Write_Str_With_Col_Check
(" is ");
2014 Sprint_Node
(Type_Definition
(Node
));
2017 when N_Function_Call
=>
2019 Write_Subprogram_Name
(Name
(Node
));
2020 Sprint_Opt_Paren_Comma_List
(Parameter_Associations
(Node
));
2022 when N_Function_Instantiation
=>
2023 Write_Indent_Str_Sloc
("function ");
2024 Sprint_Node
(Defining_Unit_Name
(Node
));
2025 Write_Str_With_Col_Check
(" is new ");
2026 Sprint_Node
(Name
(Node
));
2027 Sprint_Opt_Paren_Comma_List
(Generic_Associations
(Node
));
2030 when N_Function_Specification
=>
2031 Write_Str_With_Col_Check_Sloc
("function ");
2032 Sprint_Node
(Defining_Unit_Name
(Node
));
2033 Write_Param_Specs
(Node
);
2034 Write_Str_With_Col_Check
(" return ");
2036 -- Ada 2005 (AI-231)
2038 if Nkind
(Result_Definition
(Node
)) /= N_Access_Definition
2039 and then Null_Exclusion_Present
(Node
)
2041 Write_Str
(" not null ");
2044 Sprint_Node
(Result_Definition
(Node
));
2046 when N_Generic_Association
=>
2049 if Present
(Selector_Name
(Node
)) then
2050 Sprint_Node
(Selector_Name
(Node
));
2054 Sprint_Node
(Explicit_Generic_Actual_Parameter
(Node
));
2056 when N_Generic_Function_Renaming_Declaration
=>
2057 Write_Indent_Str_Sloc
("generic function ");
2058 Sprint_Node
(Defining_Unit_Name
(Node
));
2059 Write_Str_With_Col_Check
(" renames ");
2060 Sprint_Node
(Name
(Node
));
2063 when N_Generic_Package_Declaration
=>
2065 Write_Indent_Str_Sloc
("generic ");
2066 Sprint_Indented_List
(Generic_Formal_Declarations
(Node
));
2068 Sprint_Node
(Specification
(Node
));
2071 when N_Generic_Package_Renaming_Declaration
=>
2072 Write_Indent_Str_Sloc
("generic package ");
2073 Sprint_Node
(Defining_Unit_Name
(Node
));
2074 Write_Str_With_Col_Check
(" renames ");
2075 Sprint_Node
(Name
(Node
));
2078 when N_Generic_Procedure_Renaming_Declaration
=>
2079 Write_Indent_Str_Sloc
("generic procedure ");
2080 Sprint_Node
(Defining_Unit_Name
(Node
));
2081 Write_Str_With_Col_Check
(" renames ");
2082 Sprint_Node
(Name
(Node
));
2085 when N_Generic_Subprogram_Declaration
=>
2087 Write_Indent_Str_Sloc
("generic ");
2088 Sprint_Indented_List
(Generic_Formal_Declarations
(Node
));
2090 Sprint_Node
(Specification
(Node
));
2093 when N_Goto_Statement
=>
2094 Write_Indent_Str_Sloc
("goto ");
2095 Sprint_Node
(Name
(Node
));
2098 if Nkind
(Next
(Node
)) = N_Label
then
2102 when N_Handled_Sequence_Of_Statements
=>
2104 Sprint_Indented_List
(Statements
(Node
));
2106 if Present
(Exception_Handlers
(Node
)) then
2107 Write_Indent_Str
("exception");
2109 Sprint_Node_List
(Exception_Handlers
(Node
));
2113 if Present
(At_End_Proc
(Node
)) then
2114 Write_Indent_Str
("at end");
2117 Sprint_Node
(At_End_Proc
(Node
));
2122 when N_Identifier
=>
2126 when N_If_Expression
=>
2128 Has_Parens
: constant Boolean := Paren_Count
(Node
) > 0;
2129 Condition
: constant Node_Id
:= First
(Expressions
(Node
));
2130 Then_Expr
: constant Node_Id
:= Next
(Condition
);
2133 -- The syntax for if_expression does not include parentheses,
2134 -- but sometimes parentheses are required, so unconditionally
2135 -- generate them here unless already present.
2137 if not Has_Parens
then
2141 Write_Str_With_Col_Check_Sloc
("if ");
2142 Sprint_Node
(Condition
);
2143 Write_Str_With_Col_Check
(" then ");
2145 -- Defense against junk here
2147 if Present
(Then_Expr
) then
2148 Sprint_Node
(Then_Expr
);
2150 if Present
(Next
(Then_Expr
)) then
2151 Write_Str_With_Col_Check
(" else ");
2152 Sprint_Node
(Next
(Then_Expr
));
2156 if not Has_Parens
then
2161 when N_If_Statement
=>
2162 Write_Indent_Str_Sloc
("if ");
2163 Sprint_Node
(Condition
(Node
));
2164 Write_Str_With_Col_Check
(" then");
2165 Sprint_Indented_List
(Then_Statements
(Node
));
2166 Sprint_Opt_Node_List
(Elsif_Parts
(Node
));
2168 if Present
(Else_Statements
(Node
)) then
2169 Write_Indent_Str
("else");
2170 Sprint_Indented_List
(Else_Statements
(Node
));
2173 Write_Indent_Str
("end if;");
2175 when N_Implicit_Label_Declaration
=>
2176 if not Dump_Original_Only
then
2178 Write_Rewrite_Str
("<<<");
2180 Write_Id
(Defining_Identifier
(Node
));
2182 Write_Str_With_Col_Check
("label");
2183 Write_Rewrite_Str
(">>>");
2187 Sprint_Left_Opnd
(Node
);
2188 Write_Str_Sloc
(" in ");
2190 if Present
(Right_Opnd
(Node
)) then
2191 Sprint_Right_Opnd
(Node
);
2193 Sprint_Bar_List
(Alternatives
(Node
));
2196 when N_Incomplete_Type_Declaration
=>
2197 Write_Indent_Str_Sloc
("type ");
2198 Write_Id
(Defining_Identifier
(Node
));
2200 if Present
(Discriminant_Specifications
(Node
)) then
2201 Write_Discr_Specs
(Node
);
2202 elsif Unknown_Discriminants_Present
(Node
) then
2203 Write_Str_With_Col_Check
("(<>)");
2208 when N_Index_Or_Discriminant_Constraint
=>
2210 Sprint_Paren_Comma_List
(Constraints
(Node
));
2212 when N_Indexed_Component
=>
2213 Sprint_Node_Sloc
(Prefix
(Node
));
2214 Sprint_Opt_Paren_Comma_List
(Expressions
(Node
));
2216 when N_Integer_Literal
=>
2217 if Print_In_Hex
(Node
) then
2218 Write_Uint_With_Col_Check_Sloc
(Intval
(Node
), Hex
);
2220 Write_Uint_With_Col_Check_Sloc
(Intval
(Node
), Auto
);
2223 when N_Iteration_Scheme
=>
2224 if Present
(Condition
(Node
)) then
2225 Write_Str_With_Col_Check_Sloc
("while ");
2226 Sprint_Node
(Condition
(Node
));
2228 Write_Str_With_Col_Check_Sloc
("for ");
2230 if Present
(Iterator_Specification
(Node
)) then
2231 Sprint_Node
(Iterator_Specification
(Node
));
2233 Sprint_Node
(Loop_Parameter_Specification
(Node
));
2239 when N_Iterator_Specification
=>
2241 Write_Id
(Defining_Identifier
(Node
));
2243 if Present
(Subtype_Indication
(Node
)) then
2244 Write_Str_With_Col_Check
(" : ");
2245 Sprint_Node
(Subtype_Indication
(Node
));
2248 if Of_Present
(Node
) then
2249 Write_Str_With_Col_Check
(" of ");
2251 Write_Str_With_Col_Check
(" in ");
2254 if Reverse_Present
(Node
) then
2255 Write_Str_With_Col_Check
("reverse ");
2258 Sprint_Node
(Name
(Node
));
2260 when N_Itype_Reference
=>
2261 Write_Indent_Str_Sloc
("reference ");
2262 Write_Id
(Itype
(Node
));
2265 Write_Indent_Str_Sloc
("<<");
2266 Write_Id
(Identifier
(Node
));
2269 when N_Loop_Parameter_Specification
=>
2271 Write_Id
(Defining_Identifier
(Node
));
2272 Write_Str_With_Col_Check
(" in ");
2274 if Reverse_Present
(Node
) then
2275 Write_Str_With_Col_Check
("reverse ");
2278 Sprint_Node
(Discrete_Subtype_Definition
(Node
));
2280 when N_Loop_Statement
=>
2283 if Present
(Identifier
(Node
))
2284 and then (not Has_Created_Identifier
(Node
)
2285 or else not Dump_Original_Only
)
2287 Write_Rewrite_Str
("<<<");
2288 Write_Id
(Identifier
(Node
));
2290 Write_Rewrite_Str
(">>>");
2291 Sprint_Node
(Iteration_Scheme
(Node
));
2292 Write_Str_With_Col_Check_Sloc
("loop");
2293 Sprint_Indented_List
(Statements
(Node
));
2294 Write_Indent_Str
("end loop ");
2295 Write_Rewrite_Str
("<<<");
2296 Write_Id
(Identifier
(Node
));
2297 Write_Rewrite_Str
(">>>");
2301 Sprint_Node
(Iteration_Scheme
(Node
));
2302 Write_Str_With_Col_Check_Sloc
("loop");
2303 Sprint_Indented_List
(Statements
(Node
));
2304 Write_Indent_Str
("end loop;");
2307 when N_Mod_Clause
=>
2308 Sprint_Node_List
(Pragmas_Before
(Node
));
2309 Write_Str_With_Col_Check_Sloc
("at mod ");
2310 Sprint_Node
(Expression
(Node
));
2312 when N_Modular_Type_Definition
=>
2313 Write_Str_With_Col_Check_Sloc
("mod ");
2314 Sprint_Node
(Expression
(Node
));
2317 Sprint_Left_Opnd
(Node
);
2318 Write_Str_Sloc
(" not in ");
2320 if Present
(Right_Opnd
(Node
)) then
2321 Sprint_Right_Opnd
(Node
);
2323 Sprint_Bar_List
(Alternatives
(Node
));
2327 Write_Str_With_Col_Check_Sloc
("null");
2329 when N_Null_Statement
=>
2330 if Comes_From_Source
(Node
)
2331 or else Dump_Freeze_Null
2332 or else not Is_List_Member
(Node
)
2333 or else (No
(Prev
(Node
)) and then No
(Next
(Node
)))
2335 Write_Indent_Str_Sloc
("null;");
2338 when N_Number_Declaration
=>
2341 if Write_Indent_Identifiers
(Node
) then
2342 Write_Str_With_Col_Check
(" : constant ");
2344 Sprint_Node
(Expression
(Node
));
2348 when N_Object_Declaration
=>
2351 if Write_Indent_Identifiers
(Node
) then
2353 Def_Id
: constant Entity_Id
:= Defining_Identifier
(Node
);
2356 Write_Str_With_Col_Check
(" : ");
2358 if Is_Statically_Allocated
(Def_Id
) then
2359 Write_Str_With_Col_Check
("static ");
2362 if Aliased_Present
(Node
) then
2363 Write_Str_With_Col_Check
("aliased ");
2366 if Constant_Present
(Node
) then
2367 Write_Str_With_Col_Check
("constant ");
2370 -- Ada 2005 (AI-231)
2372 if Null_Exclusion_Present
(Node
) then
2373 Write_Str_With_Col_Check
("not null ");
2376 -- Print type. We used to print the Object_Definition from
2377 -- the node, but it is much more useful to print the Etype
2378 -- of the defining identifier for the case where the nominal
2379 -- type is an unconstrained array type. For example, this
2380 -- will be a clear reference to the Itype with the bounds
2381 -- in the case of a type like String. The object after
2382 -- all is constrained, even if its nominal subtype is
2386 Odef
: constant Node_Id
:= Object_Definition
(Node
);
2389 if Nkind
(Odef
) = N_Identifier
2390 and then Present
(Etype
(Odef
))
2391 and then Is_Array_Type
(Etype
(Odef
))
2392 and then not Is_Constrained
(Etype
(Odef
))
2393 and then Present
(Etype
(Def_Id
))
2395 Sprint_Node
(Etype
(Def_Id
));
2397 -- In other cases, the nominal type is fine to print
2404 if Present
(Expression
(Node
))
2405 and then Expression
(Node
) /= Error
2408 Sprint_Node
(Expression
(Node
));
2413 -- Handle implicit importation and implicit exportation of
2414 -- object declarations:
2415 -- $pragma import (Convention_Id, Def_Id, "...");
2416 -- $pragma export (Convention_Id, Def_Id, "...");
2418 if Is_Internal
(Def_Id
)
2419 and then Present
(Interface_Name
(Def_Id
))
2421 Write_Indent_Str_Sloc
("$pragma ");
2423 if Is_Imported
(Def_Id
) then
2424 Write_Str
("import (");
2426 else pragma Assert
(Is_Exported
(Def_Id
));
2427 Write_Str
("export (");
2431 Prefix
: constant String := "Convention_";
2432 S
: constant String := Convention
(Def_Id
)'Img;
2435 Name_Len
:= S
'Last - Prefix
'Last;
2436 Name_Buffer
(1 .. Name_Len
) :=
2437 S
(Prefix
'Last + 1 .. S
'Last);
2438 Set_Casing
(All_Lower_Case
);
2439 Write_Str
(Name_Buffer
(1 .. Name_Len
));
2445 Write_String_Table_Entry
2446 (Strval
(Interface_Name
(Def_Id
)));
2452 when N_Object_Renaming_Declaration
=>
2455 Sprint_Node
(Defining_Identifier
(Node
));
2458 -- Ada 2005 (AI-230): Access renamings
2460 if Present
(Access_Definition
(Node
)) then
2461 Sprint_Node
(Access_Definition
(Node
));
2463 elsif Present
(Subtype_Mark
(Node
)) then
2465 -- Ada 2005 (AI-423): Object renaming with a null exclusion
2467 if Null_Exclusion_Present
(Node
) then
2468 Write_Str
("not null ");
2471 Sprint_Node
(Subtype_Mark
(Node
));
2474 Write_Str
(" ??? ");
2477 Write_Str_With_Col_Check
(" renames ");
2478 Sprint_Node
(Name
(Node
));
2482 Write_Operator
(Node
, "abs ");
2483 Sprint_Right_Opnd
(Node
);
2486 Sprint_Left_Opnd
(Node
);
2487 Write_Operator
(Node
, " + ");
2488 Sprint_Right_Opnd
(Node
);
2491 Sprint_Left_Opnd
(Node
);
2492 Write_Operator
(Node
, " and ");
2493 Sprint_Right_Opnd
(Node
);
2496 Sprint_Left_Opnd
(Node
);
2497 Write_Operator
(Node
, " & ");
2498 Sprint_Right_Opnd
(Node
);
2501 Sprint_Left_Opnd
(Node
);
2503 Process_TFAI_RR_Flags
(Node
);
2504 Write_Operator
(Node
, "/ ");
2505 Sprint_Right_Opnd
(Node
);
2508 Sprint_Left_Opnd
(Node
);
2509 Write_Operator
(Node
, " = ");
2510 Sprint_Right_Opnd
(Node
);
2513 Sprint_Left_Opnd
(Node
);
2514 Write_Operator
(Node
, " ** ");
2515 Sprint_Right_Opnd
(Node
);
2518 Sprint_Left_Opnd
(Node
);
2519 Write_Operator
(Node
, " >= ");
2520 Sprint_Right_Opnd
(Node
);
2523 Sprint_Left_Opnd
(Node
);
2524 Write_Operator
(Node
, " > ");
2525 Sprint_Right_Opnd
(Node
);
2528 Sprint_Left_Opnd
(Node
);
2529 Write_Operator
(Node
, " <= ");
2530 Sprint_Right_Opnd
(Node
);
2533 Sprint_Left_Opnd
(Node
);
2534 Write_Operator
(Node
, " < ");
2535 Sprint_Right_Opnd
(Node
);
2538 Write_Operator
(Node
, "-");
2539 Sprint_Right_Opnd
(Node
);
2542 Sprint_Left_Opnd
(Node
);
2544 if Treat_Fixed_As_Integer
(Node
) then
2548 Write_Operator
(Node
, " mod ");
2549 Sprint_Right_Opnd
(Node
);
2551 when N_Op_Multiply
=>
2552 Sprint_Left_Opnd
(Node
);
2554 Process_TFAI_RR_Flags
(Node
);
2555 Write_Operator
(Node
, "* ");
2556 Sprint_Right_Opnd
(Node
);
2559 Sprint_Left_Opnd
(Node
);
2560 Write_Operator
(Node
, " /= ");
2561 Sprint_Right_Opnd
(Node
);
2564 Write_Operator
(Node
, "not ");
2565 Sprint_Right_Opnd
(Node
);
2568 Sprint_Left_Opnd
(Node
);
2569 Write_Operator
(Node
, " or ");
2570 Sprint_Right_Opnd
(Node
);
2573 Write_Operator
(Node
, "+");
2574 Sprint_Right_Opnd
(Node
);
2577 Sprint_Left_Opnd
(Node
);
2579 if Treat_Fixed_As_Integer
(Node
) then
2583 Write_Operator
(Node
, " rem ");
2584 Sprint_Right_Opnd
(Node
);
2590 Write_Str_With_Col_Check
("(");
2591 Sprint_Node
(Left_Opnd
(Node
));
2593 Sprint_Node
(Right_Opnd
(Node
));
2596 when N_Op_Subtract
=>
2597 Sprint_Left_Opnd
(Node
);
2598 Write_Operator
(Node
, " - ");
2599 Sprint_Right_Opnd
(Node
);
2602 Sprint_Left_Opnd
(Node
);
2603 Write_Operator
(Node
, " xor ");
2604 Sprint_Right_Opnd
(Node
);
2606 when N_Operator_Symbol
=>
2607 Write_Name_With_Col_Check_Sloc
(Chars
(Node
));
2609 when N_Ordinary_Fixed_Point_Definition
=>
2610 Write_Str_With_Col_Check_Sloc
("delta ");
2611 Sprint_Node
(Delta_Expression
(Node
));
2612 Sprint_Opt_Node
(Real_Range_Specification
(Node
));
2615 Sprint_Left_Opnd
(Node
);
2616 Write_Str_Sloc
(" or else ");
2617 Sprint_Right_Opnd
(Node
);
2619 when N_Others_Choice
=>
2620 if All_Others
(Node
) then
2621 Write_Str_With_Col_Check
("all ");
2624 Write_Str_With_Col_Check_Sloc
("others");
2626 when N_Package_Body
=>
2628 Write_Indent_Str_Sloc
("package body ");
2629 Sprint_Node
(Defining_Unit_Name
(Node
));
2631 Sprint_Indented_List
(Declarations
(Node
));
2633 if Present
(Handled_Statement_Sequence
(Node
)) then
2634 Write_Indent_Str
("begin");
2635 Sprint_Node
(Handled_Statement_Sequence
(Node
));
2638 Write_Indent_Str
("end ");
2640 (Handled_Statement_Sequence
(Node
), Defining_Unit_Name
(Node
));
2643 when N_Package_Body_Stub
=>
2644 Write_Indent_Str_Sloc
("package body ");
2645 Sprint_Node
(Defining_Identifier
(Node
));
2646 Write_Str_With_Col_Check
(" is separate;");
2648 when N_Package_Declaration
=>
2651 Sprint_Node_Sloc
(Specification
(Node
));
2654 -- If this is an instantiation, get the aspects from the original
2655 -- instantiation node.
2657 if Is_Generic_Instance
(Defining_Entity
(Node
))
2658 and then Has_Aspects
2659 (Package_Instantiation
(Defining_Entity
(Node
)))
2661 Sprint_Aspect_Specifications
2662 (Package_Instantiation
(Defining_Entity
(Node
)),
2666 when N_Package_Instantiation
=>
2668 Write_Indent_Str_Sloc
("package ");
2669 Sprint_Node
(Defining_Unit_Name
(Node
));
2670 Write_Str
(" is new ");
2671 Sprint_Node
(Name
(Node
));
2672 Sprint_Opt_Paren_Comma_List
(Generic_Associations
(Node
));
2675 when N_Package_Renaming_Declaration
=>
2676 Write_Indent_Str_Sloc
("package ");
2677 Sprint_Node
(Defining_Unit_Name
(Node
));
2678 Write_Str_With_Col_Check
(" renames ");
2679 Sprint_Node
(Name
(Node
));
2682 when N_Package_Specification
=>
2683 Write_Str_With_Col_Check_Sloc
("package ");
2684 Sprint_Node
(Defining_Unit_Name
(Node
));
2686 if Nkind
(Parent
(Node
)) = N_Generic_Package_Declaration
2687 and then Has_Aspects
(Parent
(Node
))
2689 Sprint_Aspect_Specifications
2690 (Parent
(Node
), Semicolon
=> False);
2692 -- An instantiation is rewritten as a package declaration, but
2693 -- the aspects belong to the instantiation node.
2695 elsif Nkind
(Parent
(Node
)) = N_Package_Declaration
then
2697 Pack
: constant Entity_Id
:= Defining_Entity
(Node
);
2700 if not Is_Generic_Instance
(Pack
) then
2701 if Has_Aspects
(Parent
(Node
)) then
2702 Sprint_Aspect_Specifications
2703 (Parent
(Node
), Semicolon
=> False);
2710 Sprint_Indented_List
(Visible_Declarations
(Node
));
2712 if Present
(Private_Declarations
(Node
)) then
2713 Write_Indent_Str
("private");
2714 Sprint_Indented_List
(Private_Declarations
(Node
));
2717 Write_Indent_Str
("end ");
2718 Sprint_Node
(Defining_Unit_Name
(Node
));
2720 when N_Parameter_Association
=>
2721 Sprint_Node_Sloc
(Selector_Name
(Node
));
2723 Sprint_Node
(Explicit_Actual_Parameter
(Node
));
2725 when N_Parameter_Specification
=>
2728 if Write_Identifiers
(Node
) then
2731 if In_Present
(Node
) then
2732 Write_Str_With_Col_Check
("in ");
2735 if Out_Present
(Node
) then
2736 Write_Str_With_Col_Check
("out ");
2739 -- Ada 2005 (AI-231): Parameter specification may carry null
2740 -- exclusion. Do not print it now if this is an access formal,
2741 -- it is emitted when the access definition is displayed.
2743 if Null_Exclusion_Present
(Node
)
2744 and then Nkind
(Parameter_Type
(Node
)) /= N_Access_Definition
2746 Write_Str
("not null ");
2749 if Aliased_Present
(Node
) then
2750 Write_Str
("aliased ");
2753 Sprint_Node
(Parameter_Type
(Node
));
2755 if Present
(Expression
(Node
)) then
2757 Sprint_Node
(Expression
(Node
));
2763 when N_Pop_Constraint_Error_Label
=>
2764 Write_Indent_Str
("%pop_constraint_error_label");
2766 when N_Pop_Program_Error_Label
=>
2767 Write_Indent_Str
("%pop_program_error_label");
2769 when N_Pop_Storage_Error_Label
=>
2770 Write_Indent_Str
("%pop_storage_error_label");
2772 when N_Private_Extension_Declaration
=>
2773 Write_Indent_Str_Sloc
("type ");
2774 Write_Id
(Defining_Identifier
(Node
));
2776 if Present
(Discriminant_Specifications
(Node
)) then
2777 Write_Discr_Specs
(Node
);
2778 elsif Unknown_Discriminants_Present
(Node
) then
2779 Write_Str_With_Col_Check
("(<>)");
2782 Write_Str_With_Col_Check
(" is new ");
2783 Sprint_Node
(Subtype_Indication
(Node
));
2785 if Present
(Interface_List
(Node
)) then
2786 Write_Str_With_Col_Check
(" and ");
2787 Sprint_And_List
(Interface_List
(Node
));
2790 Write_Str_With_Col_Check
(" with private;");
2792 when N_Private_Type_Declaration
=>
2793 Write_Indent_Str_Sloc
("type ");
2794 Write_Id
(Defining_Identifier
(Node
));
2796 if Present
(Discriminant_Specifications
(Node
)) then
2797 Write_Discr_Specs
(Node
);
2798 elsif Unknown_Discriminants_Present
(Node
) then
2799 Write_Str_With_Col_Check
("(<>)");
2804 if Tagged_Present
(Node
) then
2805 Write_Str_With_Col_Check
("tagged ");
2808 if Limited_Present
(Node
) then
2809 Write_Str_With_Col_Check
("limited ");
2812 Write_Str_With_Col_Check
("private;");
2814 when N_Push_Constraint_Error_Label
=>
2815 Write_Indent_Str
("%push_constraint_error_label (");
2817 if Present
(Exception_Label
(Node
)) then
2818 Write_Name_With_Col_Check
(Chars
(Exception_Label
(Node
)));
2823 when N_Push_Program_Error_Label
=>
2824 Write_Indent_Str
("%push_program_error_label (");
2826 if Present
(Exception_Label
(Node
)) then
2827 Write_Name_With_Col_Check
(Chars
(Exception_Label
(Node
)));
2832 when N_Push_Storage_Error_Label
=>
2833 Write_Indent_Str
("%push_storage_error_label (");
2835 if Present
(Exception_Label
(Node
)) then
2836 Write_Name_With_Col_Check
(Chars
(Exception_Label
(Node
)));
2842 Write_Indent_Str_Sloc
("pragma ");
2843 Write_Name_With_Col_Check
(Pragma_Name_Unmapped
(Node
));
2845 if Present
(Pragma_Argument_Associations
(Node
)) then
2846 Sprint_Opt_Paren_Comma_List
2847 (Pragma_Argument_Associations
(Node
));
2852 when N_Pragma_Argument_Association
=>
2855 if Chars
(Node
) /= No_Name
then
2856 Write_Name_With_Col_Check
(Chars
(Node
));
2860 Sprint_Node
(Expression
(Node
));
2862 when N_Procedure_Call_Statement
=>
2865 Write_Subprogram_Name
(Name
(Node
));
2866 Sprint_Opt_Paren_Comma_List
(Parameter_Associations
(Node
));
2869 when N_Procedure_Instantiation
=>
2870 Write_Indent_Str_Sloc
("procedure ");
2871 Sprint_Node
(Defining_Unit_Name
(Node
));
2872 Write_Str_With_Col_Check
(" is new ");
2873 Sprint_Node
(Name
(Node
));
2874 Sprint_Opt_Paren_Comma_List
(Generic_Associations
(Node
));
2877 when N_Procedure_Specification
=>
2878 Write_Str_With_Col_Check_Sloc
("procedure ");
2879 Sprint_Node
(Defining_Unit_Name
(Node
));
2880 Write_Param_Specs
(Node
);
2882 when N_Protected_Body
=>
2883 Write_Indent_Str_Sloc
("protected body ");
2884 Write_Id
(Defining_Identifier
(Node
));
2886 Sprint_Indented_List
(Declarations
(Node
));
2887 Write_Indent_Str
("end ");
2888 Write_Id
(Defining_Identifier
(Node
));
2891 when N_Protected_Body_Stub
=>
2892 Write_Indent_Str_Sloc
("protected body ");
2893 Write_Id
(Defining_Identifier
(Node
));
2894 Write_Str_With_Col_Check
(" is separate;");
2896 when N_Protected_Definition
=>
2898 Sprint_Indented_List
(Visible_Declarations
(Node
));
2900 if Present
(Private_Declarations
(Node
)) then
2901 Write_Indent_Str
("private");
2902 Sprint_Indented_List
(Private_Declarations
(Node
));
2905 Write_Indent_Str
("end ");
2907 when N_Protected_Type_Declaration
=>
2908 Write_Indent_Str_Sloc
("protected type ");
2909 Sprint_Node
(Defining_Identifier
(Node
));
2910 Write_Discr_Specs
(Node
);
2912 if Present
(Interface_List
(Node
)) then
2913 Write_Str
(" is new ");
2914 Sprint_And_List
(Interface_List
(Node
));
2915 Write_Str
(" with ");
2920 Sprint_Node
(Protected_Definition
(Node
));
2921 Write_Id
(Defining_Identifier
(Node
));
2924 when N_Qualified_Expression
=>
2925 Sprint_Node
(Subtype_Mark
(Node
));
2926 Write_Char_Sloc
(''');
2928 -- Print expression, make sure we have at least one level of
2929 -- parentheses around the expression. For cases of qualified
2930 -- expressions in the source, this is always the case, but
2931 -- for generated qualifications, there may be no explicit
2932 -- parentheses present.
2934 if Paren_Count
(Expression
(Node
)) /= 0 then
2935 Sprint_Node
(Expression
(Node
));
2939 Sprint_Node
(Expression
(Node
));
2941 -- Odd case, for the qualified expressions used in machine
2942 -- code the argument may be a procedure call, resulting in
2943 -- a junk semicolon before the right parent, get rid of it.
2945 Write_Erase_Char
(';');
2947 -- Now we can add the terminating right paren
2952 when N_Quantified_Expression
=>
2955 if All_Present
(Node
) then
2956 Write_Str
(" all ");
2958 Write_Str
(" some ");
2961 if Present
(Iterator_Specification
(Node
)) then
2962 Sprint_Node
(Iterator_Specification
(Node
));
2964 Sprint_Node
(Loop_Parameter_Specification
(Node
));
2968 Sprint_Node
(Condition
(Node
));
2970 when N_Raise_Expression
=>
2972 Has_Parens
: constant Boolean := Paren_Count
(Node
) > 0;
2975 -- The syntax for raise_expression does not include parentheses
2976 -- but sometimes parentheses are required, so unconditionally
2977 -- generate them here unless already present.
2979 if not Has_Parens
then
2983 Write_Str_With_Col_Check_Sloc
("raise ");
2984 Sprint_Node
(Name
(Node
));
2986 if Present
(Expression
(Node
)) then
2987 Write_Str_With_Col_Check
(" with ");
2988 Sprint_Node
(Expression
(Node
));
2991 if not Has_Parens
then
2996 when N_Raise_Constraint_Error
=>
2998 -- This node can be used either as a subexpression or as a
2999 -- statement form. The following test is a reasonably reliable
3000 -- way to distinguish the two cases.
3002 if Is_List_Member
(Node
)
3003 and then Nkind
(Parent
(Node
)) not in N_Subexpr
3008 Write_Str_With_Col_Check_Sloc
("[constraint_error");
3009 Write_Condition_And_Reason
(Node
);
3011 when N_Raise_Program_Error
=>
3013 -- This node can be used either as a subexpression or as a
3014 -- statement form. The following test is a reasonably reliable
3015 -- way to distinguish the two cases.
3017 if Is_List_Member
(Node
)
3018 and then Nkind
(Parent
(Node
)) not in N_Subexpr
3023 Write_Str_With_Col_Check_Sloc
("[program_error");
3024 Write_Condition_And_Reason
(Node
);
3026 when N_Raise_Storage_Error
=>
3028 -- This node can be used either as a subexpression or as a
3029 -- statement form. The following test is a reasonably reliable
3030 -- way to distinguish the two cases.
3032 if Is_List_Member
(Node
)
3033 and then Nkind
(Parent
(Node
)) not in N_Subexpr
3038 Write_Str_With_Col_Check_Sloc
("[storage_error");
3039 Write_Condition_And_Reason
(Node
);
3041 when N_Raise_Statement
=>
3042 Write_Indent_Str_Sloc
("raise ");
3043 Sprint_Node
(Name
(Node
));
3045 if Present
(Expression
(Node
)) then
3046 Write_Str_With_Col_Check_Sloc
(" with ");
3047 Sprint_Node
(Expression
(Node
));
3053 Sprint_Node
(Low_Bound
(Node
));
3054 Write_Str_Sloc
(" .. ");
3055 Sprint_Node
(High_Bound
(Node
));
3056 Update_Itype
(Node
);
3058 when N_Range_Constraint
=>
3059 Write_Str_With_Col_Check_Sloc
("range ");
3060 Sprint_Node
(Range_Expression
(Node
));
3062 when N_Real_Literal
=>
3063 Write_Ureal_With_Col_Check_Sloc
(Realval
(Node
));
3065 when N_Real_Range_Specification
=>
3066 Write_Str_With_Col_Check_Sloc
("range ");
3067 Sprint_Node
(Low_Bound
(Node
));
3069 Sprint_Node
(High_Bound
(Node
));
3071 when N_Record_Definition
=>
3072 if Abstract_Present
(Node
) then
3073 Write_Str_With_Col_Check
("abstract ");
3076 if Tagged_Present
(Node
) then
3077 Write_Str_With_Col_Check
("tagged ");
3080 if Limited_Present
(Node
) then
3081 Write_Str_With_Col_Check
("limited ");
3084 if Null_Present
(Node
) then
3085 Write_Str_With_Col_Check_Sloc
("null record");
3088 Write_Str_With_Col_Check_Sloc
("record");
3089 Sprint_Node
(Component_List
(Node
));
3090 Write_Indent_Str
("end record");
3093 when N_Record_Representation_Clause
=>
3094 Write_Indent_Str_Sloc
("for ");
3095 Sprint_Node
(Identifier
(Node
));
3096 Write_Str_With_Col_Check
(" use record ");
3098 if Present
(Mod_Clause
(Node
)) then
3099 Sprint_Node
(Mod_Clause
(Node
));
3102 Sprint_Indented_List
(Component_Clauses
(Node
));
3103 Write_Indent_Str
("end record;");
3106 Sprint_Node
(Prefix
(Node
));
3107 Write_Str_With_Col_Check_Sloc
("'reference");
3109 when N_Requeue_Statement
=>
3110 Write_Indent_Str_Sloc
("requeue ");
3111 Sprint_Node
(Name
(Node
));
3113 if Abort_Present
(Node
) then
3114 Write_Str_With_Col_Check
(" with abort");
3119 -- Don't we want to print more detail???
3121 -- Doc of this extended syntax belongs in sinfo.ads and/or
3124 when N_SCIL_Dispatch_Table_Tag_Init
=>
3125 Write_Indent_Str
("[N_SCIL_Dispatch_Table_Tag_Init]");
3127 when N_SCIL_Dispatching_Call
=>
3128 Write_Indent_Str
("[N_SCIL_Dispatching_Node]");
3130 when N_SCIL_Membership_Test
=>
3131 Write_Indent_Str
("[N_SCIL_Membership_Test]");
3133 when N_Simple_Return_Statement
=>
3134 if Present
(Expression
(Node
)) then
3135 Write_Indent_Str_Sloc
("return ");
3136 Sprint_Node
(Expression
(Node
));
3139 Write_Indent_Str_Sloc
("return;");
3142 when N_Selective_Accept
=>
3143 Write_Indent_Str_Sloc
("select");
3148 Alt_Node
:= First
(Select_Alternatives
(Node
));
3151 Sprint_Node
(Alt_Node
);
3154 exit when No
(Alt_Node
);
3155 Write_Indent_Str
("or");
3159 if Present
(Else_Statements
(Node
)) then
3160 Write_Indent_Str
("else");
3161 Sprint_Indented_List
(Else_Statements
(Node
));
3164 Write_Indent_Str
("end select;");
3166 when N_Signed_Integer_Type_Definition
=>
3167 Write_Str_With_Col_Check_Sloc
("range ");
3168 Sprint_Node
(Low_Bound
(Node
));
3170 Sprint_Node
(High_Bound
(Node
));
3172 when N_Single_Protected_Declaration
=>
3173 Write_Indent_Str_Sloc
("protected ");
3174 Write_Id
(Defining_Identifier
(Node
));
3176 Sprint_Node
(Protected_Definition
(Node
));
3177 Write_Id
(Defining_Identifier
(Node
));
3180 when N_Single_Task_Declaration
=>
3181 Write_Indent_Str_Sloc
("task ");
3182 Sprint_Node
(Defining_Identifier
(Node
));
3184 if Present
(Task_Definition
(Node
)) then
3186 Sprint_Node
(Task_Definition
(Node
));
3191 when N_Selected_Component
=>
3192 Sprint_Node
(Prefix
(Node
));
3193 Write_Char_Sloc
('.');
3194 Sprint_Node
(Selector_Name
(Node
));
3198 Sprint_Node
(Prefix
(Node
));
3199 Write_Str_With_Col_Check
(" (");
3200 Sprint_Node
(Discrete_Range
(Node
));
3203 when N_String_Literal
=>
3204 if String_Length
(Strval
(Node
)) + Column
> Sprint_Line_Limit
then
3205 Write_Indent_Str
(" ");
3209 Write_String_Table_Entry
(Strval
(Node
));
3211 when N_Subprogram_Body
=>
3213 -- Output extra blank line unless we are in freeze actions
3215 if Freeze_Indent
= 0 then
3221 if Present
(Corresponding_Spec
(Node
)) then
3222 Sprint_Node_Sloc
(Parent
(Corresponding_Spec
(Node
)));
3224 Sprint_Node_Sloc
(Specification
(Node
));
3229 Sprint_Indented_List
(Declarations
(Node
));
3230 Write_Indent_Str
("begin");
3231 Sprint_Node
(Handled_Statement_Sequence
(Node
));
3233 Write_Indent_Str
("end ");
3236 (Handled_Statement_Sequence
(Node
),
3237 Defining_Unit_Name
(Specification
(Node
)));
3240 if Is_List_Member
(Node
)
3241 and then Present
(Next
(Node
))
3242 and then Nkind
(Next
(Node
)) /= N_Subprogram_Body
3247 when N_Subprogram_Body_Stub
=>
3249 Sprint_Node_Sloc
(Specification
(Node
));
3250 Write_Str_With_Col_Check
(" is separate;");
3252 when N_Subprogram_Declaration
=>
3254 Sprint_Node_Sloc
(Specification
(Node
));
3256 if Nkind
(Specification
(Node
)) = N_Procedure_Specification
3257 and then Null_Present
(Specification
(Node
))
3259 Write_Str_With_Col_Check
(" is null");
3264 when N_Subprogram_Renaming_Declaration
=>
3266 Sprint_Node
(Specification
(Node
));
3267 Write_Str_With_Col_Check_Sloc
(" renames ");
3268 Sprint_Node
(Name
(Node
));
3271 when N_Subtype_Declaration
=>
3272 Write_Indent_Str_Sloc
("subtype ");
3273 Sprint_Node
(Defining_Identifier
(Node
));
3276 -- Ada 2005 (AI-231)
3278 if Null_Exclusion_Present
(Node
) then
3279 Write_Str
("not null ");
3282 Sprint_Node
(Subtype_Indication
(Node
));
3285 when N_Subtype_Indication
=>
3286 Sprint_Node_Sloc
(Subtype_Mark
(Node
));
3288 Sprint_Node
(Constraint
(Node
));
3291 Write_Indent_Str_Sloc
("separate (");
3292 Sprint_Node
(Name
(Node
));
3295 Sprint_Node
(Proper_Body
(Node
));
3297 when N_Target_Name
=>
3301 Write_Indent_Str_Sloc
("task body ");
3302 Write_Id
(Defining_Identifier
(Node
));
3304 Sprint_Indented_List
(Declarations
(Node
));
3305 Write_Indent_Str
("begin");
3306 Sprint_Node
(Handled_Statement_Sequence
(Node
));
3307 Write_Indent_Str
("end ");
3309 (Handled_Statement_Sequence
(Node
), Defining_Identifier
(Node
));
3312 when N_Task_Body_Stub
=>
3313 Write_Indent_Str_Sloc
("task body ");
3314 Write_Id
(Defining_Identifier
(Node
));
3315 Write_Str_With_Col_Check
(" is separate;");
3317 when N_Task_Definition
=>
3319 Sprint_Indented_List
(Visible_Declarations
(Node
));
3321 if Present
(Private_Declarations
(Node
)) then
3322 Write_Indent_Str
("private");
3323 Sprint_Indented_List
(Private_Declarations
(Node
));
3326 Write_Indent_Str
("end ");
3327 Sprint_End_Label
(Node
, Defining_Identifier
(Parent
(Node
)));
3329 when N_Task_Type_Declaration
=>
3330 Write_Indent_Str_Sloc
("task type ");
3331 Sprint_Node
(Defining_Identifier
(Node
));
3332 Write_Discr_Specs
(Node
);
3334 if Present
(Interface_List
(Node
)) then
3335 Write_Str
(" is new ");
3336 Sprint_And_List
(Interface_List
(Node
));
3339 if Present
(Task_Definition
(Node
)) then
3340 if No
(Interface_List
(Node
)) then
3343 Write_Str
(" with ");
3346 Sprint_Node
(Task_Definition
(Node
));
3351 when N_Terminate_Alternative
=>
3352 Sprint_Node_List
(Pragmas_Before
(Node
));
3355 if Present
(Condition
(Node
)) then
3356 Write_Str_With_Col_Check
("when ");
3357 Sprint_Node
(Condition
(Node
));
3361 Write_Str_With_Col_Check_Sloc
("terminate;");
3362 Sprint_Node_List
(Pragmas_After
(Node
));
3364 when N_Timed_Entry_Call
=>
3365 Write_Indent_Str_Sloc
("select");
3367 Sprint_Node
(Entry_Call_Alternative
(Node
));
3369 Write_Indent_Str
("or");
3371 Sprint_Node
(Delay_Alternative
(Node
));
3373 Write_Indent_Str
("end select;");
3375 when N_Triggering_Alternative
=>
3376 Sprint_Node_List
(Pragmas_Before
(Node
));
3377 Sprint_Node_Sloc
(Triggering_Statement
(Node
));
3378 Sprint_Node_List
(Statements
(Node
));
3380 when N_Type_Conversion
=>
3382 Sprint_Node
(Subtype_Mark
(Node
));
3385 if Conversion_OK
(Node
) then
3389 if Float_Truncate
(Node
) then
3393 if Rounded_Result
(Node
) then
3398 Sprint_Node
(Expression
(Node
));
3401 when N_Unchecked_Expression
=>
3404 Sprint_Node_Sloc
(Expression
(Node
));
3407 when N_Unchecked_Type_Conversion
=>
3408 Sprint_Node
(Subtype_Mark
(Node
));
3410 Write_Str_With_Col_Check
("(");
3411 Sprint_Node_Sloc
(Expression
(Node
));
3414 when N_Unconstrained_Array_Definition
=>
3415 Write_Str_With_Col_Check_Sloc
("array (");
3420 Node1
:= First
(Subtype_Marks
(Node
));
3422 Sprint_Node
(Node1
);
3423 Write_Str_With_Col_Check
(" range <>");
3425 exit when Node1
= Empty
;
3430 Write_Str
(") of ");
3431 Sprint_Node
(Component_Definition
(Node
));
3433 when N_Unused_At_Start | N_Unused_At_End
=>
3434 Write_Indent_Str
("***** Error, unused node encountered *****");
3437 when N_Use_Package_Clause
=>
3438 Write_Indent_Str_Sloc
("use ");
3439 Sprint_Comma_List
(Names
(Node
));
3442 when N_Use_Type_Clause
=>
3443 Write_Indent_Str_Sloc
("use type ");
3444 Sprint_Comma_List
(Subtype_Marks
(Node
));
3447 when N_Validate_Unchecked_Conversion
=>
3448 Write_Indent_Str_Sloc
("validate unchecked_conversion (");
3449 Sprint_Node
(Source_Type
(Node
));
3451 Sprint_Node
(Target_Type
(Node
));
3455 Write_Indent_Str_Sloc
("when ");
3456 Sprint_Bar_List
(Discrete_Choices
(Node
));
3458 Sprint_Node
(Component_List
(Node
));
3460 when N_Variant_Part
=>
3462 Write_Indent_Str_Sloc
("case ");
3463 Sprint_Node
(Name
(Node
));
3465 Sprint_Indented_List
(Variants
(Node
));
3466 Write_Indent_Str
("end case");
3469 when N_With_Clause
=>
3471 -- Special test, if we are dumping the original tree only,
3472 -- then we want to eliminate the bogus with clauses that
3473 -- correspond to the non-existent children of Text_IO.
3475 if Dump_Original_Only
3476 and then Is_Text_IO_Special_Unit
(Name
(Node
))
3480 -- Normal case, output the with clause
3483 if First_Name
(Node
) or else not Dump_Original_Only
then
3485 -- Ada 2005 (AI-50217): Print limited with_clauses
3487 if Private_Present
(Node
) and Limited_Present
(Node
) then
3488 Write_Indent_Str
("limited private with ");
3490 elsif Private_Present
(Node
) then
3491 Write_Indent_Str
("private with ");
3493 elsif Limited_Present
(Node
) then
3494 Write_Indent_Str
("limited with ");
3497 Write_Indent_Str
("with ");
3504 Sprint_Node_Sloc
(Name
(Node
));
3506 if Last_Name
(Node
) or else not Dump_Original_Only
then
3512 -- Print aspects, except for special case of package declaration,
3513 -- where the aspects are printed inside the package specification.
3515 if Has_Aspects
(Node
)
3516 and then not Nkind_In
(Node
, N_Package_Declaration
,
3517 N_Generic_Package_Declaration
)
3519 Sprint_Aspect_Specifications
(Node
, Semicolon
=> True);
3522 if Nkind
(Node
) in N_Subexpr
3523 and then Do_Range_Check
(Node
)
3528 for J
in 1 .. Paren_Count
(Node
) loop
3532 Dump_Node
:= Save_Dump_Node
;
3533 end Sprint_Node_Actual
;
3535 ----------------------
3536 -- Sprint_Node_List --
3537 ----------------------
3539 procedure Sprint_Node_List
(List
: List_Id
; New_Lines
: Boolean := False) is
3543 if Is_Non_Empty_List
(List
) then
3544 Node
:= First
(List
);
3549 exit when Node
= Empty
;
3553 if New_Lines
and then Column
/= 1 then
3556 end Sprint_Node_List
;
3558 ----------------------
3559 -- Sprint_Node_Sloc --
3560 ----------------------
3562 procedure Sprint_Node_Sloc
(Node
: Node_Id
) is
3566 if Debug_Generated_Code
and then Present
(Dump_Node
) then
3567 Set_Sloc
(Dump_Node
, Sloc
(Node
));
3570 end Sprint_Node_Sloc
;
3572 ---------------------
3573 -- Sprint_Opt_Node --
3574 ---------------------
3576 procedure Sprint_Opt_Node
(Node
: Node_Id
) is
3578 if Present
(Node
) then
3582 end Sprint_Opt_Node
;
3584 --------------------------
3585 -- Sprint_Opt_Node_List --
3586 --------------------------
3588 procedure Sprint_Opt_Node_List
(List
: List_Id
) is
3590 if Present
(List
) then
3591 Sprint_Node_List
(List
);
3593 end Sprint_Opt_Node_List
;
3595 ---------------------------------
3596 -- Sprint_Opt_Paren_Comma_List --
3597 ---------------------------------
3599 procedure Sprint_Opt_Paren_Comma_List
(List
: List_Id
) is
3601 if Is_Non_Empty_List
(List
) then
3603 Sprint_Paren_Comma_List
(List
);
3605 end Sprint_Opt_Paren_Comma_List
;
3607 -----------------------------
3608 -- Sprint_Paren_Comma_List --
3609 -----------------------------
3611 procedure Sprint_Paren_Comma_List
(List
: List_Id
) is
3613 Node_Exists
: Boolean := False;
3617 if Is_Non_Empty_List
(List
) then
3619 if Dump_Original_Only
then
3621 while Present
(N
) loop
3622 if not Is_Rewrite_Insertion
(N
) then
3623 Node_Exists
:= True;
3630 if not Node_Exists
then
3635 Write_Str_With_Col_Check
("(");
3636 Sprint_Comma_List
(List
);
3639 end Sprint_Paren_Comma_List
;
3641 ----------------------
3642 -- Sprint_Right_Opnd --
3643 ----------------------
3645 procedure Sprint_Right_Opnd
(N
: Node_Id
) is
3646 Opnd
: constant Node_Id
:= Right_Opnd
(N
);
3649 if Paren_Count
(Opnd
) /= 0
3650 or else Op_Prec
(Nkind
(Opnd
)) > Op_Prec
(Nkind
(N
))
3659 end Sprint_Right_Opnd
;
3665 procedure Update_Itype
(Node
: Node_Id
) is
3667 if Present
(Etype
(Node
))
3668 and then Is_Itype
(Etype
(Node
))
3669 and then Debug_Generated_Code
3671 Set_Sloc
(Etype
(Node
), Sloc
(Node
));
3675 ---------------------
3676 -- Write_Char_Sloc --
3677 ---------------------
3679 procedure Write_Char_Sloc
(C
: Character) is
3681 if Debug_Generated_Code
and then C
/= ' ' then
3686 end Write_Char_Sloc
;
3688 --------------------------------
3689 -- Write_Condition_And_Reason --
3690 --------------------------------
3692 procedure Write_Condition_And_Reason
(Node
: Node_Id
) is
3693 Cond
: constant Node_Id
:= Condition
(Node
);
3694 Image
: constant String := RT_Exception_Code
'Image
3695 (RT_Exception_Code
'Val
3696 (UI_To_Int
(Reason
(Node
))));
3699 if Present
(Cond
) then
3701 -- If condition is a single entity, or NOT with a single entity,
3702 -- output all on one line, since it will likely fit just fine.
3704 if Is_Entity_Name
(Cond
)
3705 or else (Nkind
(Cond
) = N_Op_Not
3706 and then Is_Entity_Name
(Right_Opnd
(Cond
)))
3708 Write_Str_With_Col_Check
(" when ");
3712 -- Otherwise for more complex condition, multiple lines
3715 Write_Str_With_Col_Check
(" when");
3716 Indent
:= Indent
+ 2;
3720 Indent
:= Indent
- 2;
3723 -- If no condition, just need a space (all on one line)
3733 for J
in 4 .. Image
'Last loop
3734 if Image
(J
) = '_' then
3737 Write_Char
(Fold_Lower
(Image
(J
)));
3742 end Write_Condition_And_Reason
;
3744 --------------------------------
3745 -- Write_Corresponding_Source --
3746 --------------------------------
3748 procedure Write_Corresponding_Source
(S
: String) is
3750 Src
: Source_Buffer_Ptr
;
3753 -- Ignore if not in dump source text mode, or if in freeze actions
3755 if Dump_Source_Text
and then Freeze_Indent
= 0 then
3757 -- Ignore null string
3763 -- Ignore space or semicolon at end of given string
3765 if S
(S
'Last) = ' ' or else S
(S
'Last) = ';' then
3766 Write_Corresponding_Source
(S
(S
'First .. S
'Last - 1));
3770 -- Loop to look at next lines not yet printed in source file
3773 Last_Line_Printed
+ 1 .. Last_Source_Line
(Current_Source_File
)
3775 Src
:= Source_Text
(Current_Source_File
);
3776 Loc
:= Line_Start
(L
, Current_Source_File
);
3778 -- If comment, keep looking
3780 if Src
(Loc
.. Loc
+ 1) = "--" then
3783 -- Search to first non-blank
3786 while Src
(Loc
) not in Line_Terminator
loop
3790 if Src
(Loc
) /= ' ' and then Src
(Loc
) /= ASCII
.HT
then
3792 -- Loop through characters in string to see if we match
3794 for J
in S
'Range loop
3796 -- If mismatch, then not the case we are looking for
3798 if Src
(Loc
) /= S
(J
) then
3805 -- If we fall through, string matched, if white space or
3806 -- semicolon after the matched string, this is the case
3807 -- we are looking for.
3809 if Src
(Loc
) in Line_Terminator
3810 or else Src
(Loc
) = ' '
3811 or else Src
(Loc
) = ASCII
.HT
3812 or else Src
(Loc
) = ';'
3814 -- So output source lines up to and including this one
3816 Write_Source_Lines
(L
);
3825 -- Line was all blanks, or a comment line, keep looking
3829 end Write_Corresponding_Source
;
3831 -----------------------
3832 -- Write_Discr_Specs --
3833 -----------------------
3835 procedure Write_Discr_Specs
(N
: Node_Id
) is
3840 Specs
:= Discriminant_Specifications
(N
);
3842 if Present
(Specs
) then
3843 Write_Str_With_Col_Check
(" (");
3844 Spec
:= First
(Specs
);
3849 exit when Spec
= Empty
;
3851 -- Add semicolon, unless we are printing original tree and the
3852 -- next specification is part of a list (but not the first
3853 -- element of that list)
3855 if not Dump_Original_Only
or else not Prev_Ids
(Spec
) then
3862 end Write_Discr_Specs
;
3868 procedure Write_Ekind
(E
: Entity_Id
) is
3869 S
: constant String := Entity_Kind
'Image (Ekind
(E
));
3872 Name_Len
:= S
'Length;
3873 Name_Buffer
(1 .. Name_Len
) := S
;
3874 Set_Casing
(Mixed_Case
);
3875 Write_Str_With_Col_Check
(Name_Buffer
(1 .. Name_Len
));
3882 procedure Write_Id
(N
: Node_Id
) is
3884 -- Deal with outputting Itype
3886 -- Note: if we are printing the full tree with -gnatds, then we may
3887 -- end up picking up the Associated_Node link from a generic template
3888 -- here which overlaps the Entity field, but as documented, Write_Itype
3889 -- is defended against junk calls.
3891 if Nkind
(N
) in N_Entity
then
3893 elsif Nkind
(N
) in N_Has_Entity
then
3894 Write_Itype
(Entity
(N
));
3897 -- Case of a defining identifier
3899 if Nkind
(N
) = N_Defining_Identifier
then
3901 -- If defining identifier has an interface name (and no
3902 -- address clause), then we output the interface name.
3904 if (Is_Imported
(N
) or else Is_Exported
(N
))
3905 and then Present
(Interface_Name
(N
))
3906 and then No
(Address_Clause
(N
))
3908 String_To_Name_Buffer
(Strval
(Interface_Name
(N
)));
3909 Write_Str_With_Col_Check
(Name_Buffer
(1 .. Name_Len
));
3911 -- If no interface name (or inactive because there was
3912 -- an address clause), then just output the Chars name.
3915 Write_Name_With_Col_Check
(Chars
(N
));
3918 -- Case of selector of an expanded name where the expanded name
3919 -- has an associated entity, output this entity. Check that the
3920 -- entity or associated node is of the right kind, see above.
3922 elsif Nkind
(Parent
(N
)) = N_Expanded_Name
3923 and then Selector_Name
(Parent
(N
)) = N
3924 and then Present
(Entity_Or_Associated_Node
(Parent
(N
)))
3925 and then Nkind
(Entity
(Parent
(N
))) in N_Entity
3927 Write_Id
(Entity
(Parent
(N
)));
3929 -- For any other node with an associated entity, output it
3931 elsif Nkind
(N
) in N_Has_Entity
3932 and then Present
(Entity_Or_Associated_Node
(N
))
3933 and then Nkind
(Entity_Or_Associated_Node
(N
)) in N_Entity
3935 Write_Id
(Entity
(N
));
3937 -- All other cases, we just print the Chars field
3940 Write_Name_With_Col_Check
(Chars
(N
));
3944 -----------------------
3945 -- Write_Identifiers --
3946 -----------------------
3948 function Write_Identifiers
(Node
: Node_Id
) return Boolean is
3950 Sprint_Node
(Defining_Identifier
(Node
));
3951 Update_Itype
(Defining_Identifier
(Node
));
3953 -- The remainder of the declaration must be printed unless we are
3954 -- printing the original tree and this is not the last identifier
3957 not Dump_Original_Only
or else not More_Ids
(Node
);
3959 end Write_Identifiers
;
3961 ------------------------
3962 -- Write_Implicit_Def --
3963 ------------------------
3965 procedure Write_Implicit_Def
(E
: Entity_Id
) is
3970 when E_Array_Subtype
=>
3971 Write_Str_With_Col_Check
("subtype ");
3973 Write_Str_With_Col_Check
(" is ");
3974 Write_Id
(Base_Type
(E
));
3975 Write_Str_With_Col_Check
(" (");
3977 Ind
:= First_Index
(E
);
3978 while Present
(Ind
) loop
3982 if Present
(Ind
) then
3989 when E_Enumeration_Subtype
3990 | E_Signed_Integer_Subtype
3992 Write_Str_With_Col_Check
("subtype ");
3995 Write_Id
(Etype
(E
));
3996 Write_Str_With_Col_Check
(" range ");
3997 Sprint_Node
(Scalar_Range
(E
));
4001 Write_Str_With_Col_Check
("type ");
4003 Write_Str_With_Col_Check
(" is <");
4007 end Write_Implicit_Def
;
4013 procedure Write_Indent
is
4014 Loc
: constant Source_Ptr
:= Sloc
(Dump_Node
);
4017 if Indent_Annull_Flag
then
4018 Indent_Annull_Flag
:= False;
4020 -- Deal with Dump_Source_Text output. Note that we ignore implicit
4021 -- label declarations, since they typically have the sloc of the
4022 -- corresponding label, which really messes up the -gnatL output.
4025 and then Loc
> No_Location
4026 and then Nkind
(Dump_Node
) /= N_Implicit_Label_Declaration
4028 if Get_Source_File_Index
(Loc
) = Current_Source_File
then
4030 (Get_Physical_Line_Number
(Sloc
(Dump_Node
)));
4036 for J
in 1 .. Indent
loop
4042 ------------------------------
4043 -- Write_Indent_Identifiers --
4044 ------------------------------
4046 function Write_Indent_Identifiers
(Node
: Node_Id
) return Boolean is
4048 -- We need to start a new line for every node, except in the case
4049 -- where we are printing the original tree and this is not the first
4050 -- defining identifier in the list.
4052 if not Dump_Original_Only
or else not Prev_Ids
(Node
) then
4055 -- If printing original tree and this is not the first defining
4056 -- identifier in the list, then the previous call to this procedure
4057 -- printed only the name, and we add a comma to separate the names.
4063 Sprint_Node
(Defining_Identifier
(Node
));
4065 -- The remainder of the declaration must be printed unless we are
4066 -- printing the original tree and this is not the last identifier
4069 not Dump_Original_Only
or else not More_Ids
(Node
);
4070 end Write_Indent_Identifiers
;
4072 -----------------------------------
4073 -- Write_Indent_Identifiers_Sloc --
4074 -----------------------------------
4076 function Write_Indent_Identifiers_Sloc
(Node
: Node_Id
) return Boolean is
4078 -- We need to start a new line for every node, except in the case
4079 -- where we are printing the original tree and this is not the first
4080 -- defining identifier in the list.
4082 if not Dump_Original_Only
or else not Prev_Ids
(Node
) then
4085 -- If printing original tree and this is not the first defining
4086 -- identifier in the list, then the previous call to this procedure
4087 -- printed only the name, and we add a comma to separate the names.
4094 Sprint_Node
(Defining_Identifier
(Node
));
4096 -- The remainder of the declaration must be printed unless we are
4097 -- printing the original tree and this is not the last identifier
4099 return not Dump_Original_Only
or else not More_Ids
(Node
);
4100 end Write_Indent_Identifiers_Sloc
;
4102 ----------------------
4103 -- Write_Indent_Str --
4104 ----------------------
4106 procedure Write_Indent_Str
(S
: String) is
4108 Write_Corresponding_Source
(S
);
4111 end Write_Indent_Str
;
4113 ---------------------------
4114 -- Write_Indent_Str_Sloc --
4115 ---------------------------
4117 procedure Write_Indent_Str_Sloc
(S
: String) is
4119 Write_Corresponding_Source
(S
);
4122 end Write_Indent_Str_Sloc
;
4128 procedure Write_Itype
(Typ
: Entity_Id
) is
4130 procedure Write_Header
(T
: Boolean := True);
4131 -- Write type if T is True, subtype if T is false
4137 procedure Write_Header
(T
: Boolean := True) is
4140 Write_Str
("[type ");
4142 Write_Str
("[subtype ");
4145 Write_Name_With_Col_Check
(Chars
(Typ
));
4149 -- Start of processing for Write_Itype
4152 if Nkind
(Typ
) in N_Entity
4153 and then Is_Itype
(Typ
)
4154 and then not Itype_Printed
(Typ
)
4156 -- Itype to be printed
4159 B
: constant Node_Id
:= Etype
(Typ
);
4161 P
: constant Node_Id
:= Parent
(Typ
);
4163 S
: constant Saved_Output_Buffer
:= Save_Output_Buffer
;
4164 -- Save current output buffer
4166 Old_Sloc
: Source_Ptr
;
4167 -- Save sloc of related node, so it is not modified when
4168 -- printing with -gnatD.
4171 -- Write indentation at start of line
4173 for J
in 1 .. Indent
loop
4177 -- If we have a constructed declaration for the itype, print it
4180 and then Nkind
(P
) in N_Declaration
4181 and then Defining_Entity
(P
) = Typ
4183 -- We must set Itype_Printed true before the recursive call to
4184 -- print the node, otherwise we get an infinite recursion.
4186 Set_Itype_Printed
(Typ
, True);
4188 -- Write the declaration enclosed in [], avoiding new line
4189 -- at start of declaration, and semicolon at end.
4191 -- Note: The itype may be imported from another unit, in which
4192 -- case we do not want to modify the Sloc of the declaration.
4193 -- Otherwise the itype may appear to be in the current unit,
4194 -- and the back-end will reject a reference out of scope.
4197 Indent_Annull_Flag
:= True;
4198 Old_Sloc
:= Sloc
(P
);
4200 Set_Sloc
(P
, Old_Sloc
);
4201 Write_Erase_Char
(';');
4203 -- If no constructed declaration, then we have to concoct the
4204 -- source corresponding to the type entity that we have at hand.
4209 -- Access types and subtypes
4212 Write_Header
(Ekind
(Typ
) = E_Access_Type
);
4214 if Can_Never_Be_Null
(Typ
) then
4215 Write_Str
("not null ");
4218 Write_Str
("access ");
4220 if Is_Access_Constant
(Typ
) then
4221 Write_Str
("constant ");
4224 Write_Id
(Directly_Designated_Type
(Typ
));
4228 when E_Array_Type
=>
4230 Write_Str
("array (");
4232 X
:= First_Index
(Typ
);
4236 if not Is_Constrained
(Typ
) then
4237 Write_Str
(" range <>");
4245 Write_Str
(") of ");
4246 X
:= Component_Type
(Typ
);
4248 -- Preserve sloc of component type, which is defined
4249 -- elsewhere than the itype (see comment above).
4251 Old_Sloc
:= Sloc
(X
);
4253 Set_Sloc
(X
, Old_Sloc
);
4257 -- Preserve Sloc of index subtypes, as above
4259 when E_Array_Subtype
=>
4260 Write_Header
(False);
4261 Write_Id
(Etype
(Typ
));
4264 X
:= First_Index
(Typ
);
4266 Old_Sloc
:= Sloc
(X
);
4268 Set_Sloc
(X
, Old_Sloc
);
4276 -- Signed integer types, and modular integer subtypes,
4277 -- and also enumeration subtypes.
4279 when E_Enumeration_Subtype
4280 | E_Modular_Integer_Subtype
4281 | E_Signed_Integer_Subtype
4282 | E_Signed_Integer_Type
4284 Write_Header
(Ekind
(Typ
) = E_Signed_Integer_Type
);
4286 if Ekind
(Typ
) = E_Signed_Integer_Type
then
4292 -- Print bounds if different from base type
4295 L
: constant Node_Id
:= Type_Low_Bound
(Typ
);
4296 H
: constant Node_Id
:= Type_High_Bound
(Typ
);
4301 -- B can either be a scalar type, in which case the
4302 -- declaration of Typ may constrain it with different
4303 -- bounds, or a private type, in which case we know
4304 -- that the declaration of Typ cannot have a scalar
4307 if Is_Scalar_Type
(B
) then
4308 LE
:= Type_Low_Bound
(B
);
4309 HE
:= Type_High_Bound
(B
);
4317 and then Nkind
(L
) = N_Integer_Literal
4318 and then Nkind
(H
) = N_Integer_Literal
4319 and then Nkind
(LE
) = N_Integer_Literal
4320 and then Nkind
(HE
) = N_Integer_Literal
4321 and then UI_Eq
(Intval
(L
), Intval
(LE
))
4322 and then UI_Eq
(Intval
(H
), Intval
(HE
)))
4327 Write_Str
(" range ");
4328 Sprint_Node
(Type_Low_Bound
(Typ
));
4330 Sprint_Node
(Type_High_Bound
(Typ
));
4334 -- Modular integer types
4336 when E_Modular_Integer_Type
=>
4339 Write_Uint_With_Col_Check
(Modulus
(Typ
), Auto
);
4341 -- Floating point types and subtypes
4343 when E_Floating_Point_Subtype
4344 | E_Floating_Point_Type
4346 Write_Header
(Ekind
(Typ
) = E_Floating_Point_Type
);
4348 if Ekind
(Typ
) = E_Floating_Point_Type
then
4352 Write_Id
(Etype
(Typ
));
4354 if Digits_Value
(Typ
) /= Digits_Value
(Etype
(Typ
)) then
4355 Write_Str
(" digits ");
4356 Write_Uint_With_Col_Check
4357 (Digits_Value
(Typ
), Decimal
);
4360 -- Print bounds if not different from base type
4363 L
: constant Node_Id
:= Type_Low_Bound
(Typ
);
4364 H
: constant Node_Id
:= Type_High_Bound
(Typ
);
4365 LE
: constant Node_Id
:= Type_Low_Bound
(B
);
4366 HE
: constant Node_Id
:= Type_High_Bound
(B
);
4369 if Nkind
(L
) = N_Real_Literal
4370 and then Nkind
(H
) = N_Real_Literal
4371 and then Nkind
(LE
) = N_Real_Literal
4372 and then Nkind
(HE
) = N_Real_Literal
4373 and then UR_Eq
(Realval
(L
), Realval
(LE
))
4374 and then UR_Eq
(Realval
(H
), Realval
(HE
))
4379 Write_Str
(" range ");
4380 Sprint_Node
(Type_Low_Bound
(Typ
));
4382 Sprint_Node
(Type_High_Bound
(Typ
));
4388 when E_Record_Subtype
4389 | E_Record_Subtype_With_Private
4391 Write_Header
(False);
4392 Write_Str
("record");
4398 C
:= First_Entity
(Typ
);
4399 while Present
(C
) loop
4403 Write_Id
(Etype
(C
));
4409 Write_Indent_Str
(" end record");
4413 when E_Class_Wide_Subtype
4416 Write_Header
(Ekind
(Typ
) = E_Class_Wide_Type
);
4417 Write_Name_With_Col_Check
(Chars
(Etype
(Typ
)));
4418 Write_Str
("'Class");
4422 when E_Subprogram_Type
=>
4425 if Etype
(Typ
) = Standard_Void_Type
then
4426 Write_Str
("procedure");
4428 Write_Str
("function");
4431 if Present
(First_Entity
(Typ
)) then
4438 Param
:= First_Entity
(Typ
);
4443 if Ekind
(Param
) = E_In_Out_Parameter
then
4444 Write_Str
("in out ");
4445 elsif Ekind
(Param
) = E_Out_Parameter
then
4449 Write_Id
(Etype
(Param
));
4450 Next_Entity
(Param
);
4451 exit when No
(Param
);
4459 if Etype
(Typ
) /= Standard_Void_Type
then
4460 Write_Str
(" return ");
4461 Write_Id
(Etype
(Typ
));
4464 when E_String_Literal_Subtype
=>
4466 LB
: constant Uint
:=
4467 Expr_Value
(String_Literal_Low_Bound
(Typ
));
4468 Len
: constant Uint
:=
4469 String_Literal_Length
(Typ
);
4471 Write_Header
(False);
4472 Write_Str
("String (");
4473 Write_Int
(UI_To_Int
(LB
));
4475 Write_Int
(UI_To_Int
(LB
+ Len
) - 1);
4479 -- For all other Itypes, print ??? (fill in later)
4482 Write_Header
(True);
4487 -- Add terminating bracket and restore output buffer
4491 Restore_Output_Buffer
(S
);
4494 Set_Itype_Printed
(Typ
);
4498 -------------------------------
4499 -- Write_Name_With_Col_Check --
4500 -------------------------------
4502 procedure Write_Name_With_Col_Check
(N
: Name_Id
) is
4508 Get_Name_String
(N
);
4510 -- Deal with -gnatdI which replaces any sequence Cnnnb where C is an
4511 -- upper case letter, nnn is one or more digits and b is a lower case
4512 -- letter by C...b, so that listings do not depend on serial numbers.
4514 if Debug_Flag_II
then
4516 while J
< Name_Len
- 1 loop
4517 if Name_Buffer
(J
) in 'A' .. 'Z'
4518 and then Name_Buffer
(J
+ 1) in '0' .. '9'
4521 while K
< Name_Len
loop
4522 exit when Name_Buffer
(K
) not in '0' .. '9';
4526 if Name_Buffer
(K
) in 'a' .. 'z' then
4527 L
:= Name_Len
- K
+ 1;
4529 Name_Buffer
(J
+ 4 .. J
+ L
+ 3) :=
4530 Name_Buffer
(K
.. Name_Len
);
4531 Name_Buffer
(J
+ 1 .. J
+ 3) := "...";
4532 Name_Len
:= J
+ L
+ 3;
4545 -- Fall through for normal case
4547 Write_Str_With_Col_Check
(Name_Buffer
(1 .. Name_Len
));
4548 end Write_Name_With_Col_Check
;
4550 ------------------------------------
4551 -- Write_Name_With_Col_Check_Sloc --
4552 ------------------------------------
4554 procedure Write_Name_With_Col_Check_Sloc
(N
: Name_Id
) is
4556 Get_Name_String
(N
);
4557 Write_Str_With_Col_Check_Sloc
(Name_Buffer
(1 .. Name_Len
));
4558 end Write_Name_With_Col_Check_Sloc
;
4560 --------------------
4561 -- Write_Operator --
4562 --------------------
4564 procedure Write_Operator
(N
: Node_Id
; S
: String) is
4565 F
: Natural := S
'First;
4566 T
: Natural := S
'Last;
4569 -- If no overflow check, just write string out, and we are done
4571 if not Do_Overflow_Check
(N
) then
4574 -- If overflow check, we want to surround the operator with curly
4575 -- brackets, but not include spaces within the brackets.
4588 Write_Str_Sloc
(S
(F
.. T
));
4591 if S
(S
'Last) = ' ' then
4597 -----------------------
4598 -- Write_Param_Specs --
4599 -----------------------
4601 procedure Write_Param_Specs
(N
: Node_Id
) is
4602 Specs
: constant List_Id
:= Parameter_Specifications
(N
);
4603 Specs_Present
: constant Boolean := Is_Non_Empty_List
(Specs
);
4610 Output
: Boolean := False;
4611 -- Set true if we output at least one parameter
4614 -- Write out explicit specs from Parameter_Speficiations list
4616 if Specs_Present
then
4617 Write_Str_With_Col_Check
(" (");
4620 Spec
:= First
(Specs
);
4623 Formal
:= Defining_Identifier
(Spec
);
4625 exit when Spec
= Empty
;
4627 -- Add semicolon, unless we are printing original tree and the
4628 -- next specification is part of a list (but not the first element
4631 if not Dump_Original_Only
or else not Prev_Ids
(Spec
) then
4637 -- See if we have extra formals
4639 if Nkind_In
(N
, N_Function_Specification
,
4640 N_Procedure_Specification
)
4642 Ent
:= Defining_Entity
(N
);
4644 -- Loop to write extra formals (if any)
4646 if Present
(Ent
) and then Is_Subprogram
(Ent
) then
4647 Extras
:= Extra_Formals
(Ent
);
4649 if Present
(Extras
) then
4650 if not Specs_Present
then
4651 Write_Str_With_Col_Check
(" (");
4656 while Present
(Formal
) loop
4657 if Specs_Present
or else Formal
/= Extras
then
4661 Write_Name_With_Col_Check
(Chars
(Formal
));
4663 Write_Name_With_Col_Check
(Chars
(Etype
(Formal
)));
4664 Formal
:= Extra_Formal
(Formal
);
4673 end Write_Param_Specs
;
4675 -----------------------
4676 -- Write_Rewrite_Str --
4677 -----------------------
4679 procedure Write_Rewrite_Str
(S
: String) is
4681 if not Dump_Generated_Only
then
4682 if S
'Length = 3 and then S
= ">>>" then
4685 Write_Str_With_Col_Check
(S
);
4688 end Write_Rewrite_Str
;
4690 -----------------------
4691 -- Write_Source_Line --
4692 -----------------------
4694 procedure Write_Source_Line
(L
: Physical_Line_Number
) is
4696 Src
: Source_Buffer_Ptr
;
4700 if Dump_Source_Text
then
4701 Src
:= Source_Text
(Current_Source_File
);
4702 Loc
:= Line_Start
(L
, Current_Source_File
);
4705 -- See if line is a comment line, if not, and if not line one,
4706 -- precede with blank line.
4709 while Src
(Scn
) = ' ' or else Src
(Scn
) = ASCII
.HT
loop
4713 if (Src
(Scn
) in Line_Terminator
4714 or else Src
(Scn
.. Scn
+ 1) /= "--")
4720 -- Now write the source text of the line
4723 Write_Int
(Int
(L
));
4726 while Src
(Loc
) not in Line_Terminator
loop
4727 Write_Char
(Src
(Loc
));
4731 end Write_Source_Line
;
4733 ------------------------
4734 -- Write_Source_Lines --
4735 ------------------------
4737 procedure Write_Source_Lines
(L
: Physical_Line_Number
) is
4739 while Last_Line_Printed
< L
loop
4740 Last_Line_Printed
:= Last_Line_Printed
+ 1;
4741 Write_Source_Line
(Last_Line_Printed
);
4743 end Write_Source_Lines
;
4745 --------------------
4746 -- Write_Str_Sloc --
4747 --------------------
4749 procedure Write_Str_Sloc
(S
: String) is
4751 for J
in S
'Range loop
4752 Write_Char_Sloc
(S
(J
));
4756 ------------------------------
4757 -- Write_Str_With_Col_Check --
4758 ------------------------------
4760 procedure Write_Str_With_Col_Check
(S
: String) is
4762 if Int
(S
'Last) + Column
> Sprint_Line_Limit
then
4763 Write_Indent_Str
(" ");
4765 if S
(S
'First) = ' ' then
4766 Write_Str
(S
(S
'First + 1 .. S
'Last));
4774 end Write_Str_With_Col_Check
;
4776 -----------------------------------
4777 -- Write_Str_With_Col_Check_Sloc --
4778 -----------------------------------
4780 procedure Write_Str_With_Col_Check_Sloc
(S
: String) is
4782 if Int
(S
'Last) + Column
> Sprint_Line_Limit
then
4783 Write_Indent_Str
(" ");
4785 if S
(S
'First) = ' ' then
4786 Write_Str_Sloc
(S
(S
'First + 1 .. S
'Last));
4794 end Write_Str_With_Col_Check_Sloc
;
4796 ---------------------------
4797 -- Write_Subprogram_Name --
4798 ---------------------------
4800 procedure Write_Subprogram_Name
(N
: Node_Id
) is
4802 if not Comes_From_Source
(N
)
4803 and then Is_Entity_Name
(N
)
4806 Ent
: constant Entity_Id
:= Entity
(N
);
4808 if not In_Extended_Main_Source_Unit
(Ent
)
4810 Is_Predefined_File_Name
4811 (Unit_File_Name
(Get_Source_Unit
(Ent
)))
4813 -- Run-time routine name, output name with a preceding dollar
4814 -- making sure that we do not get a line split between them.
4816 Col_Check
(Length_Of_Name
(Chars
(Ent
)) + 1);
4818 Write_Name
(Chars
(Ent
));
4824 -- Normal case, not a run-time routine name
4827 end Write_Subprogram_Name
;
4829 -------------------------------
4830 -- Write_Uint_With_Col_Check --
4831 -------------------------------
4833 procedure Write_Uint_With_Col_Check
(U
: Uint
; Format
: UI_Format
) is
4835 Col_Check
(UI_Decimal_Digits_Hi
(U
));
4836 UI_Write
(U
, Format
);
4837 end Write_Uint_With_Col_Check
;
4839 ------------------------------------
4840 -- Write_Uint_With_Col_Check_Sloc --
4841 ------------------------------------
4843 procedure Write_Uint_With_Col_Check_Sloc
(U
: Uint
; Format
: UI_Format
) is
4845 Col_Check
(UI_Decimal_Digits_Hi
(U
));
4847 UI_Write
(U
, Format
);
4848 end Write_Uint_With_Col_Check_Sloc
;
4850 -------------------------------------
4851 -- Write_Ureal_With_Col_Check_Sloc --
4852 -------------------------------------
4854 procedure Write_Ureal_With_Col_Check_Sloc
(U
: Ureal
) is
4855 D
: constant Uint
:= Denominator
(U
);
4856 N
: constant Uint
:= Numerator
(U
);
4858 Col_Check
(UI_Decimal_Digits_Hi
(D
) + UI_Decimal_Digits_Hi
(N
) + 4);
4860 UR_Write
(U
, Brackets
=> True);
4861 end Write_Ureal_With_Col_Check_Sloc
;