X-Git-Url: https://git.saurik.com/bison.git/blobdiff_plain/4a120d45e6a181ced2f24f2f6d23e2faa9fbd778..32e1e0a4865d64946a5497aff057d7be28c1cc3d:/src/derives.c diff --git a/src/derives.c b/src/derives.c index fabd1ef1..d78d5563 100644 --- a/src/derives.c +++ b/src/derives.c @@ -1,73 +1,83 @@ /* Match rules with nonterminals for bison, - Copyright (C) 1984, 1989 Free Software Foundation, Inc. + Copyright 1984, 1989, 2000, 2001 Free Software Foundation, Inc. -This file is part of Bison, the GNU Compiler Compiler. + This file is part of Bison, the GNU Compiler Compiler. -Bison 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. + Bison 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. -Bison 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. + Bison 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. -You should have received a copy of the GNU General Public License -along with Bison; see the file COPYING. If not, write to -the Free Software Foundation, Inc., 59 Temple Place - Suite 330, -Boston, MA 02111-1307, USA. */ + You should have received a copy of the GNU General Public License + along with Bison; see the file COPYING. If not, write to + the Free Software Foundation, Inc., 59 Temple Place - Suite 330, + Boston, MA 02111-1307, USA. */ -/* set_derives finds, for each variable (nonterminal), which rules can derive it. - It sets up the value of derives so that - derives[i - ntokens] points to a vector of rule numbers, - terminated with -1. */ - -#include #include "system.h" -#include "alloc.h" +#include "getargs.h" +#include "symtab.h" #include "types.h" +#include "reader.h" #include "gram.h" +#include "derives.h" -extern void set_derives PARAMS((void)); -extern void free_derives PARAMS((void)); +short **derives = NULL; -#if DEBUG -static void print_derives PARAMS((void)); -extern char **tags; -#endif +static void +print_derives (void) +{ + int i; + + fputs ("DERIVES\n", stderr); + + for (i = ntokens; i < nsyms; i++) + { + short *sp; + fprintf (stderr, "\t%s derives\n", symbols[i]->tag); + for (sp = derives[i]; *sp > 0; sp++) + { + item_number_t *rhsp; + fprintf (stderr, "\t\t%d:", *sp); + for (rhsp = rules[*sp].rhs; *rhsp >= 0; ++rhsp) + fprintf (stderr, " %s", symbols[*rhsp]->tag); + fprintf (stderr, " (rule %d)\n", -*rhsp - 1); + } + } + + fputs ("\n\n", stderr); +} -short **derives; void set_derives (void) { - register int i; - register int lhs; - register shorts *p; - register short *q; - register shorts **dset; - register shorts *delts; + int i; + shorts *p; + short *q; + shorts **dset; + shorts *delts; - dset = NEW2(nvars, shorts *) - ntokens; - delts = NEW2(nrules + 1, shorts); + dset = XCALLOC (shorts *, nvars) - ntokens; + delts = XCALLOC (shorts, nrules + 1); p = delts; for (i = nrules; i > 0; i--) { - lhs = rlhs[i]; - if (lhs >= 0) - { - p->next = dset[lhs]; - p->value = i; - dset[lhs] = p; - p++; - } + symbol_number_t lhs = rules[i].lhs->number; + p->next = dset[lhs]; + p->value = i; + dset[lhs] = p; + p++; } - derives = NEW2(nvars, short *) - ntokens; - q = NEW2(nvars + nrules, short); + derives = XCALLOC (short *, nvars) - ntokens; + q = XCALLOC (short, nvars + nrules); for (i = ntokens; i < nsyms; i++) { @@ -81,44 +91,16 @@ set_derives (void) *q++ = -1; } -#ifdef DEBUG - print_derives(); -#endif + if (trace_flag) + print_derives (); - FREE(dset + ntokens); - FREE(delts); + XFREE (dset + ntokens); + XFREE (delts); } void free_derives (void) { - FREE(derives[ntokens]); - FREE(derives + ntokens); -} - - - -#ifdef DEBUG - -static void -print_derives (void) -{ - register int i; - register short *sp; - - printf(_("\n\n\nDERIVES\n\n")); - - for (i = ntokens; i < nsyms; i++) - { - printf(_("%s derives"), tags[i]); - for (sp = derives[i]; *sp > 0; sp++) - { - printf(" %d", *sp); - } - putchar('\n'); - } - - putchar('\n'); + XFREE (derives[ntokens]); + XFREE (derives + ntokens); } - -#endif