freebsd-dev/contrib/gcc/gencheck.c

80 lines
1.9 KiB
C
Raw Normal View History

1999-08-26 09:30:50 +00:00
/* Generate check macros for tree codes.
2007-05-19 01:19:51 +00:00
Copyright (C) 1998, 1999, 2000, 2002, 2003, 2004
2004-07-28 03:11:36 +00:00
Free Software Foundation, Inc.
1999-08-26 09:30:50 +00:00
This file is part of GCC.
1999-08-26 09:30:50 +00:00
GCC is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free
Software Foundation; either version 2, or (at your option) any later
version.
1999-08-26 09:30:50 +00:00
GCC is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
1999-08-26 09:30:50 +00:00
You should have received a copy of the GNU General Public License
along with GCC; see the file COPYING. If not, write to the Free
2007-05-19 01:19:51 +00:00
Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301, USA. */
1999-08-26 09:30:50 +00:00
2004-07-28 03:11:36 +00:00
#include "bconfig.h"
1999-08-26 09:30:50 +00:00
#include "system.h"
2004-07-28 03:11:36 +00:00
#include "coretypes.h"
#include "tm.h"
1999-08-26 09:30:50 +00:00
2004-07-28 03:11:36 +00:00
#define DEFTREECODE(SYM, NAME, TYPE, LEN) #SYM,
1999-08-26 09:30:50 +00:00
static const char *const tree_codes[] = {
1999-08-26 09:30:50 +00:00
#include "tree.def"
#include "c-common.def"
#include "gencheck.h"
(char*) 0
1999-08-26 09:30:50 +00:00
};
2004-07-28 03:11:36 +00:00
static void usage (void);
static void
2004-07-28 03:11:36 +00:00
usage (void)
1999-08-26 09:30:50 +00:00
{
fputs ("Usage: gencheck\n", stderr);
1999-08-26 09:30:50 +00:00
}
int
2007-05-19 01:19:51 +00:00
main (int argc, char ** ARG_UNUSED (argv))
1999-08-26 09:30:50 +00:00
{
2004-07-28 03:11:36 +00:00
int i, j;
1999-08-26 09:30:50 +00:00
switch (argc)
{
case 1:
break;
default:
usage ();
return (1);
1999-08-26 09:30:50 +00:00
}
puts ("/* This file is generated using gencheck. Do not edit. */\n");
puts ("#ifndef GCC_TREE_CHECK_H");
puts ("#define GCC_TREE_CHECK_H\n");
2004-07-28 03:11:36 +00:00
/* Print macros for checks based on each of the tree code names. However,
since we include the tree nodes from all languages, we must check
for duplicate names to avoid defining the same macro twice. */
1999-08-26 09:30:50 +00:00
for (i = 0; tree_codes[i]; i++)
{
2004-07-28 03:11:36 +00:00
for (j = 0; j < i; j++)
if (strcmp (tree_codes[i], tree_codes[j]) == 0)
break;
if (i == j)
printf ("#define %s_CHECK(t)\tTREE_CHECK (t, %s)\n",
tree_codes[i], tree_codes[i]);
1999-08-26 09:30:50 +00:00
}
puts ("\n#endif /* GCC_TREE_CHECK_H */");
1999-08-26 09:30:50 +00:00
return 0;
}