X-Git-Url: http://git.sourceforge.jp/view?a=blobdiff_plain;f=gcc%2Fgenhooks.c;h=789744ce228527d786f7b429f3b2d7b2fcdf69fb;hb=10089e90bd4b103351854568b2463b275a8588a2;hp=a9eecd79a9287d21bb36f31025d7045812d40fb7;hpb=c1ea0529c34fac6ae3752680aa37c67210ae1f06;p=pf3gnuchains%2Fgcc-fork.git diff --git a/gcc/genhooks.c b/gcc/genhooks.c index a9eecd79a92..789744ce228 100644 --- a/gcc/genhooks.c +++ b/gcc/genhooks.c @@ -1,6 +1,6 @@ /* Process target.def to create initialization macros definition in target-hooks-def.h and documentation in target-hooks.texi. - Copyright (C) 2009, 2010 Free Software Foundation, Inc. + Copyright (C) 2009, 2010, 2011 Free Software Foundation, Inc. This file is part of GCC. @@ -19,25 +19,26 @@ along with GCC; see the file COPYING3. If not see . */ #include "bconfig.h" #include "system.h" -#include #include "hashtab.h" #include "errors.h" -struct hook_desc { const char *doc, *type, *name, *param, *init; }; +struct hook_desc { const char *doc, *type, *name, *param, *init, *docname; }; static struct hook_desc hook_array[] = { -#define HOOK_VECTOR_1(NAME, FRAGMENT) \ - { 0, 0, #NAME, 0, 0 }, +#define HOOK_VECTOR_1(NAME, FRAGMENT) \ + { 0, 0, #NAME, 0, 0, HOOK_TYPE }, #define DEFHOOKPOD(NAME, DOC, TYPE, INIT) \ - { DOC, #TYPE, HOOK_PREFIX #NAME, 0, #INIT }, + { DOC, #TYPE, HOOK_PREFIX #NAME, 0, #INIT, HOOK_TYPE }, #define DEFHOOK(NAME, DOC, TYPE, PARAMS, INIT) \ - { DOC, #TYPE, HOOK_PREFIX #NAME, #PARAMS, #INIT }, + { DOC, #TYPE, HOOK_PREFIX #NAME, #PARAMS, #INIT, HOOK_TYPE }, #define DEFHOOK_UNDOC(NAME, DOC, TYPE, PARAMS, INIT) \ - { "*", #TYPE, HOOK_PREFIX #NAME, #PARAMS, #INIT }, + { "*", #TYPE, HOOK_PREFIX #NAME, #PARAMS, #INIT, HOOK_TYPE }, #include "target.def" +#include "c-family/c-target.def" +#include "common/common-target.def" #undef DEFHOOK }; -/* For each @Fcode in the the first paragraph of the documentation string DOC, +/* For each @Fcode in the first paragraph of the documentation string DOC, print an @findex directive. HOOK_NAME is the name of the hook this bit of documentation pertains to. */ static void @@ -222,7 +223,7 @@ emit_documentation (const char *in_fname) /* Print header. Function-valued hooks have a parameter list, unlike POD-valued ones. */ deftype = hook_array[i].param ? "deftypefn" : "deftypevr"; - printf ("@%s {Target Hook} ", deftype); + printf ("@%s {%s} ", deftype, hook_array[i].docname); if (strchr (hook_array[i].type, ' ')) printf ("{%s}", hook_array[i].type); else @@ -250,8 +251,9 @@ emit_documentation (const char *in_fname) { char *namex = upstrdup (hook_array[j].name); - printf ("\n@%sx {Target Hook} {%s} %s", - deftype, hook_array[j].type, namex); + printf ("\n@%sx {%s} {%s} %s", + deftype, hook_array[j].docname, + hook_array[j].type, namex); } if (hook_array[i].doc[0]) { @@ -286,9 +288,10 @@ emit_documentation (const char *in_fname) /* Emit #defines to stdout (this will be redirected to generate target-hook-def.h) which set target hooks initializer macros - to their default values. */ + to their default values. These should only be emitted for hooks + whose type is given by DOCNAME. */ static void -emit_init_macros (void) +emit_init_macros (const char *docname) { int i; const int MAX_NEST = 2; @@ -300,6 +303,9 @@ emit_init_macros (void) { char *name = upstrdup (hook_array[i].name); + if (strcmp (hook_array[i].docname, docname) != 0) + continue; + if (!hook_array[i].type) { if (*name) @@ -335,9 +341,9 @@ emit_init_macros (void) int main (int argc, char **argv) { - if (argc >= 2) - emit_documentation (argv[1]); + if (argc >= 3) + emit_documentation (argv[2]); else - emit_init_macros (); + emit_init_macros (argv[1]); return 0; }