blob: 2abd3db3714f5cca599faf60115d5ce845df14c3 [file] [log] [blame]
Guido van Rossumf70e43a1991-02-19 12:39:46 +00001/***********************************************************
Guido van Rossumb9f8d6e1995-01-04 19:08:09 +00002Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
3The Netherlands.
Guido van Rossumf70e43a1991-02-19 12:39:46 +00004
5 All Rights Reserved
6
7Permission to use, copy, modify, and distribute this software and its
8documentation for any purpose and without fee is hereby granted,
9provided that the above copyright notice appear in all copies and that
10both that copyright notice and this permission notice appear in
11supporting documentation, and that the names of Stichting Mathematisch
12Centrum or CWI not be used in advertising or publicity pertaining to
13distribution of the software without specific, written prior permission.
14
15STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO
16THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
17FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE
18FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
19WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
20ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
21OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
22
23******************************************************************/
24
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000025/* Grammar subroutines needed by parser */
26
Guido van Rossum3f5da241990-12-20 15:06:42 +000027#include "pgenheaders.h"
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000028#include "assert.h"
29#include "grammar.h"
30#include "token.h"
31
32/* Return the DFA for the given type */
33
34dfa *
35finddfa(g, type)
36 grammar *g;
37 register int type;
38{
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000039 register dfa *d;
Guido van Rossum6522eb01994-09-09 11:11:39 +000040#if 1
41 /* Massive speed-up */
42 d = &g->g_dfa[type - NT_OFFSET];
43 assert(d->d_type == type);
44 return d;
45#else
46 /* Old, slow version */
47 register int i;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000048
49 for (i = g->g_ndfas, d = g->g_dfa; --i >= 0; d++) {
50 if (d->d_type == type)
51 return d;
52 }
53 assert(0);
54 /* NOTREACHED */
Guido van Rossum6522eb01994-09-09 11:11:39 +000055#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000056}
57
58char *
59labelrepr(lb)
60 label *lb;
61{
62 static char buf[100];
63
64 if (lb->lb_type == ENDMARKER)
65 return "EMPTY";
66 else if (ISNONTERMINAL(lb->lb_type)) {
67 if (lb->lb_str == NULL) {
68 sprintf(buf, "NT%d", lb->lb_type);
69 return buf;
70 }
71 else
72 return lb->lb_str;
73 }
74 else {
75 if (lb->lb_str == NULL)
76 return tok_name[lb->lb_type];
77 else {
78 sprintf(buf, "%.32s(%.32s)",
79 tok_name[lb->lb_type], lb->lb_str);
80 return buf;
81 }
82 }
83}