1 ------------------------------------------------------------------------------
3 -- GNAT SYSTEM UTILITIES --
9 -- Copyright (C) 1992-2005 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 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. --
22 -- GNAT was originally developed by the GNAT team at New York University. --
23 -- Extensive contributions were provided by Ada Core Technologies Inc. --
25 ------------------------------------------------------------------------------
27 -- Program to construct the spec and body of the Nmake package
31 -- sinfo.ads Spec of Sinfo package
32 -- nmake.adt Template for Nmake package
36 -- nmake.ads Spec of Nmake package
37 -- nmake.adb Body of Nmake package
39 -- Note: this program assumes that sinfo.ads has passed the error checks that
40 -- are carried out by the csinfo utility, so it does not duplicate these
41 -- checks and assumes that sinfo.ads has the correct form.
43 -- In the absence of any switches, both the ads and adb files are output.
44 -- The switch -s or /s indicates that only the ads file is to be output.
45 -- The switch -b or /b indicates that only the adb file is to be output.
47 -- If a file name argument is given, then the output is written to this file
48 -- rather than to nmake.ads or nmake.adb. A file name can only be given if
49 -- exactly one of the -s or -b options is present.
51 with Ada
.Command_Line
; use Ada
.Command_Line
;
52 with Ada
.Strings
.Unbounded
; use Ada
.Strings
.Unbounded
;
53 with Ada
.Strings
.Unbounded
.Text_IO
; use Ada
.Strings
.Unbounded
.Text_IO
;
54 with Ada
.Strings
.Maps
; use Ada
.Strings
.Maps
;
55 with Ada
.Strings
.Maps
.Constants
; use Ada
.Strings
.Maps
.Constants
;
56 with Ada
.Streams
.Stream_IO
; use Ada
.Streams
.Stream_IO
;
57 with Ada
.Text_IO
; use Ada
.Text_IO
;
59 with GNAT
.Spitbol
; use GNAT
.Spitbol
;
60 with GNAT
.Spitbol
.Patterns
; use GNAT
.Spitbol
.Patterns
;
65 -- Raised to terminate execution
69 Arg_List
: VString
:= Nul
;
70 Comment
: VString
:= Nul
;
71 Default
: VString
:= Nul
;
72 Field
: VString
:= Nul
;
73 Line
: VString
:= Nul
;
74 Node
: VString
:= Nul
;
75 Op_Name
: VString
:= Nul
;
76 Prevl
: VString
:= Nul
;
77 Synonym
: VString
:= Nul
;
82 FileS
: VString
:= V
("nmake.ads");
83 FileB
: VString
:= V
("nmake.adb");
84 -- Set to null if corresponding file not to be generated
86 Given_File
: VString
:= Nul
;
87 -- File name given by command line argument
89 subtype Sfile
is Ada
.Streams
.Stream_IO
.File_Type
;
91 InS
, InT
: Ada
.Text_IO
.File_Type
;
94 wsp
: Pattern
:= Span
(' ' & ASCII
.HT
);
96 Body_Only
: Pattern
:= BreakX
(' ') * X
& Span
(' ') & "-- body only";
97 Spec_Only
: Pattern
:= BreakX
(' ') * X
& Span
(' ') & "-- spec only";
99 Node_Hdr
: Pattern
:= wsp
& "-- N_" & Rest
* Node
;
100 Punc
: Pattern
:= BreakX
(" .,");
102 Binop
: Pattern
:= wsp
& "-- plus fields for binary operator";
103 Unop
: Pattern
:= wsp
& "-- plus fields for unary operator";
104 Syn
: Pattern
:= wsp
& "-- " & Break
(' ') * Synonym
105 & " (" & Break
(')') * Field
& Rest
* Comment
;
107 Templ
: Pattern
:= BreakX
('T') * A
& "T e m p l a t e";
108 Spec
: Pattern
:= BreakX
('S') * A
& "S p e c";
110 Sem_Field
: Pattern
:= BreakX
('-') & "-Sem";
111 Lib_Field
: Pattern
:= BreakX
('-') & "-Lib";
113 Get_Field
: Pattern
:= BreakX
(Decimal_Digit_Set
) * Field
;
115 Get_Dflt
: Pattern
:= BreakX
('(') & "(set to "
116 & Break
(" ") * Default
& " if";
118 Next_Arg
: Pattern
:= Break
(',') * Arg
& ',';
120 Op_Node
: Pattern
:= "Op_" & Rest
* Op_Name
;
122 Shft_Rot
: Pattern
:= "Shift_" or "Rotate_";
124 No_Ent
: Pattern
:= "Or_Else" or "And_Then" or "In" or "Not_In";
128 V_String_Id
: constant VString
:= V
("String_Id");
129 V_Node_Id
: constant VString
:= V
("Node_Id");
130 V_Name_Id
: constant VString
:= V
("Name_Id");
131 V_List_Id
: constant VString
:= V
("List_Id");
132 V_Elist_Id
: constant VString
:= V
("Elist_Id");
133 V_Boolean
: constant VString
:= V
("Boolean");
135 procedure Put_Line
(F
: Sfile
; S
: String);
136 procedure Put_Line
(F
: Sfile
; S
: VString
);
137 -- Local version of Put_Line ensures Unix style line endings
139 procedure WriteS
(S
: String);
140 procedure WriteB
(S
: String);
141 procedure WriteBS
(S
: String);
142 procedure WriteS
(S
: VString
);
143 procedure WriteB
(S
: VString
);
144 procedure WriteBS
(S
: VString
);
145 -- Write given line to spec or body file or both if active
147 procedure WriteB
(S
: String) is
154 procedure WriteB
(S
: VString
) is
161 procedure WriteBS
(S
: String) is
172 procedure WriteBS
(S
: VString
) is
183 procedure WriteS
(S
: String) is
190 procedure WriteS
(S
: VString
) is
197 procedure Put_Line
(F
: Sfile
; S
: String) is
199 String'Write (Stream
(F
), S
);
200 Character'Write (Stream
(F
), ASCII
.LF
);
203 procedure Put_Line
(F
: Sfile
; S
: VString
) is
205 Put_Line
(F
, To_String
(S
));
208 -- Start of processing for XNmake
212 Anchored_Mode
:= True;
214 for ArgN
in 1 .. Argument_Count
loop
216 Arg
: constant String := Argument
(ArgN
);
219 if Arg
(1) = '-' then
221 and then (Arg
(2) = 'b' or else Arg
(2) = 'B')
226 and then (Arg
(2) = 's' or else Arg
(2) = 'S')
235 if Given_File
/= Nul
then
238 Given_File
:= V
(Arg
);
244 if FileS
= Nul
and then FileB
= Nul
then
247 elsif Given_File
/= Nul
then
251 elsif FileS
= Nul
then
259 Open
(InS
, In_File
, "sinfo.ads");
260 Open
(InT
, In_File
, "nmake.adt");
263 Create
(OutS
, Out_File
, S
(FileS
));
267 Create
(OutB
, Out_File
, S
(FileB
));
270 Anchored_Mode
:= True;
272 -- Copy initial part of template to spec and body
275 Line
:= Get_Line
(InT
);
277 -- Skip lines describing the template
279 if Match
(Line
, "-- This file is a template") then
281 Line
:= Get_Line
(InT
);
286 -- Loop keeps going until "package" keyword written
288 exit when Match
(Line
, "package");
290 -- Deal with WITH lines, writing to body or spec as appropriate
292 if Match
(Line
, Body_Only
, M
) then
296 elsif Match
(Line
, Spec_Only
, M
) then
300 -- Change header from Template to Spec and write to spec file
303 if Match
(Line
, Templ
, M
) then
304 Replace
(M
, A
& " S p e c ");
309 -- Write header line to body file
311 if Match
(Line
, Spec
, M
) then
312 Replace
(M
, A
& "B o d y");
319 -- Package line reached
321 WriteS
("package Nmake is");
322 WriteB
("package body Nmake is");
325 -- Copy rest of lines up to template insert point to spec only
328 Line
:= Get_Line
(InT
);
329 exit when Match
(Line
, "!!TEMPLATE INSERTION POINT");
333 -- Here we are doing the actual insertions, loop through node types
336 Line
:= Get_Line
(InS
);
338 if Match
(Line
, Node_Hdr
)
339 and then not Match
(Node
, Punc
)
340 and then Node
/= "Unused"
342 exit when Node
= "Empty";
343 Prevl
:= " function Make_" & Node
& " (Sloc : Source_Ptr";
346 -- Loop through fields of one node
349 Line
:= Get_Line
(InS
);
352 if Match
(Line
, Binop
) then
353 WriteBS
(Prevl
& ';');
354 Append
(Arg_List
, "Left_Opnd,Right_Opnd,");
356 " " & Rpad
("Left_Opnd", NWidth
) & " : Node_Id;");
358 " " & Rpad
("Right_Opnd", NWidth
) & " : Node_Id";
360 elsif Match
(Line
, Unop
) then
361 WriteBS
(Prevl
& ';');
362 Append
(Arg_List
, "Right_Opnd,");
363 Prevl
:= " " & Rpad
("Right_Opnd", NWidth
) & " : Node_Id";
365 elsif Match
(Line
, Syn
) then
366 if Synonym
/= "Prev_Ids"
367 and then Synonym
/= "More_Ids"
368 and then Synonym
/= "Comes_From_Source"
369 and then Synonym
/= "Paren_Count"
370 and then not Match
(Field
, Sem_Field
)
371 and then not Match
(Field
, Lib_Field
)
373 Match
(Field
, Get_Field
);
375 if Field
= "Str" then Field
:= V_String_Id
;
376 elsif Field
= "Node" then Field
:= V_Node_Id
;
377 elsif Field
= "Name" then Field
:= V_Name_Id
;
378 elsif Field
= "List" then Field
:= V_List_Id
;
379 elsif Field
= "Elist" then Field
:= V_Elist_Id
;
380 elsif Field
= "Flag" then Field
:= V_Boolean
;
383 if Field
= "Boolean" then
384 Default
:= V
("False");
389 Match
(Comment
, Get_Dflt
);
391 WriteBS
(Prevl
& ';');
392 Append
(Arg_List
, Synonym
& ',');
393 Rpad
(Synonym
, NWidth
);
396 Prevl
:= " " & Synonym
& " : " & Field
;
399 " " & Synonym
& " : " & Field
& " := " & Default
;
405 WriteBS
(Prevl
& ')');
406 WriteS
(" return Node_Id;");
407 WriteS
(" pragma Inline (Make_" & Node
& ");");
408 WriteB
(" return Node_Id");
410 WriteB
(" N : constant Node_Id :=");
412 if Match
(Node
, "Defining_Identifier") or else
413 Match
(Node
, "Defining_Character") or else
414 Match
(Node
, "Defining_Operator")
416 WriteB
(" New_Entity (N_" & Node
& ", Sloc);");
418 WriteB
(" New_Node (N_" & Node
& ", Sloc);");
423 while Match
(Arg_List
, Next_Arg
, "") loop
424 if Length
(Arg
) < NWidth
then
425 WriteB
(" Set_" & Arg
& " (N, " & Arg
& ");");
427 WriteB
(" Set_" & Arg
);
428 WriteB
(" (N, " & Arg
& ");");
432 if Match
(Node
, Op_Node
) then
433 if Node
= "Op_Plus" then
434 WriteB
(" Set_Chars (N, Name_Op_Add);");
436 elsif Node
= "Op_Minus" then
437 WriteB
(" Set_Chars (N, Name_Op_Subtract);");
439 elsif Match
(Op_Name
, Shft_Rot
) then
440 WriteB
(" Set_Chars (N, Name_" & Op_Name
& ");");
443 WriteB
(" Set_Chars (N, Name_" & Node
& ");");
446 if not Match
(Op_Name
, No_Ent
) then
447 WriteB
(" Set_Entity (N, Standard_" & Node
& ");");
451 WriteB
(" return N;");
452 WriteB
(" end Make_" & Node
& ';');
457 WriteBS
("end Nmake;");
462 Put_Line
(Standard_Error
, "usage: xnmake [-b] [-s] [filename]");