1 ------------------------------------------------------------------------------
3 -- GNAT SYSTEM UTILITIES --
9 -- Copyright (C) 1992-2010, Free Software Foundation, Inc. --
11 -- GNAT is free software; you can redistribute it and/or modify it under --
12 -- terms of the GNU General Public License as published by the Free Soft- --
13 -- ware Foundation; either version 3, or (at your option) any later ver- --
14 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
17 -- for more details. You should have received a copy of the GNU General --
18 -- Public License distributed with GNAT; see file COPYING3. If not, go to --
19 -- http://www.gnu.org/licenses for a complete copy of the license. --
21 -- GNAT was originally developed by the GNAT team at New York University. --
22 -- Extensive contributions were provided by Ada Core Technologies Inc. --
24 ------------------------------------------------------------------------------
26 -- Program to construct the spec of the Treeprs package
30 -- sinfo.ads Spec of Sinfo package
31 -- treeprs.adt Template for Treeprs package
35 -- treeprs.ads Spec of Treeprs package
37 -- Note: this program assumes that sinfo.ads has passed the error checks which
38 -- are carried out by the CSinfo utility so it does not duplicate these checks
40 -- An optional argument allows the specification of an output file name to
41 -- override the default treeprs.ads file name for the generated output file.
43 with Ada
.Command_Line
; use Ada
.Command_Line
;
44 with Ada
.Strings
.Unbounded
; use Ada
.Strings
.Unbounded
;
45 with Ada
.Strings
.Unbounded
.Text_IO
; use Ada
.Strings
.Unbounded
.Text_IO
;
46 with Ada
.Text_IO
; use Ada
.Text_IO
;
47 with Ada
.Streams
.Stream_IO
; use Ada
.Streams
.Stream_IO
;
49 with GNAT
.Spitbol
; use GNAT
.Spitbol
;
50 with GNAT
.Spitbol
.Patterns
; use GNAT
.Spitbol
.Patterns
;
51 with GNAT
.Spitbol
.Table_Boolean
; use GNAT
.Spitbol
.Table_Boolean
;
52 with GNAT
.Spitbol
.Table_VString
; use GNAT
.Spitbol
.Table_VString
;
56 package TB
renames GNAT
.Spitbol
.Table_Boolean
;
57 package TV
renames GNAT
.Spitbol
.Table_VString
;
60 -- Raised on fatal error
63 Ffield
: VString
:= Nul
;
64 Field
: VString
:= Nul
;
65 Fieldno
: VString
:= Nul
;
66 Flagno
: VString
:= Nul
;
67 Line
: VString
:= Nul
;
68 Name
: VString
:= Nul
;
69 Node
: VString
:= Nul
;
70 Outstring
: VString
:= Nul
;
71 Prefix
: VString
:= Nul
;
75 Synonym
: VString
:= Nul
;
76 Term
: VString
:= Nul
;
78 subtype Sfile
is Ada
.Streams
.Stream_IO
.File_Type
;
83 InS
: Ada
.Text_IO
.File_Type
;
86 InT
: Ada
.Text_IO
.File_Type
;
89 Special
: TB
.Table
(20);
90 -- Table of special fields. These fields are not included in the table
91 -- constructed by Xtreeprs, since they are specially handled in treeprs.
92 -- This means these field definitions are completely ignored.
94 Names
: array (1 .. 500) of VString
;
95 -- Table of names of synonyms
97 Positions
: array (1 .. 500) of Natural;
98 -- Table of starting positions in Pchars string for synonyms
100 Strings
: TV
.Table
(300);
101 -- Contribution of each synonym to Pchars string, indexed by name
103 Count
: Natural := 0;
104 -- Number of synonyms processed so far
106 Curpos
: Natural := 1;
107 -- Number of characters generated in Pchars string so far
109 Lineno
: Natural := 0;
110 -- Line number in sinfo.ads
112 Field_Base
: constant := Character'Pos ('#');
113 -- Fields 1-5 are represented by the characters #$%&' (i.e. by five
114 -- contiguous characters starting at # (16#23#)).
116 Flag_Base
: constant := Character'Pos ('(');
117 -- Flags 1-18 are represented by the characters ()*+,-./0123456789
118 -- (i.e. by 18 contiguous characters starting at (16#28#)).
121 -- Field character, as per above tables
123 Sp
: aliased Natural;
124 -- Space left on line for Pchars output
126 wsp
: constant Pattern
:= Span
(' ' & ASCII
.HT
);
127 Is_Temp
: constant Pattern
:= BreakX
('T') * A
& "T e m p l a t e";
128 Get_Node
: constant Pattern
:= wsp
& "-- N_" & Rest
* Node
;
129 Tst_Punc
: constant Pattern
:= Break
(" ,.");
130 Get_Syn
: constant Pattern
:= Span
(' ') & "-- " & Break
(' ') * Synonym
131 & " (" & Break
(')') * Field
;
132 Brk_Min
: constant Pattern
:= Break
('-') * Ffield
;
133 Is_Flag
: constant Pattern
:= "Flag" & Rest
* Flagno
;
134 Is_Field
: constant Pattern
:= Rtab
(1) & Len
(1) * Fieldno
;
135 Is_Syn
: constant Pattern
:= wsp
& "N_" & Break
(",)") * Syn
137 Brk_Node
: constant Pattern
:= Break
(' ') * Node
& ' ';
138 Chop_SP
: constant Pattern
:= Len
(Sp
'Unrestricted_Access) * S1
;
142 procedure Put_Line
(F
: Sfile
; S
: String);
143 procedure Put_Line
(F
: Sfile
; S
: VString
);
144 -- Local version of Put_Line ensures Unix style line endings
146 procedure Put_Line
(F
: Sfile
; S
: String) is
148 String'Write (Stream
(F
), S
);
149 Character'Write (Stream
(F
), ASCII
.LF
);
152 procedure Put_Line
(F
: Sfile
; S
: VString
) is
154 Put_Line
(F
, To_String
(S
));
157 -- Start of processing for XTreeprs
160 Anchored_Mode
:= True;
162 if Argument_Count
> 0 then
163 Create
(OutS
, Out_File
, Argument
(1));
165 Create
(OutS
, Out_File
, "treeprs.ads");
168 Open
(InS
, In_File
, "sinfo.ads");
169 Open
(InT
, In_File
, "treeprs.adt");
171 -- Initialize special fields table
173 Set
(Special
, "Analyzed", True);
174 Set
(Special
, "Cannot_Be_Constant", True);
175 Set
(Special
, "Chars", True);
176 Set
(Special
, "Comes_From_Source", True);
177 Set
(Special
, "Error_Posted", True);
178 Set
(Special
, "Etype", True);
179 Set
(Special
, "Has_No_Side_Effects", True);
180 Set
(Special
, "Is_Controlling_Actual", True);
181 Set
(Special
, "Is_Overloaded", True);
182 Set
(Special
, "Is_Static_Expression", True);
183 Set
(Special
, "Left_Opnd", True);
184 Set
(Special
, "Must_Check_Expr", True);
185 Set
(Special
, "No_Overflow_Expr", True);
186 Set
(Special
, "Paren_Count", True);
187 Set
(Special
, "Raises_Constraint_Error", True);
188 Set
(Special
, "Right_Opnd", True);
190 -- Read template header and generate new header
193 Line
:= Get_Line
(InT
);
195 -- Skip lines describing the template
197 if Match
(Line
, "-- This file is a template") then
199 Line
:= Get_Line
(InT
);
204 exit when Match
(Line
, "package");
206 if Match
(Line
, Is_Temp
, M
) then
207 Replace
(M
, A
& " S p e c ");
210 Put_Line
(OutS
, Line
);
213 Put_Line
(OutS
, Line
);
215 -- Copy rest of comments up to template insert point to spec
218 Line
:= Get_Line
(InT
);
219 exit when Match
(Line
, "!!TEMPLATE INSERTION POINT");
220 Put_Line
(OutS
, Line
);
223 -- Here we are doing the actual insertions
225 Put_Line
(OutS
, " Pchars : constant String :=");
227 -- Loop through comments describing nodes, picking up fields
230 Line
:= Get_Line
(InS
);
231 Lineno
:= Lineno
+ 1;
232 exit when Match
(Line
, " type Node_Kind");
234 if Match
(Line
, Get_Node
)
235 and then not Match
(Node
, Tst_Punc
)
237 Outstring
:= Node
& ' ';
240 Line
:= Get_Line
(InS
);
243 if Match
(Line
, Get_Syn
)
244 and then not Match
(Synonym
, "plus")
245 and then not Present
(Special
, Synonym
)
247 -- Convert this field into the character used to
248 -- represent the field according to the table:
271 if Match
(Field
, Brk_Min
) then
275 if Match
(Field
, Is_Flag
) then
276 Fieldch
:= Char
(Flag_Base
- 1 + N
(Flagno
));
278 elsif Match
(Field
, Is_Field
) then
279 Fieldch
:= Char
(Field_Base
- 1 + N
(Fieldno
));
286 " has unrecognized field name " &
291 Append
(Outstring
, Fieldch
& Synonym
);
295 Set
(Strings
, Node
, Outstring
);
299 -- Loop through actual definitions of node kind enumeration literals
303 Line
:= Get_Line
(InS
);
304 Lineno
:= Lineno
+ 1;
305 exit when Match
(Line
, Is_Syn
);
308 S
:= Get
(Strings
, Syn
);
309 Match
(S
, Brk_Node
, "");
311 Names
(Count
) := Syn
;
312 Positions
(Count
) := Curpos
;
313 Curpos
:= Curpos
+ Length
(S
);
314 Put_Line
(OutS
, " -- " & Node
);
316 exit when Term
= ")";
318 -- Loop to output the string literal for Pchars
321 Sp
:= 79 - 4 - Length
(Prefix
);
322 exit when Size
(S
) <= Sp
;
323 Match
(S
, Chop_SP
, "");
324 Put_Line
(OutS
, Prefix
& '"' & S1
& """ &");
328 Put_Line
(OutS
, Prefix
& '"' & S
& """ &");
331 Put_Line
(OutS
, " """";");
334 (OutS
, " type Pchar_Pos_Array is array (Node_Kind) of Positive;");
337 " Pchar_Pos : constant Pchar_Pos_Array := Pchar_Pos_Array'(");
339 -- Output lines for Pchar_Pos_Array values
341 for M
in 1 .. Count
- 1 loop
342 Name
:= Rpad
("N_" & Names
(M
), 40);
343 Put_Line
(OutS
, " " & Name
& " => " & Positions
(M
) & ',');
346 Name
:= Rpad
("N_" & Names
(Count
), 40);
347 Put_Line
(OutS
, " " & Name
& " => " & Positions
(Count
) & ");");
350 Put_Line
(OutS
, "end Treeprs;");
354 Put_Line
(Standard_Error
, "*** fatal error");