1 ------------------------------------------------------------------------------
3 -- GNAT SYSTEM UTILITIES --
9 -- Copyright (C) 1992-2015, 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 C header file einfo.h (C version of einfo.ads spec)
27 -- for use by Gigi. This header file contains all definitions and access
28 -- functions, but does not contain set procedures, since Gigi is not allowed
29 -- to modify the GNAT tree.
33 -- einfo.ads spec of Einfo package
34 -- einfo.adb body of Einfo package
38 -- einfo.h corresponding C header file
40 -- Note: It is assumed that the input files have been compiled without errors
42 -- An optional argument allows the specification of an output file name to
43 -- override the default einfo.h file name for the generated output file.
45 -- Most, but not all of the functions in Einfo can be inlined in the C header.
46 -- They are the functions identified by pragma Inline in the spec. Functions
47 -- that cannot be inlined are simply defined in the header.
49 with Ada
.Command_Line
; use Ada
.Command_Line
;
50 with Ada
.Strings
.Unbounded
; use Ada
.Strings
.Unbounded
;
51 with Ada
.Strings
.Unbounded
.Text_IO
; use Ada
.Strings
.Unbounded
.Text_IO
;
52 with Ada
.Strings
.Maps
; use Ada
.Strings
.Maps
;
53 with Ada
.Strings
.Maps
.Constants
; use Ada
.Strings
.Maps
.Constants
;
54 with Ada
.Text_IO
; use Ada
.Text_IO
;
56 with GNAT
.Spitbol
; use GNAT
.Spitbol
;
57 with GNAT
.Spitbol
.Patterns
; use GNAT
.Spitbol
.Patterns
;
58 with GNAT
.Spitbol
.Table_Boolean
; use GNAT
.Spitbol
.Table_Boolean
;
64 package TB
renames GNAT
.Spitbol
.Table_Boolean
;
71 Expr
: VString
:= Nul
;
72 Filler
: VString
:= Nul
;
73 Fline
: VString
:= Nul
;
74 Formal
: VString
:= Nul
;
75 Formaltyp
: VString
:= Nul
;
77 Line
: VString
:= Nul
;
83 Name
: VString
:= Nul
;
84 NewS
: VString
:= Nul
;
85 Nextlin
: VString
:= Nul
;
86 OldS
: VString
:= Nul
;
88 Term
: VString
:= Nul
;
91 -- Used to read initial header from body
94 -- Used to read full text of both spec and body
97 -- Used to write output file
99 wsp
: constant Pattern
:= NSpan
(' ' & ASCII
.HT
);
100 Comment
: constant Pattern
:= wsp
& "--";
101 For_Rep
: constant Pattern
:= wsp
& "for";
102 Get_Func
: constant Pattern
:= wsp
* A
& "function" & wsp
103 & Break
(' ') * Name
;
104 Inline
: constant Pattern
:= wsp
& "pragma Inline (" & Break
(')') * Name
;
105 Get_Pack
: constant Pattern
:= wsp
& "package ";
106 Get_Enam
: constant Pattern
:= wsp
& Break
(',') * N
& ',';
107 Find_Fun
: constant Pattern
:= wsp
& "function";
108 F_Subtyp
: constant Pattern
:= wsp
* A
& "subtype " & Break
(' ') * N
;
109 G_Subtyp
: constant Pattern
:= wsp
& "subtype" & wsp
& Break
(' ') * NewS
110 & wsp
& "is" & wsp
& Break
(" ;") * OldS
111 & wsp
& ';' & wsp
& Rtab
(0);
112 F_Typ
: constant Pattern
:= wsp
* A
& "type " & Break
(' ') * N
&
114 Get_Nam
: constant Pattern
:= wsp
* A
& Break
(",)") * Nam
116 Get_Styp
: constant Pattern
:= wsp
* A
& "subtype " & Break
(' ') * N
;
117 Get_N1
: constant Pattern
:= wsp
& Break
(' ') * N1
;
118 Get_N2
: constant Pattern
:= wsp
& "-- " & Rest
* N2
;
119 Get_N3
: constant Pattern
:= wsp
& Break
(';') * N3
;
120 Get_FN
: constant Pattern
:= wsp
* C
& "function" & wsp
122 Is_Rturn
: constant Pattern
:= BreakX
('r') & "return";
123 Is_Begin
: constant Pattern
:= wsp
& "begin";
124 Get_Asrt
: constant Pattern
:= wsp
& "pragma Assert";
125 Semicoln
: constant Pattern
:= BreakX
(';');
126 Get_Cmnt
: constant Pattern
:= BreakX
('-') * A
& "--";
127 Get_Expr
: constant Pattern
:= wsp
& "return " & Break
(';') * Expr
;
128 Chek_End
: constant Pattern
:= wsp
& "end" & BreakX
(';') & ';';
129 Get_B1
: constant Pattern
:= BreakX
(' ') * A
& " in " & Rest
* B
;
130 Get_B2
: constant Pattern
:= BreakX
(' ') * A
& " = " & Rest
* B
;
131 Get_B3
: constant Pattern
:= BreakX
(' ') * A
& " /= " & Rest
* B
;
132 Get_B4
: constant Pattern
:= BreakX
(' ') * A
& " or else " & Rest
* B
;
133 To_Paren
: constant Pattern
:= wsp
* Filler
& '(';
134 Get_Fml
: constant Pattern
:= Break
(" :") * Formal
& wsp
& ':' & wsp
135 & BreakX
(" );") * Formaltyp
;
136 Nxt_Fml
: constant Pattern
:= wsp
& "; ";
137 Get_Rtn
: constant Pattern
:= wsp
& "return" & wsp
& BreakX
(" ;") * Rtn
;
138 Rem_Prn
: constant Pattern
:= wsp
& ')';
142 Lineno
: Natural := 0;
143 -- Line number in spec
148 Inlined
: TB
.Table
(200);
149 -- Inlined<N> = True for inlined function, False otherwise
151 Lastinlined
: Boolean;
154 -- Signal bad function in body
156 function Getlin
return VString
;
157 -- Get non-comment line (comment lines skipped, also skips FOR rep clauses)
158 -- Fatal error (raises End_Error exception) if end of file encountered
160 procedure Must
(B
: Boolean);
161 -- Raises Err if the argument (a Match) call, returns False
163 procedure Sethead
(Line
: in out VString
; Term
: String);
164 -- Process function header into C
174 "Body for function " & FN
& " does not meet requirements");
182 function Getlin
return VString
is
187 Lin
:= Get_Line
(InF
);
188 Lineno
:= Lineno
+ 1;
191 and then not Match
(Lin
, Comment
)
192 and then not Match
(Lin
, For_Rep
)
203 procedure Must
(B
: Boolean) is
214 procedure Sethead
(Line
: in out VString
; Term
: String) is
218 Must
(Match
(Line
, Get_Func
, ""));
221 if Match
(Line
, To_Paren
, "") then
222 Args
:= Filler
& '(';
225 Must
(Match
(Line
, Get_Fml
, ""));
226 Append
(Args
, Formaltyp
& ' ' & Formal
);
227 exit when not Match
(Line
, Nxt_Fml
);
231 Match
(Line
, Rem_Prn
, "");
235 Must
(Match
(Line
, Get_Rtn
));
237 if Present
(Inlined
, Name
) then
238 Put_Line
(Ofile
, A
& "INLINE " & Rtn
& ' ' & Name
& Args
& Term
);
240 Put_Line
(Ofile
, A
& Rtn
& ' ' & Name
& Args
& Term
);
244 -- Start of processing for XEinfo
247 -- First run CEinfo to check for errors. Note that CEinfo is also a
248 -- stand-alone program that can be run separately.
252 Anchored_Mode
:= True;
254 if Argument_Count
> 0 then
255 Create
(Ofile
, Out_File
, Argument
(1));
257 Create
(Ofile
, Out_File
, "einfo.h");
260 Open
(InB
, In_File
, "einfo.adb");
261 Open
(InF
, In_File
, "einfo.ads");
265 Line
:= Get_Line
(InF
);
266 Lineno
:= Lineno
+ 1;
271 "-- C Header File ");
272 Match
(Line
, "--", "/*");
273 Match
(Line
, Rtab
(2) * A
& "--", M
);
274 Replace
(M
, A
& "*/");
275 Put_Line
(Ofile
, Line
);
278 Put_Line
(Ofile
, "");
280 Put_Line
(Ofile
, "#ifdef __cplusplus");
281 Put_Line
(Ofile
, "extern ""C"" {");
282 Put_Line
(Ofile
, "#endif");
284 -- Find and record pragma Inlines
287 Line
:= Get_Line
(InF
);
288 exit when Match
(Line
, " -- END XEINFO INLINES");
290 if Match
(Line
, Inline
) then
291 Set
(Inlined
, Name
, True);
295 -- Skip to package line
297 Reset
(InF
, In_File
);
302 exit when Match
(Line
, Get_Pack
);
307 Must
(Match
(Line
, wsp
& "type Entity_Kind"));
309 -- Process entity kind code definitions
313 exit when not Match
(Line
, Get_Enam
);
314 Put_Line
(Ofile
, " #define " & Rpad
(N
, 32) & " " & V
);
318 Must
(Match
(Line
, wsp
& Rest
* N
));
319 Put_Line
(Ofile
, " #define " & Rpad
(N
, 32) & ' ' & V
);
322 Must
(Match
(Line
, wsp
& ");"));
323 Put_Line
(Ofile
, "");
325 -- Loop through subtype and type declarations
329 exit when Match
(Line
, Find_Fun
);
331 -- Case of a subtype declaration
333 if Match
(Line
, F_Subtyp
) then
335 -- Case of a subtype declaration that is an abbreviation of the
336 -- form subtype x is y, and if so generate the appropriate typedef
338 if Match
(Line
, G_Subtyp
) then
339 Put_Line
(Ofile
, A
& "typedef " & OldS
& ' ' & NewS
& ';');
341 -- Otherwise the subtype must be declaring a subrange of Entity_Id
344 Must
(Match
(Line
, Get_Styp
));
346 Must
(Match
(Line
, Get_N1
));
349 Line
:= Get_Line
(InF
);
350 Lineno
:= Lineno
+ 1;
351 exit when not Match
(Line
, Get_N2
);
354 Must
(Match
(Line
, Get_N3
));
355 Put_Line
(Ofile
, A
& "SUBTYPE (" & N
& ", Entity_Kind, ");
356 Put_Line
(Ofile
, A
& " " & N1
& ", " & N3
& ')');
357 Put_Line
(Ofile
, "");
360 -- Case of type declaration
362 elsif Match
(Line
, F_Typ
) then
364 -- Process type declaration (must be enumeration type)
367 Put_Line
(Ofile
, A
& "typedef char " & N
& ';');
371 Must
(Match
(Line
, Get_Nam
));
372 Put_Line
(Ofile
, A
& "#define " & Rpad
(Nam
, 25) & Ctr
);
374 exit when Term
/= ",";
377 Put_Line
(Ofile
, "");
379 -- Neither subtype nor type declaration
386 -- Process function declarations
388 -- Note: Lastinlined used to control blank lines
390 Put_Line
(Ofile
, "");
393 -- Loop through function declarations
395 while Match
(Line
, Get_FN
) loop
397 -- Non-inlined function
399 if not Present
(Inlined
, FN
) then
400 Put_Line
(Ofile
, "");
403 " #define " & FN
& " einfo__" & Translate
(FN
, Lower_Case_Map
));
408 if not Lastinlined
then
409 Put_Line
(Ofile
, "");
413 -- Merge here to output spec
416 Lastinlined
:= Get
(Inlined
, FN
);
420 Put_Line
(Ofile
, "");
422 -- Read body to find inlined functions
426 Open
(InF
, In_File
, "einfo.adb");
429 -- Loop through input lines to find bodies of inlined functions
431 while not End_Of_File
(InF
) loop
432 Fline
:= Get_Line
(InF
);
434 if Match
(Fline
, Get_FN
)
435 and then Get
(Inlined
, FN
)
437 -- Here we have an inlined function
439 if not Match
(Fline
, Is_Rturn
) then
446 if not Match
(Line
, Is_Begin
) then
450 -- Skip past pragma Asserts
454 exit when not Match
(Line
, Get_Asrt
);
456 -- Pragma assert found, get its continuation lines
459 exit when Match
(Line
, Semicoln
);
464 -- Process return statement
466 Match
(Line
, Get_Cmnt
, M
);
469 -- Get continuations of return statement
471 while not Match
(Line
, Semicoln
) loop
473 Match
(Nextlin
, wsp
, " ");
474 Append
(Line
, Nextlin
);
477 if not Match
(Line
, Get_Expr
) then
483 if not Match
(Line
, Chek_End
) then
487 Match
(Expr
, Get_B1
, M
);
488 Replace
(M
, "IN (" & A
& ", " & B
& ')');
489 Match
(Expr
, Get_B2
, M
);
490 Replace
(M
, A
& " == " & B
);
491 Match
(Expr
, Get_B3
, M
);
492 Replace
(M
, A
& " != " & B
);
493 Match
(Expr
, Get_B4
, M
);
494 Replace
(M
, A
& " || " & B
);
495 Put_Line
(Ofile
, "");
497 Put_Line
(Ofile
, C
& " { return " & Expr
& "; }");
501 Put_Line
(Ofile
, "");
503 Put_Line
(Ofile
, "#ifdef __cplusplus");
504 Put_Line
(Ofile
, "}");
505 Put_Line
(Ofile
, "#endif");
509 "/* End of einfo.h (C version of Einfo package specification) */");
516 Put_Line
(Standard_Error
, Lineno
& ". " & Line
);
517 Put_Line
(Standard_Error
, "**** fatal error ****");
521 Put_Line
(Standard_Error
, "unexpected end of file");
522 Put_Line
(Standard_Error
, "**** fatal error ****");