OSDN Git Service

* gcc.dg/tree-ssa/ssa-dse-10.c: Clean up all dse dump files.
[pf3gnuchains/gcc-fork.git] / gcc / ada / sprint.ads
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                         GNAT COMPILER COMPONENTS                         --
4 --                                                                          --
5 --                               S P R I N T                                --
6 --                                                                          --
7 --                                 S p e c                                  --
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 --  This package (source print) contains routines for printing the source
28 --  program corresponding to a specified syntax tree. These routines are
29 --  intended for debugging use in the compiler (not as a user level pretty
30 --  print tool). Only information present in the tree is output (e.g. no
31 --  comments are present in the output), and as far as possible we avoid
32 --  making any assumptions about the correctness of the tree, so a bad
33 --  tree may either blow up on a debugging check, or list incorrect source.
34
35 with Types; use Types;
36 package Sprint is
37
38    -----------------------
39    -- Syntax Extensions --
40    -----------------------
41
42    --  When the generated tree is printed, it contains constructs that are not
43    --  pure Ada. For convenience, syntactic extensions to Ada have been defined
44    --  purely for the purposes of this printout (they are not recognized by the
45    --  parser)
46
47    --  Could use more documentation for all of these ???
48
49    --    Allocator                           new xxx [storage_pool = xxx]
50    --    Cleanup action                      at end procedure name;
51    --    Conditional expression              (if expr then expr else expr)
52    --    Conversion wi Float_Truncate        target^(source)
53    --    Convert wi Conversion_OK            target?(source)
54    --    Convert wi Rounded_Result           target@(source)
55    --    Divide wi Treat_Fixed_As_Integer    x #/ y
56    --    Divide wi Rounded_Result            x @/ y
57    --    Expression with range check         {expression}
58    --    Operator with range check           {operator} (e.g. {+})
59    --    Free statement                      free expr [storage_pool = xxx]
60    --    Freeze entity with freeze actions   freeze entityname [ actions ]
61    --    Implicit call to run time routine   $routine-name
62    --    Implicit exportation                $pragma import (...)
63    --    Implicit importation                $pragma export (...)
64    --    Interpretation                      interpretation type [, entity]
65    --    Intrinsic calls                     function-name!(arg, arg, arg)
66    --    Itype declaration                   [(sub)type declaration without ;]
67    --    Itype reference                     reference itype
68    --    Label declaration                   labelname : label
69    --    Mod wi Treat_Fixed_As_Integer       x #mod y
70    --    Multiple concatenation              expr && expr && expr ... && expr
71    --    Multiply wi Treat_Fixed_As_Integer  x #* y
72    --    Multiply wi Rounded_Result          x @* y
73    --    Others choice for cleanup           when all others
74    --    Pop exception label                 %pop_xxx_exception_label
75    --    Push exception label                %push_xxx_exception_label (label)
76    --    Raise xxx error                     [xxx_error [when cond]]
77    --    Raise xxx error with msg            [xxx_error [when cond], "msg"]
78    --    Rational literal                    See UR_Write for details
79    --    Rem wi Treat_Fixed_As_Integer       x #rem y
80    --    Reference                           expression'reference
81    --    Shift nodes                         shift_name!(expr, count)
82    --    Static declaration                  name : static xxx
83    --    Subprogram_Info                     subprog'Subprogram_Info
84    --    Unchecked conversion                target_type!(source_expression)
85    --    Unchecked expression                `(expression)
86    --    Validate_Unchecked_Conversion       validate unchecked_conversion
87    --                                                  (src-type, target-typ);
88
89    --  Note: the storage_pool parameters for allocators and the free node
90    --  are omitted if the Storage_Pool field is Empty, indicating use of
91    --  the standard default pool.
92
93    -----------------
94    -- Subprograms --
95    -----------------
96
97    procedure Source_Dump;
98    --  This routine is called from the GNAT main program to dump source as
99    --  requested by debug options. The relevant debug options are:
100    --    -ds  print source from tree, both original and generated code
101    --    -dg  print source from tree, including only the generated code
102    --    -do  print source from tree, including only the original code
103    --    -df  modify the above to include all units, not just the main unit
104    --    -sz  print source from tree for package Standard
105
106    procedure Sprint_Comma_List (List : List_Id);
107    --  Prints the nodes in a list, with separating commas. If the list
108    --  is empty then no output is generated.
109
110    procedure Sprint_Paren_Comma_List (List : List_Id);
111    --  Prints the nodes in a list, surrounded by parentheses, and separated
112    --  by comas. If the list is empty, then no output is generated. A blank
113    --  is output before the initial left parenthesis.
114
115    procedure Sprint_Opt_Paren_Comma_List (List : List_Id);
116    --  Same as normal Sprint_Paren_Comma_List procedure, except that
117    --  an extra blank is output if List is non-empty, and nothing at all is
118    --  printed it the argument is No_List.
119
120    procedure Sprint_Node_List (List : List_Id);
121    --  Prints the nodes in a list with no separating characters. This is used
122    --  in the case of lists of items which are printed on separate lines using
123    --  the current indentation amount. Note that Sprint_Node_List itself
124    --  does not generate any New_Line calls.
125
126    procedure Sprint_Opt_Node_List (List : List_Id);
127    --  Like Sprint_Node_List, but prints nothing if List = No_List
128
129    procedure Sprint_Indented_List (List : List_Id);
130    --  Like Sprint_Line_List, except that the indentation level is
131    --  increased before outputting the list of items, and then decremented
132    --  (back to its original level) before returning to the caller.
133
134    procedure Sprint_Node (Node : Node_Id);
135    --  Prints a single node. No new lines are output, except as required for
136    --  splitting lines that are too long to fit on a single physical line.
137    --  No output is generated at all if Node is Empty. No trailing or leading
138    --  blank characters are generated.
139
140    procedure Sprint_Opt_Node (Node : Node_Id);
141    --  Same as normal Sprint_Node procedure, except that one leading
142    --  blank is output before the node if it is non-empty.
143
144    procedure pg (Arg : Union_Id);
145    pragma Export (Ada, pg);
146    --  Print generated source for argument N (like -gnatdg output). Intended
147    --  only for use from gdb for debugging purposes. Currently, Arg may be a
148    --  List_Id or a Node_Id (anything else outputs a blank line).
149
150    procedure po (Arg : Union_Id);
151    pragma Export (Ada, po);
152    --  Like pg, but prints original source for the argument (like -gnatdo
153    --  output). Intended only for use from gdb for debugging purposes.
154
155    procedure ps (Arg : Union_Id);
156    pragma Export (Ada, ps);
157    --  Like pg, but prints generated and original source for the argument (like
158    --  -gnatds output). Intended only for use from gdb for debugging purposes.
159
160 end Sprint;