Pass name cleanups
[official-gcc.git] / gcc / genhooks.c
blobd70c4fe8b89daa42349f2371bf1b325ab1f5c0dd
1 /* Process target.def to create initialization macros definition in
2 target-hooks-def.h and documentation in target-hooks.texi.
3 Copyright (C) 2009, 2010, 2011 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
10 version.
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
20 #include "bconfig.h"
21 #include "system.h"
22 #include "hashtab.h"
23 #include "errors.h"
25 struct hook_desc { const char *doc, *type, *name, *param, *init, *docname; };
26 static struct hook_desc hook_array[] = {
27 #define HOOK_VECTOR_1(NAME, FRAGMENT) \
28 { 0, 0, #NAME, 0, 0, HOOK_TYPE },
29 #define DEFHOOKPOD(NAME, DOC, TYPE, INIT) \
30 { DOC, #TYPE, HOOK_PREFIX #NAME, 0, #INIT, HOOK_TYPE },
31 #define DEFHOOK(NAME, DOC, TYPE, PARAMS, INIT) \
32 { DOC, #TYPE, HOOK_PREFIX #NAME, #PARAMS, #INIT, HOOK_TYPE },
33 #define DEFHOOK_UNDOC(NAME, DOC, TYPE, PARAMS, INIT) \
34 { "*", #TYPE, HOOK_PREFIX #NAME, #PARAMS, #INIT, HOOK_TYPE },
35 #include "target.def"
36 #include "c-family/c-target.def"
37 #undef DEFHOOK
40 /* For each @Fcode in the first paragraph of the documentation string DOC,
41 print an @findex directive. HOOK_NAME is the name of the hook this bit of
42 documentation pertains to. */
43 static void
44 emit_findices (const char *doc, const char *hook_name)
46 const char *end = strstr (doc, "\n\n");
47 const char *fcode;
49 while ((fcode = strstr (doc, "@Fcode{")) && (!end || fcode < end))
51 fcode += strlen ("@Fcode{");
52 doc = strchr (fcode, '}');
53 if (!doc)
54 fatal ("Malformed @Fcode for hook %s\n", hook_name);
55 printf ("@findex %.*s\n", (int) (doc - fcode), fcode);
56 doc = fcode;
60 /* Return an upper-case copy of IN. */
61 static char *
62 upstrdup (const char *in)
64 char *p, *ret = xstrdup (in);
65 for (p = ret; *p; p++)
66 *p = TOUPPER (*p);
67 return ret;
70 /* Struct for 'start hooks' which start a sequence of consecutive hooks
71 that are defined in target.def and to be documented in tm.texi. */
72 struct s_hook
74 char *name;
75 int pos;
78 static hashval_t
79 s_hook_hash (const void *p)
81 const struct s_hook *s_hook = (const struct s_hook *)p;
82 return htab_hash_string (s_hook->name);
85 static int
86 s_hook_eq_p (const void *p1, const void *p2)
88 return (strcmp (((const struct s_hook *) p1)->name,
89 ((const struct s_hook *) p2)->name) == 0);
92 /* Read the documentation file with name IN_FNAME, perform substitutions
93 to incorporate informtion from hook_array, and emit the result on stdout.
94 Hooks defined with DEFHOOK / DEFHOOKPOD are emitted at the place of a
95 matching @hook in the input file; if there is no matching @hook, the
96 hook is emitted after the hook that precedes it in target.def .
97 Usually, the emitted hook documentation starts with the hook
98 signature, followed by the string from the doc field.
99 The documentation is bracketed in @deftypefn / @deftypevr and a matching
100 @end.
101 While emitting the doc field, @Fcode is translated to @code, and an
102 @findex entry is added to the affected paragraph.
103 If the doc field starts with '*', the leading '*' is stripped, and the doc
104 field is otherwise emitted unaltered; no function signature/
105 @deftypefn/deftypevr/@end is emitted.
106 In particular, a doc field of "*" means not to emit any ocumentation for
107 this target.def / hook_array entry at all (there might be documentation
108 for this hook in the file named IN_FNAME, though).
109 A doc field of 0 is used to append the hook signature after the previous
110 hook's signture, so that one description can be used for a group of hooks.
111 When the doc field is "", @deftypefn/@deftypevr and the hook signature
112 is emitted, but not the matching @end. This allows all the free-form
113 documentation to be placed in IN_FNAME, to work around GPL/GFDL
114 licensing incompatibility issues. */
115 static void
116 emit_documentation (const char *in_fname)
118 int i, j;
119 char buf[1000];
120 htab_t start_hooks = htab_create (99, s_hook_hash, s_hook_eq_p, (htab_del) 0);
121 FILE *f;
122 bool found_start = false;
124 /* Enter all the start hooks in start_hooks. */
125 f = fopen (in_fname, "r");
126 if (!f)
128 perror ("");
129 fatal ("Couldn't open input file");
131 while (fscanf (f, "%*[^@]"), buf[0] = '\0',
132 fscanf (f, "@%5[^ \n]", buf) != EOF)
134 void **p;
135 struct s_hook *shp;
137 if (strcmp (buf, "hook") != 0)
138 continue;
139 buf[0] = '\0';
140 fscanf (f, "%999s", buf);
141 shp = XNEW (struct s_hook);
142 shp->name = upstrdup (buf);
143 shp->pos = -1;
144 p = htab_find_slot (start_hooks, shp, INSERT);
145 if (*p != HTAB_EMPTY_ENTRY)
146 fatal ("Duplicate placement for hook %s\n", shp->name);
147 *(struct s_hook **) p = shp;
149 fclose (f);
150 /* For each hook in hook_array, if it is a start hook, store its position. */
151 for (i = 0; i < (int) (sizeof hook_array / sizeof hook_array[0]); i++)
153 struct s_hook sh, *shp;
154 void *p;
156 if (!hook_array[i].doc || strcmp (hook_array[i].doc, "*") == 0)
157 continue;
158 sh.name = upstrdup (hook_array[i].name);
159 p = htab_find (start_hooks, &sh);
160 if (p)
162 shp = (struct s_hook *) p;
163 if (shp->pos >= 0)
164 fatal ("Duplicate hook %s\n", sh.name);
165 shp->pos = i;
166 found_start = true;
168 else if (!found_start)
169 fatal ("No place specified to document hook %s\n", sh.name);
170 free (sh.name);
172 /* Copy input file to stdout, substituting @hook directives with the
173 corresponding hook documentation sequences. */
174 f = fopen (in_fname, "r");
175 if (!f)
177 perror ("");
178 fatal ("Couldn't open input file");
180 for (;;)
182 struct s_hook sh, *shp;
183 int c = getc (f);
184 char *name;
186 if (c == EOF)
187 break;
188 if (c != '@')
190 putchar (c);
191 continue;
193 buf[0] = '\0';
194 fscanf (f, "%5[^ \n]", buf);
195 if (strcmp (buf, "hook") != 0)
197 printf ("@%s", buf);
198 continue;
200 fscanf (f, "%999s", buf);
201 sh.name = name = upstrdup (buf);
202 shp = (struct s_hook *) htab_find (start_hooks, &sh);
203 if (!shp || shp->pos < 0)
204 fatal ("No documentation for hook %s\n", sh.name);
205 i = shp->pos;
208 const char *q, *e;
209 const char *deftype;
210 const char *doc, *fcode, *p_end;
212 /* A leading '*' means to output the documentation string without
213 further processing. */
214 if (*hook_array[i].doc == '*')
215 printf ("%s", hook_array[i].doc + 1);
216 else
218 if (i != shp->pos)
219 printf ("\n\n");
220 emit_findices (hook_array[i].doc, name);
222 /* Print header. Function-valued hooks have a parameter list,
223 unlike POD-valued ones. */
224 deftype = hook_array[i].param ? "deftypefn" : "deftypevr";
225 printf ("@%s {%s} ", deftype, hook_array[i].docname);
226 if (strchr (hook_array[i].type, ' '))
227 printf ("{%s}", hook_array[i].type);
228 else
229 printf ("%s", hook_array[i].type);
230 printf (" %s", name);
231 if (hook_array[i].param)
233 /* Print the parameter list, with the parameter names
234 enclosed in @var{}. */
235 printf (" ");
236 for (q = hook_array[i].param; (e = strpbrk (q, " *,)"));
237 q = e + 1)
238 /* Type names like 'int' are followed by a space, sometimes
239 also by '*'. 'void' should appear only in "(void)". */
240 if (*e == ' ' || *e == '*' || *q == '(')
241 printf ("%.*s", (int) (e - q + 1), q);
242 else
243 printf ("@var{%.*s}%c", (int) (e - q), q, *e);
245 /* POD-valued hooks sometimes come in groups with common
246 documentation.*/
247 for (j = i + 1;
248 j < (int) (sizeof hook_array / sizeof hook_array[0])
249 && hook_array[j].doc == 0 && hook_array[j].type; j++)
251 char *namex = upstrdup (hook_array[j].name);
253 printf ("\n@%sx {%s} {%s} %s",
254 deftype, hook_array[j].docname,
255 hook_array[j].type, namex);
257 if (hook_array[i].doc[0])
259 printf ("\n");
260 /* Print each documentation paragraph in turn. */
261 for (doc = hook_array[i].doc; *doc; doc = p_end)
263 /* Find paragraph end. */
264 p_end = strstr (doc, "\n\n");
265 p_end = (p_end ? p_end + 2 : doc + strlen (doc));
266 /* Print paragraph, emitting @Fcode as @code. */
267 for (; (fcode = strstr (doc, "@Fcode{")) && fcode < p_end;
268 doc = fcode + 2)
269 printf ("%.*s@", (int) (fcode - doc), doc);
270 printf ("%.*s", (int) (p_end - doc), doc);
271 /* Emit function indices for next paragraph. */
272 emit_findices (p_end, name);
274 printf ("\n@end %s", deftype);
277 if (++i >= (int) (sizeof hook_array / sizeof hook_array[0])
278 || !hook_array[i].doc)
279 break;
280 free (name);
281 sh.name = name = upstrdup (hook_array[i].name);
283 while (!htab_find (start_hooks, &sh));
284 free (name);
288 /* Emit #defines to stdout (this will be redirected to generate
289 target-hook-def.h) which set target hooks initializer macros
290 to their default values. These should only be emitted for hooks
291 whose type is given by DOCNAME. */
292 static void
293 emit_init_macros (const char *docname)
295 int i;
296 const int MAX_NEST = 2;
297 int print_nest, nest = 0;
299 for (print_nest = 0; print_nest <= MAX_NEST; print_nest++)
301 for (i = 0; i < (int) (sizeof hook_array / sizeof hook_array[0]); i++)
303 char *name = upstrdup (hook_array[i].name);
305 if (strcmp (hook_array[i].docname, docname) != 0)
306 continue;
308 if (!hook_array[i].type)
310 if (*name)
312 if (nest && nest == print_nest)
313 printf (" %s, \\\n", name);
314 nest++;
315 if (nest > MAX_NEST)
316 fatal ("Unexpected nesting of %s\n", name);
317 if (nest == print_nest)
318 printf ("\n#define %s \\\n { \\\n", name);
320 else
322 if (nest == print_nest)
323 printf (" }\n");
324 nest--;
326 continue;
328 if (0 == print_nest)
330 /* Output default definitions of target hooks. */
331 printf ("#ifndef %s\n#define %s %s\n#endif\n",
332 name, name, hook_array[i].init);
334 if (nest == print_nest)
335 printf (" %s, \\\n", name);
341 main (int argc, char **argv)
343 if (argc >= 3)
344 emit_documentation (argv[2]);
345 else
346 emit_init_macros (argv[1]);
347 return 0;