blob: 5f470fa086ab8cc0f82db7b3fdcd9548ab21f7e0 [file] [log] [blame]
Guido van Rossumf70e43a1991-02-19 12:39:46 +00001
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002/* Parser accelerator module */
3
Guido van Rossum3f5da241990-12-20 15:06:42 +00004/* The parser as originally conceived had disappointing performance.
5 This module does some precomputation that speeds up the selection
6 of a DFA based upon a token, turning a search through an array
7 into a simple indexing operation. The parser now cannot work
8 without the accelerators installed. Note that the accelerators
9 are installed dynamically when the parser is initialized, they
10 are not part of the static data structure written on graminit.[ch]
11 by the parser generator. */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000012
Guido van Rossum3f5da241990-12-20 15:06:42 +000013#include "pgenheaders.h"
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000014#include "grammar.h"
Guido van Rossum1d5735e1994-08-30 08:27:36 +000015#include "node.h"
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000016#include "token.h"
Guido van Rossum3f5da241990-12-20 15:06:42 +000017#include "parser.h"
18
19/* Forward references */
Tim Petersdbd9ba62000-07-09 03:09:57 +000020static void fixdfa(grammar *, dfa *);
21static void fixstate(grammar *, state *);
Guido van Rossum3f5da241990-12-20 15:06:42 +000022
23void
Thomas Wouters23c9e002000-07-22 19:20:54 +000024PyGrammar_AddAccelerators(grammar *g)
Guido van Rossum3f5da241990-12-20 15:06:42 +000025{
26 dfa *d;
27 int i;
Guido van Rossum3f5da241990-12-20 15:06:42 +000028 d = g->g_dfa;
29 for (i = g->g_ndfas; --i >= 0; d++)
30 fixdfa(g, d);
31 g->g_accel = 1;
Guido van Rossum3f5da241990-12-20 15:06:42 +000032}
33
Guido van Rossumaee094c1997-08-02 03:02:27 +000034void
Thomas Wouters23c9e002000-07-22 19:20:54 +000035PyGrammar_RemoveAccelerators(grammar *g)
Guido van Rossumaee094c1997-08-02 03:02:27 +000036{
37 dfa *d;
38 int i;
39 g->g_accel = 0;
40 d = g->g_dfa;
41 for (i = g->g_ndfas; --i >= 0; d++) {
42 state *s;
43 int j;
44 s = d->d_state;
45 for (j = 0; j < d->d_nstates; j++, s++) {
46 if (s->s_accel)
Andrew MacIntyre80d4e2a2002-08-04 06:28:21 +000047 PyObject_FREE(s->s_accel);
Guido van Rossumaee094c1997-08-02 03:02:27 +000048 s->s_accel = NULL;
49 }
50 }
51}
52
Guido van Rossum3f5da241990-12-20 15:06:42 +000053static void
Thomas Wouters23c9e002000-07-22 19:20:54 +000054fixdfa(grammar *g, dfa *d)
Guido van Rossum3f5da241990-12-20 15:06:42 +000055{
56 state *s;
57 int j;
58 s = d->d_state;
59 for (j = 0; j < d->d_nstates; j++, s++)
Guido van Rossum9abc5391992-03-27 17:24:37 +000060 fixstate(g, s);
Guido van Rossum3f5da241990-12-20 15:06:42 +000061}
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000062
63static void
Thomas Wouters23c9e002000-07-22 19:20:54 +000064fixstate(grammar *g, state *s)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000065{
66 arc *a;
67 int k;
68 int *accel;
69 int nl = g->g_ll.ll_nlabels;
70 s->s_accept = 0;
Andrew MacIntyre80d4e2a2002-08-04 06:28:21 +000071 accel = (int *) PyObject_MALLOC(nl * sizeof(int));
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000072 for (k = 0; k < nl; k++)
73 accel[k] = -1;
74 a = s->s_arc;
75 for (k = s->s_narcs; --k >= 0; a++) {
76 int lbl = a->a_lbl;
77 label *l = &g->g_ll.ll_label[lbl];
78 int type = l->lb_type;
79 if (a->a_arrow >= (1 << 7)) {
80 printf("XXX too many states!\n");
81 continue;
82 }
83 if (ISNONTERMINAL(type)) {
Guido van Rossum86bea461997-04-29 21:03:06 +000084 dfa *d1 = PyGrammar_FindDFA(g, type);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000085 int ibit;
86 if (type - NT_OFFSET >= (1 << 7)) {
87 printf("XXX too high nonterminal number!\n");
88 continue;
89 }
90 for (ibit = 0; ibit < g->g_ll.ll_nlabels; ibit++) {
91 if (testbit(d1->d_first, ibit)) {
92 if (accel[ibit] != -1)
93 printf("XXX ambiguity!\n");
94 accel[ibit] = a->a_arrow | (1 << 7) |
95 ((type - NT_OFFSET) << 8);
96 }
97 }
98 }
99 else if (lbl == EMPTY)
100 s->s_accept = 1;
101 else if (lbl >= 0 && lbl < nl)
102 accel[lbl] = a->a_arrow;
103 }
104 while (nl > 0 && accel[nl-1] == -1)
105 nl--;
106 for (k = 0; k < nl && accel[k] == -1;)
107 k++;
108 if (k < nl) {
109 int i;
Andrew MacIntyre80d4e2a2002-08-04 06:28:21 +0000110 s->s_accel = (int *) PyObject_MALLOC((nl-k) * sizeof(int));
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000111 if (s->s_accel == NULL) {
112 fprintf(stderr, "no mem to add parser accelerators\n");
113 exit(1);
114 }
115 s->s_lower = k;
116 s->s_upper = nl;
117 for (i = 0; k < nl; i++, k++)
118 s->s_accel[i] = accel[k];
119 }
Andrew MacIntyre80d4e2a2002-08-04 06:28:21 +0000120 PyObject_FREE(accel);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000121}