2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / ada / sprint.ads
blob273d6a876c709ed30590855c43c02b40674d1100
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-2002, 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, 59 Temple Place - Suite 330, Boston, --
20 -- MA 02111-1307, 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 ------------------------------------------------------------------------------
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.
35 with Types; use Types;
36 package Sprint is
38 -----------------------
39 -- Syntax Extensions --
40 -----------------------
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)
47 -- Allocator new xxx [storage_pool = xxx]
48 -- Cleanup action at end procedure name;
49 -- Conditional expression (if expr then expr else expr)
50 -- Conversion wi Float_Truncate target^(source)
51 -- Convert wi Conversion_OK target?(source)
52 -- Convert wi Rounded_Result target@(source)
53 -- Divide wi Treat_Fixed_As_Integer x #/ y
54 -- Divide wi Rounded_Result x @/ y
55 -- Expression with range check {expression}
56 -- Operator with range check {operator} (e.g. {+})
57 -- Free statement free expr [storage_pool = xxx]
58 -- Freeze entity with freeze actions freeze entityname [ actions ]
59 -- Interpretation interpretation type [, entity]
60 -- Intrinsic calls function-name!(arg, arg, arg)
61 -- Itype reference reference itype
62 -- Label declaration labelname : label
63 -- Mod wi Treat_Fixed_As_Integer x #mod y
64 -- Multiple concatenation expr && expr && expr ... && expr
65 -- Multiply wi Treat_Fixed_As_Integer x #* y
66 -- Multiply wi Rounded_Result x @* y
67 -- Others choice for cleanup when all others
68 -- Raise xxx error [xxx_error [when cond]]
69 -- Raise xxx error with msg [xxx_error [when cond], "msg"]
70 -- Rational literal See UR_Write for details
71 -- Rem wi Treat_Fixed_As_Integer x #rem y
72 -- Reference expression'reference
73 -- Shift nodes shift_name!(expr, count)
74 -- Subprogram_Info subprog'Subprogram_Info
75 -- Unchecked conversion target_type!(source_expression)
76 -- Unchecked expression `(expression)
77 -- Validate_Unchecked_Conversion validate unchecked_conversion
78 -- (src-type, target-typ);
80 -- Note: the storage_pool parameters for allocators and the free node
81 -- are omitted if the Storage_Pool field is Empty, indicating use of
82 -- the standard default pool.
84 -----------------
85 -- Subprograms --
86 -----------------
88 procedure Source_Dump;
89 -- This routine is called from the GNAT main program to dump source as
90 -- requested by debug options. The relevant debug options are:
91 -- -ds print source from tree, both original and generated code
92 -- -dg print source from tree, including only the generated code
93 -- -do print source from tree, including only the original code
94 -- -df modify the above to include all units, not just the main unit
95 -- -sz print source from tree for package Standard
97 procedure Sprint_Comma_List (List : List_Id);
98 -- Prints the nodes in a list, with separating commas. If the list
99 -- is empty then no output is generated.
101 procedure Sprint_Paren_Comma_List (List : List_Id);
102 -- Prints the nodes in a list, surrounded by parentheses, and separated
103 -- by comas. If the list is empty, then no output is generated. A blank
104 -- is output before the initial left parenthesis.
106 procedure Sprint_Opt_Paren_Comma_List (List : List_Id);
107 -- Same as normal Sprint_Paren_Comma_List procedure, except that
108 -- an extra blank is output if List is non-empty, and nothing at all is
109 -- printed it the argument is No_List.
111 procedure Sprint_Node_List (List : List_Id);
112 -- Prints the nodes in a list with no separating characters. This is used
113 -- in the case of lists of items which are printed on separate lines using
114 -- the current indentation amount. Note that Sprint_Node_List itself
115 -- does not generate any New_Line calls.
117 procedure Sprint_Opt_Node_List (List : List_Id);
118 -- Like Sprint_Node_List, but prints nothing if List = No_List.
120 procedure Sprint_Indented_List (List : List_Id);
121 -- Like Sprint_Line_List, except that the indentation level is
122 -- increased before outputting the list of items, and then decremented
123 -- (back to its original level) before returning to the caller.
125 procedure Sprint_Node (Node : Node_Id);
126 -- Prints a single node. No new lines are output, except as required for
127 -- splitting lines that are too long to fit on a single physical line.
128 -- No output is generated at all if Node is Empty. No trailing or leading
129 -- blank characters are generated.
131 procedure Sprint_Opt_Node (Node : Node_Id);
132 -- Same as normal Sprint_Node procedure, except that one leading
133 -- blank is output before the node if it is non-empty.
135 procedure pg (Node : Node_Id);
136 pragma Export (Ada, pg);
137 -- Print generated source for node N (like -gnatdg output). This is
138 -- intended only for use from gdb for debugging purposes.
140 procedure po (Node : Node_Id);
141 pragma Export (Ada, po);
142 -- Print original source for node N (like -gnatdo output). This is
143 -- intended only for use from gdb for debugging purposes.
145 procedure ps (Node : Node_Id);
146 pragma Export (Ada, ps);
147 -- Print generated and original source for node N (like -gnatds output).
148 -- This is intended only for use from gdb for debugging purposes.
150 end Sprint;