OSDN Git Service

2007-08-14 Robert Dewar <dewar@adacore.com>
[pf3gnuchains/gcc-fork.git] / gcc / ada / sprint.adb
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                         GNAT COMPILER COMPONENTS                         --
4 --                                                                          --
5 --                               S P R I N T                                --
6 --                                                                          --
7 --                                 B o d y                                  --
8 --                                                                          --
9 --          Copyright (C) 1992-2007, Free Software Foundation, Inc.         --
10 --                                                                          --
11 -- GNAT is free software;  you can  redistribute it  and/or modify it under --
12 -- terms of the  GNU General Public License as published  by the Free Soft- --
13 -- ware  Foundation;  either version 2,  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 COPYING.  If not, write --
19 -- to  the  Free Software Foundation,  51  Franklin  Street,  Fifth  Floor, --
20 -- Boston, MA 02110-1301, USA.                                              --
21 --                                                                          --
22 -- GNAT was originally developed  by the GNAT team at  New York University. --
23 -- Extensive contributions were provided by Ada Core Technologies Inc.      --
24 --                                                                          --
25 ------------------------------------------------------------------------------
26
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;
33 with Lib;      use Lib;
34 with Namet;    use Namet;
35 with Nlists;   use Nlists;
36 with Opt;      use Opt;
37 with Output;   use Output;
38 with Rtsfind;  use Rtsfind;
39 with Sinfo;    use Sinfo;
40 with Sinput;   use Sinput;
41 with Sinput.D; use Sinput.D;
42 with Snames;   use Snames;
43 with Stand;    use Stand;
44 with Stringt;  use Stringt;
45 with Uintp;    use Uintp;
46 with Uname;    use Uname;
47 with Urealp;   use Urealp;
48
49 package body Sprint is
50    Current_Source_File : Source_File_Index;
51    --  Index of source file whose generated code is being dumped
52
53    Dump_Node : Node_Id := Empty;
54    --  This is set to the current node, used for printing line numbers. In
55    --  Debug_Generated_Code mode, Dump_Node is set to the current node
56    --  requiring Sloc fixup, until Set_Debug_Sloc is called to set the proper
57    --  value. The call clears it back to Empty.
58
59    Debug_Sloc : Source_Ptr;
60    --  Sloc of first byte of line currently being written if we are
61    --  generating a source debug file.
62
63    Dump_Original_Only : Boolean;
64    --  Set True if the -gnatdo (dump original tree) flag is set
65
66    Dump_Generated_Only : Boolean;
67    --  Set True if the -gnatG (dump generated tree) debug flag is set
68    --  or for Print_Generated_Code (-gnatG) or Dump_Generated_Code (-gnatD).
69
70    Dump_Freeze_Null : Boolean;
71    --  Set True if freeze nodes and non-source null statements output
72
73    Freeze_Indent : Int := 0;
74    --  Keep track of freeze indent level (controls output of blank lines before
75    --  procedures within expression freeze actions). Relevant only if we are
76    --  not in Dump_Source_Text mode, since in Dump_Source_Text mode we don't
77    --  output these blank lines in any case.
78
79    Indent : Int := 0;
80    --  Number of columns for current line output indentation
81
82    Indent_Annull_Flag : Boolean := False;
83    --  Set True if subsequent Write_Indent call to be ignored, gets reset
84    --  by this call, so it is only active to suppress a single indent call.
85
86    Last_Line_Printed : Physical_Line_Number;
87    --  This keeps track of the physical line number of the last source line
88    --  that has been output. The value is only valid in Dump_Source_Text mode.
89
90    Line_Limit : constant := 72;
91    --  Limit value for chopping long lines
92
93    -------------------------------
94    -- Operator Precedence Table --
95    -------------------------------
96
97    --  This table is used to decide whether a subexpression needs to be
98    --  parenthesized. The rule is that if an operand of an operator (which
99    --  for this purpose includes AND THEN and OR ELSE) is itself an operator
100    --  with a lower precedence than the operator (or equal precedence if
101    --  appearing as the right operand), then parentheses are required.
102
103    Op_Prec : constant array (N_Subexpr) of Short_Short_Integer :=
104                (N_Op_And          => 1,
105                 N_Op_Or           => 1,
106                 N_Op_Xor          => 1,
107                 N_And_Then        => 1,
108                 N_Or_Else         => 1,
109
110                 N_In              => 2,
111                 N_Not_In          => 2,
112                 N_Op_Eq           => 2,
113                 N_Op_Ge           => 2,
114                 N_Op_Gt           => 2,
115                 N_Op_Le           => 2,
116                 N_Op_Lt           => 2,
117                 N_Op_Ne           => 2,
118
119                 N_Op_Add          => 3,
120                 N_Op_Concat       => 3,
121                 N_Op_Subtract     => 3,
122                 N_Op_Plus         => 3,
123                 N_Op_Minus        => 3,
124
125                 N_Op_Divide       => 4,
126                 N_Op_Mod          => 4,
127                 N_Op_Rem          => 4,
128                 N_Op_Multiply     => 4,
129
130                 N_Op_Expon        => 5,
131                 N_Op_Abs          => 5,
132                 N_Op_Not          => 5,
133
134                 others            => 6);
135
136    procedure Sprint_Left_Opnd (N : Node_Id);
137    --  Print left operand of operator, parenthesizing if necessary
138
139    procedure Sprint_Right_Opnd (N : Node_Id);
140    --  Print right operand of operator, parenthesizing if necessary
141
142    -----------------------
143    -- Local Subprograms --
144    -----------------------
145
146    procedure Col_Check (N : Nat);
147    --  Check that at least N characters remain on current line, and if not,
148    --  then start an extra line with two characters extra indentation for
149    --  continuing text on the next line.
150
151    procedure Extra_Blank_Line;
152    --  In some situations we write extra blank lines to separate the generated
153    --  code to make it more readable. However, these extra blank lines are not
154    --  generated in Dump_Source_Text mode, since there the source text lines
155    --  output with preceding blank lines are quite sufficient as separators.
156    --  This procedure writes a blank line if Dump_Source_Text is False.
157
158    procedure Indent_Annull;
159    --  Causes following call to Write_Indent to be ignored. This is used when
160    --  a higher level node wants to stop a lower level node from starting a
161    --  new line, when it would otherwise be inclined to do so (e.g. the case
162    --  of an accept statement called from an accept alternative with a guard)
163
164    procedure Indent_Begin;
165    --  Increase indentation level
166
167    procedure Indent_End;
168    --  Decrease indentation level
169
170    procedure Note_Implicit_Run_Time_Call (N : Node_Id);
171    --  N is the Name field of a function call or procedure statement call.
172    --  The effect of the call is to output a $ if the call is identified as
173    --  an implicit call to a run time routine.
174
175    procedure Print_Debug_Line (S : String);
176    --  Used to print output lines in Debug_Generated_Code mode (this is used
177    --  as the argument for a call to Set_Special_Output in package Output).
178
179    procedure Process_TFAI_RR_Flags (Nod : Node_Id);
180    --  Given a divide, multiplication or division node, check the flags
181    --  Treat_Fixed_As_Integer and Rounded_Flags, and if set, output the
182    --  appropriate special syntax characters (# and @).
183
184    procedure Set_Debug_Sloc;
185    --  If Dump_Node is non-empty, this routine sets the appropriate value
186    --  in its Sloc field, from the current location in the debug source file
187    --  that is currently being written.
188
189    procedure Sprint_And_List (List : List_Id);
190    --  Print the given list with items separated by vertical "and"
191
192    procedure Sprint_Bar_List (List : List_Id);
193    --  Print the given list with items separated by vertical bars
194
195    procedure Sprint_End_Label
196      (Node    : Node_Id;
197       Default : Node_Id);
198    --  Print the end label for a Handled_Sequence_Of_Statements in a body.
199    --  If there is not end label, use the defining identifier of the enclosing
200    --  construct. If the end label is present, treat it as a reference to the
201    --  defining entity of the construct: this guarantees that it carries the
202    --  proper sloc information for debugging purposes.
203
204    procedure Sprint_Node_Actual (Node : Node_Id);
205    --  This routine prints its node argument. It is a lower level routine than
206    --  Sprint_Node, in that it does not bother about rewritten trees.
207
208    procedure Sprint_Node_Sloc (Node : Node_Id);
209    --  Like Sprint_Node, but in addition, in Debug_Generated_Code mode,
210    --  sets the Sloc of the current debug node to be a copy of the Sloc
211    --  of the sprinted node Node. Note that this is done after printing
212    --  Node, so that the Sloc is the proper updated value for the debug file.
213
214    procedure Update_Itype (Node : Node_Id);
215    --  Update the Sloc of an itype that is not attached to the tree, when
216    --  debugging expanded code. This routine is called from nodes whose
217    --  type can be an Itype, such as defining_identifiers that may be of
218    --  an anonymous access type, or ranges in slices.
219
220    procedure Write_Char_Sloc (C : Character);
221    --  Like Write_Char, except that if C is non-blank, Set_Debug_Sloc is
222    --  called to ensure that the current node has a proper Sloc set.
223
224    procedure Write_Condition_And_Reason (Node : Node_Id);
225    --  Write Condition and Reason codes of Raise_xxx_Error node
226
227    procedure Write_Corresponding_Source (S : String);
228    --  If S is a string with a single keyword (possibly followed by a space),
229    --  and if the next non-comment non-blank source line matches this keyword,
230    --  then output all source lines up to this matching line.
231
232    procedure Write_Discr_Specs (N : Node_Id);
233    --  Ouput discriminant specification for node, which is any of the type
234    --  declarations that can have discriminants.
235
236    procedure Write_Ekind (E : Entity_Id);
237    --  Write the String corresponding to the Ekind without "E_"
238
239    procedure Write_Id (N : Node_Id);
240    --  N is a node with a Chars field. This procedure writes the name that
241    --  will be used in the generated code associated with the name. For a
242    --  node with no associated entity, this is simply the Chars field. For
243    --  the case where there is an entity associated with the node, we print
244    --  the name associated with the entity (since it may have been encoded).
245    --  One other special case is that an entity has an active external name
246    --  (i.e. an external name present with no address clause), then this
247    --  external name is output. This procedure also deals with outputting
248    --  declarations of referenced itypes, if not output earlier.
249
250    function Write_Identifiers (Node : Node_Id) return Boolean;
251    --  Handle node where the grammar has a list of defining identifiers, but
252    --  the tree has a separate declaration for each identifier. Handles the
253    --  printing of the defining identifier, and returns True if the type and
254    --  initialization information is to be printed, False if it is to be
255    --  skipped (the latter case happens when printing defining identifiers
256    --  other than the first in the original tree output case).
257
258    procedure Write_Implicit_Def (E : Entity_Id);
259    pragma Warnings (Off, Write_Implicit_Def);
260    --  Write the definition of the implicit type E according to its Ekind
261    --  For now a debugging procedure, but might be used in the future.
262
263    procedure Write_Indent;
264    --  Start a new line and write indentation spacing
265
266    function Write_Indent_Identifiers (Node : Node_Id) return Boolean;
267    --  Like Write_Identifiers except that each new printed declaration
268    --  is at the start of a new line.
269
270    function Write_Indent_Identifiers_Sloc (Node : Node_Id) return Boolean;
271    --  Like Write_Indent_Identifiers except that in Debug_Generated_Code
272    --  mode, the Sloc of the current debug node is set to point ot the
273    --  first output identifier.
274
275    procedure Write_Indent_Str (S : String);
276    --  Start a new line and write indent spacing followed by given string
277
278    procedure Write_Indent_Str_Sloc (S : String);
279    --  Like Write_Indent_Str, but in addition, in Debug_Generated_Code mode,
280    --  the Sloc of the current node is set to the first non-blank character
281    --  in the string S.
282
283    procedure Write_Itype (Typ : Entity_Id);
284    --  If Typ is an Itype that has not been written yet, write it. If Typ is
285    --  any other kind of entity or tree node, the call is ignored.
286
287    procedure Write_Name_With_Col_Check (N : Name_Id);
288    --  Write name (using Write_Name) with initial column check, and possible
289    --  initial Write_Indent (to get new line) if current line is too full.
290
291    procedure Write_Name_With_Col_Check_Sloc (N : Name_Id);
292    --  Like Write_Name_With_Col_Check but in addition, in Debug_Generated_Code
293    --  mode, sets Sloc of current debug node to first character of name.
294
295    procedure Write_Operator (N : Node_Id; S : String);
296    --  Like Write_Str_Sloc, used for operators, encloses the string in
297    --  characters {} if the Do_Overflow flag is set on the node N.
298
299    procedure Write_Param_Specs (N : Node_Id);
300    --  Output parameter specifications for node (which is either a function
301    --  or procedure specification with a Parameter_Specifications field)
302
303    procedure Write_Rewrite_Str (S : String);
304    --  Writes out a string (typically containing <<< or >>>}) for a node
305    --  created by rewriting the tree. Suppressed if we are outputting the
306    --  generated code only, since in this case we don't specially mark nodes
307    --  created by rewriting).
308
309    procedure Write_Source_Line (L : Physical_Line_Number);
310    --  If writing of interspersed source lines is enabled, then write the given
311    --  line from the source file, preceded by Eol, then an extra blank line if
312    --  the line has at least one blank, is not a comment and is not line one,
313    --  then "--" and the line number followed by period followed by text of the
314    --  source line (without terminating Eol). If interspersed source line
315    --  output not enabled, then the call has no effect.
316
317    procedure Write_Source_Lines (L : Physical_Line_Number);
318    --  If writing of interspersed source lines is enabled, then writes source
319    --  lines Last_Line_Printed + 1 .. L, and updates Last_Line_Printed. If
320    --  interspersed source line output not enabled, then call has no effect.
321
322    procedure Write_Str_Sloc (S : String);
323    --  Like Write_Str, but sets debug Sloc of current debug node to first
324    --  non-blank character if a current debug node is active.
325
326    procedure Write_Str_With_Col_Check (S : String);
327    --  Write string (using Write_Str) with initial column check, and possible
328    --  initial Write_Indent (to get new line) if current line is too full.
329
330    procedure Write_Str_With_Col_Check_Sloc (S : String);
331    --  Like Write_Str_WIth_Col_Check, but sets debug Sloc of current debug
332    --  node to first non-blank character if a current debug node is active.
333
334    procedure Write_Uint_With_Col_Check (U : Uint; Format : UI_Format);
335    --  Write Uint (using UI_Write) with initial column check, and possible
336    --  initial Write_Indent (to get new line) if current line is too full.
337    --  The format parameter determines the output format (see UI_Write).
338
339    procedure Write_Uint_With_Col_Check_Sloc (U : Uint; Format : UI_Format);
340    --  Write Uint (using UI_Write) with initial column check, and possible
341    --  initial Write_Indent (to get new line) if current line is too full.
342    --  The format parameter determines the output format (see UI_Write).
343    --  In addition, in Debug_Generated_Code mode, sets the current node
344    --  Sloc to the first character of the output value.
345
346    procedure Write_Ureal_With_Col_Check_Sloc (U : Ureal);
347    --  Write Ureal (using same output format as UR_Write) with column checks
348    --  and a possible initial Write_Indent (to get new line) if current line
349    --  is too full. In addition, in Debug_Generated_Code mode, sets the
350    --  current node Sloc to the first character of the output value.
351
352    ---------------
353    -- Col_Check --
354    ---------------
355
356    procedure Col_Check (N : Nat) is
357    begin
358       if N + Column > Line_Limit then
359          Write_Indent_Str ("  ");
360       end if;
361    end Col_Check;
362
363    ----------------------
364    -- Extra_Blank_Line --
365    ----------------------
366
367    procedure Extra_Blank_Line is
368    begin
369       if not Dump_Source_Text then
370          Write_Indent;
371       end if;
372    end Extra_Blank_Line;
373
374    -------------------
375    -- Indent_Annull --
376    -------------------
377
378    procedure Indent_Annull is
379    begin
380       Indent_Annull_Flag := True;
381    end Indent_Annull;
382
383    ------------------
384    -- Indent_Begin --
385    ------------------
386
387    procedure Indent_Begin is
388    begin
389       Indent := Indent + 3;
390    end Indent_Begin;
391
392    ----------------
393    -- Indent_End --
394    ----------------
395
396    procedure Indent_End is
397    begin
398       Indent := Indent - 3;
399    end Indent_End;
400
401    ---------------------------------
402    -- Note_Implicit_Run_Time_Call --
403    ---------------------------------
404
405    procedure Note_Implicit_Run_Time_Call (N : Node_Id) is
406    begin
407       if not Comes_From_Source (N)
408         and then Is_Entity_Name (N)
409       then
410          declare
411             Ent : constant Entity_Id := Entity (N);
412          begin
413             if not In_Extended_Main_Source_Unit (Ent)
414               and then
415                 Is_Predefined_File_Name
416                   (Unit_File_Name (Get_Source_Unit (Ent)))
417             then
418                Col_Check (Length_Of_Name (Chars (Ent)));
419                Write_Char ('$');
420             end if;
421          end;
422       end if;
423    end Note_Implicit_Run_Time_Call;
424
425    --------
426    -- pg --
427    --------
428
429    procedure pg (Arg : Union_Id) is
430    begin
431       Dump_Generated_Only := True;
432       Dump_Original_Only := False;
433       Current_Source_File := No_Source_File;
434
435       if Arg in List_Range then
436          Sprint_Node_List (List_Id (Arg));
437
438       elsif Arg in Node_Range then
439          Sprint_Node (Node_Id (Arg));
440
441       else
442          null;
443       end if;
444
445       Write_Eol;
446    end pg;
447
448    --------
449    -- po --
450    --------
451
452    procedure po (Arg : Union_Id) is
453    begin
454       Dump_Generated_Only := False;
455       Dump_Original_Only := True;
456       Current_Source_File := No_Source_File;
457
458       if Arg in List_Range then
459          Sprint_Node_List (List_Id (Arg));
460
461       elsif Arg in Node_Range then
462          Sprint_Node (Node_Id (Arg));
463
464       else
465          null;
466       end if;
467
468       Write_Eol;
469    end po;
470
471    ----------------------
472    -- Print_Debug_Line --
473    ----------------------
474
475    procedure Print_Debug_Line (S : String) is
476    begin
477       Write_Debug_Line (S, Debug_Sloc);
478    end Print_Debug_Line;
479
480    ---------------------------
481    -- Process_TFAI_RR_Flags --
482    ---------------------------
483
484    procedure Process_TFAI_RR_Flags (Nod : Node_Id) is
485    begin
486       if Treat_Fixed_As_Integer (Nod) then
487          Write_Char ('#');
488       end if;
489
490       if Rounded_Result (Nod) then
491          Write_Char ('@');
492       end if;
493    end Process_TFAI_RR_Flags;
494
495    --------
496    -- ps --
497    --------
498
499    procedure ps (Arg : Union_Id) is
500    begin
501       Dump_Generated_Only := False;
502       Dump_Original_Only := False;
503       Current_Source_File := No_Source_File;
504
505       if Arg in List_Range then
506          Sprint_Node_List (List_Id (Arg));
507
508       elsif Arg in Node_Range then
509          Sprint_Node (Node_Id (Arg));
510
511       else
512          null;
513       end if;
514
515       Write_Eol;
516    end ps;
517
518    --------------------
519    -- Set_Debug_Sloc --
520    --------------------
521
522    procedure Set_Debug_Sloc is
523    begin
524       if Debug_Generated_Code and then Present (Dump_Node) then
525          Set_Sloc (Dump_Node, Debug_Sloc + Source_Ptr (Column - 1));
526          Dump_Node := Empty;
527       end if;
528    end Set_Debug_Sloc;
529
530    -----------------
531    -- Source_Dump --
532    -----------------
533
534    procedure Source_Dump is
535
536       procedure Underline;
537       --  Put underline under string we just printed
538
539       ---------------
540       -- Underline --
541       ---------------
542
543       procedure Underline is
544          Col : constant Int := Column;
545
546       begin
547          Write_Eol;
548
549          while Col > Column loop
550             Write_Char ('-');
551          end loop;
552
553          Write_Eol;
554       end Underline;
555
556    --  Start of processing for Tree_Dump
557
558    begin
559       Dump_Generated_Only := Debug_Flag_G or
560                              Print_Generated_Code or
561                              Debug_Generated_Code;
562       Dump_Original_Only  := Debug_Flag_O;
563       Dump_Freeze_Null    := Debug_Flag_S or Debug_Flag_G;
564
565       --  Note that we turn off the tree dump flags immediately, before
566       --  starting the dump. This avoids generating two copies of the dump
567       --  if an abort occurs after printing the dump, and more importantly,
568       --  avoids an infinite loop if an abort occurs during the dump.
569
570       if Debug_Flag_Z then
571          Current_Source_File := No_Source_File;
572          Debug_Flag_Z := False;
573          Write_Eol;
574          Write_Eol;
575          Write_Str ("Source recreated from tree of Standard (spec)");
576          Underline;
577          Sprint_Node (Standard_Package_Node);
578          Write_Eol;
579          Write_Eol;
580       end if;
581
582       if Debug_Flag_S or Dump_Generated_Only or Dump_Original_Only then
583          Debug_Flag_G := False;
584          Debug_Flag_O := False;
585          Debug_Flag_S := False;
586
587          --  Dump requested units
588
589          for U in Main_Unit .. Last_Unit loop
590             Current_Source_File := Source_Index (U);
591
592             --  Dump all units if -gnatdf set, otherwise we dump only
593             --  the source files that are in the extended main source.
594
595             if Debug_Flag_F
596               or else In_Extended_Main_Source_Unit (Cunit_Entity (U))
597             then
598                --  If we are generating debug files, setup to write them
599
600                if Debug_Generated_Code then
601                   Set_Special_Output (Print_Debug_Line'Access);
602                   Create_Debug_Source (Source_Index (U), Debug_Sloc);
603                   Write_Source_Line (1);
604                   Last_Line_Printed := 1;
605                   Sprint_Node (Cunit (U));
606                   Write_Source_Lines (Last_Source_Line (Current_Source_File));
607                   Write_Eol;
608                   Close_Debug_Source;
609                   Set_Special_Output (null);
610
611                --  Normal output to standard output file
612
613                else
614                   Write_Str ("Source recreated from tree for ");
615                   Write_Unit_Name (Unit_Name (U));
616                   Underline;
617                   Write_Source_Line (1);
618                   Last_Line_Printed := 1;
619                   Sprint_Node (Cunit (U));
620                   Write_Source_Lines (Last_Source_Line (Current_Source_File));
621                   Write_Eol;
622                   Write_Eol;
623                end if;
624             end if;
625          end loop;
626       end if;
627    end Source_Dump;
628
629    ---------------------
630    -- Sprint_And_List --
631    ---------------------
632
633    procedure Sprint_And_List (List : List_Id) is
634       Node : Node_Id;
635    begin
636       if Is_Non_Empty_List (List) then
637          Node := First (List);
638          loop
639             Sprint_Node (Node);
640             Next (Node);
641             exit when Node = Empty;
642             Write_Str (" and ");
643          end loop;
644       end if;
645    end Sprint_And_List;
646
647    ---------------------
648    -- Sprint_Bar_List --
649    ---------------------
650
651    procedure Sprint_Bar_List (List : List_Id) is
652       Node : Node_Id;
653    begin
654       if Is_Non_Empty_List (List) then
655          Node := First (List);
656          loop
657             Sprint_Node (Node);
658             Next (Node);
659             exit when Node = Empty;
660             Write_Str (" | ");
661          end loop;
662       end if;
663    end Sprint_Bar_List;
664
665    ----------------------
666    -- Sprint_End_Label --
667    ----------------------
668
669    procedure Sprint_End_Label
670      (Node    : Node_Id;
671       Default : Node_Id)
672    is
673    begin
674       if Present (Node)
675         and then Present (End_Label (Node))
676         and then Is_Entity_Name (End_Label (Node))
677       then
678          Set_Entity (End_Label (Node), Default);
679
680          --  For a function whose name is an operator, use the qualified name
681          --  created for the defining entity.
682
683          if Nkind (End_Label (Node)) = N_Operator_Symbol then
684             Set_Chars (End_Label (Node), Chars (Default));
685          end if;
686
687          Sprint_Node (End_Label (Node));
688       else
689          Sprint_Node (Default);
690       end if;
691    end Sprint_End_Label;
692
693    -----------------------
694    -- Sprint_Comma_List --
695    -----------------------
696
697    procedure Sprint_Comma_List (List : List_Id) is
698       Node : Node_Id;
699
700    begin
701       if Is_Non_Empty_List (List) then
702          Node := First (List);
703          loop
704             Sprint_Node (Node);
705             Next (Node);
706             exit when Node = Empty;
707
708             if not Is_Rewrite_Insertion (Node)
709               or else not Dump_Original_Only
710             then
711                Write_Str (", ");
712             end if;
713          end loop;
714       end if;
715    end Sprint_Comma_List;
716
717    --------------------------
718    -- Sprint_Indented_List --
719    --------------------------
720
721    procedure Sprint_Indented_List (List : List_Id) is
722    begin
723       Indent_Begin;
724       Sprint_Node_List (List);
725       Indent_End;
726    end Sprint_Indented_List;
727
728    ---------------------
729    -- Sprint_Left_Opnd --
730    ---------------------
731
732    procedure Sprint_Left_Opnd (N : Node_Id) is
733       Opnd : constant Node_Id := Left_Opnd (N);
734
735    begin
736       if Paren_Count (Opnd) /= 0
737         or else Op_Prec (Nkind (Opnd)) >= Op_Prec (Nkind (N))
738       then
739          Sprint_Node (Opnd);
740
741       else
742          Write_Char ('(');
743          Sprint_Node (Opnd);
744          Write_Char (')');
745       end if;
746    end Sprint_Left_Opnd;
747
748    -----------------
749    -- Sprint_Node --
750    -----------------
751
752    procedure Sprint_Node (Node : Node_Id) is
753    begin
754       if Is_Rewrite_Insertion (Node) then
755          if not Dump_Original_Only then
756
757             --  For special cases of nodes that always output <<< >>>
758             --  do not duplicate the output at this point.
759
760             if Nkind (Node) = N_Freeze_Entity
761               or else Nkind (Node) = N_Implicit_Label_Declaration
762             then
763                Sprint_Node_Actual (Node);
764
765             --  Normal case where <<< >>> may be required
766
767             else
768                Write_Rewrite_Str ("<<<");
769                Sprint_Node_Actual (Node);
770                Write_Rewrite_Str (">>>");
771             end if;
772          end if;
773
774       elsif Is_Rewrite_Substitution (Node) then
775
776          --  Case of dump generated only
777
778          if Dump_Generated_Only then
779             Sprint_Node_Actual (Node);
780
781          --  Case of dump original only
782
783          elsif Dump_Original_Only then
784             Sprint_Node_Actual (Original_Node (Node));
785
786          --  Case of both being dumped
787
788          else
789             Sprint_Node_Actual (Original_Node (Node));
790             Write_Rewrite_Str ("<<<");
791             Sprint_Node_Actual (Node);
792             Write_Rewrite_Str (">>>");
793          end if;
794
795       else
796          Sprint_Node_Actual (Node);
797       end if;
798    end Sprint_Node;
799
800    ------------------------
801    -- Sprint_Node_Actual --
802    ------------------------
803
804    procedure Sprint_Node_Actual (Node : Node_Id) is
805       Save_Dump_Node : constant Node_Id := Dump_Node;
806
807    begin
808       if Node = Empty then
809          return;
810       end if;
811
812       for J in 1 .. Paren_Count (Node) loop
813          Write_Str_With_Col_Check ("(");
814       end loop;
815
816       --  Setup current dump node
817
818       Dump_Node := Node;
819
820       if Nkind (Node) in N_Subexpr
821         and then Do_Range_Check (Node)
822       then
823          Write_Str_With_Col_Check ("{");
824       end if;
825
826       --  Select print circuit based on node kind
827
828       case Nkind (Node) is
829
830          when N_Abort_Statement =>
831             Write_Indent_Str_Sloc ("abort ");
832             Sprint_Comma_List (Names (Node));
833             Write_Char (';');
834
835          when N_Abortable_Part =>
836             Set_Debug_Sloc;
837             Write_Str_Sloc ("abort ");
838             Sprint_Indented_List (Statements (Node));
839
840          when N_Abstract_Subprogram_Declaration =>
841             Write_Indent;
842             Sprint_Node (Specification (Node));
843             Write_Str_With_Col_Check (" is ");
844             Write_Str_Sloc ("abstract;");
845
846          when N_Accept_Alternative =>
847             Sprint_Node_List (Pragmas_Before (Node));
848
849             if Present (Condition (Node)) then
850                Write_Indent_Str ("when ");
851                Sprint_Node (Condition (Node));
852                Write_Str (" => ");
853                Indent_Annull;
854             end if;
855
856             Sprint_Node_Sloc (Accept_Statement (Node));
857             Sprint_Node_List (Statements (Node));
858
859          when N_Accept_Statement =>
860             Write_Indent_Str_Sloc ("accept ");
861             Write_Id (Entry_Direct_Name (Node));
862
863             if Present (Entry_Index (Node)) then
864                Write_Str_With_Col_Check (" (");
865                Sprint_Node (Entry_Index (Node));
866                Write_Char (')');
867             end if;
868
869             Write_Param_Specs (Node);
870
871             if Present (Handled_Statement_Sequence (Node)) then
872                Write_Str_With_Col_Check (" do");
873                Sprint_Node (Handled_Statement_Sequence (Node));
874                Write_Indent_Str ("end ");
875                Write_Id (Entry_Direct_Name (Node));
876             end if;
877
878             Write_Char (';');
879
880          when N_Access_Definition =>
881
882             --  Ada 2005 (AI-254)
883
884             if Present (Access_To_Subprogram_Definition (Node)) then
885                Sprint_Node (Access_To_Subprogram_Definition (Node));
886             else
887                --  Ada 2005 (AI-231)
888
889                if Null_Exclusion_Present (Node) then
890                   Write_Str ("not null ");
891                end if;
892
893                Write_Str_With_Col_Check_Sloc ("access ");
894
895                if All_Present (Node) then
896                   Write_Str ("all ");
897                elsif Constant_Present (Node) then
898                   Write_Str ("constant ");
899                end if;
900
901                Sprint_Node (Subtype_Mark (Node));
902             end if;
903
904          when N_Access_Function_Definition =>
905
906             --  Ada 2005 (AI-231)
907
908             if Null_Exclusion_Present (Node) then
909                Write_Str ("not null ");
910             end if;
911
912             Write_Str_With_Col_Check_Sloc ("access ");
913
914             if Protected_Present (Node) then
915                Write_Str_With_Col_Check ("protected ");
916             end if;
917
918             Write_Str_With_Col_Check ("function");
919             Write_Param_Specs (Node);
920             Write_Str_With_Col_Check (" return ");
921             Sprint_Node (Result_Definition (Node));
922
923          when N_Access_Procedure_Definition =>
924
925             --  Ada 2005 (AI-231)
926
927             if Null_Exclusion_Present (Node) then
928                Write_Str ("not null ");
929             end if;
930
931             Write_Str_With_Col_Check_Sloc ("access ");
932
933             if Protected_Present (Node) then
934                Write_Str_With_Col_Check ("protected ");
935             end if;
936
937             Write_Str_With_Col_Check ("procedure");
938             Write_Param_Specs (Node);
939
940          when N_Access_To_Object_Definition =>
941             Write_Str_With_Col_Check_Sloc ("access ");
942
943             if All_Present (Node) then
944                Write_Str_With_Col_Check ("all ");
945             elsif Constant_Present (Node) then
946                Write_Str_With_Col_Check ("constant ");
947             end if;
948
949             --  Ada 2005 (AI-231)
950
951             if Null_Exclusion_Present (Node) then
952                Write_Str ("not null ");
953             end if;
954
955             Sprint_Node (Subtype_Indication (Node));
956
957          when N_Aggregate =>
958             if Null_Record_Present (Node) then
959                Write_Str_With_Col_Check_Sloc ("(null record)");
960
961             else
962                Write_Str_With_Col_Check_Sloc ("(");
963
964                if Present (Expressions (Node)) then
965                   Sprint_Comma_List (Expressions (Node));
966
967                   if Present (Component_Associations (Node)) then
968                      Write_Str (", ");
969                   end if;
970                end if;
971
972                if Present (Component_Associations (Node)) then
973                   Indent_Begin;
974
975                   declare
976                      Nd : Node_Id;
977
978                   begin
979                      Nd := First (Component_Associations (Node));
980
981                      loop
982                         Write_Indent;
983                         Sprint_Node (Nd);
984                         Next (Nd);
985                         exit when No (Nd);
986
987                         if not Is_Rewrite_Insertion (Nd)
988                           or else not Dump_Original_Only
989                         then
990                            Write_Str (", ");
991                         end if;
992                      end loop;
993                   end;
994
995                   Indent_End;
996                end if;
997
998                Write_Char (')');
999             end if;
1000
1001          when N_Allocator =>
1002             Write_Str_With_Col_Check_Sloc ("new ");
1003
1004             --  Ada 2005 (AI-231)
1005
1006             if Null_Exclusion_Present (Node) then
1007                Write_Str ("not null ");
1008             end if;
1009
1010             Sprint_Node (Expression (Node));
1011
1012             if Present (Storage_Pool (Node)) then
1013                Write_Str_With_Col_Check ("[storage_pool = ");
1014                Sprint_Node (Storage_Pool (Node));
1015                Write_Char (']');
1016             end if;
1017
1018          when N_And_Then =>
1019             Sprint_Left_Opnd (Node);
1020             Write_Str_Sloc (" and then ");
1021             Sprint_Right_Opnd (Node);
1022
1023          when N_At_Clause =>
1024             Write_Indent_Str_Sloc ("for ");
1025             Write_Id (Identifier (Node));
1026             Write_Str_With_Col_Check (" use at ");
1027             Sprint_Node (Expression (Node));
1028             Write_Char (';');
1029
1030          when N_Assignment_Statement =>
1031             Write_Indent;
1032             Sprint_Node (Name (Node));
1033             Write_Str_Sloc (" := ");
1034             Sprint_Node (Expression (Node));
1035             Write_Char (';');
1036
1037          when N_Asynchronous_Select =>
1038             Write_Indent_Str_Sloc ("select");
1039             Indent_Begin;
1040             Sprint_Node (Triggering_Alternative (Node));
1041             Indent_End;
1042
1043             --  Note: let the printing of Abortable_Part handle outputting
1044             --  the ABORT keyword, so that the Slco can be set correctly.
1045
1046             Write_Indent_Str ("then ");
1047             Sprint_Node (Abortable_Part (Node));
1048             Write_Indent_Str ("end select;");
1049
1050          when N_Attribute_Definition_Clause =>
1051             Write_Indent_Str_Sloc ("for ");
1052             Sprint_Node (Name (Node));
1053             Write_Char (''');
1054             Write_Name_With_Col_Check (Chars (Node));
1055             Write_Str_With_Col_Check (" use ");
1056             Sprint_Node (Expression (Node));
1057             Write_Char (';');
1058
1059          when N_Attribute_Reference =>
1060             if Is_Procedure_Attribute_Name (Attribute_Name (Node)) then
1061                Write_Indent;
1062             end if;
1063
1064             Sprint_Node (Prefix (Node));
1065             Write_Char_Sloc (''');
1066             Write_Name_With_Col_Check (Attribute_Name (Node));
1067             Sprint_Paren_Comma_List (Expressions (Node));
1068
1069             if Is_Procedure_Attribute_Name (Attribute_Name (Node)) then
1070                Write_Char (';');
1071             end if;
1072
1073          when N_Block_Statement =>
1074             Write_Indent;
1075
1076             if Present (Identifier (Node))
1077               and then (not Has_Created_Identifier (Node)
1078                           or else not Dump_Original_Only)
1079             then
1080                Write_Rewrite_Str ("<<<");
1081                Write_Id (Identifier (Node));
1082                Write_Str (" : ");
1083                Write_Rewrite_Str (">>>");
1084             end if;
1085
1086             if Present (Declarations (Node)) then
1087                Write_Str_With_Col_Check_Sloc ("declare");
1088                Sprint_Indented_List (Declarations (Node));
1089                Write_Indent;
1090             end if;
1091
1092             Write_Str_With_Col_Check_Sloc ("begin");
1093             Sprint_Node (Handled_Statement_Sequence (Node));
1094             Write_Indent_Str ("end");
1095
1096             if Present (Identifier (Node))
1097               and then (not Has_Created_Identifier (Node)
1098                           or else not Dump_Original_Only)
1099             then
1100                Write_Rewrite_Str ("<<<");
1101                Write_Char (' ');
1102                Write_Id (Identifier (Node));
1103                Write_Rewrite_Str (">>>");
1104             end if;
1105
1106             Write_Char (';');
1107
1108          when N_Case_Statement =>
1109             Write_Indent_Str_Sloc ("case ");
1110             Sprint_Node (Expression (Node));
1111             Write_Str (" is");
1112             Sprint_Indented_List (Alternatives (Node));
1113             Write_Indent_Str ("end case;");
1114
1115          when N_Case_Statement_Alternative =>
1116             Write_Indent_Str_Sloc ("when ");
1117             Sprint_Bar_List (Discrete_Choices (Node));
1118             Write_Str (" => ");
1119             Sprint_Indented_List (Statements (Node));
1120
1121          when N_Character_Literal =>
1122             if Column > 70 then
1123                Write_Indent_Str ("  ");
1124             end if;
1125
1126             Write_Char_Sloc (''');
1127             Write_Char_Code (UI_To_CC (Char_Literal_Value (Node)));
1128             Write_Char (''');
1129
1130          when N_Code_Statement =>
1131             Write_Indent;
1132             Set_Debug_Sloc;
1133             Sprint_Node (Expression (Node));
1134             Write_Char (';');
1135
1136          when N_Compilation_Unit =>
1137             Sprint_Node_List (Context_Items (Node));
1138             Sprint_Opt_Node_List (Declarations (Aux_Decls_Node (Node)));
1139
1140             if Private_Present (Node) then
1141                Write_Indent_Str ("private ");
1142                Indent_Annull;
1143             end if;
1144
1145             Sprint_Node_Sloc (Unit (Node));
1146
1147             if Present (Actions (Aux_Decls_Node (Node)))
1148                  or else
1149                Present (Pragmas_After (Aux_Decls_Node (Node)))
1150             then
1151                Write_Indent;
1152             end if;
1153
1154             Sprint_Opt_Node_List (Actions (Aux_Decls_Node (Node)));
1155             Sprint_Opt_Node_List (Pragmas_After (Aux_Decls_Node (Node)));
1156
1157          when N_Compilation_Unit_Aux =>
1158             null; -- nothing to do, never used, see above
1159
1160          when N_Component_Association =>
1161             Set_Debug_Sloc;
1162             Sprint_Bar_List (Choices (Node));
1163             Write_Str (" => ");
1164
1165             --  Ada 2005 (AI-287): Print the box if present
1166
1167             if Box_Present (Node) then
1168                Write_Str_With_Col_Check ("<>");
1169             else
1170                Sprint_Node (Expression (Node));
1171             end if;
1172
1173          when N_Component_Clause =>
1174             Write_Indent;
1175             Sprint_Node (Component_Name (Node));
1176             Write_Str_Sloc (" at ");
1177             Sprint_Node (Position (Node));
1178             Write_Char (' ');
1179             Write_Str_With_Col_Check ("range ");
1180             Sprint_Node (First_Bit (Node));
1181             Write_Str (" .. ");
1182             Sprint_Node (Last_Bit (Node));
1183             Write_Char (';');
1184
1185          when N_Component_Definition =>
1186             Set_Debug_Sloc;
1187
1188             --  Ada 2005 (AI-230): Access definition components
1189
1190             if Present (Access_Definition (Node)) then
1191                Sprint_Node (Access_Definition (Node));
1192
1193             elsif Present (Subtype_Indication (Node)) then
1194                if Aliased_Present (Node) then
1195                   Write_Str_With_Col_Check ("aliased ");
1196                end if;
1197
1198                --  Ada 2005 (AI-231)
1199
1200                if Null_Exclusion_Present (Node) then
1201                   Write_Str (" not null ");
1202                end if;
1203
1204                Sprint_Node (Subtype_Indication (Node));
1205
1206             else
1207                Write_Str (" ??? ");
1208             end if;
1209
1210          when N_Component_Declaration =>
1211             if Write_Indent_Identifiers_Sloc (Node) then
1212                Write_Str (" : ");
1213                Sprint_Node (Component_Definition (Node));
1214
1215                if Present (Expression (Node)) then
1216                   Write_Str (" := ");
1217                   Sprint_Node (Expression (Node));
1218                end if;
1219
1220                Write_Char (';');
1221             end if;
1222
1223          when N_Component_List =>
1224             if Null_Present (Node) then
1225                Indent_Begin;
1226                Write_Indent_Str_Sloc ("null");
1227                Write_Char (';');
1228                Indent_End;
1229
1230             else
1231                Set_Debug_Sloc;
1232                Sprint_Indented_List (Component_Items (Node));
1233                Sprint_Node (Variant_Part (Node));
1234             end if;
1235
1236          when N_Conditional_Entry_Call =>
1237             Write_Indent_Str_Sloc ("select");
1238             Indent_Begin;
1239             Sprint_Node (Entry_Call_Alternative (Node));
1240             Indent_End;
1241             Write_Indent_Str ("else");
1242             Sprint_Indented_List (Else_Statements (Node));
1243             Write_Indent_Str ("end select;");
1244
1245          when N_Conditional_Expression =>
1246             declare
1247                Condition : constant Node_Id := First (Expressions (Node));
1248                Then_Expr : constant Node_Id := Next (Condition);
1249                Else_Expr : constant Node_Id := Next (Then_Expr);
1250             begin
1251                Write_Str_With_Col_Check_Sloc ("(if ");
1252                Sprint_Node (Condition);
1253                Write_Str_With_Col_Check (" then ");
1254                Sprint_Node (Then_Expr);
1255                Write_Str_With_Col_Check (" else ");
1256                Sprint_Node (Else_Expr);
1257                Write_Char (')');
1258             end;
1259
1260          when N_Constrained_Array_Definition =>
1261             Write_Str_With_Col_Check_Sloc ("array ");
1262             Sprint_Paren_Comma_List (Discrete_Subtype_Definitions (Node));
1263             Write_Str (" of ");
1264
1265             Sprint_Node (Component_Definition (Node));
1266
1267          when N_Decimal_Fixed_Point_Definition =>
1268             Write_Str_With_Col_Check_Sloc (" delta ");
1269             Sprint_Node (Delta_Expression (Node));
1270             Write_Str_With_Col_Check ("digits ");
1271             Sprint_Node (Digits_Expression (Node));
1272             Sprint_Opt_Node (Real_Range_Specification (Node));
1273
1274          when N_Defining_Character_Literal =>
1275             Write_Name_With_Col_Check_Sloc (Chars (Node));
1276
1277          when N_Defining_Identifier =>
1278             Set_Debug_Sloc;
1279             Write_Id (Node);
1280
1281          when N_Defining_Operator_Symbol =>
1282             Write_Name_With_Col_Check_Sloc (Chars (Node));
1283
1284          when N_Defining_Program_Unit_Name =>
1285             Set_Debug_Sloc;
1286             Sprint_Node (Name (Node));
1287             Write_Char ('.');
1288             Write_Id (Defining_Identifier (Node));
1289
1290          when N_Delay_Alternative =>
1291             Sprint_Node_List (Pragmas_Before (Node));
1292
1293             if Present (Condition (Node)) then
1294                Write_Indent;
1295                Write_Str_With_Col_Check ("when ");
1296                Sprint_Node (Condition (Node));
1297                Write_Str (" => ");
1298                Indent_Annull;
1299             end if;
1300
1301             Sprint_Node_Sloc (Delay_Statement (Node));
1302             Sprint_Node_List (Statements (Node));
1303
1304          when N_Delay_Relative_Statement =>
1305             Write_Indent_Str_Sloc ("delay ");
1306             Sprint_Node (Expression (Node));
1307             Write_Char (';');
1308
1309          when N_Delay_Until_Statement =>
1310             Write_Indent_Str_Sloc ("delay until ");
1311             Sprint_Node (Expression (Node));
1312             Write_Char (';');
1313
1314          when N_Delta_Constraint =>
1315             Write_Str_With_Col_Check_Sloc ("delta ");
1316             Sprint_Node (Delta_Expression (Node));
1317             Sprint_Opt_Node (Range_Constraint (Node));
1318
1319          when N_Derived_Type_Definition =>
1320             if Abstract_Present (Node) then
1321                Write_Str_With_Col_Check ("abstract ");
1322             end if;
1323
1324             Write_Str_With_Col_Check_Sloc ("new ");
1325
1326             --  Ada 2005 (AI-231)
1327
1328             if Null_Exclusion_Present (Node) then
1329                Write_Str_With_Col_Check ("not null ");
1330             end if;
1331
1332             Sprint_Node (Subtype_Indication (Node));
1333
1334             if Present (Interface_List (Node)) then
1335                Sprint_And_List (Interface_List (Node));
1336                Write_Str_With_Col_Check (" with ");
1337             end if;
1338
1339             if Present (Record_Extension_Part (Node)) then
1340                if No (Interface_List (Node)) then
1341                   Write_Str_With_Col_Check (" with ");
1342                end if;
1343
1344                Sprint_Node (Record_Extension_Part (Node));
1345             end if;
1346
1347          when N_Designator =>
1348             Sprint_Node (Name (Node));
1349             Write_Char_Sloc ('.');
1350             Write_Id (Identifier (Node));
1351
1352          when N_Digits_Constraint =>
1353             Write_Str_With_Col_Check_Sloc ("digits ");
1354             Sprint_Node (Digits_Expression (Node));
1355             Sprint_Opt_Node (Range_Constraint (Node));
1356
1357          when N_Discriminant_Association =>
1358             Set_Debug_Sloc;
1359
1360             if Present (Selector_Names (Node)) then
1361                Sprint_Bar_List (Selector_Names (Node));
1362                Write_Str (" => ");
1363             end if;
1364
1365             Set_Debug_Sloc;
1366             Sprint_Node (Expression (Node));
1367
1368          when N_Discriminant_Specification =>
1369             Set_Debug_Sloc;
1370
1371             if Write_Identifiers (Node) then
1372                Write_Str (" : ");
1373
1374                if Null_Exclusion_Present (Node) then
1375                   Write_Str ("not null ");
1376                end if;
1377
1378                Sprint_Node (Discriminant_Type (Node));
1379
1380                if Present (Expression (Node)) then
1381                   Write_Str (" := ");
1382                   Sprint_Node (Expression (Node));
1383                end if;
1384             else
1385                Write_Str (", ");
1386             end if;
1387
1388          when N_Elsif_Part =>
1389             Write_Indent_Str_Sloc ("elsif ");
1390             Sprint_Node (Condition (Node));
1391             Write_Str_With_Col_Check (" then");
1392             Sprint_Indented_List (Then_Statements (Node));
1393
1394          when N_Empty =>
1395             null;
1396
1397          when N_Entry_Body =>
1398             Write_Indent_Str_Sloc ("entry ");
1399             Write_Id (Defining_Identifier (Node));
1400             Sprint_Node (Entry_Body_Formal_Part (Node));
1401             Write_Str_With_Col_Check (" is");
1402             Sprint_Indented_List (Declarations (Node));
1403             Write_Indent_Str ("begin");
1404             Sprint_Node (Handled_Statement_Sequence (Node));
1405             Write_Indent_Str ("end ");
1406             Write_Id (Defining_Identifier (Node));
1407             Write_Char (';');
1408
1409          when N_Entry_Body_Formal_Part =>
1410             if Present (Entry_Index_Specification (Node)) then
1411                Write_Str_With_Col_Check_Sloc (" (");
1412                Sprint_Node (Entry_Index_Specification (Node));
1413                Write_Char (')');
1414             end if;
1415
1416             Write_Param_Specs (Node);
1417             Write_Str_With_Col_Check_Sloc (" when ");
1418             Sprint_Node (Condition (Node));
1419
1420          when N_Entry_Call_Alternative =>
1421             Sprint_Node_List (Pragmas_Before (Node));
1422             Sprint_Node_Sloc (Entry_Call_Statement (Node));
1423             Sprint_Node_List (Statements (Node));
1424
1425          when N_Entry_Call_Statement =>
1426             Write_Indent;
1427             Sprint_Node_Sloc (Name (Node));
1428             Sprint_Opt_Paren_Comma_List (Parameter_Associations (Node));
1429             Write_Char (';');
1430
1431          when N_Entry_Declaration =>
1432             Write_Indent_Str_Sloc ("entry ");
1433             Write_Id (Defining_Identifier (Node));
1434
1435             if Present (Discrete_Subtype_Definition (Node)) then
1436                Write_Str_With_Col_Check (" (");
1437                Sprint_Node (Discrete_Subtype_Definition (Node));
1438                Write_Char (')');
1439             end if;
1440
1441             Write_Param_Specs (Node);
1442             Write_Char (';');
1443
1444          when N_Entry_Index_Specification =>
1445             Write_Str_With_Col_Check_Sloc ("for ");
1446             Write_Id (Defining_Identifier (Node));
1447             Write_Str_With_Col_Check (" in ");
1448             Sprint_Node (Discrete_Subtype_Definition (Node));
1449
1450          when N_Enumeration_Representation_Clause =>
1451             Write_Indent_Str_Sloc ("for ");
1452             Write_Id (Identifier (Node));
1453             Write_Str_With_Col_Check (" use ");
1454             Sprint_Node (Array_Aggregate (Node));
1455             Write_Char (';');
1456
1457          when N_Enumeration_Type_Definition =>
1458             Set_Debug_Sloc;
1459
1460             --  Skip attempt to print Literals field if it's not there and
1461             --  we are in package Standard (case of Character, which is
1462             --  handled specially (without an explicit literals list).
1463
1464             if Sloc (Node) > Standard_Location
1465               or else Present (Literals (Node))
1466             then
1467                Sprint_Paren_Comma_List (Literals (Node));
1468             end if;
1469
1470          when N_Error =>
1471             Write_Str_With_Col_Check_Sloc ("<error>");
1472
1473          when N_Exception_Declaration =>
1474             if Write_Indent_Identifiers (Node) then
1475                Write_Str_With_Col_Check (" : ");
1476
1477                if Is_Statically_Allocated (Defining_Identifier (Node)) then
1478                   Write_Str_With_Col_Check ("static ");
1479                end if;
1480
1481                Write_Str_Sloc ("exception");
1482
1483                if Present (Expression (Node)) then
1484                   Write_Str (" := ");
1485                   Sprint_Node (Expression (Node));
1486                end if;
1487
1488                Write_Char (';');
1489             end if;
1490
1491          when N_Exception_Handler =>
1492             Write_Indent_Str_Sloc ("when ");
1493
1494             if Present (Choice_Parameter (Node)) then
1495                Sprint_Node (Choice_Parameter (Node));
1496                Write_Str (" : ");
1497             end if;
1498
1499             Sprint_Bar_List (Exception_Choices (Node));
1500             Write_Str (" => ");
1501             Sprint_Indented_List (Statements (Node));
1502
1503          when N_Exception_Renaming_Declaration =>
1504             Write_Indent;
1505             Set_Debug_Sloc;
1506             Sprint_Node (Defining_Identifier (Node));
1507             Write_Str_With_Col_Check (" : exception renames ");
1508             Sprint_Node (Name (Node));
1509             Write_Char (';');
1510
1511          when N_Exit_Statement =>
1512             Write_Indent_Str_Sloc ("exit");
1513             Sprint_Opt_Node (Name (Node));
1514
1515             if Present (Condition (Node)) then
1516                Write_Str_With_Col_Check (" when ");
1517                Sprint_Node (Condition (Node));
1518             end if;
1519
1520             Write_Char (';');
1521
1522          when N_Expanded_Name =>
1523             Sprint_Node (Prefix (Node));
1524             Write_Char_Sloc ('.');
1525             Sprint_Node (Selector_Name (Node));
1526
1527          when N_Explicit_Dereference =>
1528             Sprint_Node (Prefix (Node));
1529             Write_Char_Sloc ('.');
1530             Write_Str_Sloc ("all");
1531
1532          when N_Extended_Return_Statement =>
1533             Write_Indent_Str_Sloc ("return ");
1534             Sprint_Node_List (Return_Object_Declarations (Node));
1535
1536             if Present (Handled_Statement_Sequence (Node)) then
1537                Write_Str_With_Col_Check (" do");
1538                Sprint_Node (Handled_Statement_Sequence (Node));
1539                Write_Indent_Str ("end return;");
1540             else
1541                Write_Indent_Str (";");
1542             end if;
1543
1544          when N_Extension_Aggregate =>
1545             Write_Str_With_Col_Check_Sloc ("(");
1546             Sprint_Node (Ancestor_Part (Node));
1547             Write_Str_With_Col_Check (" with ");
1548
1549             if Null_Record_Present (Node) then
1550                Write_Str_With_Col_Check ("null record");
1551             else
1552                if Present (Expressions (Node)) then
1553                   Sprint_Comma_List (Expressions (Node));
1554
1555                   if Present (Component_Associations (Node)) then
1556                      Write_Str (", ");
1557                   end if;
1558                end if;
1559
1560                if Present (Component_Associations (Node)) then
1561                   Sprint_Comma_List (Component_Associations (Node));
1562                end if;
1563             end if;
1564
1565             Write_Char (')');
1566
1567          when N_Floating_Point_Definition =>
1568             Write_Str_With_Col_Check_Sloc ("digits ");
1569             Sprint_Node (Digits_Expression (Node));
1570             Sprint_Opt_Node (Real_Range_Specification (Node));
1571
1572          when N_Formal_Decimal_Fixed_Point_Definition =>
1573             Write_Str_With_Col_Check_Sloc ("delta <> digits <>");
1574
1575          when N_Formal_Derived_Type_Definition =>
1576             Write_Str_With_Col_Check_Sloc ("new ");
1577             Sprint_Node (Subtype_Mark (Node));
1578
1579             if Private_Present (Node) then
1580                Write_Str_With_Col_Check (" with private");
1581             end if;
1582
1583          when N_Formal_Abstract_Subprogram_Declaration =>
1584             Write_Indent_Str_Sloc ("with ");
1585             Sprint_Node (Specification (Node));
1586
1587             Write_Str_With_Col_Check (" is abstract");
1588
1589             if Box_Present (Node) then
1590                Write_Str_With_Col_Check (" <>");
1591             elsif Present (Default_Name (Node)) then
1592                Write_Str_With_Col_Check (" ");
1593                Sprint_Node (Default_Name (Node));
1594             end if;
1595
1596             Write_Char (';');
1597
1598          when N_Formal_Concrete_Subprogram_Declaration =>
1599             Write_Indent_Str_Sloc ("with ");
1600             Sprint_Node (Specification (Node));
1601
1602             if Box_Present (Node) then
1603                Write_Str_With_Col_Check (" is <>");
1604             elsif Present (Default_Name (Node)) then
1605                Write_Str_With_Col_Check (" is ");
1606                Sprint_Node (Default_Name (Node));
1607             end if;
1608
1609             Write_Char (';');
1610
1611          when N_Formal_Discrete_Type_Definition =>
1612             Write_Str_With_Col_Check_Sloc ("<>");
1613
1614          when N_Formal_Floating_Point_Definition =>
1615             Write_Str_With_Col_Check_Sloc ("digits <>");
1616
1617          when N_Formal_Modular_Type_Definition =>
1618             Write_Str_With_Col_Check_Sloc ("mod <>");
1619
1620          when N_Formal_Object_Declaration =>
1621             Set_Debug_Sloc;
1622
1623             if Write_Indent_Identifiers (Node) then
1624                Write_Str (" : ");
1625
1626                if In_Present (Node) then
1627                   Write_Str_With_Col_Check ("in ");
1628                end if;
1629
1630                if Out_Present (Node) then
1631                   Write_Str_With_Col_Check ("out ");
1632                end if;
1633
1634                if Present (Subtype_Mark (Node)) then
1635
1636                   --  Ada 2005 (AI-423): Formal object with null exclusion
1637
1638                   if Null_Exclusion_Present (Node) then
1639                      Write_Str ("not null ");
1640                   end if;
1641
1642                   Sprint_Node (Subtype_Mark (Node));
1643
1644                --  Ada 2005 (AI-423): Formal object with access definition
1645
1646                else
1647                   pragma Assert (Present (Access_Definition (Node)));
1648
1649                   Sprint_Node (Access_Definition (Node));
1650                end if;
1651
1652                if Present (Default_Expression (Node)) then
1653                   Write_Str (" := ");
1654                   Sprint_Node (Default_Expression (Node));
1655                end if;
1656
1657                Write_Char (';');
1658             end if;
1659
1660          when N_Formal_Ordinary_Fixed_Point_Definition =>
1661             Write_Str_With_Col_Check_Sloc ("delta <>");
1662
1663          when N_Formal_Package_Declaration =>
1664             Write_Indent_Str_Sloc ("with package ");
1665             Write_Id (Defining_Identifier (Node));
1666             Write_Str_With_Col_Check (" is new ");
1667             Sprint_Node (Name (Node));
1668             Write_Str_With_Col_Check (" (<>);");
1669
1670          when N_Formal_Private_Type_Definition =>
1671             if Abstract_Present (Node) then
1672                Write_Str_With_Col_Check ("abstract ");
1673             end if;
1674
1675             if Tagged_Present (Node) then
1676                Write_Str_With_Col_Check ("tagged ");
1677             end if;
1678
1679             if Limited_Present (Node) then
1680                Write_Str_With_Col_Check ("limited ");
1681             end if;
1682
1683             Write_Str_With_Col_Check_Sloc ("private");
1684
1685          when N_Formal_Signed_Integer_Type_Definition =>
1686             Write_Str_With_Col_Check_Sloc ("range <>");
1687
1688          when N_Formal_Type_Declaration =>
1689             Write_Indent_Str_Sloc ("type ");
1690             Write_Id (Defining_Identifier (Node));
1691
1692             if Present (Discriminant_Specifications (Node)) then
1693                Write_Discr_Specs (Node);
1694             elsif Unknown_Discriminants_Present (Node) then
1695                Write_Str_With_Col_Check ("(<>)");
1696             end if;
1697
1698             Write_Str_With_Col_Check (" is ");
1699             Sprint_Node (Formal_Type_Definition (Node));
1700             Write_Char (';');
1701
1702          when N_Free_Statement =>
1703             Write_Indent_Str_Sloc ("free ");
1704             Sprint_Node (Expression (Node));
1705             Write_Char (';');
1706
1707          when N_Freeze_Entity =>
1708             if Dump_Original_Only then
1709                null;
1710
1711             elsif Present (Actions (Node)) or else Dump_Freeze_Null then
1712                Write_Indent;
1713                Write_Rewrite_Str ("<<<");
1714                Write_Str_With_Col_Check_Sloc ("freeze ");
1715                Write_Id (Entity (Node));
1716                Write_Str (" [");
1717
1718                if No (Actions (Node)) then
1719                   Write_Char (']');
1720
1721                else
1722                   --  Output freeze actions. We increment Freeze_Indent during
1723                   --  this output to avoid generating extra blank lines before
1724                   --  any procedures included in the freeze actions.
1725
1726                   Freeze_Indent := Freeze_Indent + 1;
1727                   Sprint_Indented_List (Actions (Node));
1728                   Freeze_Indent := Freeze_Indent - 1;
1729                   Write_Indent_Str ("]");
1730                end if;
1731
1732                Write_Rewrite_Str (">>>");
1733             end if;
1734
1735          when N_Full_Type_Declaration =>
1736             Write_Indent_Str_Sloc ("type ");
1737             Sprint_Node (Defining_Identifier (Node));
1738             Write_Discr_Specs (Node);
1739             Write_Str_With_Col_Check (" is ");
1740             Sprint_Node (Type_Definition (Node));
1741             Write_Char (';');
1742
1743          when N_Function_Call =>
1744             Set_Debug_Sloc;
1745             Note_Implicit_Run_Time_Call (Name (Node));
1746             Sprint_Node (Name (Node));
1747             Sprint_Opt_Paren_Comma_List (Parameter_Associations (Node));
1748
1749          when N_Function_Instantiation =>
1750             Write_Indent_Str_Sloc ("function ");
1751             Sprint_Node (Defining_Unit_Name (Node));
1752             Write_Str_With_Col_Check (" is new ");
1753             Sprint_Node (Name (Node));
1754             Sprint_Opt_Paren_Comma_List (Generic_Associations (Node));
1755             Write_Char (';');
1756
1757          when N_Function_Specification =>
1758             Write_Str_With_Col_Check_Sloc ("function ");
1759             Sprint_Node (Defining_Unit_Name (Node));
1760             Write_Param_Specs (Node);
1761             Write_Str_With_Col_Check (" return ");
1762
1763             --  Ada 2005 (AI-231)
1764
1765             if Nkind (Result_Definition (Node)) /= N_Access_Definition
1766               and then Null_Exclusion_Present (Node)
1767             then
1768                Write_Str (" not null ");
1769             end if;
1770
1771             Sprint_Node (Result_Definition (Node));
1772
1773          when N_Generic_Association =>
1774             Set_Debug_Sloc;
1775
1776             if Present (Selector_Name (Node)) then
1777                Sprint_Node (Selector_Name (Node));
1778                Write_Str (" => ");
1779             end if;
1780
1781             Sprint_Node (Explicit_Generic_Actual_Parameter (Node));
1782
1783          when N_Generic_Function_Renaming_Declaration =>
1784             Write_Indent_Str_Sloc ("generic function ");
1785             Sprint_Node (Defining_Unit_Name (Node));
1786             Write_Str_With_Col_Check (" renames ");
1787             Sprint_Node (Name (Node));
1788             Write_Char (';');
1789
1790          when N_Generic_Package_Declaration =>
1791             Extra_Blank_Line;
1792             Write_Indent_Str_Sloc ("generic ");
1793             Sprint_Indented_List (Generic_Formal_Declarations (Node));
1794             Write_Indent;
1795             Sprint_Node (Specification (Node));
1796             Write_Char (';');
1797
1798          when N_Generic_Package_Renaming_Declaration =>
1799             Write_Indent_Str_Sloc ("generic package ");
1800             Sprint_Node (Defining_Unit_Name (Node));
1801             Write_Str_With_Col_Check (" renames ");
1802             Sprint_Node (Name (Node));
1803             Write_Char (';');
1804
1805          when N_Generic_Procedure_Renaming_Declaration =>
1806             Write_Indent_Str_Sloc ("generic procedure ");
1807             Sprint_Node (Defining_Unit_Name (Node));
1808             Write_Str_With_Col_Check (" renames ");
1809             Sprint_Node (Name (Node));
1810             Write_Char (';');
1811
1812          when N_Generic_Subprogram_Declaration =>
1813             Extra_Blank_Line;
1814             Write_Indent_Str_Sloc ("generic ");
1815             Sprint_Indented_List (Generic_Formal_Declarations (Node));
1816             Write_Indent;
1817             Sprint_Node (Specification (Node));
1818             Write_Char (';');
1819
1820          when N_Goto_Statement =>
1821             Write_Indent_Str_Sloc ("goto ");
1822             Sprint_Node (Name (Node));
1823             Write_Char (';');
1824
1825             if Nkind (Next (Node)) = N_Label then
1826                Write_Indent;
1827             end if;
1828
1829          when N_Handled_Sequence_Of_Statements =>
1830             Set_Debug_Sloc;
1831             Sprint_Indented_List (Statements (Node));
1832
1833             if Present (Exception_Handlers (Node)) then
1834                Write_Indent_Str ("exception");
1835                Indent_Begin;
1836                Sprint_Node_List (Exception_Handlers (Node));
1837                Indent_End;
1838             end if;
1839
1840             if Present (At_End_Proc (Node)) then
1841                Write_Indent_Str ("at end");
1842                Indent_Begin;
1843                Write_Indent;
1844                Sprint_Node (At_End_Proc (Node));
1845                Write_Char (';');
1846                Indent_End;
1847             end if;
1848
1849          when N_Identifier =>
1850             Set_Debug_Sloc;
1851             Write_Id (Node);
1852
1853          when N_If_Statement =>
1854             Write_Indent_Str_Sloc ("if ");
1855             Sprint_Node (Condition (Node));
1856             Write_Str_With_Col_Check (" then");
1857             Sprint_Indented_List (Then_Statements (Node));
1858             Sprint_Opt_Node_List (Elsif_Parts (Node));
1859
1860             if Present (Else_Statements (Node)) then
1861                Write_Indent_Str ("else");
1862                Sprint_Indented_List (Else_Statements (Node));
1863             end if;
1864
1865             Write_Indent_Str ("end if;");
1866
1867          when N_Implicit_Label_Declaration =>
1868             if not Dump_Original_Only then
1869                Write_Indent;
1870                Write_Rewrite_Str ("<<<");
1871                Set_Debug_Sloc;
1872                Write_Id (Defining_Identifier (Node));
1873                Write_Str (" : ");
1874                Write_Str_With_Col_Check ("label");
1875                Write_Rewrite_Str (">>>");
1876             end if;
1877
1878          when N_In =>
1879             Sprint_Left_Opnd (Node);
1880             Write_Str_Sloc (" in ");
1881             Sprint_Right_Opnd (Node);
1882
1883          when N_Incomplete_Type_Declaration =>
1884             Write_Indent_Str_Sloc ("type ");
1885             Write_Id (Defining_Identifier (Node));
1886
1887             if Present (Discriminant_Specifications (Node)) then
1888                Write_Discr_Specs (Node);
1889             elsif Unknown_Discriminants_Present (Node) then
1890                Write_Str_With_Col_Check ("(<>)");
1891             end if;
1892
1893             Write_Char (';');
1894
1895          when N_Index_Or_Discriminant_Constraint =>
1896             Set_Debug_Sloc;
1897             Sprint_Paren_Comma_List (Constraints (Node));
1898
1899          when N_Indexed_Component =>
1900             Sprint_Node_Sloc (Prefix (Node));
1901             Sprint_Opt_Paren_Comma_List (Expressions (Node));
1902
1903          when N_Integer_Literal =>
1904             if Print_In_Hex (Node) then
1905                Write_Uint_With_Col_Check_Sloc (Intval (Node), Hex);
1906             else
1907                Write_Uint_With_Col_Check_Sloc (Intval (Node), Auto);
1908             end if;
1909
1910          when N_Iteration_Scheme =>
1911             if Present (Condition (Node)) then
1912                Write_Str_With_Col_Check_Sloc ("while ");
1913                Sprint_Node (Condition (Node));
1914             else
1915                Write_Str_With_Col_Check_Sloc ("for ");
1916                Sprint_Node (Loop_Parameter_Specification (Node));
1917             end if;
1918
1919             Write_Char (' ');
1920
1921          when N_Itype_Reference =>
1922             Write_Indent_Str_Sloc ("reference ");
1923             Write_Id (Itype (Node));
1924
1925          when N_Label =>
1926             Write_Indent_Str_Sloc ("<<");
1927             Write_Id (Identifier (Node));
1928             Write_Str (">>");
1929
1930          when N_Loop_Parameter_Specification =>
1931             Set_Debug_Sloc;
1932             Write_Id (Defining_Identifier (Node));
1933             Write_Str_With_Col_Check (" in ");
1934
1935             if Reverse_Present (Node) then
1936                Write_Str_With_Col_Check ("reverse ");
1937             end if;
1938
1939             Sprint_Node (Discrete_Subtype_Definition (Node));
1940
1941          when N_Loop_Statement =>
1942             Write_Indent;
1943
1944             if Present (Identifier (Node))
1945               and then (not Has_Created_Identifier (Node)
1946                           or else not Dump_Original_Only)
1947             then
1948                Write_Rewrite_Str ("<<<");
1949                Write_Id (Identifier (Node));
1950                Write_Str (" : ");
1951                Write_Rewrite_Str (">>>");
1952                Sprint_Node (Iteration_Scheme (Node));
1953                Write_Str_With_Col_Check_Sloc ("loop");
1954                Sprint_Indented_List (Statements (Node));
1955                Write_Indent_Str ("end loop ");
1956                Write_Rewrite_Str ("<<<");
1957                Write_Id (Identifier (Node));
1958                Write_Rewrite_Str (">>>");
1959                Write_Char (';');
1960
1961             else
1962                Sprint_Node (Iteration_Scheme (Node));
1963                Write_Str_With_Col_Check_Sloc ("loop");
1964                Sprint_Indented_List (Statements (Node));
1965                Write_Indent_Str ("end loop;");
1966             end if;
1967
1968          when N_Mod_Clause =>
1969             Sprint_Node_List (Pragmas_Before (Node));
1970             Write_Str_With_Col_Check_Sloc ("at mod ");
1971             Sprint_Node (Expression (Node));
1972
1973          when N_Modular_Type_Definition =>
1974             Write_Str_With_Col_Check_Sloc ("mod ");
1975             Sprint_Node (Expression (Node));
1976
1977          when N_Not_In =>
1978             Sprint_Left_Opnd (Node);
1979             Write_Str_Sloc (" not in ");
1980             Sprint_Right_Opnd (Node);
1981
1982          when N_Null =>
1983             Write_Str_With_Col_Check_Sloc ("null");
1984
1985          when N_Null_Statement =>
1986             if Comes_From_Source (Node)
1987               or else Dump_Freeze_Null
1988               or else not Is_List_Member (Node)
1989               or else (No (Prev (Node)) and then No (Next (Node)))
1990             then
1991                Write_Indent_Str_Sloc ("null;");
1992             end if;
1993
1994          when N_Number_Declaration =>
1995             Set_Debug_Sloc;
1996
1997             if Write_Indent_Identifiers (Node) then
1998                Write_Str_With_Col_Check (" : constant ");
1999                Write_Str (" := ");
2000                Sprint_Node (Expression (Node));
2001                Write_Char (';');
2002             end if;
2003
2004          when N_Object_Declaration =>
2005             Set_Debug_Sloc;
2006
2007             if Write_Indent_Identifiers (Node) then
2008                declare
2009                   Def_Id : constant Entity_Id := Defining_Identifier (Node);
2010
2011                begin
2012                   Write_Str_With_Col_Check (" : ");
2013
2014                   if Is_Statically_Allocated (Def_Id) then
2015                      Write_Str_With_Col_Check ("static ");
2016                   end if;
2017
2018                   if Aliased_Present (Node) then
2019                      Write_Str_With_Col_Check ("aliased ");
2020                   end if;
2021
2022                   if Constant_Present (Node) then
2023                      Write_Str_With_Col_Check ("constant ");
2024                   end if;
2025
2026                   --  Ada 2005 (AI-231)
2027
2028                   if Null_Exclusion_Present (Node) then
2029                      Write_Str_With_Col_Check ("not null ");
2030                   end if;
2031
2032                   Sprint_Node (Object_Definition (Node));
2033
2034                   if Present (Expression (Node)) then
2035                      Write_Str (" := ");
2036                      Sprint_Node (Expression (Node));
2037                   end if;
2038
2039                   Write_Char (';');
2040
2041                   --  Handle implicit importation and implicit exportation of
2042                   --  object declarations:
2043                   --    $pragma import (Convention_Id, Def_Id, "...");
2044                   --    $pragma export (Convention_Id, Def_Id, "...");
2045
2046                   if Is_Internal (Def_Id)
2047                     and then Present (Interface_Name (Def_Id))
2048                   then
2049                      Write_Indent_Str_Sloc ("$pragma ");
2050
2051                      if Is_Imported (Def_Id) then
2052                         Write_Str ("import (");
2053
2054                      else pragma Assert (Is_Exported (Def_Id));
2055                         Write_Str ("export (");
2056                      end if;
2057
2058                      declare
2059                         Prefix : constant String  := "Convention_";
2060                         S      : constant String  := Convention (Def_Id)'Img;
2061
2062                      begin
2063                         Name_Len := S'Last - Prefix'Last;
2064                         Name_Buffer (1 .. Name_Len) :=
2065                           S (Prefix'Last + 1 .. S'Last);
2066                         Set_Casing (All_Lower_Case);
2067                         Write_Str (Name_Buffer (1 .. Name_Len));
2068                      end;
2069
2070                      Write_Str (", ");
2071                      Write_Id  (Def_Id);
2072                      Write_Str (", ");
2073                      Write_String_Table_Entry
2074                        (Strval (Interface_Name (Def_Id)));
2075                      Write_Str (");");
2076                   end if;
2077                end;
2078             end if;
2079
2080          when N_Object_Renaming_Declaration =>
2081             Write_Indent;
2082             Set_Debug_Sloc;
2083             Sprint_Node (Defining_Identifier (Node));
2084             Write_Str (" : ");
2085
2086             --  Ada 2005 (AI-230): Access renamings
2087
2088             if Present (Access_Definition (Node)) then
2089                Sprint_Node (Access_Definition (Node));
2090
2091             elsif Present (Subtype_Mark (Node)) then
2092
2093                --  Ada 2005 (AI-423): Object renaming with a null exclusion
2094
2095                if Null_Exclusion_Present (Node) then
2096                   Write_Str ("not null ");
2097                end if;
2098
2099                Sprint_Node (Subtype_Mark (Node));
2100
2101             else
2102                Write_Str (" ??? ");
2103             end if;
2104
2105             Write_Str_With_Col_Check (" renames ");
2106             Sprint_Node (Name (Node));
2107             Write_Char (';');
2108
2109          when N_Op_Abs =>
2110             Write_Operator (Node, "abs ");
2111             Sprint_Right_Opnd (Node);
2112
2113          when N_Op_Add =>
2114             Sprint_Left_Opnd (Node);
2115             Write_Operator (Node, " + ");
2116             Sprint_Right_Opnd (Node);
2117
2118          when N_Op_And =>
2119             Sprint_Left_Opnd (Node);
2120             Write_Operator (Node, " and ");
2121             Sprint_Right_Opnd (Node);
2122
2123          when N_Op_Concat =>
2124             Sprint_Left_Opnd (Node);
2125             Write_Operator (Node, " & ");
2126             Sprint_Right_Opnd (Node);
2127
2128          when N_Op_Divide =>
2129             Sprint_Left_Opnd (Node);
2130             Write_Char (' ');
2131             Process_TFAI_RR_Flags (Node);
2132             Write_Operator (Node, "/ ");
2133             Sprint_Right_Opnd (Node);
2134
2135          when N_Op_Eq =>
2136             Sprint_Left_Opnd (Node);
2137             Write_Operator (Node, " = ");
2138             Sprint_Right_Opnd (Node);
2139
2140          when N_Op_Expon =>
2141             Sprint_Left_Opnd (Node);
2142             Write_Operator (Node, " ** ");
2143             Sprint_Right_Opnd (Node);
2144
2145          when N_Op_Ge =>
2146             Sprint_Left_Opnd (Node);
2147             Write_Operator (Node, " >= ");
2148             Sprint_Right_Opnd (Node);
2149
2150          when N_Op_Gt =>
2151             Sprint_Left_Opnd (Node);
2152             Write_Operator (Node, " > ");
2153             Sprint_Right_Opnd (Node);
2154
2155          when N_Op_Le =>
2156             Sprint_Left_Opnd (Node);
2157             Write_Operator (Node, " <= ");
2158             Sprint_Right_Opnd (Node);
2159
2160          when N_Op_Lt =>
2161             Sprint_Left_Opnd (Node);
2162             Write_Operator (Node, " < ");
2163             Sprint_Right_Opnd (Node);
2164
2165          when N_Op_Minus =>
2166             Write_Operator (Node, "-");
2167             Sprint_Right_Opnd (Node);
2168
2169          when N_Op_Mod =>
2170             Sprint_Left_Opnd (Node);
2171
2172             if Treat_Fixed_As_Integer (Node) then
2173                Write_Str (" #");
2174             end if;
2175
2176             Write_Operator (Node, " mod ");
2177             Sprint_Right_Opnd (Node);
2178
2179          when N_Op_Multiply =>
2180             Sprint_Left_Opnd (Node);
2181             Write_Char (' ');
2182             Process_TFAI_RR_Flags (Node);
2183             Write_Operator (Node, "* ");
2184             Sprint_Right_Opnd (Node);
2185
2186          when N_Op_Ne =>
2187             Sprint_Left_Opnd (Node);
2188             Write_Operator (Node, " /= ");
2189             Sprint_Right_Opnd (Node);
2190
2191          when N_Op_Not =>
2192             Write_Operator (Node, "not ");
2193             Sprint_Right_Opnd (Node);
2194
2195          when N_Op_Or =>
2196             Sprint_Left_Opnd (Node);
2197             Write_Operator (Node, " or ");
2198             Sprint_Right_Opnd (Node);
2199
2200          when N_Op_Plus =>
2201             Write_Operator (Node, "+");
2202             Sprint_Right_Opnd (Node);
2203
2204          when N_Op_Rem =>
2205             Sprint_Left_Opnd (Node);
2206
2207             if Treat_Fixed_As_Integer (Node) then
2208                Write_Str (" #");
2209             end if;
2210
2211             Write_Operator (Node, " rem ");
2212             Sprint_Right_Opnd (Node);
2213
2214          when N_Op_Shift =>
2215             Set_Debug_Sloc;
2216             Write_Id (Node);
2217             Write_Char ('!');
2218             Write_Str_With_Col_Check ("(");
2219             Sprint_Node (Left_Opnd (Node));
2220             Write_Str (", ");
2221             Sprint_Node (Right_Opnd (Node));
2222             Write_Char (')');
2223
2224          when N_Op_Subtract =>
2225             Sprint_Left_Opnd (Node);
2226             Write_Operator (Node, " - ");
2227             Sprint_Right_Opnd (Node);
2228
2229          when N_Op_Xor =>
2230             Sprint_Left_Opnd (Node);
2231             Write_Operator (Node, " xor ");
2232             Sprint_Right_Opnd (Node);
2233
2234          when N_Operator_Symbol =>
2235             Write_Name_With_Col_Check_Sloc (Chars (Node));
2236
2237          when N_Ordinary_Fixed_Point_Definition =>
2238             Write_Str_With_Col_Check_Sloc ("delta ");
2239             Sprint_Node (Delta_Expression (Node));
2240             Sprint_Opt_Node (Real_Range_Specification (Node));
2241
2242          when N_Or_Else =>
2243             Sprint_Left_Opnd (Node);
2244             Write_Str_Sloc (" or else ");
2245             Sprint_Right_Opnd (Node);
2246
2247          when N_Others_Choice =>
2248             if All_Others (Node) then
2249                Write_Str_With_Col_Check ("all ");
2250             end if;
2251
2252             Write_Str_With_Col_Check_Sloc ("others");
2253
2254          when N_Package_Body =>
2255             Extra_Blank_Line;
2256             Write_Indent_Str_Sloc ("package body ");
2257             Sprint_Node (Defining_Unit_Name (Node));
2258             Write_Str (" is");
2259             Sprint_Indented_List (Declarations (Node));
2260
2261             if Present (Handled_Statement_Sequence (Node)) then
2262                Write_Indent_Str ("begin");
2263                Sprint_Node (Handled_Statement_Sequence (Node));
2264             end if;
2265
2266             Write_Indent_Str ("end ");
2267             Sprint_End_Label
2268               (Handled_Statement_Sequence (Node), Defining_Unit_Name (Node));
2269             Write_Char (';');
2270
2271          when N_Package_Body_Stub =>
2272             Write_Indent_Str_Sloc ("package body ");
2273             Sprint_Node (Defining_Identifier (Node));
2274             Write_Str_With_Col_Check (" is separate;");
2275
2276          when N_Package_Declaration =>
2277             Extra_Blank_Line;
2278             Write_Indent;
2279             Sprint_Node_Sloc (Specification (Node));
2280             Write_Char (';');
2281
2282          when N_Package_Instantiation =>
2283             Extra_Blank_Line;
2284             Write_Indent_Str_Sloc ("package ");
2285             Sprint_Node (Defining_Unit_Name (Node));
2286             Write_Str (" is new ");
2287             Sprint_Node (Name (Node));
2288             Sprint_Opt_Paren_Comma_List (Generic_Associations (Node));
2289             Write_Char (';');
2290
2291          when N_Package_Renaming_Declaration =>
2292             Write_Indent_Str_Sloc ("package ");
2293             Sprint_Node (Defining_Unit_Name (Node));
2294             Write_Str_With_Col_Check (" renames ");
2295             Sprint_Node (Name (Node));
2296             Write_Char (';');
2297
2298          when N_Package_Specification =>
2299             Write_Str_With_Col_Check_Sloc ("package ");
2300             Sprint_Node (Defining_Unit_Name (Node));
2301             Write_Str (" is");
2302             Sprint_Indented_List (Visible_Declarations (Node));
2303
2304             if Present (Private_Declarations (Node)) then
2305                Write_Indent_Str ("private");
2306                Sprint_Indented_List (Private_Declarations (Node));
2307             end if;
2308
2309             Write_Indent_Str ("end ");
2310             Sprint_Node (Defining_Unit_Name (Node));
2311
2312          when N_Parameter_Association =>
2313             Sprint_Node_Sloc (Selector_Name (Node));
2314             Write_Str (" => ");
2315             Sprint_Node (Explicit_Actual_Parameter (Node));
2316
2317          when N_Parameter_Specification =>
2318             Set_Debug_Sloc;
2319
2320             if Write_Identifiers (Node) then
2321                Write_Str (" : ");
2322
2323                if In_Present (Node) then
2324                   Write_Str_With_Col_Check ("in ");
2325                end if;
2326
2327                if Out_Present (Node) then
2328                   Write_Str_With_Col_Check ("out ");
2329                end if;
2330
2331                --  Ada 2005 (AI-231) parameter specification may carry
2332                --  null exclusion. Do not print it now if this is an
2333                --  access parameter, it is emitted when the access
2334                --  definition is displayed.
2335
2336                if Null_Exclusion_Present (Node)
2337                  and then Nkind (Parameter_Type (Node))
2338                    /= N_Access_Definition
2339                then
2340                   Write_Str ("not null ");
2341                end if;
2342
2343                Sprint_Node (Parameter_Type (Node));
2344
2345                if Present (Expression (Node)) then
2346                   Write_Str (" := ");
2347                   Sprint_Node (Expression (Node));
2348                end if;
2349             else
2350                Write_Str (", ");
2351             end if;
2352
2353          when N_Pop_Constraint_Error_Label =>
2354             Write_Indent_Str ("%pop_constraint_error_label");
2355
2356          when N_Pop_Program_Error_Label =>
2357             Write_Indent_Str ("%pop_program_error_label");
2358
2359          when N_Pop_Storage_Error_Label =>
2360             Write_Indent_Str ("%pop_storage_error_label");
2361
2362          when N_Push_Constraint_Error_Label =>
2363             Write_Indent_Str ("%push_constraint_error_label (");
2364
2365             if Present (Exception_Label (Node)) then
2366                Write_Name_With_Col_Check (Chars (Exception_Label (Node)));
2367             end if;
2368
2369             Write_Str (")");
2370
2371          when N_Push_Program_Error_Label =>
2372             Write_Indent_Str ("%push_program_error_label (");
2373
2374             if Present (Exception_Label (Node)) then
2375                Write_Name_With_Col_Check (Chars (Exception_Label (Node)));
2376             end if;
2377
2378             Write_Str (")");
2379
2380          when N_Push_Storage_Error_Label =>
2381             Write_Indent_Str ("%push_storage_error_label (");
2382
2383             if Present (Exception_Label (Node)) then
2384                Write_Name_With_Col_Check (Chars (Exception_Label (Node)));
2385             end if;
2386
2387             Write_Str (")");
2388
2389          when N_Pragma =>
2390             Write_Indent_Str_Sloc ("pragma ");
2391             Write_Name_With_Col_Check (Chars (Node));
2392
2393             if Present (Pragma_Argument_Associations (Node)) then
2394                Sprint_Opt_Paren_Comma_List
2395                  (Pragma_Argument_Associations (Node));
2396             end if;
2397
2398             Write_Char (';');
2399
2400          when N_Pragma_Argument_Association =>
2401             Set_Debug_Sloc;
2402
2403             if Chars (Node) /= No_Name then
2404                Write_Name_With_Col_Check (Chars (Node));
2405                Write_Str (" => ");
2406             end if;
2407
2408             Sprint_Node (Expression (Node));
2409
2410          when N_Private_Type_Declaration =>
2411             Write_Indent_Str_Sloc ("type ");
2412             Write_Id (Defining_Identifier (Node));
2413
2414             if Present (Discriminant_Specifications (Node)) then
2415                Write_Discr_Specs (Node);
2416             elsif Unknown_Discriminants_Present (Node) then
2417                Write_Str_With_Col_Check ("(<>)");
2418             end if;
2419
2420             Write_Str (" is ");
2421
2422             if Tagged_Present (Node) then
2423                Write_Str_With_Col_Check ("tagged ");
2424             end if;
2425
2426             if Limited_Present (Node) then
2427                Write_Str_With_Col_Check ("limited ");
2428             end if;
2429
2430             Write_Str_With_Col_Check ("private;");
2431
2432          when N_Private_Extension_Declaration =>
2433             Write_Indent_Str_Sloc ("type ");
2434             Write_Id (Defining_Identifier (Node));
2435
2436             if Present (Discriminant_Specifications (Node)) then
2437                Write_Discr_Specs (Node);
2438             elsif Unknown_Discriminants_Present (Node) then
2439                Write_Str_With_Col_Check ("(<>)");
2440             end if;
2441
2442             Write_Str_With_Col_Check (" is new ");
2443             Sprint_Node (Subtype_Indication (Node));
2444             Write_Str_With_Col_Check (" with private;");
2445
2446          when N_Procedure_Call_Statement =>
2447             Write_Indent;
2448             Set_Debug_Sloc;
2449             Note_Implicit_Run_Time_Call (Name (Node));
2450             Sprint_Node (Name (Node));
2451             Sprint_Opt_Paren_Comma_List (Parameter_Associations (Node));
2452             Write_Char (';');
2453
2454          when N_Procedure_Instantiation =>
2455             Write_Indent_Str_Sloc ("procedure ");
2456             Sprint_Node (Defining_Unit_Name (Node));
2457             Write_Str_With_Col_Check (" is new ");
2458             Sprint_Node (Name (Node));
2459             Sprint_Opt_Paren_Comma_List (Generic_Associations (Node));
2460             Write_Char (';');
2461
2462          when N_Procedure_Specification =>
2463             Write_Str_With_Col_Check_Sloc ("procedure ");
2464             Sprint_Node (Defining_Unit_Name (Node));
2465             Write_Param_Specs (Node);
2466
2467          when N_Protected_Body =>
2468             Write_Indent_Str_Sloc ("protected body ");
2469             Write_Id (Defining_Identifier (Node));
2470             Write_Str (" is");
2471             Sprint_Indented_List (Declarations (Node));
2472             Write_Indent_Str ("end ");
2473             Write_Id (Defining_Identifier (Node));
2474             Write_Char (';');
2475
2476          when N_Protected_Body_Stub =>
2477             Write_Indent_Str_Sloc ("protected body ");
2478             Write_Id (Defining_Identifier (Node));
2479             Write_Str_With_Col_Check (" is separate;");
2480
2481          when N_Protected_Definition =>
2482             Set_Debug_Sloc;
2483             Sprint_Indented_List (Visible_Declarations (Node));
2484
2485             if Present (Private_Declarations (Node)) then
2486                Write_Indent_Str ("private");
2487                Sprint_Indented_List (Private_Declarations (Node));
2488             end if;
2489
2490             Write_Indent_Str ("end ");
2491
2492          when N_Protected_Type_Declaration =>
2493             Write_Indent_Str_Sloc ("protected type ");
2494             Sprint_Node (Defining_Identifier (Node));
2495             Write_Discr_Specs (Node);
2496
2497             if Present (Interface_List (Node)) then
2498                Write_Str (" is new ");
2499                Sprint_And_List (Interface_List (Node));
2500                Write_Str (" with ");
2501             else
2502                Write_Str (" is");
2503             end if;
2504
2505             Sprint_Node (Protected_Definition (Node));
2506             Write_Id (Defining_Identifier (Node));
2507             Write_Char (';');
2508
2509          when N_Qualified_Expression =>
2510             Sprint_Node (Subtype_Mark (Node));
2511             Write_Char_Sloc (''');
2512
2513             --  Print expression, make sure we have at least one level of
2514             --  parentheses around the expression. For cases of qualified
2515             --  expressions in the source, this is always the case, but
2516             --  for generated qualifications, there may be no explicit
2517             --  parentheses present.
2518
2519             if Paren_Count (Expression (Node)) /= 0 then
2520                Sprint_Node (Expression (Node));
2521             else
2522                Write_Char ('(');
2523                Sprint_Node (Expression (Node));
2524                Write_Char (')');
2525             end if;
2526
2527          when N_Raise_Constraint_Error =>
2528
2529             --  This node can be used either as a subexpression or as a
2530             --  statement form. The following test is a reasonably reliable
2531             --  way to distinguish the two cases.
2532
2533             if Is_List_Member (Node)
2534               and then Nkind (Parent (Node)) not in N_Subexpr
2535             then
2536                Write_Indent;
2537             end if;
2538
2539             Write_Str_With_Col_Check_Sloc ("[constraint_error");
2540             Write_Condition_And_Reason (Node);
2541
2542          when N_Raise_Program_Error =>
2543
2544             --  This node can be used either as a subexpression or as a
2545             --  statement form. The following test is a reasonably reliable
2546             --  way to distinguish the two cases.
2547
2548             if Is_List_Member (Node)
2549               and then Nkind (Parent (Node)) not in N_Subexpr
2550             then
2551                Write_Indent;
2552             end if;
2553
2554             Write_Str_With_Col_Check_Sloc ("[program_error");
2555             Write_Condition_And_Reason (Node);
2556
2557          when N_Raise_Storage_Error =>
2558
2559             --  This node can be used either as a subexpression or as a
2560             --  statement form. The following test is a reasonably reliable
2561             --  way to distinguish the two cases.
2562
2563             if Is_List_Member (Node)
2564               and then Nkind (Parent (Node)) not in N_Subexpr
2565             then
2566                Write_Indent;
2567             end if;
2568
2569             Write_Str_With_Col_Check_Sloc ("[storage_error");
2570             Write_Condition_And_Reason (Node);
2571
2572          when N_Raise_Statement =>
2573             Write_Indent_Str_Sloc ("raise ");
2574             Sprint_Node (Name (Node));
2575             Write_Char (';');
2576
2577          when N_Range =>
2578             Sprint_Node (Low_Bound (Node));
2579             Write_Str_Sloc (" .. ");
2580             Sprint_Node (High_Bound (Node));
2581             Update_Itype (Node);
2582
2583          when N_Range_Constraint =>
2584             Write_Str_With_Col_Check_Sloc ("range ");
2585             Sprint_Node (Range_Expression (Node));
2586
2587          when N_Real_Literal =>
2588             Write_Ureal_With_Col_Check_Sloc (Realval (Node));
2589
2590          when N_Real_Range_Specification =>
2591             Write_Str_With_Col_Check_Sloc ("range ");
2592             Sprint_Node (Low_Bound (Node));
2593             Write_Str (" .. ");
2594             Sprint_Node (High_Bound (Node));
2595
2596          when N_Record_Definition =>
2597             if Abstract_Present (Node) then
2598                Write_Str_With_Col_Check ("abstract ");
2599             end if;
2600
2601             if Tagged_Present (Node) then
2602                Write_Str_With_Col_Check ("tagged ");
2603             end if;
2604
2605             if Limited_Present (Node) then
2606                Write_Str_With_Col_Check ("limited ");
2607             end if;
2608
2609             if Null_Present (Node) then
2610                Write_Str_With_Col_Check_Sloc ("null record");
2611
2612             else
2613                Write_Str_With_Col_Check_Sloc ("record");
2614                Sprint_Node (Component_List (Node));
2615                Write_Indent_Str ("end record");
2616             end if;
2617
2618          when N_Record_Representation_Clause =>
2619             Write_Indent_Str_Sloc ("for ");
2620             Sprint_Node (Identifier (Node));
2621             Write_Str_With_Col_Check (" use record ");
2622
2623             if Present (Mod_Clause (Node)) then
2624                Sprint_Node (Mod_Clause (Node));
2625             end if;
2626
2627             Sprint_Indented_List (Component_Clauses (Node));
2628             Write_Indent_Str ("end record;");
2629
2630          when N_Reference =>
2631             Sprint_Node (Prefix (Node));
2632             Write_Str_With_Col_Check_Sloc ("'reference");
2633
2634          when N_Requeue_Statement =>
2635             Write_Indent_Str_Sloc ("requeue ");
2636             Sprint_Node (Name (Node));
2637
2638             if Abort_Present (Node) then
2639                Write_Str_With_Col_Check (" with abort");
2640             end if;
2641
2642             Write_Char (';');
2643
2644          when N_Simple_Return_Statement =>
2645             if Present (Expression (Node)) then
2646                Write_Indent_Str_Sloc ("return ");
2647                Sprint_Node (Expression (Node));
2648                Write_Char (';');
2649             else
2650                Write_Indent_Str_Sloc ("return;");
2651             end if;
2652
2653          when N_Selective_Accept =>
2654             Write_Indent_Str_Sloc ("select");
2655
2656             declare
2657                Alt_Node : Node_Id;
2658             begin
2659                Alt_Node := First (Select_Alternatives (Node));
2660                loop
2661                   Indent_Begin;
2662                   Sprint_Node (Alt_Node);
2663                   Indent_End;
2664                   Next (Alt_Node);
2665                   exit when No (Alt_Node);
2666                   Write_Indent_Str ("or");
2667                end loop;
2668             end;
2669
2670             if Present (Else_Statements (Node)) then
2671                Write_Indent_Str ("else");
2672                Sprint_Indented_List (Else_Statements (Node));
2673             end if;
2674
2675             Write_Indent_Str ("end select;");
2676
2677          when N_Signed_Integer_Type_Definition =>
2678             Write_Str_With_Col_Check_Sloc ("range ");
2679             Sprint_Node (Low_Bound (Node));
2680             Write_Str (" .. ");
2681             Sprint_Node (High_Bound (Node));
2682
2683          when N_Single_Protected_Declaration =>
2684             Write_Indent_Str_Sloc ("protected ");
2685             Write_Id (Defining_Identifier (Node));
2686             Write_Str (" is");
2687             Sprint_Node (Protected_Definition (Node));
2688             Write_Id (Defining_Identifier (Node));
2689             Write_Char (';');
2690
2691          when N_Single_Task_Declaration =>
2692             Write_Indent_Str_Sloc ("task ");
2693             Sprint_Node (Defining_Identifier (Node));
2694
2695             if Present (Task_Definition (Node)) then
2696                Write_Str (" is");
2697                Sprint_Node (Task_Definition (Node));
2698             end if;
2699
2700             Write_Char (';');
2701
2702          when N_Selected_Component =>
2703             Sprint_Node (Prefix (Node));
2704             Write_Char_Sloc ('.');
2705             Sprint_Node (Selector_Name (Node));
2706
2707          when N_Slice =>
2708             Set_Debug_Sloc;
2709             Sprint_Node (Prefix (Node));
2710             Write_Str_With_Col_Check (" (");
2711             Sprint_Node (Discrete_Range (Node));
2712             Write_Char (')');
2713
2714          when N_String_Literal =>
2715             if String_Length (Strval (Node)) + Column > 75 then
2716                Write_Indent_Str ("  ");
2717             end if;
2718
2719             Set_Debug_Sloc;
2720             Write_String_Table_Entry (Strval (Node));
2721
2722          when N_Subprogram_Body =>
2723
2724             --  Output extra blank line unless we are in freeze actions
2725
2726             if Freeze_Indent = 0 then
2727                Extra_Blank_Line;
2728             end if;
2729
2730             Write_Indent;
2731             Sprint_Node_Sloc (Specification (Node));
2732             Write_Str (" is");
2733
2734             Sprint_Indented_List (Declarations (Node));
2735             Write_Indent_Str ("begin");
2736             Sprint_Node (Handled_Statement_Sequence (Node));
2737
2738             Write_Indent_Str ("end ");
2739
2740             Sprint_End_Label
2741               (Handled_Statement_Sequence (Node),
2742                  Defining_Unit_Name (Specification (Node)));
2743             Write_Char (';');
2744
2745             if Is_List_Member (Node)
2746               and then Present (Next (Node))
2747               and then Nkind (Next (Node)) /= N_Subprogram_Body
2748             then
2749                Write_Indent;
2750             end if;
2751
2752          when N_Subprogram_Body_Stub =>
2753             Write_Indent;
2754             Sprint_Node_Sloc (Specification (Node));
2755             Write_Str_With_Col_Check (" is separate;");
2756
2757          when N_Subprogram_Declaration =>
2758             Write_Indent;
2759             Sprint_Node_Sloc (Specification (Node));
2760
2761             if Nkind (Specification (Node)) = N_Procedure_Specification
2762               and then Null_Present (Specification (Node))
2763             then
2764                Write_Str_With_Col_Check (" is null");
2765             end if;
2766
2767             Write_Char (';');
2768
2769          when N_Subprogram_Info =>
2770             Sprint_Node (Identifier (Node));
2771             Write_Str_With_Col_Check_Sloc ("'subprogram_info");
2772
2773          when N_Subprogram_Renaming_Declaration =>
2774             Write_Indent;
2775             Sprint_Node (Specification (Node));
2776             Write_Str_With_Col_Check_Sloc (" renames ");
2777             Sprint_Node (Name (Node));
2778             Write_Char (';');
2779
2780          when N_Subtype_Declaration =>
2781             Write_Indent_Str_Sloc ("subtype ");
2782             Sprint_Node (Defining_Identifier (Node));
2783             Write_Str (" is ");
2784
2785             --  Ada 2005 (AI-231)
2786
2787             if Null_Exclusion_Present (Node) then
2788                Write_Str ("not null ");
2789             end if;
2790
2791             Sprint_Node (Subtype_Indication (Node));
2792             Write_Char (';');
2793
2794          when N_Subtype_Indication =>
2795             Sprint_Node_Sloc (Subtype_Mark (Node));
2796             Write_Char (' ');
2797             Sprint_Node (Constraint (Node));
2798
2799          when N_Subunit =>
2800             Write_Indent_Str_Sloc ("separate (");
2801             Sprint_Node (Name (Node));
2802             Write_Char (')');
2803             Extra_Blank_Line;
2804             Sprint_Node (Proper_Body (Node));
2805
2806          when N_Task_Body =>
2807             Write_Indent_Str_Sloc ("task body ");
2808             Write_Id (Defining_Identifier (Node));
2809             Write_Str (" is");
2810             Sprint_Indented_List (Declarations (Node));
2811             Write_Indent_Str ("begin");
2812             Sprint_Node (Handled_Statement_Sequence (Node));
2813             Write_Indent_Str ("end ");
2814             Sprint_End_Label
2815               (Handled_Statement_Sequence (Node), Defining_Identifier (Node));
2816             Write_Char (';');
2817
2818          when N_Task_Body_Stub =>
2819             Write_Indent_Str_Sloc ("task body ");
2820             Write_Id (Defining_Identifier (Node));
2821             Write_Str_With_Col_Check (" is separate;");
2822
2823          when N_Task_Definition =>
2824             Set_Debug_Sloc;
2825             Sprint_Indented_List (Visible_Declarations (Node));
2826
2827             if Present (Private_Declarations (Node)) then
2828                Write_Indent_Str ("private");
2829                Sprint_Indented_List (Private_Declarations (Node));
2830             end if;
2831
2832             Write_Indent_Str ("end ");
2833             Sprint_End_Label (Node, Defining_Identifier (Parent (Node)));
2834
2835          when N_Task_Type_Declaration =>
2836             Write_Indent_Str_Sloc ("task type ");
2837             Sprint_Node (Defining_Identifier (Node));
2838             Write_Discr_Specs (Node);
2839
2840             if Present (Interface_List (Node)) then
2841                Write_Str (" is new ");
2842                Sprint_And_List (Interface_List (Node));
2843             end if;
2844
2845             if Present (Task_Definition (Node)) then
2846                if No (Interface_List (Node)) then
2847                   Write_Str (" is");
2848                else
2849                   Write_Str (" with ");
2850                end if;
2851
2852                Sprint_Node (Task_Definition (Node));
2853             end if;
2854
2855             Write_Char (';');
2856
2857          when N_Terminate_Alternative =>
2858             Sprint_Node_List (Pragmas_Before (Node));
2859
2860             Write_Indent;
2861
2862             if Present (Condition (Node)) then
2863                Write_Str_With_Col_Check ("when ");
2864                Sprint_Node (Condition (Node));
2865                Write_Str (" => ");
2866             end if;
2867
2868             Write_Str_With_Col_Check_Sloc ("terminate;");
2869             Sprint_Node_List (Pragmas_After (Node));
2870
2871          when N_Timed_Entry_Call =>
2872             Write_Indent_Str_Sloc ("select");
2873             Indent_Begin;
2874             Sprint_Node (Entry_Call_Alternative (Node));
2875             Indent_End;
2876             Write_Indent_Str ("or");
2877             Indent_Begin;
2878             Sprint_Node (Delay_Alternative (Node));
2879             Indent_End;
2880             Write_Indent_Str ("end select;");
2881
2882          when N_Triggering_Alternative =>
2883             Sprint_Node_List (Pragmas_Before (Node));
2884             Sprint_Node_Sloc (Triggering_Statement (Node));
2885             Sprint_Node_List (Statements (Node));
2886
2887          when N_Type_Conversion =>
2888             Set_Debug_Sloc;
2889             Sprint_Node (Subtype_Mark (Node));
2890             Col_Check (4);
2891
2892             if Conversion_OK (Node) then
2893                Write_Char ('?');
2894             end if;
2895
2896             if Float_Truncate (Node) then
2897                Write_Char ('^');
2898             end if;
2899
2900             if Rounded_Result (Node) then
2901                Write_Char ('@');
2902             end if;
2903
2904             Write_Char ('(');
2905             Sprint_Node (Expression (Node));
2906             Write_Char (')');
2907
2908          when N_Unchecked_Expression =>
2909             Col_Check (10);
2910             Write_Str ("`(");
2911             Sprint_Node_Sloc (Expression (Node));
2912             Write_Char (')');
2913
2914          when N_Unchecked_Type_Conversion =>
2915             Sprint_Node (Subtype_Mark (Node));
2916             Write_Char ('!');
2917             Write_Str_With_Col_Check ("(");
2918             Sprint_Node_Sloc (Expression (Node));
2919             Write_Char (')');
2920
2921          when N_Unconstrained_Array_Definition =>
2922             Write_Str_With_Col_Check_Sloc ("array (");
2923
2924             declare
2925                Node1 : Node_Id;
2926             begin
2927                Node1 := First (Subtype_Marks (Node));
2928                loop
2929                   Sprint_Node (Node1);
2930                   Write_Str_With_Col_Check (" range <>");
2931                   Next (Node1);
2932                   exit when Node1 = Empty;
2933                   Write_Str (", ");
2934                end loop;
2935             end;
2936
2937             Write_Str (") of ");
2938             Sprint_Node (Component_Definition (Node));
2939
2940          when N_Unused_At_Start | N_Unused_At_End =>
2941             Write_Indent_Str ("***** Error, unused node encountered *****");
2942             Write_Eol;
2943
2944          when N_Use_Package_Clause =>
2945             Write_Indent_Str_Sloc ("use ");
2946             Sprint_Comma_List (Names (Node));
2947             Write_Char (';');
2948
2949          when N_Use_Type_Clause =>
2950             Write_Indent_Str_Sloc ("use type ");
2951             Sprint_Comma_List (Subtype_Marks (Node));
2952             Write_Char (';');
2953
2954          when N_Validate_Unchecked_Conversion =>
2955             Write_Indent_Str_Sloc ("validate unchecked_conversion (");
2956             Sprint_Node (Source_Type (Node));
2957             Write_Str (", ");
2958             Sprint_Node (Target_Type (Node));
2959             Write_Str (");");
2960
2961          when N_Variant =>
2962             Write_Indent_Str_Sloc ("when ");
2963             Sprint_Bar_List (Discrete_Choices (Node));
2964             Write_Str (" => ");
2965             Sprint_Node (Component_List (Node));
2966
2967          when N_Variant_Part =>
2968             Indent_Begin;
2969             Write_Indent_Str_Sloc ("case ");
2970             Sprint_Node (Name (Node));
2971             Write_Str (" is ");
2972             Sprint_Indented_List (Variants (Node));
2973             Write_Indent_Str ("end case");
2974             Indent_End;
2975
2976          when N_With_Clause =>
2977
2978             --  Special test, if we are dumping the original tree only,
2979             --  then we want to eliminate the bogus with clauses that
2980             --  correspond to the non-existent children of Text_IO.
2981
2982             if Dump_Original_Only
2983               and then Is_Text_IO_Kludge_Unit (Name (Node))
2984             then
2985                null;
2986
2987             --  Normal case, output the with clause
2988
2989             else
2990                if First_Name (Node) or else not Dump_Original_Only then
2991
2992                   --  Ada 2005 (AI-50217): Print limited with_clauses
2993
2994                   if Private_Present (Node) and Limited_Present (Node) then
2995                      Write_Indent_Str ("limited private with ");
2996
2997                   elsif Private_Present (Node) then
2998                      Write_Indent_Str ("private with ");
2999
3000                   elsif Limited_Present (Node) then
3001                      Write_Indent_Str ("limited with ");
3002
3003                   else
3004                      Write_Indent_Str ("with ");
3005                   end if;
3006
3007                else
3008                   Write_Str (", ");
3009                end if;
3010
3011                Sprint_Node_Sloc (Name (Node));
3012
3013                if Last_Name (Node) or else not Dump_Original_Only then
3014                   Write_Char (';');
3015                end if;
3016             end if;
3017
3018       end case;
3019
3020       if Nkind (Node) in N_Subexpr
3021         and then Do_Range_Check (Node)
3022       then
3023          Write_Str ("}");
3024       end if;
3025
3026       for J in 1 .. Paren_Count (Node) loop
3027          Write_Char (')');
3028       end loop;
3029
3030       Dump_Node := Save_Dump_Node;
3031    end Sprint_Node_Actual;
3032
3033    ----------------------
3034    -- Sprint_Node_List --
3035    ----------------------
3036
3037    procedure Sprint_Node_List (List : List_Id) is
3038       Node : Node_Id;
3039
3040    begin
3041       if Is_Non_Empty_List (List) then
3042          Node := First (List);
3043
3044          loop
3045             Sprint_Node (Node);
3046             Next (Node);
3047             exit when Node = Empty;
3048          end loop;
3049       end if;
3050    end Sprint_Node_List;
3051
3052    ----------------------
3053    -- Sprint_Node_Sloc --
3054    ----------------------
3055
3056    procedure Sprint_Node_Sloc (Node : Node_Id) is
3057    begin
3058       Sprint_Node (Node);
3059
3060       if Debug_Generated_Code and then Present (Dump_Node) then
3061          Set_Sloc (Dump_Node, Sloc (Node));
3062          Dump_Node := Empty;
3063       end if;
3064    end Sprint_Node_Sloc;
3065
3066    ---------------------
3067    -- Sprint_Opt_Node --
3068    ---------------------
3069
3070    procedure Sprint_Opt_Node (Node : Node_Id) is
3071    begin
3072       if Present (Node) then
3073          Write_Char (' ');
3074          Sprint_Node (Node);
3075       end if;
3076    end Sprint_Opt_Node;
3077
3078    --------------------------
3079    -- Sprint_Opt_Node_List --
3080    --------------------------
3081
3082    procedure Sprint_Opt_Node_List (List : List_Id) is
3083    begin
3084       if Present (List) then
3085          Sprint_Node_List (List);
3086       end if;
3087    end Sprint_Opt_Node_List;
3088
3089    ---------------------------------
3090    -- Sprint_Opt_Paren_Comma_List --
3091    ---------------------------------
3092
3093    procedure Sprint_Opt_Paren_Comma_List (List : List_Id) is
3094    begin
3095       if Is_Non_Empty_List (List) then
3096          Write_Char (' ');
3097          Sprint_Paren_Comma_List (List);
3098       end if;
3099    end Sprint_Opt_Paren_Comma_List;
3100
3101    -----------------------------
3102    -- Sprint_Paren_Comma_List --
3103    -----------------------------
3104
3105    procedure Sprint_Paren_Comma_List (List : List_Id) is
3106       N           : Node_Id;
3107       Node_Exists : Boolean := False;
3108
3109    begin
3110
3111       if Is_Non_Empty_List (List) then
3112
3113          if Dump_Original_Only then
3114             N := First (List);
3115             while Present (N) loop
3116                if not Is_Rewrite_Insertion (N) then
3117                   Node_Exists := True;
3118                   exit;
3119                end if;
3120
3121                Next (N);
3122             end loop;
3123
3124             if not Node_Exists then
3125                return;
3126             end if;
3127          end if;
3128
3129          Write_Str_With_Col_Check ("(");
3130          Sprint_Comma_List (List);
3131          Write_Char (')');
3132       end if;
3133    end Sprint_Paren_Comma_List;
3134
3135    ----------------------
3136    -- Sprint_Right_Opnd --
3137    ----------------------
3138
3139    procedure Sprint_Right_Opnd (N : Node_Id) is
3140       Opnd : constant Node_Id := Right_Opnd (N);
3141
3142    begin
3143       if Paren_Count (Opnd) /= 0
3144         or else Op_Prec (Nkind (Opnd)) > Op_Prec (Nkind (N))
3145       then
3146          Sprint_Node (Opnd);
3147
3148       else
3149          Write_Char ('(');
3150          Sprint_Node (Opnd);
3151          Write_Char (')');
3152       end if;
3153    end Sprint_Right_Opnd;
3154
3155    ------------------
3156    -- Update_Itype --
3157    ------------------
3158
3159    procedure Update_Itype (Node : Node_Id) is
3160    begin
3161       if Present (Etype (Node))
3162         and then Is_Itype (Etype (Node))
3163         and then Debug_Generated_Code
3164       then
3165          Set_Sloc (Etype (Node), Sloc (Node));
3166       end if;
3167    end Update_Itype;
3168
3169    ---------------------
3170    -- Write_Char_Sloc --
3171    ---------------------
3172
3173    procedure Write_Char_Sloc (C : Character) is
3174    begin
3175       if Debug_Generated_Code and then C /= ' ' then
3176          Set_Debug_Sloc;
3177       end if;
3178
3179       Write_Char (C);
3180    end Write_Char_Sloc;
3181
3182    --------------------------------
3183    -- Write_Condition_And_Reason --
3184    --------------------------------
3185
3186    procedure Write_Condition_And_Reason (Node : Node_Id) is
3187       Cond  : constant Node_Id := Condition (Node);
3188       Image : constant String  := RT_Exception_Code'Image
3189                                     (RT_Exception_Code'Val
3190                                        (UI_To_Int (Reason (Node))));
3191
3192    begin
3193       if Present (Cond) then
3194
3195          --  If condition is a single entity, or NOT with a single entity,
3196          --  output all on one line, since it will likely fit just fine.
3197
3198          if Is_Entity_Name (Cond)
3199            or else (Nkind (Cond) = N_Op_Not
3200                      and then Is_Entity_Name (Right_Opnd (Cond)))
3201          then
3202             Write_Str_With_Col_Check (" when ");
3203             Sprint_Node (Cond);
3204             Write_Char (' ');
3205
3206             --  Otherwise for more complex condition, multiple lines
3207
3208          else
3209             Write_Str_With_Col_Check (" when");
3210             Indent := Indent + 2;
3211             Write_Indent;
3212             Sprint_Node (Cond);
3213             Write_Indent;
3214             Indent := Indent - 2;
3215          end if;
3216
3217       --  If no condition, just need a space (all on one line)
3218
3219       else
3220          Write_Char (' ');
3221       end if;
3222
3223       --  Write the reason
3224
3225       Write_Char ('"');
3226
3227       for J in 4 .. Image'Last loop
3228          if Image (J) = '_' then
3229             Write_Char (' ');
3230          else
3231             Write_Char (Fold_Lower (Image (J)));
3232          end if;
3233       end loop;
3234
3235       Write_Str ("""]");
3236    end Write_Condition_And_Reason;
3237
3238    --------------------------------
3239    -- Write_Corresponding_Source --
3240    --------------------------------
3241
3242    procedure Write_Corresponding_Source (S : String) is
3243       Loc : Source_Ptr;
3244       Src : Source_Buffer_Ptr;
3245
3246    begin
3247       --  Ignore if not in dump source text mode, or if in freeze actions
3248
3249       if Dump_Source_Text and then Freeze_Indent = 0 then
3250
3251          --  Ignore null string
3252
3253          if S = "" then
3254             return;
3255          end if;
3256
3257          --  Ignore space or semicolon at end of given string
3258
3259          if S (S'Last) = ' ' or else S (S'Last) = ';' then
3260             Write_Corresponding_Source (S (S'First .. S'Last - 1));
3261             return;
3262          end if;
3263
3264          --  Loop to look at next lines not yet printed in source file
3265
3266          for L in
3267            Last_Line_Printed + 1 .. Last_Source_Line (Current_Source_File)
3268          loop
3269             Src := Source_Text (Current_Source_File);
3270             Loc := Line_Start (L, Current_Source_File);
3271
3272             --  If comment, keep looking
3273
3274             if Src (Loc .. Loc + 1) = "--" then
3275                null;
3276
3277             --  Search to first non-blank
3278
3279             else
3280                while Src (Loc) not in Line_Terminator loop
3281
3282                   --  Non-blank found
3283
3284                   if Src (Loc) /= ' ' and then Src (Loc) /= ASCII.HT then
3285
3286                      --  Loop through characters in string to see if we match
3287
3288                      for J in S'Range loop
3289
3290                         --  If mismatch, then not the case we are looking for
3291
3292                         if Src (Loc) /= S (J) then
3293                            return;
3294                         end if;
3295
3296                         Loc := Loc + 1;
3297                      end loop;
3298
3299                      --  If we fall through, string matched, if white space or
3300                      --  semicolon after the matched string, this is the case
3301                      --  we are looking for.
3302
3303                      if Src (Loc) in Line_Terminator
3304                        or else Src (Loc) = ' '
3305                        or else Src (Loc) = ASCII.HT
3306                        or else Src (Loc) = ';'
3307                      then
3308                         --  So output source lines up to and including this one
3309
3310                         Write_Source_Lines (L);
3311                         return;
3312                      end if;
3313                   end if;
3314
3315                   Loc := Loc + 1;
3316                end loop;
3317             end if;
3318
3319          --  Line was all blanks, or a comment line, keep looking
3320
3321          end loop;
3322       end if;
3323    end Write_Corresponding_Source;
3324
3325    -----------------------
3326    -- Write_Discr_Specs --
3327    -----------------------
3328
3329    procedure Write_Discr_Specs (N : Node_Id) is
3330       Specs : List_Id;
3331       Spec  : Node_Id;
3332
3333    begin
3334       Specs := Discriminant_Specifications (N);
3335
3336       if Present (Specs) then
3337          Write_Str_With_Col_Check (" (");
3338          Spec := First (Specs);
3339
3340          loop
3341             Sprint_Node (Spec);
3342             Next (Spec);
3343             exit when Spec = Empty;
3344
3345             --  Add semicolon, unless we are printing original tree and the
3346             --  next specification is part of a list (but not the first
3347             --  element of that list)
3348
3349             if not Dump_Original_Only or else not Prev_Ids (Spec) then
3350                Write_Str ("; ");
3351             end if;
3352          end loop;
3353
3354          Write_Char (')');
3355       end if;
3356    end Write_Discr_Specs;
3357
3358    -----------------
3359    -- Write_Ekind --
3360    -----------------
3361
3362    procedure Write_Ekind (E : Entity_Id) is
3363       S : constant String := Entity_Kind'Image (Ekind (E));
3364
3365    begin
3366       Name_Len := S'Length;
3367       Name_Buffer (1 .. Name_Len) := S;
3368       Set_Casing (Mixed_Case);
3369       Write_Str_With_Col_Check (Name_Buffer (1 .. Name_Len));
3370    end Write_Ekind;
3371
3372    --------------
3373    -- Write_Id --
3374    --------------
3375
3376    procedure Write_Id (N : Node_Id) is
3377    begin
3378       --  Deal with outputting Itype
3379
3380       --  Note: if we are printing the full tree with -gnatds, then we may
3381       --  end up picking up the Associated_Node link from a generic template
3382       --  here which overlaps the Entity field, but as documented, Write_Itype
3383       --  is defended against junk calls.
3384
3385       if Nkind (N) in N_Entity then
3386          Write_Itype (N);
3387       elsif Nkind (N) in N_Has_Entity then
3388          Write_Itype (Entity (N));
3389       end if;
3390
3391       --  Case of a defining identifier
3392
3393       if Nkind (N) = N_Defining_Identifier then
3394
3395          --  If defining identifier has an interface name (and no
3396          --  address clause), then we output the interface name.
3397
3398          if (Is_Imported (N) or else Is_Exported (N))
3399            and then Present (Interface_Name (N))
3400            and then No (Address_Clause (N))
3401          then
3402             String_To_Name_Buffer (Strval (Interface_Name (N)));
3403             Write_Str_With_Col_Check (Name_Buffer (1 .. Name_Len));
3404
3405          --  If no interface name (or inactive because there was
3406          --  an address clause), then just output the Chars name.
3407
3408          else
3409             Write_Name_With_Col_Check (Chars (N));
3410          end if;
3411
3412       --  Case of selector of an expanded name where the expanded name
3413       --  has an associated entity, output this entity.
3414
3415       elsif Nkind (Parent (N)) = N_Expanded_Name
3416         and then Selector_Name (Parent (N)) = N
3417         and then Present (Entity (Parent (N)))
3418       then
3419          Write_Id (Entity (Parent (N)));
3420
3421       --  For any other node with an associated entity, output it
3422
3423       elsif Nkind (N) in N_Has_Entity
3424         and then Present (Entity_Or_Associated_Node (N))
3425         and then Nkind (Entity_Or_Associated_Node (N)) in N_Entity
3426       then
3427          Write_Id (Entity (N));
3428
3429       --  All other cases, we just print the Chars field
3430
3431       else
3432          Write_Name_With_Col_Check (Chars (N));
3433       end if;
3434    end Write_Id;
3435
3436    -----------------------
3437    -- Write_Identifiers --
3438    -----------------------
3439
3440    function Write_Identifiers (Node : Node_Id) return Boolean is
3441    begin
3442       Sprint_Node (Defining_Identifier (Node));
3443       Update_Itype (Defining_Identifier (Node));
3444
3445       --  The remainder of the declaration must be printed unless we are
3446       --  printing the original tree and this is not the last identifier
3447
3448       return
3449          not Dump_Original_Only or else not More_Ids (Node);
3450
3451    end Write_Identifiers;
3452
3453    ------------------------
3454    -- Write_Implicit_Def --
3455    ------------------------
3456
3457    procedure Write_Implicit_Def (E : Entity_Id) is
3458       Ind : Node_Id;
3459
3460    begin
3461       case Ekind (E) is
3462          when E_Array_Subtype =>
3463             Write_Str_With_Col_Check ("subtype ");
3464             Write_Id (E);
3465             Write_Str_With_Col_Check (" is ");
3466             Write_Id (Base_Type (E));
3467             Write_Str_With_Col_Check (" (");
3468
3469             Ind := First_Index (E);
3470             while Present (Ind) loop
3471                Sprint_Node (Ind);
3472                Next_Index (Ind);
3473
3474                if Present (Ind) then
3475                   Write_Str (", ");
3476                end if;
3477             end loop;
3478
3479             Write_Str (");");
3480
3481          when E_Signed_Integer_Subtype | E_Enumeration_Subtype =>
3482             Write_Str_With_Col_Check ("subtype ");
3483             Write_Id (E);
3484             Write_Str (" is ");
3485             Write_Id (Etype (E));
3486             Write_Str_With_Col_Check (" range ");
3487             Sprint_Node (Scalar_Range (E));
3488             Write_Str (";");
3489
3490          when others =>
3491             Write_Str_With_Col_Check ("type ");
3492             Write_Id (E);
3493             Write_Str_With_Col_Check (" is <");
3494             Write_Ekind (E);
3495             Write_Str (">;");
3496       end case;
3497
3498    end Write_Implicit_Def;
3499
3500    ------------------
3501    -- Write_Indent --
3502    ------------------
3503
3504    procedure Write_Indent is
3505       Loc : constant Source_Ptr := Sloc (Dump_Node);
3506
3507    begin
3508       if Indent_Annull_Flag then
3509          Indent_Annull_Flag := False;
3510       else
3511          --  Deal with Dump_Source_Text output. Note that we ignore implicit
3512          --  label declarations, since they typically have the sloc of the
3513          --  corresponding label, which really messes up the -gnatL output.
3514
3515          if Dump_Source_Text
3516            and then Loc > No_Location
3517            and then Nkind (Dump_Node) /= N_Implicit_Label_Declaration
3518          then
3519             if Get_Source_File_Index (Loc) = Current_Source_File then
3520                Write_Source_Lines
3521                  (Get_Physical_Line_Number (Sloc (Dump_Node)));
3522             end if;
3523          end if;
3524
3525          Write_Eol;
3526
3527          for J in 1 .. Indent loop
3528             Write_Char (' ');
3529          end loop;
3530       end if;
3531    end Write_Indent;
3532
3533    ------------------------------
3534    -- Write_Indent_Identifiers --
3535    ------------------------------
3536
3537    function Write_Indent_Identifiers (Node : Node_Id) return Boolean is
3538    begin
3539       --  We need to start a new line for every node, except in the case
3540       --  where we are printing the original tree and this is not the first
3541       --  defining identifier in the list.
3542
3543       if not Dump_Original_Only or else not Prev_Ids (Node) then
3544          Write_Indent;
3545
3546       --  If printing original tree and this is not the first defining
3547       --  identifier in the list, then the previous call to this procedure
3548       --  printed only the name, and we add a comma to separate the names.
3549
3550       else
3551          Write_Str (", ");
3552       end if;
3553
3554       Sprint_Node (Defining_Identifier (Node));
3555
3556       --  The remainder of the declaration must be printed unless we are
3557       --  printing the original tree and this is not the last identifier
3558
3559       return
3560          not Dump_Original_Only or else not More_Ids (Node);
3561    end Write_Indent_Identifiers;
3562
3563    -----------------------------------
3564    -- Write_Indent_Identifiers_Sloc --
3565    -----------------------------------
3566
3567    function Write_Indent_Identifiers_Sloc (Node : Node_Id) return Boolean is
3568    begin
3569       --  We need to start a new line for every node, except in the case
3570       --  where we are printing the original tree and this is not the first
3571       --  defining identifier in the list.
3572
3573       if not Dump_Original_Only or else not Prev_Ids (Node) then
3574          Write_Indent;
3575
3576       --  If printing original tree and this is not the first defining
3577       --  identifier in the list, then the previous call to this procedure
3578       --  printed only the name, and we add a comma to separate the names.
3579
3580       else
3581          Write_Str (", ");
3582       end if;
3583
3584       Set_Debug_Sloc;
3585       Sprint_Node (Defining_Identifier (Node));
3586
3587       --  The remainder of the declaration must be printed unless we are
3588       --  printing the original tree and this is not the last identifier
3589
3590       return not Dump_Original_Only or else not More_Ids (Node);
3591    end Write_Indent_Identifiers_Sloc;
3592
3593    ----------------------
3594    -- Write_Indent_Str --
3595    ----------------------
3596
3597    procedure Write_Indent_Str (S : String) is
3598    begin
3599       Write_Corresponding_Source (S);
3600       Write_Indent;
3601       Write_Str (S);
3602    end Write_Indent_Str;
3603
3604    ---------------------------
3605    -- Write_Indent_Str_Sloc --
3606    ---------------------------
3607
3608    procedure Write_Indent_Str_Sloc (S : String) is
3609    begin
3610       Write_Corresponding_Source (S);
3611       Write_Indent;
3612       Write_Str_Sloc (S);
3613    end Write_Indent_Str_Sloc;
3614
3615    -----------------
3616    -- Write_Itype --
3617    -----------------
3618
3619    procedure Write_Itype (Typ : Entity_Id) is
3620
3621       procedure Write_Header (T : Boolean := True);
3622       --  Write type if T is True, subtype if T is false
3623
3624       ------------------
3625       -- Write_Header --
3626       ------------------
3627
3628       procedure Write_Header (T : Boolean := True) is
3629       begin
3630          if T then
3631             Write_Str ("[type ");
3632          else
3633             Write_Str ("[subtype ");
3634          end if;
3635
3636          Write_Name_With_Col_Check (Chars (Typ));
3637          Write_Str (" is ");
3638       end Write_Header;
3639
3640    --  Start of processing for Write_Itype
3641
3642    begin
3643       if Nkind (Typ) in N_Entity
3644         and then Is_Itype (Typ)
3645         and then not Itype_Printed (Typ)
3646       then
3647          --  Itype to be printed
3648
3649          declare
3650             B : constant Node_Id := Etype (Typ);
3651             X : Node_Id;
3652             P : constant Node_Id := Parent (Typ);
3653
3654             S : constant Saved_Output_Buffer := Save_Output_Buffer;
3655             --  Save current output buffer
3656
3657             Old_Sloc : Source_Ptr;
3658             --  Save sloc of related node, so it is not modified when
3659             --  printing with -gnatD.
3660
3661          begin
3662             --  Write indentation at start of line
3663
3664             for J in 1 .. Indent loop
3665                Write_Char (' ');
3666             end loop;
3667
3668             --  If we have a constructed declaration, print it
3669
3670             if Present (P) and then Nkind (P) in N_Declaration then
3671
3672                --  We must set Itype_Printed true before the recursive call to
3673                --  print the node, otherwise we get an infinite recursion!
3674
3675                Set_Itype_Printed (Typ, True);
3676
3677                --  Write the declaration enclosed in [], avoiding new line
3678                --  at start of declaration, and semicolon at end.
3679
3680                --  Note: The itype may be imported from another unit, in which
3681                --  case we do not want to modify the Sloc of the declaration.
3682                --  Otherwise the itype may appear to be in the current unit,
3683                --  and the back-end will reject a reference out of scope.
3684
3685                Write_Char ('[');
3686                Indent_Annull_Flag := True;
3687                Old_Sloc := Sloc (P);
3688                Sprint_Node (P);
3689                Set_Sloc (P, Old_Sloc);
3690                Write_Erase_Char (';');
3691
3692             --  If no constructed declaration, then we have to concoct the
3693             --  source corresponding to the type entity that we have at hand.
3694
3695             else
3696                case Ekind (Typ) is
3697
3698                   --  Access types and subtypes
3699
3700                   when Access_Kind =>
3701                      Write_Header (Ekind (Typ) = E_Access_Type);
3702                      Write_Str ("access ");
3703
3704                      if Is_Access_Constant (Typ) then
3705                         Write_Str ("constant ");
3706                      elsif Can_Never_Be_Null (Typ) then
3707                         Write_Str ("not null ");
3708                      end if;
3709
3710                      Write_Id (Directly_Designated_Type (Typ));
3711
3712                      --  Array types and string types
3713
3714                   when E_Array_Type | E_String_Type =>
3715                      Write_Header;
3716                      Write_Str ("array (");
3717
3718                      X := First_Index (Typ);
3719                      loop
3720                         Sprint_Node (X);
3721
3722                         if not Is_Constrained (Typ) then
3723                            Write_Str (" range <>");
3724                         end if;
3725
3726                         Next_Index (X);
3727                         exit when No (X);
3728                         Write_Str (", ");
3729                      end loop;
3730
3731                      Write_Str (") of ");
3732                      Sprint_Node (Component_Type (Typ));
3733
3734                      --  Array subtypes and string subtypes
3735
3736                   when E_Array_Subtype | E_String_Subtype =>
3737                      Write_Header (False);
3738                      Write_Id (Etype (Typ));
3739                      Write_Str (" (");
3740
3741                      X := First_Index (Typ);
3742                      loop
3743                         Sprint_Node (X);
3744                         Next_Index (X);
3745                         exit when No (X);
3746                         Write_Str (", ");
3747                      end loop;
3748
3749                      Write_Char (')');
3750
3751                      --  Signed integer types, and modular integer subtypes
3752
3753                   when E_Signed_Integer_Type     |
3754                        E_Signed_Integer_Subtype  |
3755                        E_Modular_Integer_Subtype =>
3756
3757                      Write_Header (Ekind (Typ) = E_Signed_Integer_Type);
3758
3759                      if Ekind (Typ) = E_Signed_Integer_Type then
3760                         Write_Str ("new ");
3761                      end if;
3762
3763                      Write_Id (B);
3764
3765                      --  Print bounds if different from base type
3766
3767                      declare
3768                         L  : constant Node_Id := Type_Low_Bound (Typ);
3769                         H  : constant Node_Id := Type_High_Bound (Typ);
3770                         LE : Node_Id;
3771                         HE : Node_Id;
3772
3773                      begin
3774                         --  B can either be a scalar type, in which case the
3775                         --  declaration of Typ may constrain it with different
3776                         --  bounds, or a private type, in which case we know
3777                         --  that the declaration of Typ cannot have a scalar
3778                         --  constraint.
3779
3780                         if Is_Scalar_Type (B) then
3781                            LE := Type_Low_Bound (B);
3782                            HE := Type_High_Bound (B);
3783                         else
3784                            LE := Empty;
3785                            HE := Empty;
3786                         end if;
3787
3788                         if No (LE)
3789                           or else (True
3790                             and then Nkind (L) = N_Integer_Literal
3791                             and then Nkind (H) = N_Integer_Literal
3792                             and then Nkind (LE) = N_Integer_Literal
3793                             and then Nkind (HE) = N_Integer_Literal
3794                             and then UI_Eq (Intval (L), Intval (LE))
3795                             and then UI_Eq (Intval (H), Intval (HE)))
3796                         then
3797                            null;
3798
3799                         else
3800                            Write_Str (" range ");
3801                            Sprint_Node (Type_Low_Bound (Typ));
3802                            Write_Str (" .. ");
3803                            Sprint_Node (Type_High_Bound (Typ));
3804                         end if;
3805                      end;
3806
3807                      --  Modular integer types
3808
3809                   when E_Modular_Integer_Type =>
3810                      Write_Header;
3811                      Write_Str (" mod ");
3812                      Write_Uint_With_Col_Check (Modulus (Typ), Auto);
3813
3814                      --  Floating point types and subtypes
3815
3816                   when E_Floating_Point_Type    |
3817                        E_Floating_Point_Subtype =>
3818
3819                      Write_Header (Ekind (Typ) = E_Floating_Point_Type);
3820
3821                      if Ekind (Typ) = E_Floating_Point_Type then
3822                         Write_Str ("new ");
3823                      end if;
3824
3825                      Write_Id (Etype (Typ));
3826
3827                      if Digits_Value (Typ) /= Digits_Value (Etype (Typ)) then
3828                         Write_Str (" digits ");
3829                         Write_Uint_With_Col_Check
3830                           (Digits_Value (Typ), Decimal);
3831                      end if;
3832
3833                      --  Print bounds if not different from base type
3834
3835                      declare
3836                         L  : constant Node_Id := Type_Low_Bound (Typ);
3837                         H  : constant Node_Id := Type_High_Bound (Typ);
3838                         LE : constant Node_Id := Type_Low_Bound (B);
3839                         HE : constant Node_Id := Type_High_Bound (B);
3840
3841                      begin
3842                         if Nkind (L) = N_Real_Literal
3843                           and then Nkind (H) = N_Real_Literal
3844                           and then Nkind (LE) = N_Real_Literal
3845                           and then Nkind (HE) = N_Real_Literal
3846                           and then UR_Eq (Realval (L), Realval (LE))
3847                           and then UR_Eq (Realval (H), Realval (HE))
3848                         then
3849                            null;
3850
3851                         else
3852                            Write_Str (" range ");
3853                            Sprint_Node (Type_Low_Bound (Typ));
3854                            Write_Str (" .. ");
3855                            Sprint_Node (Type_High_Bound (Typ));
3856                         end if;
3857                      end;
3858
3859                   --  Record subtypes
3860
3861                   when E_Record_Subtype =>
3862                      Write_Header (False);
3863                      Write_Str ("record");
3864                      Indent_Begin;
3865
3866                      declare
3867                         C : Entity_Id;
3868                      begin
3869                         C := First_Entity (Typ);
3870                         while Present (C) loop
3871                            Write_Indent;
3872                            Write_Id (C);
3873                            Write_Str (" : ");
3874                            Write_Id (Etype (C));
3875                            Next_Entity (C);
3876                         end loop;
3877                      end;
3878
3879                      Indent_End;
3880                      Write_Indent_Str (" end record");
3881
3882                   --  Class-Wide types
3883
3884                   when E_Class_Wide_Type    |
3885                        E_Class_Wide_Subtype =>
3886                      Write_Header;
3887                      Write_Name_With_Col_Check (Chars (Etype (Typ)));
3888                      Write_Str ("'Class");
3889
3890                   --  Subprogram types
3891
3892                   when E_Subprogram_Type =>
3893                      Write_Header;
3894
3895                      if Etype (Typ) = Standard_Void_Type then
3896                         Write_Str ("procedure");
3897                      else
3898                         Write_Str ("function");
3899                      end if;
3900
3901                      if Present (First_Entity (Typ)) then
3902                         Write_Str (" (");
3903
3904                         declare
3905                            Param : Entity_Id;
3906
3907                         begin
3908                            Param := First_Entity (Typ);
3909                            loop
3910                               Write_Id (Param);
3911                               Write_Str (" : ");
3912
3913                               if Ekind (Param) = E_In_Out_Parameter then
3914                                  Write_Str ("in out ");
3915                               elsif Ekind (Param) = E_Out_Parameter then
3916                                  Write_Str ("out ");
3917                               end if;
3918
3919                               Write_Id (Etype (Param));
3920                               Next_Entity (Param);
3921                               exit when No (Param);
3922                               Write_Str (", ");
3923                            end loop;
3924
3925                            Write_Char (')');
3926                         end;
3927                      end if;
3928
3929                      if Etype (Typ) /= Standard_Void_Type then
3930                         Write_Str (" return ");
3931                         Write_Id (Etype (Typ));
3932                      end if;
3933
3934                   when E_String_Literal_Subtype =>
3935                      declare
3936                         LB  : constant Uint :=
3937                                 Intval (String_Literal_Low_Bound (Typ));
3938                         Len : constant Uint :=
3939                                 String_Literal_Length (Typ);
3940                      begin
3941                         Write_Str ("String (");
3942                         Write_Int (UI_To_Int (LB));
3943                         Write_Str (" .. ");
3944                         Write_Int (UI_To_Int (LB + Len) - 1);
3945                         Write_Str (");");
3946                      end;
3947
3948                   --  For all other Itypes, print ??? (fill in later)
3949
3950                   when others =>
3951                      Write_Header (True);
3952                      Write_Str ("???");
3953
3954                end case;
3955             end if;
3956
3957             --  Add terminating bracket and restore output buffer
3958
3959             Write_Char (']');
3960             Write_Eol;
3961             Restore_Output_Buffer (S);
3962          end;
3963
3964          Set_Itype_Printed (Typ);
3965       end if;
3966    end Write_Itype;
3967
3968    -------------------------------
3969    -- Write_Name_With_Col_Check --
3970    -------------------------------
3971
3972    procedure Write_Name_With_Col_Check (N : Name_Id) is
3973       J : Natural;
3974       K : Natural;
3975       L : Natural;
3976
3977    begin
3978       Get_Name_String (N);
3979
3980       --  Deal with -gnatdI which replaces any sequence Cnnnb where C is an
3981       --  upper case letter, nnn is one or more digits and b is a lower case
3982       --  letter by C...b, so that listings do not depend on serial numbers.
3983
3984       if Debug_Flag_II then
3985          J := 1;
3986          while J < Name_Len - 1 loop
3987             if Name_Buffer (J) in 'A' .. 'Z'
3988               and then Name_Buffer (J + 1) in '0' .. '9'
3989             then
3990                K := J + 1;
3991                while K < Name_Len loop
3992                   exit when Name_Buffer (K) not in '0' .. '9';
3993                   K := K + 1;
3994                end loop;
3995
3996                if Name_Buffer (K) in 'a' .. 'z' then
3997                   L := Name_Len - K + 1;
3998
3999                   Name_Buffer (J + 4 .. J + L + 3) :=
4000                     Name_Buffer (K .. Name_Len);
4001                   Name_Buffer (J + 1 .. J + 3) := "...";
4002                   Name_Len := J + L + 3;
4003                   J := J + 5;
4004
4005                else
4006                   J := K;
4007                end if;
4008
4009             else
4010                J := J + 1;
4011             end if;
4012          end loop;
4013       end if;
4014
4015       --  Fall through for normal case
4016
4017       Write_Str_With_Col_Check (Name_Buffer (1 .. Name_Len));
4018    end Write_Name_With_Col_Check;
4019
4020    ------------------------------------
4021    -- Write_Name_With_Col_Check_Sloc --
4022    ------------------------------------
4023
4024    procedure Write_Name_With_Col_Check_Sloc (N : Name_Id) is
4025    begin
4026       Get_Name_String (N);
4027       Write_Str_With_Col_Check_Sloc (Name_Buffer (1 .. Name_Len));
4028    end Write_Name_With_Col_Check_Sloc;
4029
4030    --------------------
4031    -- Write_Operator --
4032    --------------------
4033
4034    procedure Write_Operator (N : Node_Id; S : String) is
4035       F : Natural := S'First;
4036       T : Natural := S'Last;
4037
4038    begin
4039       --  If no overflow check, just write string out, and we are done
4040
4041       if not Do_Overflow_Check (N) then
4042          Write_Str_Sloc (S);
4043
4044       --  If overflow check, we want to surround the operator with curly
4045       --  brackets, but not include spaces within the brackets.
4046
4047       else
4048          if S (F) = ' ' then
4049             Write_Char (' ');
4050             F := F + 1;
4051          end if;
4052
4053          if S (T) = ' ' then
4054             T := T - 1;
4055          end if;
4056
4057          Write_Char ('{');
4058          Write_Str_Sloc (S (F .. T));
4059          Write_Char ('}');
4060
4061          if S (S'Last) = ' ' then
4062             Write_Char (' ');
4063          end if;
4064       end if;
4065    end Write_Operator;
4066
4067    -----------------------
4068    -- Write_Param_Specs --
4069    -----------------------
4070
4071    procedure Write_Param_Specs (N : Node_Id) is
4072       Specs  : List_Id;
4073       Spec   : Node_Id;
4074       Formal : Node_Id;
4075
4076    begin
4077       Specs := Parameter_Specifications (N);
4078
4079       if Is_Non_Empty_List (Specs) then
4080          Write_Str_With_Col_Check (" (");
4081          Spec := First (Specs);
4082
4083          loop
4084             Sprint_Node (Spec);
4085             Formal := Defining_Identifier (Spec);
4086             Next (Spec);
4087             exit when Spec = Empty;
4088
4089             --  Add semicolon, unless we are printing original tree and the
4090             --  next specification is part of a list (but not the first
4091             --  element of that list)
4092
4093             if not Dump_Original_Only or else not Prev_Ids (Spec) then
4094                Write_Str ("; ");
4095             end if;
4096          end loop;
4097
4098          --  Write out any extra formals
4099
4100          while Present (Extra_Formal (Formal)) loop
4101             Formal := Extra_Formal (Formal);
4102             Write_Str ("; ");
4103             Write_Name_With_Col_Check (Chars (Formal));
4104             Write_Str (" : ");
4105             Write_Name_With_Col_Check (Chars (Etype (Formal)));
4106          end loop;
4107
4108          Write_Char (')');
4109       end if;
4110    end Write_Param_Specs;
4111
4112    -----------------------
4113    -- Write_Rewrite_Str --
4114    -----------------------
4115
4116    procedure Write_Rewrite_Str (S : String) is
4117    begin
4118       if not Dump_Generated_Only then
4119          if S'Length = 3 and then S = ">>>" then
4120             Write_Str (">>>");
4121          else
4122             Write_Str_With_Col_Check (S);
4123          end if;
4124       end if;
4125    end Write_Rewrite_Str;
4126
4127    -----------------------
4128    -- Write_Source_Line --
4129    -----------------------
4130
4131    procedure Write_Source_Line (L : Physical_Line_Number) is
4132       Loc : Source_Ptr;
4133       Src : Source_Buffer_Ptr;
4134       Scn : Source_Ptr;
4135
4136    begin
4137       if Dump_Source_Text then
4138          Src := Source_Text (Current_Source_File);
4139          Loc := Line_Start (L, Current_Source_File);
4140          Write_Eol;
4141
4142          --  See if line is a comment line, if not, and if not line one,
4143          --  precede with blank line.
4144
4145          Scn := Loc;
4146          while Src (Scn) = ' ' or else Src (Scn) = ASCII.HT loop
4147             Scn := Scn + 1;
4148          end loop;
4149
4150          if (Src (Scn) in Line_Terminator
4151               or else Src (Scn .. Scn + 1) /= "--")
4152            and then L /= 1
4153          then
4154             Write_Eol;
4155          end if;
4156
4157          --  Now write the source text of the line
4158
4159          Write_Str ("-- ");
4160          Write_Int (Int (L));
4161          Write_Str (": ");
4162
4163          while Src (Loc) not in Line_Terminator loop
4164             Write_Char (Src (Loc));
4165             Loc := Loc + 1;
4166          end loop;
4167       end if;
4168    end Write_Source_Line;
4169
4170    ------------------------
4171    -- Write_Source_Lines --
4172    ------------------------
4173
4174    procedure Write_Source_Lines (L : Physical_Line_Number) is
4175    begin
4176       while Last_Line_Printed < L loop
4177          Last_Line_Printed := Last_Line_Printed + 1;
4178          Write_Source_Line (Last_Line_Printed);
4179       end loop;
4180    end Write_Source_Lines;
4181
4182    --------------------
4183    -- Write_Str_Sloc --
4184    --------------------
4185
4186    procedure Write_Str_Sloc (S : String) is
4187    begin
4188       for J in S'Range loop
4189          Write_Char_Sloc (S (J));
4190       end loop;
4191    end Write_Str_Sloc;
4192
4193    ------------------------------
4194    -- Write_Str_With_Col_Check --
4195    ------------------------------
4196
4197    procedure Write_Str_With_Col_Check (S : String) is
4198    begin
4199       if Int (S'Last) + Column > Line_Limit then
4200          Write_Indent_Str ("  ");
4201
4202          if S (S'First) = ' ' then
4203             Write_Str (S (S'First + 1 .. S'Last));
4204          else
4205             Write_Str (S);
4206          end if;
4207
4208       else
4209          Write_Str (S);
4210       end if;
4211    end Write_Str_With_Col_Check;
4212
4213    -----------------------------------
4214    -- Write_Str_With_Col_Check_Sloc --
4215    -----------------------------------
4216
4217    procedure Write_Str_With_Col_Check_Sloc (S : String) is
4218    begin
4219       if Int (S'Last) + Column > Line_Limit then
4220          Write_Indent_Str ("  ");
4221
4222          if S (S'First) = ' ' then
4223             Write_Str_Sloc (S (S'First + 1 .. S'Last));
4224          else
4225             Write_Str_Sloc (S);
4226          end if;
4227
4228       else
4229          Write_Str_Sloc (S);
4230       end if;
4231    end Write_Str_With_Col_Check_Sloc;
4232
4233    -------------------------------
4234    -- Write_Uint_With_Col_Check --
4235    -------------------------------
4236
4237    procedure Write_Uint_With_Col_Check (U : Uint; Format : UI_Format) is
4238    begin
4239       Col_Check (UI_Decimal_Digits_Hi (U));
4240       UI_Write (U, Format);
4241    end Write_Uint_With_Col_Check;
4242
4243    ------------------------------------
4244    -- Write_Uint_With_Col_Check_Sloc --
4245    ------------------------------------
4246
4247    procedure Write_Uint_With_Col_Check_Sloc (U : Uint; Format : UI_Format) is
4248    begin
4249       Col_Check (UI_Decimal_Digits_Hi (U));
4250       Set_Debug_Sloc;
4251       UI_Write (U, Format);
4252    end Write_Uint_With_Col_Check_Sloc;
4253
4254    -------------------------------------
4255    -- Write_Ureal_With_Col_Check_Sloc --
4256    -------------------------------------
4257
4258    procedure Write_Ureal_With_Col_Check_Sloc (U : Ureal) is
4259       D : constant Uint := Denominator (U);
4260       N : constant Uint := Numerator (U);
4261
4262    begin
4263       Col_Check
4264         (UI_Decimal_Digits_Hi (D) + UI_Decimal_Digits_Hi (N) + 4);
4265       Set_Debug_Sloc;
4266       UR_Write (U);
4267    end Write_Ureal_With_Col_Check_Sloc;
4268
4269 end Sprint;