blob: b2727c82a1783210814f6f9fd836ae5552e9c13a [file] [log] [blame]
drh75897232000-05-29 14:26:00 +00001/*
drh75897232000-05-29 14:26:00 +00002** This file contains all sources (including headers) to the LEMON
3** LALR(1) parser generator. The sources have been combined into a
drh960e8c62001-04-03 16:53:21 +00004** single file to make it easy to include LEMON in the source tree
5** and Makefile of another program.
drh75897232000-05-29 14:26:00 +00006**
drhb19a2bc2001-09-16 00:13:26 +00007** The author of this program disclaims copyright.
drh75897232000-05-29 14:26:00 +00008*/
9#include <stdio.h>
drhf9a2e7b2003-04-15 01:49:48 +000010#include <stdarg.h>
drh75897232000-05-29 14:26:00 +000011#include <string.h>
12#include <ctype.h>
drh8b582012003-10-21 13:16:03 +000013#include <stdlib.h>
drh75897232000-05-29 14:26:00 +000014
drh75897232000-05-29 14:26:00 +000015#ifndef __WIN32__
16# if defined(_WIN32) || defined(WIN32)
17# define __WIN32__
18# endif
19#endif
20
21/* #define PRIVATE static */
22#define PRIVATE
23
24#ifdef TEST
25#define MAXRHS 5 /* Set low to exercise exception code */
26#else
27#define MAXRHS 1000
28#endif
29
30char *msort();
31extern void *malloc();
32
33/******** From the file "action.h" *************************************/
34struct action *Action_new();
35struct action *Action_sort();
drh75897232000-05-29 14:26:00 +000036
37/********* From the file "assert.h" ************************************/
38void myassert();
39#ifndef NDEBUG
40# define assert(X) if(!(X))myassert(__FILE__,__LINE__)
41#else
42# define assert(X)
43#endif
44
45/********** From the file "build.h" ************************************/
46void FindRulePrecedences();
47void FindFirstSets();
48void FindStates();
49void FindLinks();
50void FindFollowSets();
51void FindActions();
52
53/********* From the file "configlist.h" *********************************/
54void Configlist_init(/* void */);
55struct config *Configlist_add(/* struct rule *, int */);
56struct config *Configlist_addbasis(/* struct rule *, int */);
57void Configlist_closure(/* void */);
58void Configlist_sort(/* void */);
59void Configlist_sortbasis(/* void */);
60struct config *Configlist_return(/* void */);
61struct config *Configlist_basis(/* void */);
62void Configlist_eat(/* struct config * */);
63void Configlist_reset(/* void */);
64
65/********* From the file "error.h" ***************************************/
drhf9a2e7b2003-04-15 01:49:48 +000066void ErrorMsg(const char *, int,const char *, ...);
drh75897232000-05-29 14:26:00 +000067
68/****** From the file "option.h" ******************************************/
69struct s_options {
70 enum { OPT_FLAG=1, OPT_INT, OPT_DBL, OPT_STR,
71 OPT_FFLAG, OPT_FINT, OPT_FDBL, OPT_FSTR} type;
72 char *label;
73 char *arg;
74 char *message;
75};
drhb0c86772000-06-02 23:21:26 +000076int OptInit(/* char**,struct s_options*,FILE* */);
77int OptNArgs(/* void */);
78char *OptArg(/* int */);
79void OptErr(/* int */);
80void OptPrint(/* void */);
drh75897232000-05-29 14:26:00 +000081
82/******** From the file "parse.h" *****************************************/
83void Parse(/* struct lemon *lemp */);
84
85/********* From the file "plink.h" ***************************************/
86struct plink *Plink_new(/* void */);
87void Plink_add(/* struct plink **, struct config * */);
88void Plink_copy(/* struct plink **, struct plink * */);
89void Plink_delete(/* struct plink * */);
90
91/********** From the file "report.h" *************************************/
92void Reprint(/* struct lemon * */);
93void ReportOutput(/* struct lemon * */);
94void ReportTable(/* struct lemon * */);
95void ReportHeader(/* struct lemon * */);
96void CompressTables(/* struct lemon * */);
drhada354d2005-11-05 15:03:59 +000097void ResortStates(/* struct lemon * */);
drh75897232000-05-29 14:26:00 +000098
99/********** From the file "set.h" ****************************************/
100void SetSize(/* int N */); /* All sets will be of size N */
101char *SetNew(/* void */); /* A new set for element 0..N */
102void SetFree(/* char* */); /* Deallocate a set */
103
104int SetAdd(/* char*,int */); /* Add element to a set */
105int SetUnion(/* char *A,char *B */); /* A <- A U B, thru element N */
106
107#define SetFind(X,Y) (X[Y]) /* True if Y is in set X */
108
109/********** From the file "struct.h" *************************************/
110/*
111** Principal data structures for the LEMON parser generator.
112*/
113
drhb27b83a2002-08-14 23:18:57 +0000114typedef enum {B_FALSE=0, B_TRUE} Boolean;
drh75897232000-05-29 14:26:00 +0000115
116/* Symbols (terminals and nonterminals) of the grammar are stored
117** in the following: */
118struct symbol {
119 char *name; /* Name of the symbol */
120 int index; /* Index number for this symbol */
121 enum {
122 TERMINAL,
drhfd405312005-11-06 04:06:59 +0000123 NONTERMINAL,
124 MULTITERMINAL
drh75897232000-05-29 14:26:00 +0000125 } type; /* Symbols are all either TERMINALS or NTs */
126 struct rule *rule; /* Linked list of rules of this (if an NT) */
drh0bd1f4e2002-06-06 18:54:39 +0000127 struct symbol *fallback; /* fallback token in case this token doesn't parse */
drh75897232000-05-29 14:26:00 +0000128 int prec; /* Precedence if defined (-1 otherwise) */
129 enum e_assoc {
130 LEFT,
131 RIGHT,
132 NONE,
133 UNK
134 } assoc; /* Associativity if predecence is defined */
135 char *firstset; /* First-set for all rules of this symbol */
136 Boolean lambda; /* True if NT and can generate an empty string */
137 char *destructor; /* Code which executes whenever this symbol is
138 ** popped from the stack during error processing */
139 int destructorln; /* Line number of destructor code */
140 char *datatype; /* The data type of information held by this
141 ** object. Only used if type==NONTERMINAL */
142 int dtnum; /* The data type number. In the parser, the value
143 ** stack is a union. The .yy%d element of this
144 ** union is the correct data type for this object */
drhfd405312005-11-06 04:06:59 +0000145 /* The following fields are used by MULTITERMINALs only */
146 int nsubsym; /* Number of constituent symbols in the MULTI */
147 struct symbol **subsym; /* Array of constituent symbols */
drh75897232000-05-29 14:26:00 +0000148};
149
150/* Each production rule in the grammar is stored in the following
151** structure. */
152struct rule {
153 struct symbol *lhs; /* Left-hand side of the rule */
154 char *lhsalias; /* Alias for the LHS (NULL if none) */
155 int ruleline; /* Line number for the rule */
156 int nrhs; /* Number of RHS symbols */
157 struct symbol **rhs; /* The RHS symbols */
158 char **rhsalias; /* An alias for each RHS symbol (NULL if none) */
159 int line; /* Line number at which code begins */
160 char *code; /* The code executed when this rule is reduced */
161 struct symbol *precsym; /* Precedence symbol for this rule */
162 int index; /* An index number for this rule */
163 Boolean canReduce; /* True if this rule is ever reduced */
164 struct rule *nextlhs; /* Next rule with the same LHS */
165 struct rule *next; /* Next rule in the global list */
166};
167
168/* A configuration is a production rule of the grammar together with
169** a mark (dot) showing how much of that rule has been processed so far.
170** Configurations also contain a follow-set which is a list of terminal
171** symbols which are allowed to immediately follow the end of the rule.
172** Every configuration is recorded as an instance of the following: */
173struct config {
174 struct rule *rp; /* The rule upon which the configuration is based */
175 int dot; /* The parse point */
176 char *fws; /* Follow-set for this configuration only */
177 struct plink *fplp; /* Follow-set forward propagation links */
178 struct plink *bplp; /* Follow-set backwards propagation links */
179 struct state *stp; /* Pointer to state which contains this */
180 enum {
181 COMPLETE, /* The status is used during followset and */
182 INCOMPLETE /* shift computations */
183 } status;
184 struct config *next; /* Next configuration in the state */
185 struct config *bp; /* The next basis configuration */
186};
187
188/* Every shift or reduce operation is stored as one of the following */
189struct action {
190 struct symbol *sp; /* The look-ahead symbol */
191 enum e_action {
192 SHIFT,
193 ACCEPT,
194 REDUCE,
195 ERROR,
196 CONFLICT, /* Was a reduce, but part of a conflict */
197 SH_RESOLVED, /* Was a shift. Precedence resolved conflict */
198 RD_RESOLVED, /* Was reduce. Precedence resolved conflict */
199 NOT_USED /* Deleted by compression */
200 } type;
201 union {
202 struct state *stp; /* The new state, if a shift */
203 struct rule *rp; /* The rule, if a reduce */
204 } x;
205 struct action *next; /* Next action for this state */
206 struct action *collide; /* Next action with the same hash */
207};
208
209/* Each state of the generated parser's finite state machine
210** is encoded as an instance of the following structure. */
211struct state {
212 struct config *bp; /* The basis configurations for this state */
213 struct config *cfp; /* All configurations in this set */
drhada354d2005-11-05 15:03:59 +0000214 int statenum; /* Sequencial number for this state */
drh75897232000-05-29 14:26:00 +0000215 struct action *ap; /* Array of actions for this state */
drh8b582012003-10-21 13:16:03 +0000216 int nTknAct, nNtAct; /* Number of actions on terminals and nonterminals */
217 int iTknOfst, iNtOfst; /* yy_action[] offset for terminals and nonterms */
218 int iDflt; /* Default action */
drh75897232000-05-29 14:26:00 +0000219};
drh8b582012003-10-21 13:16:03 +0000220#define NO_OFFSET (-2147483647)
drh75897232000-05-29 14:26:00 +0000221
222/* A followset propagation link indicates that the contents of one
223** configuration followset should be propagated to another whenever
224** the first changes. */
225struct plink {
226 struct config *cfp; /* The configuration to which linked */
227 struct plink *next; /* The next propagate link */
228};
229
230/* The state vector for the entire parser generator is recorded as
231** follows. (LEMON uses no global variables and makes little use of
232** static variables. Fields in the following structure can be thought
233** of as begin global variables in the program.) */
234struct lemon {
235 struct state **sorted; /* Table of states sorted by state number */
236 struct rule *rule; /* List of all rules */
237 int nstate; /* Number of states */
238 int nrule; /* Number of rules */
239 int nsymbol; /* Number of terminal and nonterminal symbols */
240 int nterminal; /* Number of terminal symbols */
241 struct symbol **symbols; /* Sorted array of pointers to symbols */
242 int errorcnt; /* Number of errors */
243 struct symbol *errsym; /* The error symbol */
drhe09daa92006-06-10 13:29:31 +0000244 struct symbol *wildcard; /* Token that matches anything */
drh75897232000-05-29 14:26:00 +0000245 char *name; /* Name of the generated parser */
246 char *arg; /* Declaration of the 3th argument to parser */
247 char *tokentype; /* Type of terminal symbols in the parser stack */
drh960e8c62001-04-03 16:53:21 +0000248 char *vartype; /* The default type of non-terminal symbols */
drh75897232000-05-29 14:26:00 +0000249 char *start; /* Name of the start symbol for the grammar */
250 char *stacksize; /* Size of the parser stack */
251 char *include; /* Code to put at the start of the C file */
252 int includeln; /* Line number for start of include code */
253 char *error; /* Code to execute when an error is seen */
254 int errorln; /* Line number for start of error code */
255 char *overflow; /* Code to execute on a stack overflow */
256 int overflowln; /* Line number for start of overflow code */
257 char *failure; /* Code to execute on parser failure */
258 int failureln; /* Line number for start of failure code */
259 char *accept; /* Code to execute when the parser excepts */
260 int acceptln; /* Line number for the start of accept code */
261 char *extracode; /* Code appended to the generated file */
262 int extracodeln; /* Line number for the start of the extra code */
263 char *tokendest; /* Code to execute to destroy token data */
264 int tokendestln; /* Line number for token destroyer code */
drh960e8c62001-04-03 16:53:21 +0000265 char *vardest; /* Code for the default non-terminal destructor */
266 int vardestln; /* Line number for default non-term destructor code*/
drh75897232000-05-29 14:26:00 +0000267 char *filename; /* Name of the input file */
268 char *outname; /* Name of the current output file */
269 char *tokenprefix; /* A prefix added to token names in the .h file */
270 int nconflict; /* Number of parsing conflicts */
271 int tablesize; /* Size of the parse tables */
272 int basisflag; /* Print only basis configurations */
drh0bd1f4e2002-06-06 18:54:39 +0000273 int has_fallback; /* True if any %fallback is seen in the grammer */
drh75897232000-05-29 14:26:00 +0000274 char *argv0; /* Name of the program */
275};
276
277#define MemoryCheck(X) if((X)==0){ \
278 extern void memory_error(); \
279 memory_error(); \
280}
281
282/**************** From the file "table.h" *********************************/
283/*
284** All code in this file has been automatically generated
285** from a specification in the file
286** "table.q"
287** by the associative array code building program "aagen".
288** Do not edit this file! Instead, edit the specification
289** file, then rerun aagen.
290*/
291/*
292** Code for processing tables in the LEMON parser generator.
293*/
294
295/* Routines for handling a strings */
296
297char *Strsafe();
298
299void Strsafe_init(/* void */);
300int Strsafe_insert(/* char * */);
301char *Strsafe_find(/* char * */);
302
303/* Routines for handling symbols of the grammar */
304
305struct symbol *Symbol_new();
306int Symbolcmpp(/* struct symbol **, struct symbol ** */);
307void Symbol_init(/* void */);
308int Symbol_insert(/* struct symbol *, char * */);
309struct symbol *Symbol_find(/* char * */);
310struct symbol *Symbol_Nth(/* int */);
311int Symbol_count(/* */);
312struct symbol **Symbol_arrayof(/* */);
313
314/* Routines to manage the state table */
315
316int Configcmp(/* struct config *, struct config * */);
317struct state *State_new();
318void State_init(/* void */);
319int State_insert(/* struct state *, struct config * */);
320struct state *State_find(/* struct config * */);
321struct state **State_arrayof(/* */);
322
323/* Routines used for efficiency in Configlist_add */
324
325void Configtable_init(/* void */);
326int Configtable_insert(/* struct config * */);
327struct config *Configtable_find(/* struct config * */);
328void Configtable_clear(/* int(*)(struct config *) */);
329/****************** From the file "action.c" *******************************/
330/*
331** Routines processing parser actions in the LEMON parser generator.
332*/
333
334/* Allocate a new parser action */
335struct action *Action_new(){
336 static struct action *freelist = 0;
337 struct action *new;
338
339 if( freelist==0 ){
340 int i;
341 int amt = 100;
342 freelist = (struct action *)malloc( sizeof(struct action)*amt );
343 if( freelist==0 ){
344 fprintf(stderr,"Unable to allocate memory for a new parser action.");
345 exit(1);
346 }
347 for(i=0; i<amt-1; i++) freelist[i].next = &freelist[i+1];
348 freelist[amt-1].next = 0;
349 }
350 new = freelist;
351 freelist = freelist->next;
352 return new;
353}
354
355/* Compare two actions */
356static int actioncmp(ap1,ap2)
357struct action *ap1;
358struct action *ap2;
359{
360 int rc;
361 rc = ap1->sp->index - ap2->sp->index;
362 if( rc==0 ) rc = (int)ap1->type - (int)ap2->type;
363 if( rc==0 ){
drh61bc2722000-08-20 11:42:46 +0000364 assert( ap1->type==REDUCE || ap1->type==RD_RESOLVED || ap1->type==CONFLICT);
365 assert( ap2->type==REDUCE || ap2->type==RD_RESOLVED || ap2->type==CONFLICT);
drh75897232000-05-29 14:26:00 +0000366 rc = ap1->x.rp->index - ap2->x.rp->index;
367 }
368 return rc;
369}
370
371/* Sort parser actions */
372struct action *Action_sort(ap)
373struct action *ap;
374{
drh218dc692004-05-31 23:13:45 +0000375 ap = (struct action *)msort((char *)ap,(char **)&ap->next,actioncmp);
drh75897232000-05-29 14:26:00 +0000376 return ap;
377}
378
379void Action_add(app,type,sp,arg)
380struct action **app;
381enum e_action type;
382struct symbol *sp;
383char *arg;
384{
385 struct action *new;
386 new = Action_new();
387 new->next = *app;
388 *app = new;
389 new->type = type;
390 new->sp = sp;
391 if( type==SHIFT ){
392 new->x.stp = (struct state *)arg;
393 }else{
394 new->x.rp = (struct rule *)arg;
395 }
396}
drh8b582012003-10-21 13:16:03 +0000397/********************** New code to implement the "acttab" module ***********/
398/*
399** This module implements routines use to construct the yy_action[] table.
400*/
401
402/*
403** The state of the yy_action table under construction is an instance of
404** the following structure
405*/
406typedef struct acttab acttab;
407struct acttab {
408 int nAction; /* Number of used slots in aAction[] */
409 int nActionAlloc; /* Slots allocated for aAction[] */
410 struct {
411 int lookahead; /* Value of the lookahead token */
412 int action; /* Action to take on the given lookahead */
413 } *aAction, /* The yy_action[] table under construction */
414 *aLookahead; /* A single new transaction set */
415 int mnLookahead; /* Minimum aLookahead[].lookahead */
416 int mnAction; /* Action associated with mnLookahead */
417 int mxLookahead; /* Maximum aLookahead[].lookahead */
418 int nLookahead; /* Used slots in aLookahead[] */
419 int nLookaheadAlloc; /* Slots allocated in aLookahead[] */
420};
421
422/* Return the number of entries in the yy_action table */
423#define acttab_size(X) ((X)->nAction)
424
425/* The value for the N-th entry in yy_action */
426#define acttab_yyaction(X,N) ((X)->aAction[N].action)
427
428/* The value for the N-th entry in yy_lookahead */
429#define acttab_yylookahead(X,N) ((X)->aAction[N].lookahead)
430
431/* Free all memory associated with the given acttab */
432void acttab_free(acttab *p){
433 free( p->aAction );
434 free( p->aLookahead );
435 free( p );
436}
437
438/* Allocate a new acttab structure */
439acttab *acttab_alloc(void){
440 acttab *p = malloc( sizeof(*p) );
441 if( p==0 ){
442 fprintf(stderr,"Unable to allocate memory for a new acttab.");
443 exit(1);
444 }
445 memset(p, 0, sizeof(*p));
446 return p;
447}
448
449/* Add a new action to the current transaction set
450*/
451void acttab_action(acttab *p, int lookahead, int action){
452 if( p->nLookahead>=p->nLookaheadAlloc ){
453 p->nLookaheadAlloc += 25;
454 p->aLookahead = realloc( p->aLookahead,
455 sizeof(p->aLookahead[0])*p->nLookaheadAlloc );
456 if( p->aLookahead==0 ){
457 fprintf(stderr,"malloc failed\n");
458 exit(1);
459 }
460 }
461 if( p->nLookahead==0 ){
462 p->mxLookahead = lookahead;
463 p->mnLookahead = lookahead;
464 p->mnAction = action;
465 }else{
466 if( p->mxLookahead<lookahead ) p->mxLookahead = lookahead;
467 if( p->mnLookahead>lookahead ){
468 p->mnLookahead = lookahead;
469 p->mnAction = action;
470 }
471 }
472 p->aLookahead[p->nLookahead].lookahead = lookahead;
473 p->aLookahead[p->nLookahead].action = action;
474 p->nLookahead++;
475}
476
477/*
478** Add the transaction set built up with prior calls to acttab_action()
479** into the current action table. Then reset the transaction set back
480** to an empty set in preparation for a new round of acttab_action() calls.
481**
482** Return the offset into the action table of the new transaction.
483*/
484int acttab_insert(acttab *p){
485 int i, j, k, n;
486 assert( p->nLookahead>0 );
487
488 /* Make sure we have enough space to hold the expanded action table
489 ** in the worst case. The worst case occurs if the transaction set
490 ** must be appended to the current action table
491 */
drh784d86f2004-02-19 18:41:53 +0000492 n = p->mxLookahead + 1;
drh8b582012003-10-21 13:16:03 +0000493 if( p->nAction + n >= p->nActionAlloc ){
drhfdbf9282003-10-21 16:34:41 +0000494 int oldAlloc = p->nActionAlloc;
drh8b582012003-10-21 13:16:03 +0000495 p->nActionAlloc = p->nAction + n + p->nActionAlloc + 20;
496 p->aAction = realloc( p->aAction,
497 sizeof(p->aAction[0])*p->nActionAlloc);
498 if( p->aAction==0 ){
499 fprintf(stderr,"malloc failed\n");
500 exit(1);
501 }
drhfdbf9282003-10-21 16:34:41 +0000502 for(i=oldAlloc; i<p->nActionAlloc; i++){
drh8b582012003-10-21 13:16:03 +0000503 p->aAction[i].lookahead = -1;
504 p->aAction[i].action = -1;
505 }
506 }
507
508 /* Scan the existing action table looking for an offset where we can
509 ** insert the current transaction set. Fall out of the loop when that
510 ** offset is found. In the worst case, we fall out of the loop when
511 ** i reaches p->nAction, which means we append the new transaction set.
512 **
513 ** i is the index in p->aAction[] where p->mnLookahead is inserted.
514 */
drh784d86f2004-02-19 18:41:53 +0000515 for(i=0; i<p->nAction+p->mnLookahead; i++){
drh8b582012003-10-21 13:16:03 +0000516 if( p->aAction[i].lookahead<0 ){
517 for(j=0; j<p->nLookahead; j++){
518 k = p->aLookahead[j].lookahead - p->mnLookahead + i;
519 if( k<0 ) break;
520 if( p->aAction[k].lookahead>=0 ) break;
521 }
drhfdbf9282003-10-21 16:34:41 +0000522 if( j<p->nLookahead ) continue;
523 for(j=0; j<p->nAction; j++){
524 if( p->aAction[j].lookahead==j+p->mnLookahead-i ) break;
525 }
526 if( j==p->nAction ){
527 break; /* Fits in empty slots */
528 }
drh8b582012003-10-21 13:16:03 +0000529 }else if( p->aAction[i].lookahead==p->mnLookahead ){
530 if( p->aAction[i].action!=p->mnAction ) continue;
531 for(j=0; j<p->nLookahead; j++){
532 k = p->aLookahead[j].lookahead - p->mnLookahead + i;
533 if( k<0 || k>=p->nAction ) break;
534 if( p->aLookahead[j].lookahead!=p->aAction[k].lookahead ) break;
535 if( p->aLookahead[j].action!=p->aAction[k].action ) break;
536 }
537 if( j<p->nLookahead ) continue;
538 n = 0;
539 for(j=0; j<p->nAction; j++){
drhfdbf9282003-10-21 16:34:41 +0000540 if( p->aAction[j].lookahead<0 ) continue;
541 if( p->aAction[j].lookahead==j+p->mnLookahead-i ) n++;
drh8b582012003-10-21 13:16:03 +0000542 }
drhfdbf9282003-10-21 16:34:41 +0000543 if( n==p->nLookahead ){
544 break; /* Same as a prior transaction set */
545 }
drh8b582012003-10-21 13:16:03 +0000546 }
547 }
548 /* Insert transaction set at index i. */
549 for(j=0; j<p->nLookahead; j++){
550 k = p->aLookahead[j].lookahead - p->mnLookahead + i;
551 p->aAction[k] = p->aLookahead[j];
552 if( k>=p->nAction ) p->nAction = k+1;
553 }
554 p->nLookahead = 0;
555
556 /* Return the offset that is added to the lookahead in order to get the
557 ** index into yy_action of the action */
558 return i - p->mnLookahead;
559}
560
drh75897232000-05-29 14:26:00 +0000561/********************** From the file "assert.c" ****************************/
562/*
563** A more efficient way of handling assertions.
564*/
565void myassert(file,line)
566char *file;
567int line;
568{
569 fprintf(stderr,"Assertion failed on line %d of file \"%s\"\n",line,file);
570 exit(1);
571}
572/********************** From the file "build.c" *****************************/
573/*
574** Routines to construction the finite state machine for the LEMON
575** parser generator.
576*/
577
578/* Find a precedence symbol of every rule in the grammar.
579**
580** Those rules which have a precedence symbol coded in the input
581** grammar using the "[symbol]" construct will already have the
582** rp->precsym field filled. Other rules take as their precedence
583** symbol the first RHS symbol with a defined precedence. If there
584** are not RHS symbols with a defined precedence, the precedence
585** symbol field is left blank.
586*/
587void FindRulePrecedences(xp)
588struct lemon *xp;
589{
590 struct rule *rp;
591 for(rp=xp->rule; rp; rp=rp->next){
592 if( rp->precsym==0 ){
drhfd405312005-11-06 04:06:59 +0000593 int i, j;
594 for(i=0; i<rp->nrhs && rp->precsym==0; i++){
595 struct symbol *sp = rp->rhs[i];
596 if( sp->type==MULTITERMINAL ){
597 for(j=0; j<sp->nsubsym; j++){
598 if( sp->subsym[j]->prec>=0 ){
599 rp->precsym = sp->subsym[j];
600 break;
601 }
602 }
603 }else if( sp->prec>=0 ){
drh75897232000-05-29 14:26:00 +0000604 rp->precsym = rp->rhs[i];
drh75897232000-05-29 14:26:00 +0000605 }
606 }
607 }
608 }
609 return;
610}
611
612/* Find all nonterminals which will generate the empty string.
613** Then go back and compute the first sets of every nonterminal.
614** The first set is the set of all terminal symbols which can begin
615** a string generated by that nonterminal.
616*/
617void FindFirstSets(lemp)
618struct lemon *lemp;
619{
drhfd405312005-11-06 04:06:59 +0000620 int i, j;
drh75897232000-05-29 14:26:00 +0000621 struct rule *rp;
622 int progress;
623
624 for(i=0; i<lemp->nsymbol; i++){
drhb27b83a2002-08-14 23:18:57 +0000625 lemp->symbols[i]->lambda = B_FALSE;
drh75897232000-05-29 14:26:00 +0000626 }
627 for(i=lemp->nterminal; i<lemp->nsymbol; i++){
628 lemp->symbols[i]->firstset = SetNew();
629 }
630
631 /* First compute all lambdas */
632 do{
633 progress = 0;
634 for(rp=lemp->rule; rp; rp=rp->next){
635 if( rp->lhs->lambda ) continue;
636 for(i=0; i<rp->nrhs; i++){
drhfd405312005-11-06 04:06:59 +0000637 struct symbol *sp = rp->rhs[i];
638 if( sp->type!=TERMINAL || sp->lambda==B_FALSE ) break;
drh75897232000-05-29 14:26:00 +0000639 }
640 if( i==rp->nrhs ){
drhb27b83a2002-08-14 23:18:57 +0000641 rp->lhs->lambda = B_TRUE;
drh75897232000-05-29 14:26:00 +0000642 progress = 1;
643 }
644 }
645 }while( progress );
646
647 /* Now compute all first sets */
648 do{
649 struct symbol *s1, *s2;
650 progress = 0;
651 for(rp=lemp->rule; rp; rp=rp->next){
652 s1 = rp->lhs;
653 for(i=0; i<rp->nrhs; i++){
654 s2 = rp->rhs[i];
655 if( s2->type==TERMINAL ){
656 progress += SetAdd(s1->firstset,s2->index);
657 break;
drhfd405312005-11-06 04:06:59 +0000658 }else if( s2->type==MULTITERMINAL ){
659 for(j=0; j<s2->nsubsym; j++){
660 progress += SetAdd(s1->firstset,s2->subsym[j]->index);
661 }
662 break;
drh75897232000-05-29 14:26:00 +0000663 }else if( s1==s2 ){
drhb27b83a2002-08-14 23:18:57 +0000664 if( s1->lambda==B_FALSE ) break;
drh75897232000-05-29 14:26:00 +0000665 }else{
666 progress += SetUnion(s1->firstset,s2->firstset);
drhb27b83a2002-08-14 23:18:57 +0000667 if( s2->lambda==B_FALSE ) break;
drh75897232000-05-29 14:26:00 +0000668 }
669 }
670 }
671 }while( progress );
672 return;
673}
674
675/* Compute all LR(0) states for the grammar. Links
676** are added to between some states so that the LR(1) follow sets
677** can be computed later.
678*/
679PRIVATE struct state *getstate(/* struct lemon * */); /* forward reference */
680void FindStates(lemp)
681struct lemon *lemp;
682{
683 struct symbol *sp;
684 struct rule *rp;
685
686 Configlist_init();
687
688 /* Find the start symbol */
689 if( lemp->start ){
690 sp = Symbol_find(lemp->start);
691 if( sp==0 ){
692 ErrorMsg(lemp->filename,0,
693"The specified start symbol \"%s\" is not \
694in a nonterminal of the grammar. \"%s\" will be used as the start \
695symbol instead.",lemp->start,lemp->rule->lhs->name);
696 lemp->errorcnt++;
697 sp = lemp->rule->lhs;
698 }
699 }else{
700 sp = lemp->rule->lhs;
701 }
702
703 /* Make sure the start symbol doesn't occur on the right-hand side of
704 ** any rule. Report an error if it does. (YACC would generate a new
705 ** start symbol in this case.) */
706 for(rp=lemp->rule; rp; rp=rp->next){
707 int i;
708 for(i=0; i<rp->nrhs; i++){
drhfd405312005-11-06 04:06:59 +0000709 if( rp->rhs[i]==sp ){ /* FIX ME: Deal with multiterminals */
drh75897232000-05-29 14:26:00 +0000710 ErrorMsg(lemp->filename,0,
711"The start symbol \"%s\" occurs on the \
712right-hand side of a rule. This will result in a parser which \
713does not work properly.",sp->name);
714 lemp->errorcnt++;
715 }
716 }
717 }
718
719 /* The basis configuration set for the first state
720 ** is all rules which have the start symbol as their
721 ** left-hand side */
722 for(rp=sp->rule; rp; rp=rp->nextlhs){
723 struct config *newcfp;
724 newcfp = Configlist_addbasis(rp,0);
725 SetAdd(newcfp->fws,0);
726 }
727
728 /* Compute the first state. All other states will be
729 ** computed automatically during the computation of the first one.
730 ** The returned pointer to the first state is not used. */
731 (void)getstate(lemp);
732 return;
733}
734
735/* Return a pointer to a state which is described by the configuration
736** list which has been built from calls to Configlist_add.
737*/
738PRIVATE void buildshifts(/* struct lemon *, struct state * */); /* Forwd ref */
739PRIVATE struct state *getstate(lemp)
740struct lemon *lemp;
741{
742 struct config *cfp, *bp;
743 struct state *stp;
744
745 /* Extract the sorted basis of the new state. The basis was constructed
746 ** by prior calls to "Configlist_addbasis()". */
747 Configlist_sortbasis();
748 bp = Configlist_basis();
749
750 /* Get a state with the same basis */
751 stp = State_find(bp);
752 if( stp ){
753 /* A state with the same basis already exists! Copy all the follow-set
754 ** propagation links from the state under construction into the
755 ** preexisting state, then return a pointer to the preexisting state */
756 struct config *x, *y;
757 for(x=bp, y=stp->bp; x && y; x=x->bp, y=y->bp){
758 Plink_copy(&y->bplp,x->bplp);
759 Plink_delete(x->fplp);
760 x->fplp = x->bplp = 0;
761 }
762 cfp = Configlist_return();
763 Configlist_eat(cfp);
764 }else{
765 /* This really is a new state. Construct all the details */
766 Configlist_closure(lemp); /* Compute the configuration closure */
767 Configlist_sort(); /* Sort the configuration closure */
768 cfp = Configlist_return(); /* Get a pointer to the config list */
769 stp = State_new(); /* A new state structure */
770 MemoryCheck(stp);
771 stp->bp = bp; /* Remember the configuration basis */
772 stp->cfp = cfp; /* Remember the configuration closure */
drhada354d2005-11-05 15:03:59 +0000773 stp->statenum = lemp->nstate++; /* Every state gets a sequence number */
drh75897232000-05-29 14:26:00 +0000774 stp->ap = 0; /* No actions, yet. */
775 State_insert(stp,stp->bp); /* Add to the state table */
776 buildshifts(lemp,stp); /* Recursively compute successor states */
777 }
778 return stp;
779}
780
drhfd405312005-11-06 04:06:59 +0000781/*
782** Return true if two symbols are the same.
783*/
784int same_symbol(a,b)
785struct symbol *a;
786struct symbol *b;
787{
788 int i;
789 if( a==b ) return 1;
790 if( a->type!=MULTITERMINAL ) return 0;
791 if( b->type!=MULTITERMINAL ) return 0;
792 if( a->nsubsym!=b->nsubsym ) return 0;
793 for(i=0; i<a->nsubsym; i++){
794 if( a->subsym[i]!=b->subsym[i] ) return 0;
795 }
796 return 1;
797}
798
drh75897232000-05-29 14:26:00 +0000799/* Construct all successor states to the given state. A "successor"
800** state is any state which can be reached by a shift action.
801*/
802PRIVATE void buildshifts(lemp,stp)
803struct lemon *lemp;
804struct state *stp; /* The state from which successors are computed */
805{
806 struct config *cfp; /* For looping thru the config closure of "stp" */
807 struct config *bcfp; /* For the inner loop on config closure of "stp" */
808 struct config *new; /* */
809 struct symbol *sp; /* Symbol following the dot in configuration "cfp" */
810 struct symbol *bsp; /* Symbol following the dot in configuration "bcfp" */
811 struct state *newstp; /* A pointer to a successor state */
812
813 /* Each configuration becomes complete after it contibutes to a successor
814 ** state. Initially, all configurations are incomplete */
815 for(cfp=stp->cfp; cfp; cfp=cfp->next) cfp->status = INCOMPLETE;
816
817 /* Loop through all configurations of the state "stp" */
818 for(cfp=stp->cfp; cfp; cfp=cfp->next){
819 if( cfp->status==COMPLETE ) continue; /* Already used by inner loop */
820 if( cfp->dot>=cfp->rp->nrhs ) continue; /* Can't shift this config */
821 Configlist_reset(); /* Reset the new config set */
822 sp = cfp->rp->rhs[cfp->dot]; /* Symbol after the dot */
823
824 /* For every configuration in the state "stp" which has the symbol "sp"
825 ** following its dot, add the same configuration to the basis set under
826 ** construction but with the dot shifted one symbol to the right. */
827 for(bcfp=cfp; bcfp; bcfp=bcfp->next){
828 if( bcfp->status==COMPLETE ) continue; /* Already used */
829 if( bcfp->dot>=bcfp->rp->nrhs ) continue; /* Can't shift this one */
830 bsp = bcfp->rp->rhs[bcfp->dot]; /* Get symbol after dot */
drhfd405312005-11-06 04:06:59 +0000831 if( !same_symbol(bsp,sp) ) continue; /* Must be same as for "cfp" */
drh75897232000-05-29 14:26:00 +0000832 bcfp->status = COMPLETE; /* Mark this config as used */
833 new = Configlist_addbasis(bcfp->rp,bcfp->dot+1);
834 Plink_add(&new->bplp,bcfp);
835 }
836
837 /* Get a pointer to the state described by the basis configuration set
838 ** constructed in the preceding loop */
839 newstp = getstate(lemp);
840
841 /* The state "newstp" is reached from the state "stp" by a shift action
842 ** on the symbol "sp" */
drhfd405312005-11-06 04:06:59 +0000843 if( sp->type==MULTITERMINAL ){
844 int i;
845 for(i=0; i<sp->nsubsym; i++){
846 Action_add(&stp->ap,SHIFT,sp->subsym[i],(char*)newstp);
847 }
848 }else{
849 Action_add(&stp->ap,SHIFT,sp,(char *)newstp);
850 }
drh75897232000-05-29 14:26:00 +0000851 }
852}
853
854/*
855** Construct the propagation links
856*/
857void FindLinks(lemp)
858struct lemon *lemp;
859{
860 int i;
861 struct config *cfp, *other;
862 struct state *stp;
863 struct plink *plp;
864
865 /* Housekeeping detail:
866 ** Add to every propagate link a pointer back to the state to
867 ** which the link is attached. */
868 for(i=0; i<lemp->nstate; i++){
869 stp = lemp->sorted[i];
870 for(cfp=stp->cfp; cfp; cfp=cfp->next){
871 cfp->stp = stp;
872 }
873 }
874
875 /* Convert all backlinks into forward links. Only the forward
876 ** links are used in the follow-set computation. */
877 for(i=0; i<lemp->nstate; i++){
878 stp = lemp->sorted[i];
879 for(cfp=stp->cfp; cfp; cfp=cfp->next){
880 for(plp=cfp->bplp; plp; plp=plp->next){
881 other = plp->cfp;
882 Plink_add(&other->fplp,cfp);
883 }
884 }
885 }
886}
887
888/* Compute all followsets.
889**
890** A followset is the set of all symbols which can come immediately
891** after a configuration.
892*/
893void FindFollowSets(lemp)
894struct lemon *lemp;
895{
896 int i;
897 struct config *cfp;
898 struct plink *plp;
899 int progress;
900 int change;
901
902 for(i=0; i<lemp->nstate; i++){
903 for(cfp=lemp->sorted[i]->cfp; cfp; cfp=cfp->next){
904 cfp->status = INCOMPLETE;
905 }
906 }
907
908 do{
909 progress = 0;
910 for(i=0; i<lemp->nstate; i++){
911 for(cfp=lemp->sorted[i]->cfp; cfp; cfp=cfp->next){
912 if( cfp->status==COMPLETE ) continue;
913 for(plp=cfp->fplp; plp; plp=plp->next){
914 change = SetUnion(plp->cfp->fws,cfp->fws);
915 if( change ){
916 plp->cfp->status = INCOMPLETE;
917 progress = 1;
918 }
919 }
920 cfp->status = COMPLETE;
921 }
922 }
923 }while( progress );
924}
925
926static int resolve_conflict();
927
928/* Compute the reduce actions, and resolve conflicts.
929*/
930void FindActions(lemp)
931struct lemon *lemp;
932{
933 int i,j;
934 struct config *cfp;
935 struct state *stp;
936 struct symbol *sp;
937 struct rule *rp;
938
939 /* Add all of the reduce actions
940 ** A reduce action is added for each element of the followset of
941 ** a configuration which has its dot at the extreme right.
942 */
943 for(i=0; i<lemp->nstate; i++){ /* Loop over all states */
944 stp = lemp->sorted[i];
945 for(cfp=stp->cfp; cfp; cfp=cfp->next){ /* Loop over all configurations */
946 if( cfp->rp->nrhs==cfp->dot ){ /* Is dot at extreme right? */
947 for(j=0; j<lemp->nterminal; j++){
948 if( SetFind(cfp->fws,j) ){
949 /* Add a reduce action to the state "stp" which will reduce by the
950 ** rule "cfp->rp" if the lookahead symbol is "lemp->symbols[j]" */
drh218dc692004-05-31 23:13:45 +0000951 Action_add(&stp->ap,REDUCE,lemp->symbols[j],(char *)cfp->rp);
drh75897232000-05-29 14:26:00 +0000952 }
953 }
954 }
955 }
956 }
957
958 /* Add the accepting token */
959 if( lemp->start ){
960 sp = Symbol_find(lemp->start);
961 if( sp==0 ) sp = lemp->rule->lhs;
962 }else{
963 sp = lemp->rule->lhs;
964 }
965 /* Add to the first state (which is always the starting state of the
966 ** finite state machine) an action to ACCEPT if the lookahead is the
967 ** start nonterminal. */
968 Action_add(&lemp->sorted[0]->ap,ACCEPT,sp,0);
969
970 /* Resolve conflicts */
971 for(i=0; i<lemp->nstate; i++){
972 struct action *ap, *nap;
973 struct state *stp;
974 stp = lemp->sorted[i];
975 assert( stp->ap );
976 stp->ap = Action_sort(stp->ap);
drhb59499c2002-02-23 18:45:13 +0000977 for(ap=stp->ap; ap && ap->next; ap=ap->next){
drh75897232000-05-29 14:26:00 +0000978 for(nap=ap->next; nap && nap->sp==ap->sp; nap=nap->next){
979 /* The two actions "ap" and "nap" have the same lookahead.
980 ** Figure out which one should be used */
981 lemp->nconflict += resolve_conflict(ap,nap,lemp->errsym);
982 }
983 }
984 }
985
986 /* Report an error for each rule that can never be reduced. */
drhb27b83a2002-08-14 23:18:57 +0000987 for(rp=lemp->rule; rp; rp=rp->next) rp->canReduce = B_FALSE;
drh75897232000-05-29 14:26:00 +0000988 for(i=0; i<lemp->nstate; i++){
989 struct action *ap;
990 for(ap=lemp->sorted[i]->ap; ap; ap=ap->next){
drhb27b83a2002-08-14 23:18:57 +0000991 if( ap->type==REDUCE ) ap->x.rp->canReduce = B_TRUE;
drh75897232000-05-29 14:26:00 +0000992 }
993 }
994 for(rp=lemp->rule; rp; rp=rp->next){
995 if( rp->canReduce ) continue;
996 ErrorMsg(lemp->filename,rp->ruleline,"This rule can not be reduced.\n");
997 lemp->errorcnt++;
998 }
999}
1000
1001/* Resolve a conflict between the two given actions. If the
1002** conflict can't be resolve, return non-zero.
1003**
1004** NO LONGER TRUE:
1005** To resolve a conflict, first look to see if either action
1006** is on an error rule. In that case, take the action which
1007** is not associated with the error rule. If neither or both
1008** actions are associated with an error rule, then try to
1009** use precedence to resolve the conflict.
1010**
1011** If either action is a SHIFT, then it must be apx. This
1012** function won't work if apx->type==REDUCE and apy->type==SHIFT.
1013*/
1014static int resolve_conflict(apx,apy,errsym)
1015struct action *apx;
1016struct action *apy;
1017struct symbol *errsym; /* The error symbol (if defined. NULL otherwise) */
1018{
1019 struct symbol *spx, *spy;
1020 int errcnt = 0;
1021 assert( apx->sp==apy->sp ); /* Otherwise there would be no conflict */
1022 if( apx->type==SHIFT && apy->type==REDUCE ){
1023 spx = apx->sp;
1024 spy = apy->x.rp->precsym;
1025 if( spy==0 || spx->prec<0 || spy->prec<0 ){
1026 /* Not enough precedence information. */
1027 apy->type = CONFLICT;
1028 errcnt++;
1029 }else if( spx->prec>spy->prec ){ /* Lower precedence wins */
1030 apy->type = RD_RESOLVED;
1031 }else if( spx->prec<spy->prec ){
1032 apx->type = SH_RESOLVED;
1033 }else if( spx->prec==spy->prec && spx->assoc==RIGHT ){ /* Use operator */
1034 apy->type = RD_RESOLVED; /* associativity */
1035 }else if( spx->prec==spy->prec && spx->assoc==LEFT ){ /* to break tie */
1036 apx->type = SH_RESOLVED;
1037 }else{
1038 assert( spx->prec==spy->prec && spx->assoc==NONE );
1039 apy->type = CONFLICT;
1040 errcnt++;
1041 }
1042 }else if( apx->type==REDUCE && apy->type==REDUCE ){
1043 spx = apx->x.rp->precsym;
1044 spy = apy->x.rp->precsym;
1045 if( spx==0 || spy==0 || spx->prec<0 ||
1046 spy->prec<0 || spx->prec==spy->prec ){
1047 apy->type = CONFLICT;
1048 errcnt++;
1049 }else if( spx->prec>spy->prec ){
1050 apy->type = RD_RESOLVED;
1051 }else if( spx->prec<spy->prec ){
1052 apx->type = RD_RESOLVED;
1053 }
1054 }else{
drhb59499c2002-02-23 18:45:13 +00001055 assert(
1056 apx->type==SH_RESOLVED ||
1057 apx->type==RD_RESOLVED ||
1058 apx->type==CONFLICT ||
1059 apy->type==SH_RESOLVED ||
1060 apy->type==RD_RESOLVED ||
1061 apy->type==CONFLICT
1062 );
1063 /* The REDUCE/SHIFT case cannot happen because SHIFTs come before
1064 ** REDUCEs on the list. If we reach this point it must be because
1065 ** the parser conflict had already been resolved. */
drh75897232000-05-29 14:26:00 +00001066 }
1067 return errcnt;
1068}
1069/********************* From the file "configlist.c" *************************/
1070/*
1071** Routines to processing a configuration list and building a state
1072** in the LEMON parser generator.
1073*/
1074
1075static struct config *freelist = 0; /* List of free configurations */
1076static struct config *current = 0; /* Top of list of configurations */
1077static struct config **currentend = 0; /* Last on list of configs */
1078static struct config *basis = 0; /* Top of list of basis configs */
1079static struct config **basisend = 0; /* End of list of basis configs */
1080
1081/* Return a pointer to a new configuration */
1082PRIVATE struct config *newconfig(){
1083 struct config *new;
1084 if( freelist==0 ){
1085 int i;
1086 int amt = 3;
1087 freelist = (struct config *)malloc( sizeof(struct config)*amt );
1088 if( freelist==0 ){
1089 fprintf(stderr,"Unable to allocate memory for a new configuration.");
1090 exit(1);
1091 }
1092 for(i=0; i<amt-1; i++) freelist[i].next = &freelist[i+1];
1093 freelist[amt-1].next = 0;
1094 }
1095 new = freelist;
1096 freelist = freelist->next;
1097 return new;
1098}
1099
1100/* The configuration "old" is no longer used */
1101PRIVATE void deleteconfig(old)
1102struct config *old;
1103{
1104 old->next = freelist;
1105 freelist = old;
1106}
1107
1108/* Initialized the configuration list builder */
1109void Configlist_init(){
1110 current = 0;
1111 currentend = &current;
1112 basis = 0;
1113 basisend = &basis;
1114 Configtable_init();
1115 return;
1116}
1117
1118/* Initialized the configuration list builder */
1119void Configlist_reset(){
1120 current = 0;
1121 currentend = &current;
1122 basis = 0;
1123 basisend = &basis;
1124 Configtable_clear(0);
1125 return;
1126}
1127
1128/* Add another configuration to the configuration list */
1129struct config *Configlist_add(rp,dot)
1130struct rule *rp; /* The rule */
1131int dot; /* Index into the RHS of the rule where the dot goes */
1132{
1133 struct config *cfp, model;
1134
1135 assert( currentend!=0 );
1136 model.rp = rp;
1137 model.dot = dot;
1138 cfp = Configtable_find(&model);
1139 if( cfp==0 ){
1140 cfp = newconfig();
1141 cfp->rp = rp;
1142 cfp->dot = dot;
1143 cfp->fws = SetNew();
1144 cfp->stp = 0;
1145 cfp->fplp = cfp->bplp = 0;
1146 cfp->next = 0;
1147 cfp->bp = 0;
1148 *currentend = cfp;
1149 currentend = &cfp->next;
1150 Configtable_insert(cfp);
1151 }
1152 return cfp;
1153}
1154
1155/* Add a basis configuration to the configuration list */
1156struct config *Configlist_addbasis(rp,dot)
1157struct rule *rp;
1158int dot;
1159{
1160 struct config *cfp, model;
1161
1162 assert( basisend!=0 );
1163 assert( currentend!=0 );
1164 model.rp = rp;
1165 model.dot = dot;
1166 cfp = Configtable_find(&model);
1167 if( cfp==0 ){
1168 cfp = newconfig();
1169 cfp->rp = rp;
1170 cfp->dot = dot;
1171 cfp->fws = SetNew();
1172 cfp->stp = 0;
1173 cfp->fplp = cfp->bplp = 0;
1174 cfp->next = 0;
1175 cfp->bp = 0;
1176 *currentend = cfp;
1177 currentend = &cfp->next;
1178 *basisend = cfp;
1179 basisend = &cfp->bp;
1180 Configtable_insert(cfp);
1181 }
1182 return cfp;
1183}
1184
1185/* Compute the closure of the configuration list */
1186void Configlist_closure(lemp)
1187struct lemon *lemp;
1188{
1189 struct config *cfp, *newcfp;
1190 struct rule *rp, *newrp;
1191 struct symbol *sp, *xsp;
1192 int i, dot;
1193
1194 assert( currentend!=0 );
1195 for(cfp=current; cfp; cfp=cfp->next){
1196 rp = cfp->rp;
1197 dot = cfp->dot;
1198 if( dot>=rp->nrhs ) continue;
1199 sp = rp->rhs[dot];
1200 if( sp->type==NONTERMINAL ){
1201 if( sp->rule==0 && sp!=lemp->errsym ){
1202 ErrorMsg(lemp->filename,rp->line,"Nonterminal \"%s\" has no rules.",
1203 sp->name);
1204 lemp->errorcnt++;
1205 }
1206 for(newrp=sp->rule; newrp; newrp=newrp->nextlhs){
1207 newcfp = Configlist_add(newrp,0);
1208 for(i=dot+1; i<rp->nrhs; i++){
1209 xsp = rp->rhs[i];
1210 if( xsp->type==TERMINAL ){
1211 SetAdd(newcfp->fws,xsp->index);
1212 break;
drhfd405312005-11-06 04:06:59 +00001213 }else if( xsp->type==MULTITERMINAL ){
1214 int k;
1215 for(k=0; k<xsp->nsubsym; k++){
1216 SetAdd(newcfp->fws, xsp->subsym[k]->index);
1217 }
1218 break;
drh75897232000-05-29 14:26:00 +00001219 }else{
1220 SetUnion(newcfp->fws,xsp->firstset);
drhb27b83a2002-08-14 23:18:57 +00001221 if( xsp->lambda==B_FALSE ) break;
drh75897232000-05-29 14:26:00 +00001222 }
1223 }
1224 if( i==rp->nrhs ) Plink_add(&cfp->fplp,newcfp);
1225 }
1226 }
1227 }
1228 return;
1229}
1230
1231/* Sort the configuration list */
1232void Configlist_sort(){
drh218dc692004-05-31 23:13:45 +00001233 current = (struct config *)msort((char *)current,(char **)&(current->next),Configcmp);
drh75897232000-05-29 14:26:00 +00001234 currentend = 0;
1235 return;
1236}
1237
1238/* Sort the basis configuration list */
1239void Configlist_sortbasis(){
drh218dc692004-05-31 23:13:45 +00001240 basis = (struct config *)msort((char *)current,(char **)&(current->bp),Configcmp);
drh75897232000-05-29 14:26:00 +00001241 basisend = 0;
1242 return;
1243}
1244
1245/* Return a pointer to the head of the configuration list and
1246** reset the list */
1247struct config *Configlist_return(){
1248 struct config *old;
1249 old = current;
1250 current = 0;
1251 currentend = 0;
1252 return old;
1253}
1254
1255/* Return a pointer to the head of the configuration list and
1256** reset the list */
1257struct config *Configlist_basis(){
1258 struct config *old;
1259 old = basis;
1260 basis = 0;
1261 basisend = 0;
1262 return old;
1263}
1264
1265/* Free all elements of the given configuration list */
1266void Configlist_eat(cfp)
1267struct config *cfp;
1268{
1269 struct config *nextcfp;
1270 for(; cfp; cfp=nextcfp){
1271 nextcfp = cfp->next;
1272 assert( cfp->fplp==0 );
1273 assert( cfp->bplp==0 );
1274 if( cfp->fws ) SetFree(cfp->fws);
1275 deleteconfig(cfp);
1276 }
1277 return;
1278}
1279/***************** From the file "error.c" *********************************/
1280/*
1281** Code for printing error message.
1282*/
1283
1284/* Find a good place to break "msg" so that its length is at least "min"
1285** but no more than "max". Make the point as close to max as possible.
1286*/
1287static int findbreak(msg,min,max)
1288char *msg;
1289int min;
1290int max;
1291{
1292 int i,spot;
1293 char c;
1294 for(i=spot=min; i<=max; i++){
1295 c = msg[i];
1296 if( c=='\t' ) msg[i] = ' ';
1297 if( c=='\n' ){ msg[i] = ' '; spot = i; break; }
1298 if( c==0 ){ spot = i; break; }
1299 if( c=='-' && i<max-1 ) spot = i+1;
1300 if( c==' ' ) spot = i;
1301 }
1302 return spot;
1303}
1304
1305/*
1306** The error message is split across multiple lines if necessary. The
1307** splits occur at a space, if there is a space available near the end
1308** of the line.
1309*/
1310#define ERRMSGSIZE 10000 /* Hope this is big enough. No way to error check */
1311#define LINEWIDTH 79 /* Max width of any output line */
1312#define PREFIXLIMIT 30 /* Max width of the prefix on each line */
drhf9a2e7b2003-04-15 01:49:48 +00001313void ErrorMsg(const char *filename, int lineno, const char *format, ...){
drh75897232000-05-29 14:26:00 +00001314 char errmsg[ERRMSGSIZE];
1315 char prefix[PREFIXLIMIT+10];
1316 int errmsgsize;
1317 int prefixsize;
1318 int availablewidth;
1319 va_list ap;
1320 int end, restart, base;
1321
drhf9a2e7b2003-04-15 01:49:48 +00001322 va_start(ap, format);
drh75897232000-05-29 14:26:00 +00001323 /* Prepare a prefix to be prepended to every output line */
1324 if( lineno>0 ){
1325 sprintf(prefix,"%.*s:%d: ",PREFIXLIMIT-10,filename,lineno);
1326 }else{
1327 sprintf(prefix,"%.*s: ",PREFIXLIMIT-10,filename);
1328 }
1329 prefixsize = strlen(prefix);
1330 availablewidth = LINEWIDTH - prefixsize;
1331
1332 /* Generate the error message */
1333 vsprintf(errmsg,format,ap);
1334 va_end(ap);
1335 errmsgsize = strlen(errmsg);
1336 /* Remove trailing '\n's from the error message. */
1337 while( errmsgsize>0 && errmsg[errmsgsize-1]=='\n' ){
1338 errmsg[--errmsgsize] = 0;
1339 }
1340
1341 /* Print the error message */
1342 base = 0;
1343 while( errmsg[base]!=0 ){
1344 end = restart = findbreak(&errmsg[base],0,availablewidth);
1345 restart += base;
1346 while( errmsg[restart]==' ' ) restart++;
1347 fprintf(stdout,"%s%.*s\n",prefix,end,&errmsg[base]);
1348 base = restart;
1349 }
1350}
1351/**************** From the file "main.c" ************************************/
1352/*
1353** Main program file for the LEMON parser generator.
1354*/
1355
1356/* Report an out-of-memory condition and abort. This function
1357** is used mostly by the "MemoryCheck" macro in struct.h
1358*/
1359void memory_error(){
1360 fprintf(stderr,"Out of memory. Aborting...\n");
1361 exit(1);
1362}
1363
drh6d08b4d2004-07-20 12:45:22 +00001364static int nDefine = 0; /* Number of -D options on the command line */
1365static char **azDefine = 0; /* Name of the -D macros */
1366
1367/* This routine is called with the argument to each -D command-line option.
1368** Add the macro defined to the azDefine array.
1369*/
1370static void handle_D_option(char *z){
1371 char **paz;
1372 nDefine++;
1373 azDefine = realloc(azDefine, sizeof(azDefine[0])*nDefine);
1374 if( azDefine==0 ){
1375 fprintf(stderr,"out of memory\n");
1376 exit(1);
1377 }
1378 paz = &azDefine[nDefine-1];
1379 *paz = malloc( strlen(z)+1 );
1380 if( *paz==0 ){
1381 fprintf(stderr,"out of memory\n");
1382 exit(1);
1383 }
1384 strcpy(*paz, z);
1385 for(z=*paz; *z && *z!='='; z++){}
1386 *z = 0;
1387}
1388
drh75897232000-05-29 14:26:00 +00001389
1390/* The main program. Parse the command line and do it... */
1391int main(argc,argv)
1392int argc;
1393char **argv;
1394{
1395 static int version = 0;
1396 static int rpflag = 0;
1397 static int basisflag = 0;
1398 static int compress = 0;
1399 static int quiet = 0;
1400 static int statistics = 0;
1401 static int mhflag = 0;
1402 static struct s_options options[] = {
1403 {OPT_FLAG, "b", (char*)&basisflag, "Print only the basis in report."},
1404 {OPT_FLAG, "c", (char*)&compress, "Don't compress the action table."},
drh6d08b4d2004-07-20 12:45:22 +00001405 {OPT_FSTR, "D", (char*)handle_D_option, "Define an %ifdef macro."},
drh75897232000-05-29 14:26:00 +00001406 {OPT_FLAG, "g", (char*)&rpflag, "Print grammar without actions."},
1407 {OPT_FLAG, "m", (char*)&mhflag, "Output a makeheaders compatible file"},
1408 {OPT_FLAG, "q", (char*)&quiet, "(Quiet) Don't print the report file."},
drh6d08b4d2004-07-20 12:45:22 +00001409 {OPT_FLAG, "s", (char*)&statistics,
1410 "Print parser stats to standard output."},
drh75897232000-05-29 14:26:00 +00001411 {OPT_FLAG, "x", (char*)&version, "Print the version number."},
1412 {OPT_FLAG,0,0,0}
1413 };
1414 int i;
1415 struct lemon lem;
1416
drhb0c86772000-06-02 23:21:26 +00001417 OptInit(argv,options,stderr);
drh75897232000-05-29 14:26:00 +00001418 if( version ){
drhb19a2bc2001-09-16 00:13:26 +00001419 printf("Lemon version 1.0\n");
drh75897232000-05-29 14:26:00 +00001420 exit(0);
1421 }
drhb0c86772000-06-02 23:21:26 +00001422 if( OptNArgs()!=1 ){
drh75897232000-05-29 14:26:00 +00001423 fprintf(stderr,"Exactly one filename argument is required.\n");
1424 exit(1);
1425 }
drh954f6b42006-06-13 13:27:46 +00001426 memset(&lem, 0, sizeof(lem));
drh75897232000-05-29 14:26:00 +00001427 lem.errorcnt = 0;
1428
1429 /* Initialize the machine */
1430 Strsafe_init();
1431 Symbol_init();
1432 State_init();
1433 lem.argv0 = argv[0];
drhb0c86772000-06-02 23:21:26 +00001434 lem.filename = OptArg(0);
drh75897232000-05-29 14:26:00 +00001435 lem.basisflag = basisflag;
drh75897232000-05-29 14:26:00 +00001436 Symbol_new("$");
1437 lem.errsym = Symbol_new("error");
1438
1439 /* Parse the input file */
1440 Parse(&lem);
1441 if( lem.errorcnt ) exit(lem.errorcnt);
drh954f6b42006-06-13 13:27:46 +00001442 if( lem.nrule==0 ){
drh75897232000-05-29 14:26:00 +00001443 fprintf(stderr,"Empty grammar.\n");
1444 exit(1);
1445 }
1446
1447 /* Count and index the symbols of the grammar */
1448 lem.nsymbol = Symbol_count();
1449 Symbol_new("{default}");
1450 lem.symbols = Symbol_arrayof();
drh60d31652004-02-22 00:08:04 +00001451 for(i=0; i<=lem.nsymbol; i++) lem.symbols[i]->index = i;
drh75897232000-05-29 14:26:00 +00001452 qsort(lem.symbols,lem.nsymbol+1,sizeof(struct symbol*),
1453 (int(*)())Symbolcmpp);
1454 for(i=0; i<=lem.nsymbol; i++) lem.symbols[i]->index = i;
1455 for(i=1; isupper(lem.symbols[i]->name[0]); i++);
1456 lem.nterminal = i;
1457
1458 /* Generate a reprint of the grammar, if requested on the command line */
1459 if( rpflag ){
1460 Reprint(&lem);
1461 }else{
1462 /* Initialize the size for all follow and first sets */
1463 SetSize(lem.nterminal);
1464
1465 /* Find the precedence for every production rule (that has one) */
1466 FindRulePrecedences(&lem);
1467
1468 /* Compute the lambda-nonterminals and the first-sets for every
1469 ** nonterminal */
1470 FindFirstSets(&lem);
1471
1472 /* Compute all LR(0) states. Also record follow-set propagation
1473 ** links so that the follow-set can be computed later */
1474 lem.nstate = 0;
1475 FindStates(&lem);
1476 lem.sorted = State_arrayof();
1477
1478 /* Tie up loose ends on the propagation links */
1479 FindLinks(&lem);
1480
1481 /* Compute the follow set of every reducible configuration */
1482 FindFollowSets(&lem);
1483
1484 /* Compute the action tables */
1485 FindActions(&lem);
1486
1487 /* Compress the action tables */
1488 if( compress==0 ) CompressTables(&lem);
1489
drhada354d2005-11-05 15:03:59 +00001490 /* Reorder and renumber the states so that states with fewer choices
1491 ** occur at the end. */
1492 ResortStates(&lem);
1493
drh75897232000-05-29 14:26:00 +00001494 /* Generate a report of the parser generated. (the "y.output" file) */
1495 if( !quiet ) ReportOutput(&lem);
1496
1497 /* Generate the source code for the parser */
1498 ReportTable(&lem, mhflag);
1499
1500 /* Produce a header file for use by the scanner. (This step is
1501 ** omitted if the "-m" option is used because makeheaders will
1502 ** generate the file for us.) */
1503 if( !mhflag ) ReportHeader(&lem);
1504 }
1505 if( statistics ){
1506 printf("Parser statistics: %d terminals, %d nonterminals, %d rules\n",
1507 lem.nterminal, lem.nsymbol - lem.nterminal, lem.nrule);
1508 printf(" %d states, %d parser table entries, %d conflicts\n",
1509 lem.nstate, lem.tablesize, lem.nconflict);
1510 }
1511 if( lem.nconflict ){
1512 fprintf(stderr,"%d parsing conflicts.\n",lem.nconflict);
1513 }
1514 exit(lem.errorcnt + lem.nconflict);
drh218dc692004-05-31 23:13:45 +00001515 return (lem.errorcnt + lem.nconflict);
drh75897232000-05-29 14:26:00 +00001516}
1517/******************** From the file "msort.c" *******************************/
1518/*
1519** A generic merge-sort program.
1520**
1521** USAGE:
1522** Let "ptr" be a pointer to some structure which is at the head of
1523** a null-terminated list. Then to sort the list call:
1524**
1525** ptr = msort(ptr,&(ptr->next),cmpfnc);
1526**
1527** In the above, "cmpfnc" is a pointer to a function which compares
1528** two instances of the structure and returns an integer, as in
1529** strcmp. The second argument is a pointer to the pointer to the
1530** second element of the linked list. This address is used to compute
1531** the offset to the "next" field within the structure. The offset to
1532** the "next" field must be constant for all structures in the list.
1533**
1534** The function returns a new pointer which is the head of the list
1535** after sorting.
1536**
1537** ALGORITHM:
1538** Merge-sort.
1539*/
1540
1541/*
1542** Return a pointer to the next structure in the linked list.
1543*/
drhba99af52001-10-25 20:37:16 +00001544#define NEXT(A) (*(char**)(((unsigned long)A)+offset))
drh75897232000-05-29 14:26:00 +00001545
1546/*
1547** Inputs:
1548** a: A sorted, null-terminated linked list. (May be null).
1549** b: A sorted, null-terminated linked list. (May be null).
1550** cmp: A pointer to the comparison function.
1551** offset: Offset in the structure to the "next" field.
1552**
1553** Return Value:
1554** A pointer to the head of a sorted list containing the elements
1555** of both a and b.
1556**
1557** Side effects:
1558** The "next" pointers for elements in the lists a and b are
1559** changed.
1560*/
1561static char *merge(a,b,cmp,offset)
1562char *a;
1563char *b;
1564int (*cmp)();
1565int offset;
1566{
1567 char *ptr, *head;
1568
1569 if( a==0 ){
1570 head = b;
1571 }else if( b==0 ){
1572 head = a;
1573 }else{
1574 if( (*cmp)(a,b)<0 ){
1575 ptr = a;
1576 a = NEXT(a);
1577 }else{
1578 ptr = b;
1579 b = NEXT(b);
1580 }
1581 head = ptr;
1582 while( a && b ){
1583 if( (*cmp)(a,b)<0 ){
1584 NEXT(ptr) = a;
1585 ptr = a;
1586 a = NEXT(a);
1587 }else{
1588 NEXT(ptr) = b;
1589 ptr = b;
1590 b = NEXT(b);
1591 }
1592 }
1593 if( a ) NEXT(ptr) = a;
1594 else NEXT(ptr) = b;
1595 }
1596 return head;
1597}
1598
1599/*
1600** Inputs:
1601** list: Pointer to a singly-linked list of structures.
1602** next: Pointer to pointer to the second element of the list.
1603** cmp: A comparison function.
1604**
1605** Return Value:
1606** A pointer to the head of a sorted list containing the elements
1607** orginally in list.
1608**
1609** Side effects:
1610** The "next" pointers for elements in list are changed.
1611*/
1612#define LISTSIZE 30
1613char *msort(list,next,cmp)
1614char *list;
1615char **next;
1616int (*cmp)();
1617{
drhba99af52001-10-25 20:37:16 +00001618 unsigned long offset;
drh75897232000-05-29 14:26:00 +00001619 char *ep;
1620 char *set[LISTSIZE];
1621 int i;
drhba99af52001-10-25 20:37:16 +00001622 offset = (unsigned long)next - (unsigned long)list;
drh75897232000-05-29 14:26:00 +00001623 for(i=0; i<LISTSIZE; i++) set[i] = 0;
1624 while( list ){
1625 ep = list;
1626 list = NEXT(list);
1627 NEXT(ep) = 0;
1628 for(i=0; i<LISTSIZE-1 && set[i]!=0; i++){
1629 ep = merge(ep,set[i],cmp,offset);
1630 set[i] = 0;
1631 }
1632 set[i] = ep;
1633 }
1634 ep = 0;
1635 for(i=0; i<LISTSIZE; i++) if( set[i] ) ep = merge(ep,set[i],cmp,offset);
1636 return ep;
1637}
1638/************************ From the file "option.c" **************************/
1639static char **argv;
1640static struct s_options *op;
1641static FILE *errstream;
1642
1643#define ISOPT(X) ((X)[0]=='-'||(X)[0]=='+'||strchr((X),'=')!=0)
1644
1645/*
1646** Print the command line with a carrot pointing to the k-th character
1647** of the n-th field.
1648*/
1649static void errline(n,k,err)
1650int n;
1651int k;
1652FILE *err;
1653{
1654 int spcnt, i;
drh75897232000-05-29 14:26:00 +00001655 if( argv[0] ) fprintf(err,"%s",argv[0]);
1656 spcnt = strlen(argv[0]) + 1;
1657 for(i=1; i<n && argv[i]; i++){
1658 fprintf(err," %s",argv[i]);
drhdc30dd32005-02-16 03:35:15 +00001659 spcnt += strlen(argv[i])+1;
drh75897232000-05-29 14:26:00 +00001660 }
1661 spcnt += k;
1662 for(; argv[i]; i++) fprintf(err," %s",argv[i]);
1663 if( spcnt<20 ){
1664 fprintf(err,"\n%*s^-- here\n",spcnt,"");
1665 }else{
1666 fprintf(err,"\n%*shere --^\n",spcnt-7,"");
1667 }
1668}
1669
1670/*
1671** Return the index of the N-th non-switch argument. Return -1
1672** if N is out of range.
1673*/
1674static int argindex(n)
1675int n;
1676{
1677 int i;
1678 int dashdash = 0;
1679 if( argv!=0 && *argv!=0 ){
1680 for(i=1; argv[i]; i++){
1681 if( dashdash || !ISOPT(argv[i]) ){
1682 if( n==0 ) return i;
1683 n--;
1684 }
1685 if( strcmp(argv[i],"--")==0 ) dashdash = 1;
1686 }
1687 }
1688 return -1;
1689}
1690
1691static char emsg[] = "Command line syntax error: ";
1692
1693/*
1694** Process a flag command line argument.
1695*/
1696static int handleflags(i,err)
1697int i;
1698FILE *err;
1699{
1700 int v;
1701 int errcnt = 0;
1702 int j;
1703 for(j=0; op[j].label; j++){
drh6d08b4d2004-07-20 12:45:22 +00001704 if( strncmp(&argv[i][1],op[j].label,strlen(op[j].label))==0 ) break;
drh75897232000-05-29 14:26:00 +00001705 }
1706 v = argv[i][0]=='-' ? 1 : 0;
1707 if( op[j].label==0 ){
1708 if( err ){
1709 fprintf(err,"%sundefined option.\n",emsg);
1710 errline(i,1,err);
1711 }
1712 errcnt++;
1713 }else if( op[j].type==OPT_FLAG ){
1714 *((int*)op[j].arg) = v;
1715 }else if( op[j].type==OPT_FFLAG ){
1716 (*(void(*)())(op[j].arg))(v);
drh6d08b4d2004-07-20 12:45:22 +00001717 }else if( op[j].type==OPT_FSTR ){
1718 (*(void(*)())(op[j].arg))(&argv[i][2]);
drh75897232000-05-29 14:26:00 +00001719 }else{
1720 if( err ){
1721 fprintf(err,"%smissing argument on switch.\n",emsg);
1722 errline(i,1,err);
1723 }
1724 errcnt++;
1725 }
1726 return errcnt;
1727}
1728
1729/*
1730** Process a command line switch which has an argument.
1731*/
1732static int handleswitch(i,err)
1733int i;
1734FILE *err;
1735{
1736 int lv = 0;
1737 double dv = 0.0;
1738 char *sv = 0, *end;
1739 char *cp;
1740 int j;
1741 int errcnt = 0;
1742 cp = strchr(argv[i],'=');
drh43617e92006-03-06 20:55:46 +00001743 assert( cp!=0 );
drh75897232000-05-29 14:26:00 +00001744 *cp = 0;
1745 for(j=0; op[j].label; j++){
1746 if( strcmp(argv[i],op[j].label)==0 ) break;
1747 }
1748 *cp = '=';
1749 if( op[j].label==0 ){
1750 if( err ){
1751 fprintf(err,"%sundefined option.\n",emsg);
1752 errline(i,0,err);
1753 }
1754 errcnt++;
1755 }else{
1756 cp++;
1757 switch( op[j].type ){
1758 case OPT_FLAG:
1759 case OPT_FFLAG:
1760 if( err ){
1761 fprintf(err,"%soption requires an argument.\n",emsg);
1762 errline(i,0,err);
1763 }
1764 errcnt++;
1765 break;
1766 case OPT_DBL:
1767 case OPT_FDBL:
1768 dv = strtod(cp,&end);
1769 if( *end ){
1770 if( err ){
1771 fprintf(err,"%sillegal character in floating-point argument.\n",emsg);
drhba99af52001-10-25 20:37:16 +00001772 errline(i,((unsigned long)end)-(unsigned long)argv[i],err);
drh75897232000-05-29 14:26:00 +00001773 }
1774 errcnt++;
1775 }
1776 break;
1777 case OPT_INT:
1778 case OPT_FINT:
1779 lv = strtol(cp,&end,0);
1780 if( *end ){
1781 if( err ){
1782 fprintf(err,"%sillegal character in integer argument.\n",emsg);
drhba99af52001-10-25 20:37:16 +00001783 errline(i,((unsigned long)end)-(unsigned long)argv[i],err);
drh75897232000-05-29 14:26:00 +00001784 }
1785 errcnt++;
1786 }
1787 break;
1788 case OPT_STR:
1789 case OPT_FSTR:
1790 sv = cp;
1791 break;
1792 }
1793 switch( op[j].type ){
1794 case OPT_FLAG:
1795 case OPT_FFLAG:
1796 break;
1797 case OPT_DBL:
1798 *(double*)(op[j].arg) = dv;
1799 break;
1800 case OPT_FDBL:
1801 (*(void(*)())(op[j].arg))(dv);
1802 break;
1803 case OPT_INT:
1804 *(int*)(op[j].arg) = lv;
1805 break;
1806 case OPT_FINT:
1807 (*(void(*)())(op[j].arg))((int)lv);
1808 break;
1809 case OPT_STR:
1810 *(char**)(op[j].arg) = sv;
1811 break;
1812 case OPT_FSTR:
1813 (*(void(*)())(op[j].arg))(sv);
1814 break;
1815 }
1816 }
1817 return errcnt;
1818}
1819
drhb0c86772000-06-02 23:21:26 +00001820int OptInit(a,o,err)
drh75897232000-05-29 14:26:00 +00001821char **a;
1822struct s_options *o;
1823FILE *err;
1824{
1825 int errcnt = 0;
1826 argv = a;
1827 op = o;
1828 errstream = err;
1829 if( argv && *argv && op ){
1830 int i;
1831 for(i=1; argv[i]; i++){
1832 if( argv[i][0]=='+' || argv[i][0]=='-' ){
1833 errcnt += handleflags(i,err);
1834 }else if( strchr(argv[i],'=') ){
1835 errcnt += handleswitch(i,err);
1836 }
1837 }
1838 }
1839 if( errcnt>0 ){
1840 fprintf(err,"Valid command line options for \"%s\" are:\n",*a);
drhb0c86772000-06-02 23:21:26 +00001841 OptPrint();
drh75897232000-05-29 14:26:00 +00001842 exit(1);
1843 }
1844 return 0;
1845}
1846
drhb0c86772000-06-02 23:21:26 +00001847int OptNArgs(){
drh75897232000-05-29 14:26:00 +00001848 int cnt = 0;
1849 int dashdash = 0;
1850 int i;
1851 if( argv!=0 && argv[0]!=0 ){
1852 for(i=1; argv[i]; i++){
1853 if( dashdash || !ISOPT(argv[i]) ) cnt++;
1854 if( strcmp(argv[i],"--")==0 ) dashdash = 1;
1855 }
1856 }
1857 return cnt;
1858}
1859
drhb0c86772000-06-02 23:21:26 +00001860char *OptArg(n)
drh75897232000-05-29 14:26:00 +00001861int n;
1862{
1863 int i;
1864 i = argindex(n);
1865 return i>=0 ? argv[i] : 0;
1866}
1867
drhb0c86772000-06-02 23:21:26 +00001868void OptErr(n)
drh75897232000-05-29 14:26:00 +00001869int n;
1870{
1871 int i;
1872 i = argindex(n);
1873 if( i>=0 ) errline(i,0,errstream);
1874}
1875
drhb0c86772000-06-02 23:21:26 +00001876void OptPrint(){
drh75897232000-05-29 14:26:00 +00001877 int i;
1878 int max, len;
1879 max = 0;
1880 for(i=0; op[i].label; i++){
1881 len = strlen(op[i].label) + 1;
1882 switch( op[i].type ){
1883 case OPT_FLAG:
1884 case OPT_FFLAG:
1885 break;
1886 case OPT_INT:
1887 case OPT_FINT:
1888 len += 9; /* length of "<integer>" */
1889 break;
1890 case OPT_DBL:
1891 case OPT_FDBL:
1892 len += 6; /* length of "<real>" */
1893 break;
1894 case OPT_STR:
1895 case OPT_FSTR:
1896 len += 8; /* length of "<string>" */
1897 break;
1898 }
1899 if( len>max ) max = len;
1900 }
1901 for(i=0; op[i].label; i++){
1902 switch( op[i].type ){
1903 case OPT_FLAG:
1904 case OPT_FFLAG:
1905 fprintf(errstream," -%-*s %s\n",max,op[i].label,op[i].message);
1906 break;
1907 case OPT_INT:
1908 case OPT_FINT:
1909 fprintf(errstream," %s=<integer>%*s %s\n",op[i].label,
drh8b582012003-10-21 13:16:03 +00001910 (int)(max-strlen(op[i].label)-9),"",op[i].message);
drh75897232000-05-29 14:26:00 +00001911 break;
1912 case OPT_DBL:
1913 case OPT_FDBL:
1914 fprintf(errstream," %s=<real>%*s %s\n",op[i].label,
drh8b582012003-10-21 13:16:03 +00001915 (int)(max-strlen(op[i].label)-6),"",op[i].message);
drh75897232000-05-29 14:26:00 +00001916 break;
1917 case OPT_STR:
1918 case OPT_FSTR:
1919 fprintf(errstream," %s=<string>%*s %s\n",op[i].label,
drh8b582012003-10-21 13:16:03 +00001920 (int)(max-strlen(op[i].label)-8),"",op[i].message);
drh75897232000-05-29 14:26:00 +00001921 break;
1922 }
1923 }
1924}
1925/*********************** From the file "parse.c" ****************************/
1926/*
1927** Input file parser for the LEMON parser generator.
1928*/
1929
1930/* The state of the parser */
1931struct pstate {
1932 char *filename; /* Name of the input file */
1933 int tokenlineno; /* Linenumber at which current token starts */
1934 int errorcnt; /* Number of errors so far */
1935 char *tokenstart; /* Text of current token */
1936 struct lemon *gp; /* Global state vector */
1937 enum e_state {
1938 INITIALIZE,
1939 WAITING_FOR_DECL_OR_RULE,
1940 WAITING_FOR_DECL_KEYWORD,
1941 WAITING_FOR_DECL_ARG,
1942 WAITING_FOR_PRECEDENCE_SYMBOL,
1943 WAITING_FOR_ARROW,
1944 IN_RHS,
1945 LHS_ALIAS_1,
1946 LHS_ALIAS_2,
1947 LHS_ALIAS_3,
1948 RHS_ALIAS_1,
1949 RHS_ALIAS_2,
1950 PRECEDENCE_MARK_1,
1951 PRECEDENCE_MARK_2,
1952 RESYNC_AFTER_RULE_ERROR,
1953 RESYNC_AFTER_DECL_ERROR,
1954 WAITING_FOR_DESTRUCTOR_SYMBOL,
drh0bd1f4e2002-06-06 18:54:39 +00001955 WAITING_FOR_DATATYPE_SYMBOL,
drhe09daa92006-06-10 13:29:31 +00001956 WAITING_FOR_FALLBACK_ID,
1957 WAITING_FOR_WILDCARD_ID
drh75897232000-05-29 14:26:00 +00001958 } state; /* The state of the parser */
drh0bd1f4e2002-06-06 18:54:39 +00001959 struct symbol *fallback; /* The fallback token */
drh75897232000-05-29 14:26:00 +00001960 struct symbol *lhs; /* Left-hand side of current rule */
1961 char *lhsalias; /* Alias for the LHS */
1962 int nrhs; /* Number of right-hand side symbols seen */
1963 struct symbol *rhs[MAXRHS]; /* RHS symbols */
1964 char *alias[MAXRHS]; /* Aliases for each RHS symbol (or NULL) */
1965 struct rule *prevrule; /* Previous rule parsed */
1966 char *declkeyword; /* Keyword of a declaration */
1967 char **declargslot; /* Where the declaration argument should be put */
1968 int *decllnslot; /* Where the declaration linenumber is put */
1969 enum e_assoc declassoc; /* Assign this association to decl arguments */
1970 int preccounter; /* Assign this precedence to decl arguments */
1971 struct rule *firstrule; /* Pointer to first rule in the grammar */
1972 struct rule *lastrule; /* Pointer to the most recently parsed rule */
1973};
1974
1975/* Parse a single token */
1976static void parseonetoken(psp)
1977struct pstate *psp;
1978{
1979 char *x;
1980 x = Strsafe(psp->tokenstart); /* Save the token permanently */
1981#if 0
1982 printf("%s:%d: Token=[%s] state=%d\n",psp->filename,psp->tokenlineno,
1983 x,psp->state);
1984#endif
1985 switch( psp->state ){
1986 case INITIALIZE:
1987 psp->prevrule = 0;
1988 psp->preccounter = 0;
1989 psp->firstrule = psp->lastrule = 0;
1990 psp->gp->nrule = 0;
1991 /* Fall thru to next case */
1992 case WAITING_FOR_DECL_OR_RULE:
1993 if( x[0]=='%' ){
1994 psp->state = WAITING_FOR_DECL_KEYWORD;
1995 }else if( islower(x[0]) ){
1996 psp->lhs = Symbol_new(x);
1997 psp->nrhs = 0;
1998 psp->lhsalias = 0;
1999 psp->state = WAITING_FOR_ARROW;
2000 }else if( x[0]=='{' ){
2001 if( psp->prevrule==0 ){
2002 ErrorMsg(psp->filename,psp->tokenlineno,
2003"There is not prior rule opon which to attach the code \
2004fragment which begins on this line.");
2005 psp->errorcnt++;
2006 }else if( psp->prevrule->code!=0 ){
2007 ErrorMsg(psp->filename,psp->tokenlineno,
2008"Code fragment beginning on this line is not the first \
2009to follow the previous rule.");
2010 psp->errorcnt++;
2011 }else{
2012 psp->prevrule->line = psp->tokenlineno;
2013 psp->prevrule->code = &x[1];
2014 }
2015 }else if( x[0]=='[' ){
2016 psp->state = PRECEDENCE_MARK_1;
2017 }else{
2018 ErrorMsg(psp->filename,psp->tokenlineno,
2019 "Token \"%s\" should be either \"%%\" or a nonterminal name.",
2020 x);
2021 psp->errorcnt++;
2022 }
2023 break;
2024 case PRECEDENCE_MARK_1:
2025 if( !isupper(x[0]) ){
2026 ErrorMsg(psp->filename,psp->tokenlineno,
2027 "The precedence symbol must be a terminal.");
2028 psp->errorcnt++;
2029 }else if( psp->prevrule==0 ){
2030 ErrorMsg(psp->filename,psp->tokenlineno,
2031 "There is no prior rule to assign precedence \"[%s]\".",x);
2032 psp->errorcnt++;
2033 }else if( psp->prevrule->precsym!=0 ){
2034 ErrorMsg(psp->filename,psp->tokenlineno,
2035"Precedence mark on this line is not the first \
2036to follow the previous rule.");
2037 psp->errorcnt++;
2038 }else{
2039 psp->prevrule->precsym = Symbol_new(x);
2040 }
2041 psp->state = PRECEDENCE_MARK_2;
2042 break;
2043 case PRECEDENCE_MARK_2:
2044 if( x[0]!=']' ){
2045 ErrorMsg(psp->filename,psp->tokenlineno,
2046 "Missing \"]\" on precedence mark.");
2047 psp->errorcnt++;
2048 }
2049 psp->state = WAITING_FOR_DECL_OR_RULE;
2050 break;
2051 case WAITING_FOR_ARROW:
2052 if( x[0]==':' && x[1]==':' && x[2]=='=' ){
2053 psp->state = IN_RHS;
2054 }else if( x[0]=='(' ){
2055 psp->state = LHS_ALIAS_1;
2056 }else{
2057 ErrorMsg(psp->filename,psp->tokenlineno,
2058 "Expected to see a \":\" following the LHS symbol \"%s\".",
2059 psp->lhs->name);
2060 psp->errorcnt++;
2061 psp->state = RESYNC_AFTER_RULE_ERROR;
2062 }
2063 break;
2064 case LHS_ALIAS_1:
2065 if( isalpha(x[0]) ){
2066 psp->lhsalias = x;
2067 psp->state = LHS_ALIAS_2;
2068 }else{
2069 ErrorMsg(psp->filename,psp->tokenlineno,
2070 "\"%s\" is not a valid alias for the LHS \"%s\"\n",
2071 x,psp->lhs->name);
2072 psp->errorcnt++;
2073 psp->state = RESYNC_AFTER_RULE_ERROR;
2074 }
2075 break;
2076 case LHS_ALIAS_2:
2077 if( x[0]==')' ){
2078 psp->state = LHS_ALIAS_3;
2079 }else{
2080 ErrorMsg(psp->filename,psp->tokenlineno,
2081 "Missing \")\" following LHS alias name \"%s\".",psp->lhsalias);
2082 psp->errorcnt++;
2083 psp->state = RESYNC_AFTER_RULE_ERROR;
2084 }
2085 break;
2086 case LHS_ALIAS_3:
2087 if( x[0]==':' && x[1]==':' && x[2]=='=' ){
2088 psp->state = IN_RHS;
2089 }else{
2090 ErrorMsg(psp->filename,psp->tokenlineno,
2091 "Missing \"->\" following: \"%s(%s)\".",
2092 psp->lhs->name,psp->lhsalias);
2093 psp->errorcnt++;
2094 psp->state = RESYNC_AFTER_RULE_ERROR;
2095 }
2096 break;
2097 case IN_RHS:
2098 if( x[0]=='.' ){
2099 struct rule *rp;
2100 rp = (struct rule *)malloc( sizeof(struct rule) +
2101 sizeof(struct symbol*)*psp->nrhs + sizeof(char*)*psp->nrhs );
2102 if( rp==0 ){
2103 ErrorMsg(psp->filename,psp->tokenlineno,
2104 "Can't allocate enough memory for this rule.");
2105 psp->errorcnt++;
2106 psp->prevrule = 0;
2107 }else{
2108 int i;
2109 rp->ruleline = psp->tokenlineno;
2110 rp->rhs = (struct symbol**)&rp[1];
2111 rp->rhsalias = (char**)&(rp->rhs[psp->nrhs]);
2112 for(i=0; i<psp->nrhs; i++){
2113 rp->rhs[i] = psp->rhs[i];
2114 rp->rhsalias[i] = psp->alias[i];
2115 }
2116 rp->lhs = psp->lhs;
2117 rp->lhsalias = psp->lhsalias;
2118 rp->nrhs = psp->nrhs;
2119 rp->code = 0;
2120 rp->precsym = 0;
2121 rp->index = psp->gp->nrule++;
2122 rp->nextlhs = rp->lhs->rule;
2123 rp->lhs->rule = rp;
2124 rp->next = 0;
2125 if( psp->firstrule==0 ){
2126 psp->firstrule = psp->lastrule = rp;
2127 }else{
2128 psp->lastrule->next = rp;
2129 psp->lastrule = rp;
2130 }
2131 psp->prevrule = rp;
2132 }
2133 psp->state = WAITING_FOR_DECL_OR_RULE;
2134 }else if( isalpha(x[0]) ){
2135 if( psp->nrhs>=MAXRHS ){
2136 ErrorMsg(psp->filename,psp->tokenlineno,
drhfd405312005-11-06 04:06:59 +00002137 "Too many symbols on RHS or rule beginning at \"%s\".",
drh75897232000-05-29 14:26:00 +00002138 x);
2139 psp->errorcnt++;
2140 psp->state = RESYNC_AFTER_RULE_ERROR;
2141 }else{
2142 psp->rhs[psp->nrhs] = Symbol_new(x);
2143 psp->alias[psp->nrhs] = 0;
2144 psp->nrhs++;
2145 }
drhfd405312005-11-06 04:06:59 +00002146 }else if( (x[0]=='|' || x[0]=='/') && psp->nrhs>0 ){
2147 struct symbol *msp = psp->rhs[psp->nrhs-1];
2148 if( msp->type!=MULTITERMINAL ){
2149 struct symbol *origsp = msp;
2150 msp = malloc(sizeof(*msp));
2151 memset(msp, 0, sizeof(*msp));
2152 msp->type = MULTITERMINAL;
2153 msp->nsubsym = 1;
2154 msp->subsym = malloc(sizeof(struct symbol*));
2155 msp->subsym[0] = origsp;
2156 msp->name = origsp->name;
2157 psp->rhs[psp->nrhs-1] = msp;
2158 }
2159 msp->nsubsym++;
2160 msp->subsym = realloc(msp->subsym, sizeof(struct symbol*)*msp->nsubsym);
2161 msp->subsym[msp->nsubsym-1] = Symbol_new(&x[1]);
2162 if( islower(x[1]) || islower(msp->subsym[0]->name[0]) ){
2163 ErrorMsg(psp->filename,psp->tokenlineno,
2164 "Cannot form a compound containing a non-terminal");
2165 psp->errorcnt++;
2166 }
drh75897232000-05-29 14:26:00 +00002167 }else if( x[0]=='(' && psp->nrhs>0 ){
2168 psp->state = RHS_ALIAS_1;
2169 }else{
2170 ErrorMsg(psp->filename,psp->tokenlineno,
2171 "Illegal character on RHS of rule: \"%s\".",x);
2172 psp->errorcnt++;
2173 psp->state = RESYNC_AFTER_RULE_ERROR;
2174 }
2175 break;
2176 case RHS_ALIAS_1:
2177 if( isalpha(x[0]) ){
2178 psp->alias[psp->nrhs-1] = x;
2179 psp->state = RHS_ALIAS_2;
2180 }else{
2181 ErrorMsg(psp->filename,psp->tokenlineno,
2182 "\"%s\" is not a valid alias for the RHS symbol \"%s\"\n",
2183 x,psp->rhs[psp->nrhs-1]->name);
2184 psp->errorcnt++;
2185 psp->state = RESYNC_AFTER_RULE_ERROR;
2186 }
2187 break;
2188 case RHS_ALIAS_2:
2189 if( x[0]==')' ){
2190 psp->state = IN_RHS;
2191 }else{
2192 ErrorMsg(psp->filename,psp->tokenlineno,
2193 "Missing \")\" following LHS alias name \"%s\".",psp->lhsalias);
2194 psp->errorcnt++;
2195 psp->state = RESYNC_AFTER_RULE_ERROR;
2196 }
2197 break;
2198 case WAITING_FOR_DECL_KEYWORD:
2199 if( isalpha(x[0]) ){
2200 psp->declkeyword = x;
2201 psp->declargslot = 0;
2202 psp->decllnslot = 0;
2203 psp->state = WAITING_FOR_DECL_ARG;
2204 if( strcmp(x,"name")==0 ){
2205 psp->declargslot = &(psp->gp->name);
2206 }else if( strcmp(x,"include")==0 ){
2207 psp->declargslot = &(psp->gp->include);
2208 psp->decllnslot = &psp->gp->includeln;
2209 }else if( strcmp(x,"code")==0 ){
2210 psp->declargslot = &(psp->gp->extracode);
2211 psp->decllnslot = &psp->gp->extracodeln;
2212 }else if( strcmp(x,"token_destructor")==0 ){
2213 psp->declargslot = &psp->gp->tokendest;
2214 psp->decllnslot = &psp->gp->tokendestln;
drh960e8c62001-04-03 16:53:21 +00002215 }else if( strcmp(x,"default_destructor")==0 ){
2216 psp->declargslot = &psp->gp->vardest;
2217 psp->decllnslot = &psp->gp->vardestln;
drh75897232000-05-29 14:26:00 +00002218 }else if( strcmp(x,"token_prefix")==0 ){
2219 psp->declargslot = &psp->gp->tokenprefix;
2220 }else if( strcmp(x,"syntax_error")==0 ){
2221 psp->declargslot = &(psp->gp->error);
2222 psp->decllnslot = &psp->gp->errorln;
2223 }else if( strcmp(x,"parse_accept")==0 ){
2224 psp->declargslot = &(psp->gp->accept);
2225 psp->decllnslot = &psp->gp->acceptln;
2226 }else if( strcmp(x,"parse_failure")==0 ){
2227 psp->declargslot = &(psp->gp->failure);
2228 psp->decllnslot = &psp->gp->failureln;
2229 }else if( strcmp(x,"stack_overflow")==0 ){
2230 psp->declargslot = &(psp->gp->overflow);
2231 psp->decllnslot = &psp->gp->overflowln;
2232 }else if( strcmp(x,"extra_argument")==0 ){
2233 psp->declargslot = &(psp->gp->arg);
2234 }else if( strcmp(x,"token_type")==0 ){
2235 psp->declargslot = &(psp->gp->tokentype);
drh960e8c62001-04-03 16:53:21 +00002236 }else if( strcmp(x,"default_type")==0 ){
2237 psp->declargslot = &(psp->gp->vartype);
drh75897232000-05-29 14:26:00 +00002238 }else if( strcmp(x,"stack_size")==0 ){
2239 psp->declargslot = &(psp->gp->stacksize);
2240 }else if( strcmp(x,"start_symbol")==0 ){
2241 psp->declargslot = &(psp->gp->start);
2242 }else if( strcmp(x,"left")==0 ){
2243 psp->preccounter++;
2244 psp->declassoc = LEFT;
2245 psp->state = WAITING_FOR_PRECEDENCE_SYMBOL;
2246 }else if( strcmp(x,"right")==0 ){
2247 psp->preccounter++;
2248 psp->declassoc = RIGHT;
2249 psp->state = WAITING_FOR_PRECEDENCE_SYMBOL;
2250 }else if( strcmp(x,"nonassoc")==0 ){
2251 psp->preccounter++;
2252 psp->declassoc = NONE;
2253 psp->state = WAITING_FOR_PRECEDENCE_SYMBOL;
2254 }else if( strcmp(x,"destructor")==0 ){
2255 psp->state = WAITING_FOR_DESTRUCTOR_SYMBOL;
2256 }else if( strcmp(x,"type")==0 ){
2257 psp->state = WAITING_FOR_DATATYPE_SYMBOL;
drh0bd1f4e2002-06-06 18:54:39 +00002258 }else if( strcmp(x,"fallback")==0 ){
2259 psp->fallback = 0;
2260 psp->state = WAITING_FOR_FALLBACK_ID;
drhe09daa92006-06-10 13:29:31 +00002261 }else if( strcmp(x,"wildcard")==0 ){
2262 psp->state = WAITING_FOR_WILDCARD_ID;
drh75897232000-05-29 14:26:00 +00002263 }else{
2264 ErrorMsg(psp->filename,psp->tokenlineno,
2265 "Unknown declaration keyword: \"%%%s\".",x);
2266 psp->errorcnt++;
2267 psp->state = RESYNC_AFTER_DECL_ERROR;
2268 }
2269 }else{
2270 ErrorMsg(psp->filename,psp->tokenlineno,
2271 "Illegal declaration keyword: \"%s\".",x);
2272 psp->errorcnt++;
2273 psp->state = RESYNC_AFTER_DECL_ERROR;
2274 }
2275 break;
2276 case WAITING_FOR_DESTRUCTOR_SYMBOL:
2277 if( !isalpha(x[0]) ){
2278 ErrorMsg(psp->filename,psp->tokenlineno,
2279 "Symbol name missing after %destructor keyword");
2280 psp->errorcnt++;
2281 psp->state = RESYNC_AFTER_DECL_ERROR;
2282 }else{
2283 struct symbol *sp = Symbol_new(x);
2284 psp->declargslot = &sp->destructor;
2285 psp->decllnslot = &sp->destructorln;
2286 psp->state = WAITING_FOR_DECL_ARG;
2287 }
2288 break;
2289 case WAITING_FOR_DATATYPE_SYMBOL:
2290 if( !isalpha(x[0]) ){
2291 ErrorMsg(psp->filename,psp->tokenlineno,
2292 "Symbol name missing after %destructor keyword");
2293 psp->errorcnt++;
2294 psp->state = RESYNC_AFTER_DECL_ERROR;
2295 }else{
2296 struct symbol *sp = Symbol_new(x);
2297 psp->declargslot = &sp->datatype;
2298 psp->decllnslot = 0;
2299 psp->state = WAITING_FOR_DECL_ARG;
2300 }
2301 break;
2302 case WAITING_FOR_PRECEDENCE_SYMBOL:
2303 if( x[0]=='.' ){
2304 psp->state = WAITING_FOR_DECL_OR_RULE;
2305 }else if( isupper(x[0]) ){
2306 struct symbol *sp;
2307 sp = Symbol_new(x);
2308 if( sp->prec>=0 ){
2309 ErrorMsg(psp->filename,psp->tokenlineno,
2310 "Symbol \"%s\" has already be given a precedence.",x);
2311 psp->errorcnt++;
2312 }else{
2313 sp->prec = psp->preccounter;
2314 sp->assoc = psp->declassoc;
2315 }
2316 }else{
2317 ErrorMsg(psp->filename,psp->tokenlineno,
2318 "Can't assign a precedence to \"%s\".",x);
2319 psp->errorcnt++;
2320 }
2321 break;
2322 case WAITING_FOR_DECL_ARG:
2323 if( (x[0]=='{' || x[0]=='\"' || isalnum(x[0])) ){
2324 if( *(psp->declargslot)!=0 ){
2325 ErrorMsg(psp->filename,psp->tokenlineno,
2326 "The argument \"%s\" to declaration \"%%%s\" is not the first.",
2327 x[0]=='\"' ? &x[1] : x,psp->declkeyword);
2328 psp->errorcnt++;
2329 psp->state = RESYNC_AFTER_DECL_ERROR;
2330 }else{
2331 *(psp->declargslot) = (x[0]=='\"' || x[0]=='{') ? &x[1] : x;
2332 if( psp->decllnslot ) *psp->decllnslot = psp->tokenlineno;
2333 psp->state = WAITING_FOR_DECL_OR_RULE;
2334 }
2335 }else{
2336 ErrorMsg(psp->filename,psp->tokenlineno,
2337 "Illegal argument to %%%s: %s",psp->declkeyword,x);
2338 psp->errorcnt++;
2339 psp->state = RESYNC_AFTER_DECL_ERROR;
2340 }
2341 break;
drh0bd1f4e2002-06-06 18:54:39 +00002342 case WAITING_FOR_FALLBACK_ID:
2343 if( x[0]=='.' ){
2344 psp->state = WAITING_FOR_DECL_OR_RULE;
2345 }else if( !isupper(x[0]) ){
2346 ErrorMsg(psp->filename, psp->tokenlineno,
2347 "%%fallback argument \"%s\" should be a token", x);
2348 psp->errorcnt++;
2349 }else{
2350 struct symbol *sp = Symbol_new(x);
2351 if( psp->fallback==0 ){
2352 psp->fallback = sp;
2353 }else if( sp->fallback ){
2354 ErrorMsg(psp->filename, psp->tokenlineno,
2355 "More than one fallback assigned to token %s", x);
2356 psp->errorcnt++;
2357 }else{
2358 sp->fallback = psp->fallback;
2359 psp->gp->has_fallback = 1;
2360 }
2361 }
2362 break;
drhe09daa92006-06-10 13:29:31 +00002363 case WAITING_FOR_WILDCARD_ID:
2364 if( x[0]=='.' ){
2365 psp->state = WAITING_FOR_DECL_OR_RULE;
2366 }else if( !isupper(x[0]) ){
2367 ErrorMsg(psp->filename, psp->tokenlineno,
2368 "%%wildcard argument \"%s\" should be a token", x);
2369 psp->errorcnt++;
2370 }else{
2371 struct symbol *sp = Symbol_new(x);
2372 if( psp->gp->wildcard==0 ){
2373 psp->gp->wildcard = sp;
2374 }else{
2375 ErrorMsg(psp->filename, psp->tokenlineno,
2376 "Extra wildcard to token: %s", x);
2377 psp->errorcnt++;
2378 }
2379 }
2380 break;
drh75897232000-05-29 14:26:00 +00002381 case RESYNC_AFTER_RULE_ERROR:
2382/* if( x[0]=='.' ) psp->state = WAITING_FOR_DECL_OR_RULE;
2383** break; */
2384 case RESYNC_AFTER_DECL_ERROR:
2385 if( x[0]=='.' ) psp->state = WAITING_FOR_DECL_OR_RULE;
2386 if( x[0]=='%' ) psp->state = WAITING_FOR_DECL_KEYWORD;
2387 break;
2388 }
2389}
2390
drh6d08b4d2004-07-20 12:45:22 +00002391/* Run the proprocessor over the input file text. The global variables
2392** azDefine[0] through azDefine[nDefine-1] contains the names of all defined
2393** macros. This routine looks for "%ifdef" and "%ifndef" and "%endif" and
2394** comments them out. Text in between is also commented out as appropriate.
2395*/
danielk1977940fac92005-01-23 22:41:37 +00002396static void preprocess_input(char *z){
drh6d08b4d2004-07-20 12:45:22 +00002397 int i, j, k, n;
2398 int exclude = 0;
2399 int start;
2400 int lineno = 1;
2401 int start_lineno;
2402 for(i=0; z[i]; i++){
2403 if( z[i]=='\n' ) lineno++;
2404 if( z[i]!='%' || (i>0 && z[i-1]!='\n') ) continue;
2405 if( strncmp(&z[i],"%endif",6)==0 && isspace(z[i+6]) ){
2406 if( exclude ){
2407 exclude--;
2408 if( exclude==0 ){
2409 for(j=start; j<i; j++) if( z[j]!='\n' ) z[j] = ' ';
2410 }
2411 }
2412 for(j=i; z[j] && z[j]!='\n'; j++) z[j] = ' ';
2413 }else if( (strncmp(&z[i],"%ifdef",6)==0 && isspace(z[i+6]))
2414 || (strncmp(&z[i],"%ifndef",7)==0 && isspace(z[i+7])) ){
2415 if( exclude ){
2416 exclude++;
2417 }else{
2418 for(j=i+7; isspace(z[j]); j++){}
2419 for(n=0; z[j+n] && !isspace(z[j+n]); n++){}
2420 exclude = 1;
2421 for(k=0; k<nDefine; k++){
2422 if( strncmp(azDefine[k],&z[j],n)==0 && strlen(azDefine[k])==n ){
2423 exclude = 0;
2424 break;
2425 }
2426 }
2427 if( z[i+3]=='n' ) exclude = !exclude;
2428 if( exclude ){
2429 start = i;
2430 start_lineno = lineno;
2431 }
2432 }
2433 for(j=i; z[j] && z[j]!='\n'; j++) z[j] = ' ';
2434 }
2435 }
2436 if( exclude ){
2437 fprintf(stderr,"unterminated %%ifdef starting on line %d\n", start_lineno);
2438 exit(1);
2439 }
2440}
2441
drh75897232000-05-29 14:26:00 +00002442/* In spite of its name, this function is really a scanner. It read
2443** in the entire input file (all at once) then tokenizes it. Each
2444** token is passed to the function "parseonetoken" which builds all
2445** the appropriate data structures in the global state vector "gp".
2446*/
2447void Parse(gp)
2448struct lemon *gp;
2449{
2450 struct pstate ps;
2451 FILE *fp;
2452 char *filebuf;
2453 int filesize;
2454 int lineno;
2455 int c;
2456 char *cp, *nextcp;
2457 int startline = 0;
2458
2459 ps.gp = gp;
2460 ps.filename = gp->filename;
2461 ps.errorcnt = 0;
2462 ps.state = INITIALIZE;
2463
2464 /* Begin by reading the input file */
2465 fp = fopen(ps.filename,"rb");
2466 if( fp==0 ){
2467 ErrorMsg(ps.filename,0,"Can't open this file for reading.");
2468 gp->errorcnt++;
2469 return;
2470 }
2471 fseek(fp,0,2);
2472 filesize = ftell(fp);
2473 rewind(fp);
2474 filebuf = (char *)malloc( filesize+1 );
2475 if( filebuf==0 ){
2476 ErrorMsg(ps.filename,0,"Can't allocate %d of memory to hold this file.",
2477 filesize+1);
2478 gp->errorcnt++;
2479 return;
2480 }
2481 if( fread(filebuf,1,filesize,fp)!=filesize ){
2482 ErrorMsg(ps.filename,0,"Can't read in all %d bytes of this file.",
2483 filesize);
2484 free(filebuf);
2485 gp->errorcnt++;
2486 return;
2487 }
2488 fclose(fp);
2489 filebuf[filesize] = 0;
2490
drh6d08b4d2004-07-20 12:45:22 +00002491 /* Make an initial pass through the file to handle %ifdef and %ifndef */
2492 preprocess_input(filebuf);
2493
drh75897232000-05-29 14:26:00 +00002494 /* Now scan the text of the input file */
2495 lineno = 1;
2496 for(cp=filebuf; (c= *cp)!=0; ){
2497 if( c=='\n' ) lineno++; /* Keep track of the line number */
2498 if( isspace(c) ){ cp++; continue; } /* Skip all white space */
2499 if( c=='/' && cp[1]=='/' ){ /* Skip C++ style comments */
2500 cp+=2;
2501 while( (c= *cp)!=0 && c!='\n' ) cp++;
2502 continue;
2503 }
2504 if( c=='/' && cp[1]=='*' ){ /* Skip C style comments */
2505 cp+=2;
2506 while( (c= *cp)!=0 && (c!='/' || cp[-1]!='*') ){
2507 if( c=='\n' ) lineno++;
2508 cp++;
2509 }
2510 if( c ) cp++;
2511 continue;
2512 }
2513 ps.tokenstart = cp; /* Mark the beginning of the token */
2514 ps.tokenlineno = lineno; /* Linenumber on which token begins */
2515 if( c=='\"' ){ /* String literals */
2516 cp++;
2517 while( (c= *cp)!=0 && c!='\"' ){
2518 if( c=='\n' ) lineno++;
2519 cp++;
2520 }
2521 if( c==0 ){
2522 ErrorMsg(ps.filename,startline,
2523"String starting on this line is not terminated before the end of the file.");
2524 ps.errorcnt++;
2525 nextcp = cp;
2526 }else{
2527 nextcp = cp+1;
2528 }
2529 }else if( c=='{' ){ /* A block of C code */
2530 int level;
2531 cp++;
2532 for(level=1; (c= *cp)!=0 && (level>1 || c!='}'); cp++){
2533 if( c=='\n' ) lineno++;
2534 else if( c=='{' ) level++;
2535 else if( c=='}' ) level--;
2536 else if( c=='/' && cp[1]=='*' ){ /* Skip comments */
2537 int prevc;
2538 cp = &cp[2];
2539 prevc = 0;
2540 while( (c= *cp)!=0 && (c!='/' || prevc!='*') ){
2541 if( c=='\n' ) lineno++;
2542 prevc = c;
2543 cp++;
2544 }
2545 }else if( c=='/' && cp[1]=='/' ){ /* Skip C++ style comments too */
2546 cp = &cp[2];
2547 while( (c= *cp)!=0 && c!='\n' ) cp++;
2548 if( c ) lineno++;
2549 }else if( c=='\'' || c=='\"' ){ /* String a character literals */
2550 int startchar, prevc;
2551 startchar = c;
2552 prevc = 0;
2553 for(cp++; (c= *cp)!=0 && (c!=startchar || prevc=='\\'); cp++){
2554 if( c=='\n' ) lineno++;
2555 if( prevc=='\\' ) prevc = 0;
2556 else prevc = c;
2557 }
2558 }
2559 }
2560 if( c==0 ){
drh960e8c62001-04-03 16:53:21 +00002561 ErrorMsg(ps.filename,ps.tokenlineno,
drh75897232000-05-29 14:26:00 +00002562"C code starting on this line is not terminated before the end of the file.");
2563 ps.errorcnt++;
2564 nextcp = cp;
2565 }else{
2566 nextcp = cp+1;
2567 }
2568 }else if( isalnum(c) ){ /* Identifiers */
2569 while( (c= *cp)!=0 && (isalnum(c) || c=='_') ) cp++;
2570 nextcp = cp;
2571 }else if( c==':' && cp[1]==':' && cp[2]=='=' ){ /* The operator "::=" */
2572 cp += 3;
2573 nextcp = cp;
drhfd405312005-11-06 04:06:59 +00002574 }else if( (c=='/' || c=='|') && isalpha(cp[1]) ){
2575 cp += 2;
2576 while( (c = *cp)!=0 && (isalnum(c) || c=='_') ) cp++;
2577 nextcp = cp;
drh75897232000-05-29 14:26:00 +00002578 }else{ /* All other (one character) operators */
2579 cp++;
2580 nextcp = cp;
2581 }
2582 c = *cp;
2583 *cp = 0; /* Null terminate the token */
2584 parseonetoken(&ps); /* Parse the token */
2585 *cp = c; /* Restore the buffer */
2586 cp = nextcp;
2587 }
2588 free(filebuf); /* Release the buffer after parsing */
2589 gp->rule = ps.firstrule;
2590 gp->errorcnt = ps.errorcnt;
2591}
2592/*************************** From the file "plink.c" *********************/
2593/*
2594** Routines processing configuration follow-set propagation links
2595** in the LEMON parser generator.
2596*/
2597static struct plink *plink_freelist = 0;
2598
2599/* Allocate a new plink */
2600struct plink *Plink_new(){
2601 struct plink *new;
2602
2603 if( plink_freelist==0 ){
2604 int i;
2605 int amt = 100;
2606 plink_freelist = (struct plink *)malloc( sizeof(struct plink)*amt );
2607 if( plink_freelist==0 ){
2608 fprintf(stderr,
2609 "Unable to allocate memory for a new follow-set propagation link.\n");
2610 exit(1);
2611 }
2612 for(i=0; i<amt-1; i++) plink_freelist[i].next = &plink_freelist[i+1];
2613 plink_freelist[amt-1].next = 0;
2614 }
2615 new = plink_freelist;
2616 plink_freelist = plink_freelist->next;
2617 return new;
2618}
2619
2620/* Add a plink to a plink list */
2621void Plink_add(plpp,cfp)
2622struct plink **plpp;
2623struct config *cfp;
2624{
2625 struct plink *new;
2626 new = Plink_new();
2627 new->next = *plpp;
2628 *plpp = new;
2629 new->cfp = cfp;
2630}
2631
2632/* Transfer every plink on the list "from" to the list "to" */
2633void Plink_copy(to,from)
2634struct plink **to;
2635struct plink *from;
2636{
2637 struct plink *nextpl;
2638 while( from ){
2639 nextpl = from->next;
2640 from->next = *to;
2641 *to = from;
2642 from = nextpl;
2643 }
2644}
2645
2646/* Delete every plink on the list */
2647void Plink_delete(plp)
2648struct plink *plp;
2649{
2650 struct plink *nextpl;
2651
2652 while( plp ){
2653 nextpl = plp->next;
2654 plp->next = plink_freelist;
2655 plink_freelist = plp;
2656 plp = nextpl;
2657 }
2658}
2659/*********************** From the file "report.c" **************************/
2660/*
2661** Procedures for generating reports and tables in the LEMON parser generator.
2662*/
2663
2664/* Generate a filename with the given suffix. Space to hold the
2665** name comes from malloc() and must be freed by the calling
2666** function.
2667*/
2668PRIVATE char *file_makename(lemp,suffix)
2669struct lemon *lemp;
2670char *suffix;
2671{
2672 char *name;
2673 char *cp;
2674
2675 name = malloc( strlen(lemp->filename) + strlen(suffix) + 5 );
2676 if( name==0 ){
2677 fprintf(stderr,"Can't allocate space for a filename.\n");
2678 exit(1);
2679 }
2680 strcpy(name,lemp->filename);
2681 cp = strrchr(name,'.');
2682 if( cp ) *cp = 0;
2683 strcat(name,suffix);
2684 return name;
2685}
2686
2687/* Open a file with a name based on the name of the input file,
2688** but with a different (specified) suffix, and return a pointer
2689** to the stream */
2690PRIVATE FILE *file_open(lemp,suffix,mode)
2691struct lemon *lemp;
2692char *suffix;
2693char *mode;
2694{
2695 FILE *fp;
2696
2697 if( lemp->outname ) free(lemp->outname);
2698 lemp->outname = file_makename(lemp, suffix);
2699 fp = fopen(lemp->outname,mode);
2700 if( fp==0 && *mode=='w' ){
2701 fprintf(stderr,"Can't open file \"%s\".\n",lemp->outname);
2702 lemp->errorcnt++;
2703 return 0;
2704 }
2705 return fp;
2706}
2707
2708/* Duplicate the input file without comments and without actions
2709** on rules */
2710void Reprint(lemp)
2711struct lemon *lemp;
2712{
2713 struct rule *rp;
2714 struct symbol *sp;
2715 int i, j, maxlen, len, ncolumns, skip;
2716 printf("// Reprint of input file \"%s\".\n// Symbols:\n",lemp->filename);
2717 maxlen = 10;
2718 for(i=0; i<lemp->nsymbol; i++){
2719 sp = lemp->symbols[i];
2720 len = strlen(sp->name);
2721 if( len>maxlen ) maxlen = len;
2722 }
2723 ncolumns = 76/(maxlen+5);
2724 if( ncolumns<1 ) ncolumns = 1;
2725 skip = (lemp->nsymbol + ncolumns - 1)/ncolumns;
2726 for(i=0; i<skip; i++){
2727 printf("//");
2728 for(j=i; j<lemp->nsymbol; j+=skip){
2729 sp = lemp->symbols[j];
2730 assert( sp->index==j );
2731 printf(" %3d %-*.*s",j,maxlen,maxlen,sp->name);
2732 }
2733 printf("\n");
2734 }
2735 for(rp=lemp->rule; rp; rp=rp->next){
2736 printf("%s",rp->lhs->name);
drhfd405312005-11-06 04:06:59 +00002737 /* if( rp->lhsalias ) printf("(%s)",rp->lhsalias); */
drh75897232000-05-29 14:26:00 +00002738 printf(" ::=");
2739 for(i=0; i<rp->nrhs; i++){
drhfd405312005-11-06 04:06:59 +00002740 sp = rp->rhs[i];
2741 printf(" %s", sp->name);
2742 if( sp->type==MULTITERMINAL ){
2743 for(j=1; j<sp->nsubsym; j++){
2744 printf("|%s", sp->subsym[j]->name);
2745 }
2746 }
2747 /* if( rp->rhsalias[i] ) printf("(%s)",rp->rhsalias[i]); */
drh75897232000-05-29 14:26:00 +00002748 }
2749 printf(".");
2750 if( rp->precsym ) printf(" [%s]",rp->precsym->name);
drhfd405312005-11-06 04:06:59 +00002751 /* if( rp->code ) printf("\n %s",rp->code); */
drh75897232000-05-29 14:26:00 +00002752 printf("\n");
2753 }
2754}
2755
2756void ConfigPrint(fp,cfp)
2757FILE *fp;
2758struct config *cfp;
2759{
2760 struct rule *rp;
drhfd405312005-11-06 04:06:59 +00002761 struct symbol *sp;
2762 int i, j;
drh75897232000-05-29 14:26:00 +00002763 rp = cfp->rp;
2764 fprintf(fp,"%s ::=",rp->lhs->name);
2765 for(i=0; i<=rp->nrhs; i++){
2766 if( i==cfp->dot ) fprintf(fp," *");
2767 if( i==rp->nrhs ) break;
drhfd405312005-11-06 04:06:59 +00002768 sp = rp->rhs[i];
2769 fprintf(fp," %s", sp->name);
2770 if( sp->type==MULTITERMINAL ){
2771 for(j=1; j<sp->nsubsym; j++){
2772 fprintf(fp,"|%s",sp->subsym[j]->name);
2773 }
2774 }
drh75897232000-05-29 14:26:00 +00002775 }
2776}
2777
2778/* #define TEST */
drhfd405312005-11-06 04:06:59 +00002779#if 0
drh75897232000-05-29 14:26:00 +00002780/* Print a set */
2781PRIVATE void SetPrint(out,set,lemp)
2782FILE *out;
2783char *set;
2784struct lemon *lemp;
2785{
2786 int i;
2787 char *spacer;
2788 spacer = "";
2789 fprintf(out,"%12s[","");
2790 for(i=0; i<lemp->nterminal; i++){
2791 if( SetFind(set,i) ){
2792 fprintf(out,"%s%s",spacer,lemp->symbols[i]->name);
2793 spacer = " ";
2794 }
2795 }
2796 fprintf(out,"]\n");
2797}
2798
2799/* Print a plink chain */
2800PRIVATE void PlinkPrint(out,plp,tag)
2801FILE *out;
2802struct plink *plp;
2803char *tag;
2804{
2805 while( plp ){
drhada354d2005-11-05 15:03:59 +00002806 fprintf(out,"%12s%s (state %2d) ","",tag,plp->cfp->stp->statenum);
drh75897232000-05-29 14:26:00 +00002807 ConfigPrint(out,plp->cfp);
2808 fprintf(out,"\n");
2809 plp = plp->next;
2810 }
2811}
2812#endif
2813
2814/* Print an action to the given file descriptor. Return FALSE if
2815** nothing was actually printed.
2816*/
2817int PrintAction(struct action *ap, FILE *fp, int indent){
2818 int result = 1;
2819 switch( ap->type ){
2820 case SHIFT:
drhada354d2005-11-05 15:03:59 +00002821 fprintf(fp,"%*s shift %d",indent,ap->sp->name,ap->x.stp->statenum);
drh75897232000-05-29 14:26:00 +00002822 break;
2823 case REDUCE:
2824 fprintf(fp,"%*s reduce %d",indent,ap->sp->name,ap->x.rp->index);
2825 break;
2826 case ACCEPT:
2827 fprintf(fp,"%*s accept",indent,ap->sp->name);
2828 break;
2829 case ERROR:
2830 fprintf(fp,"%*s error",indent,ap->sp->name);
2831 break;
2832 case CONFLICT:
2833 fprintf(fp,"%*s reduce %-3d ** Parsing conflict **",
2834 indent,ap->sp->name,ap->x.rp->index);
2835 break;
2836 case SH_RESOLVED:
2837 case RD_RESOLVED:
2838 case NOT_USED:
2839 result = 0;
2840 break;
2841 }
2842 return result;
2843}
2844
2845/* Generate the "y.output" log file */
2846void ReportOutput(lemp)
2847struct lemon *lemp;
2848{
2849 int i;
2850 struct state *stp;
2851 struct config *cfp;
2852 struct action *ap;
2853 FILE *fp;
2854
drh2aa6ca42004-09-10 00:14:04 +00002855 fp = file_open(lemp,".out","wb");
drh75897232000-05-29 14:26:00 +00002856 if( fp==0 ) return;
2857 fprintf(fp," \b");
2858 for(i=0; i<lemp->nstate; i++){
2859 stp = lemp->sorted[i];
drhada354d2005-11-05 15:03:59 +00002860 fprintf(fp,"State %d:\n",stp->statenum);
drh75897232000-05-29 14:26:00 +00002861 if( lemp->basisflag ) cfp=stp->bp;
2862 else cfp=stp->cfp;
2863 while( cfp ){
2864 char buf[20];
2865 if( cfp->dot==cfp->rp->nrhs ){
2866 sprintf(buf,"(%d)",cfp->rp->index);
2867 fprintf(fp," %5s ",buf);
2868 }else{
2869 fprintf(fp," ");
2870 }
2871 ConfigPrint(fp,cfp);
2872 fprintf(fp,"\n");
drhfd405312005-11-06 04:06:59 +00002873#if 0
drh75897232000-05-29 14:26:00 +00002874 SetPrint(fp,cfp->fws,lemp);
2875 PlinkPrint(fp,cfp->fplp,"To ");
2876 PlinkPrint(fp,cfp->bplp,"From");
2877#endif
2878 if( lemp->basisflag ) cfp=cfp->bp;
2879 else cfp=cfp->next;
2880 }
2881 fprintf(fp,"\n");
2882 for(ap=stp->ap; ap; ap=ap->next){
2883 if( PrintAction(ap,fp,30) ) fprintf(fp,"\n");
2884 }
2885 fprintf(fp,"\n");
2886 }
2887 fclose(fp);
2888 return;
2889}
2890
2891/* Search for the file "name" which is in the same directory as
2892** the exacutable */
2893PRIVATE char *pathsearch(argv0,name,modemask)
2894char *argv0;
2895char *name;
2896int modemask;
2897{
2898 char *pathlist;
2899 char *path,*cp;
2900 char c;
2901 extern int access();
2902
2903#ifdef __WIN32__
2904 cp = strrchr(argv0,'\\');
2905#else
2906 cp = strrchr(argv0,'/');
2907#endif
2908 if( cp ){
2909 c = *cp;
2910 *cp = 0;
2911 path = (char *)malloc( strlen(argv0) + strlen(name) + 2 );
2912 if( path ) sprintf(path,"%s/%s",argv0,name);
2913 *cp = c;
2914 }else{
2915 extern char *getenv();
2916 pathlist = getenv("PATH");
2917 if( pathlist==0 ) pathlist = ".:/bin:/usr/bin";
2918 path = (char *)malloc( strlen(pathlist)+strlen(name)+2 );
2919 if( path!=0 ){
2920 while( *pathlist ){
2921 cp = strchr(pathlist,':');
2922 if( cp==0 ) cp = &pathlist[strlen(pathlist)];
2923 c = *cp;
2924 *cp = 0;
2925 sprintf(path,"%s/%s",pathlist,name);
2926 *cp = c;
2927 if( c==0 ) pathlist = "";
2928 else pathlist = &cp[1];
2929 if( access(path,modemask)==0 ) break;
2930 }
2931 }
2932 }
2933 return path;
2934}
2935
2936/* Given an action, compute the integer value for that action
2937** which is to be put in the action table of the generated machine.
2938** Return negative if no action should be generated.
2939*/
2940PRIVATE int compute_action(lemp,ap)
2941struct lemon *lemp;
2942struct action *ap;
2943{
2944 int act;
2945 switch( ap->type ){
drhada354d2005-11-05 15:03:59 +00002946 case SHIFT: act = ap->x.stp->statenum; break;
drh75897232000-05-29 14:26:00 +00002947 case REDUCE: act = ap->x.rp->index + lemp->nstate; break;
2948 case ERROR: act = lemp->nstate + lemp->nrule; break;
2949 case ACCEPT: act = lemp->nstate + lemp->nrule + 1; break;
2950 default: act = -1; break;
2951 }
2952 return act;
2953}
2954
2955#define LINESIZE 1000
2956/* The next cluster of routines are for reading the template file
2957** and writing the results to the generated parser */
2958/* The first function transfers data from "in" to "out" until
2959** a line is seen which begins with "%%". The line number is
2960** tracked.
2961**
2962** if name!=0, then any word that begin with "Parse" is changed to
2963** begin with *name instead.
2964*/
2965PRIVATE void tplt_xfer(name,in,out,lineno)
2966char *name;
2967FILE *in;
2968FILE *out;
2969int *lineno;
2970{
2971 int i, iStart;
2972 char line[LINESIZE];
2973 while( fgets(line,LINESIZE,in) && (line[0]!='%' || line[1]!='%') ){
2974 (*lineno)++;
2975 iStart = 0;
2976 if( name ){
2977 for(i=0; line[i]; i++){
2978 if( line[i]=='P' && strncmp(&line[i],"Parse",5)==0
2979 && (i==0 || !isalpha(line[i-1]))
2980 ){
2981 if( i>iStart ) fprintf(out,"%.*s",i-iStart,&line[iStart]);
2982 fprintf(out,"%s",name);
2983 i += 4;
2984 iStart = i+1;
2985 }
2986 }
2987 }
2988 fprintf(out,"%s",&line[iStart]);
2989 }
2990}
2991
2992/* The next function finds the template file and opens it, returning
2993** a pointer to the opened file. */
2994PRIVATE FILE *tplt_open(lemp)
2995struct lemon *lemp;
2996{
2997 static char templatename[] = "lempar.c";
2998 char buf[1000];
2999 FILE *in;
3000 char *tpltname;
3001 char *cp;
3002
3003 cp = strrchr(lemp->filename,'.');
3004 if( cp ){
drh8b582012003-10-21 13:16:03 +00003005 sprintf(buf,"%.*s.lt",(int)(cp-lemp->filename),lemp->filename);
drh75897232000-05-29 14:26:00 +00003006 }else{
3007 sprintf(buf,"%s.lt",lemp->filename);
3008 }
3009 if( access(buf,004)==0 ){
3010 tpltname = buf;
drh960e8c62001-04-03 16:53:21 +00003011 }else if( access(templatename,004)==0 ){
3012 tpltname = templatename;
drh75897232000-05-29 14:26:00 +00003013 }else{
3014 tpltname = pathsearch(lemp->argv0,templatename,0);
3015 }
3016 if( tpltname==0 ){
3017 fprintf(stderr,"Can't find the parser driver template file \"%s\".\n",
3018 templatename);
3019 lemp->errorcnt++;
3020 return 0;
3021 }
drh2aa6ca42004-09-10 00:14:04 +00003022 in = fopen(tpltname,"rb");
drh75897232000-05-29 14:26:00 +00003023 if( in==0 ){
3024 fprintf(stderr,"Can't open the template file \"%s\".\n",templatename);
3025 lemp->errorcnt++;
3026 return 0;
3027 }
3028 return in;
3029}
3030
drhaf805ca2004-09-07 11:28:25 +00003031/* Print a #line directive line to the output file. */
3032PRIVATE void tplt_linedir(out,lineno,filename)
3033FILE *out;
3034int lineno;
3035char *filename;
3036{
3037 fprintf(out,"#line %d \"",lineno);
3038 while( *filename ){
3039 if( *filename == '\\' ) putc('\\',out);
3040 putc(*filename,out);
3041 filename++;
3042 }
3043 fprintf(out,"\"\n");
3044}
3045
drh75897232000-05-29 14:26:00 +00003046/* Print a string to the file and keep the linenumber up to date */
3047PRIVATE void tplt_print(out,lemp,str,strln,lineno)
3048FILE *out;
3049struct lemon *lemp;
3050char *str;
3051int strln;
3052int *lineno;
3053{
3054 if( str==0 ) return;
drhaf805ca2004-09-07 11:28:25 +00003055 tplt_linedir(out,strln,lemp->filename);
3056 (*lineno)++;
drh75897232000-05-29 14:26:00 +00003057 while( *str ){
3058 if( *str=='\n' ) (*lineno)++;
3059 putc(*str,out);
3060 str++;
3061 }
drh9db55df2004-09-09 14:01:21 +00003062 if( str[-1]!='\n' ){
3063 putc('\n',out);
3064 (*lineno)++;
3065 }
drhaf805ca2004-09-07 11:28:25 +00003066 tplt_linedir(out,*lineno+2,lemp->outname);
3067 (*lineno)+=2;
drh75897232000-05-29 14:26:00 +00003068 return;
3069}
3070
3071/*
3072** The following routine emits code for the destructor for the
3073** symbol sp
3074*/
3075void emit_destructor_code(out,sp,lemp,lineno)
3076FILE *out;
3077struct symbol *sp;
3078struct lemon *lemp;
3079int *lineno;
3080{
drhcc83b6e2004-04-23 23:38:42 +00003081 char *cp = 0;
drh75897232000-05-29 14:26:00 +00003082
3083 int linecnt = 0;
3084 if( sp->type==TERMINAL ){
3085 cp = lemp->tokendest;
3086 if( cp==0 ) return;
drhaf805ca2004-09-07 11:28:25 +00003087 tplt_linedir(out,lemp->tokendestln,lemp->filename);
3088 fprintf(out,"{");
drh960e8c62001-04-03 16:53:21 +00003089 }else if( sp->destructor ){
drh75897232000-05-29 14:26:00 +00003090 cp = sp->destructor;
drhaf805ca2004-09-07 11:28:25 +00003091 tplt_linedir(out,sp->destructorln,lemp->filename);
3092 fprintf(out,"{");
drh960e8c62001-04-03 16:53:21 +00003093 }else if( lemp->vardest ){
3094 cp = lemp->vardest;
3095 if( cp==0 ) return;
drhaf805ca2004-09-07 11:28:25 +00003096 tplt_linedir(out,lemp->vardestln,lemp->filename);
3097 fprintf(out,"{");
drhcc83b6e2004-04-23 23:38:42 +00003098 }else{
3099 assert( 0 ); /* Cannot happen */
drh75897232000-05-29 14:26:00 +00003100 }
3101 for(; *cp; cp++){
3102 if( *cp=='$' && cp[1]=='$' ){
3103 fprintf(out,"(yypminor->yy%d)",sp->dtnum);
3104 cp++;
3105 continue;
3106 }
3107 if( *cp=='\n' ) linecnt++;
3108 fputc(*cp,out);
3109 }
3110 (*lineno) += 3 + linecnt;
drhaf805ca2004-09-07 11:28:25 +00003111 fprintf(out,"}\n");
3112 tplt_linedir(out,*lineno,lemp->outname);
drh75897232000-05-29 14:26:00 +00003113 return;
3114}
3115
3116/*
drh960e8c62001-04-03 16:53:21 +00003117** Return TRUE (non-zero) if the given symbol has a destructor.
drh75897232000-05-29 14:26:00 +00003118*/
3119int has_destructor(sp, lemp)
3120struct symbol *sp;
3121struct lemon *lemp;
3122{
3123 int ret;
3124 if( sp->type==TERMINAL ){
3125 ret = lemp->tokendest!=0;
3126 }else{
drh960e8c62001-04-03 16:53:21 +00003127 ret = lemp->vardest!=0 || sp->destructor!=0;
drh75897232000-05-29 14:26:00 +00003128 }
3129 return ret;
3130}
3131
drh0bb132b2004-07-20 14:06:51 +00003132/*
3133** Append text to a dynamically allocated string. If zText is 0 then
3134** reset the string to be empty again. Always return the complete text
3135** of the string (which is overwritten with each call).
drh7ac25c72004-08-19 15:12:26 +00003136**
3137** n bytes of zText are stored. If n==0 then all of zText up to the first
3138** \000 terminator is stored. zText can contain up to two instances of
3139** %d. The values of p1 and p2 are written into the first and second
3140** %d.
3141**
3142** If n==-1, then the previous character is overwritten.
drh0bb132b2004-07-20 14:06:51 +00003143*/
3144PRIVATE char *append_str(char *zText, int n, int p1, int p2){
3145 static char *z = 0;
3146 static int alloced = 0;
3147 static int used = 0;
drhaf805ca2004-09-07 11:28:25 +00003148 int c;
drh0bb132b2004-07-20 14:06:51 +00003149 char zInt[40];
3150
3151 if( zText==0 ){
3152 used = 0;
3153 return z;
3154 }
drh7ac25c72004-08-19 15:12:26 +00003155 if( n<=0 ){
3156 if( n<0 ){
3157 used += n;
3158 assert( used>=0 );
3159 }
3160 n = strlen(zText);
3161 }
drh0bb132b2004-07-20 14:06:51 +00003162 if( n+sizeof(zInt)*2+used >= alloced ){
3163 alloced = n + sizeof(zInt)*2 + used + 200;
3164 z = realloc(z, alloced);
3165 }
3166 if( z==0 ) return "";
3167 while( n-- > 0 ){
3168 c = *(zText++);
3169 if( c=='%' && zText[0]=='d' ){
3170 sprintf(zInt, "%d", p1);
3171 p1 = p2;
3172 strcpy(&z[used], zInt);
3173 used += strlen(&z[used]);
3174 zText++;
3175 n--;
3176 }else{
3177 z[used++] = c;
3178 }
3179 }
3180 z[used] = 0;
3181 return z;
3182}
3183
3184/*
3185** zCode is a string that is the action associated with a rule. Expand
3186** the symbols in this string so that the refer to elements of the parser
drhaf805ca2004-09-07 11:28:25 +00003187** stack.
drh0bb132b2004-07-20 14:06:51 +00003188*/
drhaf805ca2004-09-07 11:28:25 +00003189PRIVATE void translate_code(struct lemon *lemp, struct rule *rp){
drh0bb132b2004-07-20 14:06:51 +00003190 char *cp, *xp;
3191 int i;
3192 char lhsused = 0; /* True if the LHS element has been used */
3193 char used[MAXRHS]; /* True for each RHS element which is used */
3194
3195 for(i=0; i<rp->nrhs; i++) used[i] = 0;
3196 lhsused = 0;
3197
3198 append_str(0,0,0,0);
3199 for(cp=rp->code; *cp; cp++){
3200 if( isalpha(*cp) && (cp==rp->code || (!isalnum(cp[-1]) && cp[-1]!='_')) ){
3201 char saved;
3202 for(xp= &cp[1]; isalnum(*xp) || *xp=='_'; xp++);
3203 saved = *xp;
3204 *xp = 0;
3205 if( rp->lhsalias && strcmp(cp,rp->lhsalias)==0 ){
drh7ac25c72004-08-19 15:12:26 +00003206 append_str("yygotominor.yy%d",0,rp->lhs->dtnum,0);
drh0bb132b2004-07-20 14:06:51 +00003207 cp = xp;
3208 lhsused = 1;
3209 }else{
3210 for(i=0; i<rp->nrhs; i++){
3211 if( rp->rhsalias[i] && strcmp(cp,rp->rhsalias[i])==0 ){
drh7ac25c72004-08-19 15:12:26 +00003212 if( cp!=rp->code && cp[-1]=='@' ){
3213 /* If the argument is of the form @X then substituted
3214 ** the token number of X, not the value of X */
3215 append_str("yymsp[%d].major",-1,i-rp->nrhs+1,0);
3216 }else{
drhfd405312005-11-06 04:06:59 +00003217 struct symbol *sp = rp->rhs[i];
3218 int dtnum;
3219 if( sp->type==MULTITERMINAL ){
3220 dtnum = sp->subsym[0]->dtnum;
3221 }else{
3222 dtnum = sp->dtnum;
3223 }
3224 append_str("yymsp[%d].minor.yy%d",0,i-rp->nrhs+1, dtnum);
drh7ac25c72004-08-19 15:12:26 +00003225 }
drh0bb132b2004-07-20 14:06:51 +00003226 cp = xp;
3227 used[i] = 1;
3228 break;
3229 }
3230 }
3231 }
3232 *xp = saved;
3233 }
3234 append_str(cp, 1, 0, 0);
3235 } /* End loop */
3236
3237 /* Check to make sure the LHS has been used */
3238 if( rp->lhsalias && !lhsused ){
3239 ErrorMsg(lemp->filename,rp->ruleline,
3240 "Label \"%s\" for \"%s(%s)\" is never used.",
3241 rp->lhsalias,rp->lhs->name,rp->lhsalias);
3242 lemp->errorcnt++;
3243 }
3244
3245 /* Generate destructor code for RHS symbols which are not used in the
3246 ** reduce code */
3247 for(i=0; i<rp->nrhs; i++){
3248 if( rp->rhsalias[i] && !used[i] ){
3249 ErrorMsg(lemp->filename,rp->ruleline,
3250 "Label %s for \"%s(%s)\" is never used.",
3251 rp->rhsalias[i],rp->rhs[i]->name,rp->rhsalias[i]);
3252 lemp->errorcnt++;
3253 }else if( rp->rhsalias[i]==0 ){
3254 if( has_destructor(rp->rhs[i],lemp) ){
drh7ac25c72004-08-19 15:12:26 +00003255 append_str(" yy_destructor(%d,&yymsp[%d].minor);\n", 0,
drh0bb132b2004-07-20 14:06:51 +00003256 rp->rhs[i]->index,i-rp->nrhs+1);
3257 }else{
3258 /* No destructor defined for this term */
3259 }
3260 }
3261 }
3262 cp = append_str(0,0,0,0);
3263 rp->code = Strsafe(cp);
3264}
3265
drh75897232000-05-29 14:26:00 +00003266/*
3267** Generate code which executes when the rule "rp" is reduced. Write
3268** the code to "out". Make sure lineno stays up-to-date.
3269*/
3270PRIVATE void emit_code(out,rp,lemp,lineno)
3271FILE *out;
3272struct rule *rp;
3273struct lemon *lemp;
3274int *lineno;
3275{
drh0bb132b2004-07-20 14:06:51 +00003276 char *cp;
drh75897232000-05-29 14:26:00 +00003277 int linecnt = 0;
drh75897232000-05-29 14:26:00 +00003278
3279 /* Generate code to do the reduce action */
3280 if( rp->code ){
drhaf805ca2004-09-07 11:28:25 +00003281 tplt_linedir(out,rp->line,lemp->filename);
3282 fprintf(out,"{%s",rp->code);
drh75897232000-05-29 14:26:00 +00003283 for(cp=rp->code; *cp; cp++){
drh75897232000-05-29 14:26:00 +00003284 if( *cp=='\n' ) linecnt++;
drh75897232000-05-29 14:26:00 +00003285 } /* End loop */
3286 (*lineno) += 3 + linecnt;
drhaf805ca2004-09-07 11:28:25 +00003287 fprintf(out,"}\n");
3288 tplt_linedir(out,*lineno,lemp->outname);
drh75897232000-05-29 14:26:00 +00003289 } /* End if( rp->code ) */
3290
drh75897232000-05-29 14:26:00 +00003291 return;
3292}
3293
3294/*
3295** Print the definition of the union used for the parser's data stack.
3296** This union contains fields for every possible data type for tokens
3297** and nonterminals. In the process of computing and printing this
3298** union, also set the ".dtnum" field of every terminal and nonterminal
3299** symbol.
3300*/
3301void print_stack_union(out,lemp,plineno,mhflag)
3302FILE *out; /* The output stream */
3303struct lemon *lemp; /* The main info structure for this parser */
3304int *plineno; /* Pointer to the line number */
3305int mhflag; /* True if generating makeheaders output */
3306{
3307 int lineno = *plineno; /* The line number of the output */
3308 char **types; /* A hash table of datatypes */
3309 int arraysize; /* Size of the "types" array */
3310 int maxdtlength; /* Maximum length of any ".datatype" field. */
3311 char *stddt; /* Standardized name for a datatype */
3312 int i,j; /* Loop counters */
3313 int hash; /* For hashing the name of a type */
3314 char *name; /* Name of the parser */
3315
3316 /* Allocate and initialize types[] and allocate stddt[] */
3317 arraysize = lemp->nsymbol * 2;
3318 types = (char**)malloc( arraysize * sizeof(char*) );
3319 for(i=0; i<arraysize; i++) types[i] = 0;
3320 maxdtlength = 0;
drh960e8c62001-04-03 16:53:21 +00003321 if( lemp->vartype ){
3322 maxdtlength = strlen(lemp->vartype);
3323 }
drh75897232000-05-29 14:26:00 +00003324 for(i=0; i<lemp->nsymbol; i++){
3325 int len;
3326 struct symbol *sp = lemp->symbols[i];
3327 if( sp->datatype==0 ) continue;
3328 len = strlen(sp->datatype);
3329 if( len>maxdtlength ) maxdtlength = len;
3330 }
3331 stddt = (char*)malloc( maxdtlength*2 + 1 );
3332 if( types==0 || stddt==0 ){
3333 fprintf(stderr,"Out of memory.\n");
3334 exit(1);
3335 }
3336
3337 /* Build a hash table of datatypes. The ".dtnum" field of each symbol
3338 ** is filled in with the hash index plus 1. A ".dtnum" value of 0 is
drh960e8c62001-04-03 16:53:21 +00003339 ** used for terminal symbols. If there is no %default_type defined then
3340 ** 0 is also used as the .dtnum value for nonterminals which do not specify
3341 ** a datatype using the %type directive.
3342 */
drh75897232000-05-29 14:26:00 +00003343 for(i=0; i<lemp->nsymbol; i++){
3344 struct symbol *sp = lemp->symbols[i];
3345 char *cp;
3346 if( sp==lemp->errsym ){
3347 sp->dtnum = arraysize+1;
3348 continue;
3349 }
drh960e8c62001-04-03 16:53:21 +00003350 if( sp->type!=NONTERMINAL || (sp->datatype==0 && lemp->vartype==0) ){
drh75897232000-05-29 14:26:00 +00003351 sp->dtnum = 0;
3352 continue;
3353 }
3354 cp = sp->datatype;
drh960e8c62001-04-03 16:53:21 +00003355 if( cp==0 ) cp = lemp->vartype;
drh75897232000-05-29 14:26:00 +00003356 j = 0;
3357 while( isspace(*cp) ) cp++;
3358 while( *cp ) stddt[j++] = *cp++;
3359 while( j>0 && isspace(stddt[j-1]) ) j--;
3360 stddt[j] = 0;
3361 hash = 0;
3362 for(j=0; stddt[j]; j++){
3363 hash = hash*53 + stddt[j];
3364 }
drh3b2129c2003-05-13 00:34:21 +00003365 hash = (hash & 0x7fffffff)%arraysize;
drh75897232000-05-29 14:26:00 +00003366 while( types[hash] ){
3367 if( strcmp(types[hash],stddt)==0 ){
3368 sp->dtnum = hash + 1;
3369 break;
3370 }
3371 hash++;
3372 if( hash>=arraysize ) hash = 0;
3373 }
3374 if( types[hash]==0 ){
3375 sp->dtnum = hash + 1;
3376 types[hash] = (char*)malloc( strlen(stddt)+1 );
3377 if( types[hash]==0 ){
3378 fprintf(stderr,"Out of memory.\n");
3379 exit(1);
3380 }
3381 strcpy(types[hash],stddt);
3382 }
3383 }
3384
3385 /* Print out the definition of YYTOKENTYPE and YYMINORTYPE */
3386 name = lemp->name ? lemp->name : "Parse";
3387 lineno = *plineno;
3388 if( mhflag ){ fprintf(out,"#if INTERFACE\n"); lineno++; }
3389 fprintf(out,"#define %sTOKENTYPE %s\n",name,
3390 lemp->tokentype?lemp->tokentype:"void*"); lineno++;
3391 if( mhflag ){ fprintf(out,"#endif\n"); lineno++; }
3392 fprintf(out,"typedef union {\n"); lineno++;
3393 fprintf(out," %sTOKENTYPE yy0;\n",name); lineno++;
3394 for(i=0; i<arraysize; i++){
3395 if( types[i]==0 ) continue;
3396 fprintf(out," %s yy%d;\n",types[i],i+1); lineno++;
3397 free(types[i]);
3398 }
3399 fprintf(out," int yy%d;\n",lemp->errsym->dtnum); lineno++;
3400 free(stddt);
3401 free(types);
3402 fprintf(out,"} YYMINORTYPE;\n"); lineno++;
3403 *plineno = lineno;
3404}
3405
drhb29b0a52002-02-23 19:39:46 +00003406/*
3407** Return the name of a C datatype able to represent values between
drh8b582012003-10-21 13:16:03 +00003408** lwr and upr, inclusive.
drhb29b0a52002-02-23 19:39:46 +00003409*/
drh8b582012003-10-21 13:16:03 +00003410static const char *minimum_size_type(int lwr, int upr){
3411 if( lwr>=0 ){
3412 if( upr<=255 ){
3413 return "unsigned char";
3414 }else if( upr<65535 ){
3415 return "unsigned short int";
3416 }else{
3417 return "unsigned int";
3418 }
3419 }else if( lwr>=-127 && upr<=127 ){
3420 return "signed char";
3421 }else if( lwr>=-32767 && upr<32767 ){
3422 return "short";
drhb29b0a52002-02-23 19:39:46 +00003423 }else{
drh8b582012003-10-21 13:16:03 +00003424 return "int";
drhb29b0a52002-02-23 19:39:46 +00003425 }
3426}
3427
drhfdbf9282003-10-21 16:34:41 +00003428/*
3429** Each state contains a set of token transaction and a set of
3430** nonterminal transactions. Each of these sets makes an instance
3431** of the following structure. An array of these structures is used
3432** to order the creation of entries in the yy_action[] table.
3433*/
3434struct axset {
3435 struct state *stp; /* A pointer to a state */
3436 int isTkn; /* True to use tokens. False for non-terminals */
3437 int nAction; /* Number of actions */
3438};
3439
3440/*
3441** Compare to axset structures for sorting purposes
3442*/
3443static int axset_compare(const void *a, const void *b){
3444 struct axset *p1 = (struct axset*)a;
3445 struct axset *p2 = (struct axset*)b;
3446 return p2->nAction - p1->nAction;
3447}
3448
drh75897232000-05-29 14:26:00 +00003449/* Generate C source code for the parser */
3450void ReportTable(lemp, mhflag)
3451struct lemon *lemp;
3452int mhflag; /* Output in makeheaders format if true */
3453{
3454 FILE *out, *in;
3455 char line[LINESIZE];
3456 int lineno;
3457 struct state *stp;
3458 struct action *ap;
3459 struct rule *rp;
drh8b582012003-10-21 13:16:03 +00003460 struct acttab *pActtab;
3461 int i, j, n;
drh75897232000-05-29 14:26:00 +00003462 char *name;
drh8b582012003-10-21 13:16:03 +00003463 int mnTknOfst, mxTknOfst;
3464 int mnNtOfst, mxNtOfst;
drhfdbf9282003-10-21 16:34:41 +00003465 struct axset *ax;
drh75897232000-05-29 14:26:00 +00003466
3467 in = tplt_open(lemp);
3468 if( in==0 ) return;
drh2aa6ca42004-09-10 00:14:04 +00003469 out = file_open(lemp,".c","wb");
drh75897232000-05-29 14:26:00 +00003470 if( out==0 ){
3471 fclose(in);
3472 return;
3473 }
3474 lineno = 1;
3475 tplt_xfer(lemp->name,in,out,&lineno);
3476
3477 /* Generate the include code, if any */
3478 tplt_print(out,lemp,lemp->include,lemp->includeln,&lineno);
3479 if( mhflag ){
3480 char *name = file_makename(lemp, ".h");
3481 fprintf(out,"#include \"%s\"\n", name); lineno++;
3482 free(name);
3483 }
3484 tplt_xfer(lemp->name,in,out,&lineno);
3485
3486 /* Generate #defines for all tokens */
3487 if( mhflag ){
3488 char *prefix;
3489 fprintf(out,"#if INTERFACE\n"); lineno++;
3490 if( lemp->tokenprefix ) prefix = lemp->tokenprefix;
3491 else prefix = "";
3492 for(i=1; i<lemp->nterminal; i++){
3493 fprintf(out,"#define %s%-30s %2d\n",prefix,lemp->symbols[i]->name,i);
3494 lineno++;
3495 }
3496 fprintf(out,"#endif\n"); lineno++;
3497 }
3498 tplt_xfer(lemp->name,in,out,&lineno);
3499
3500 /* Generate the defines */
drh75897232000-05-29 14:26:00 +00003501 fprintf(out,"#define YYCODETYPE %s\n",
drh8b582012003-10-21 13:16:03 +00003502 minimum_size_type(0, lemp->nsymbol+5)); lineno++;
drh75897232000-05-29 14:26:00 +00003503 fprintf(out,"#define YYNOCODE %d\n",lemp->nsymbol+1); lineno++;
3504 fprintf(out,"#define YYACTIONTYPE %s\n",
drh8b582012003-10-21 13:16:03 +00003505 minimum_size_type(0, lemp->nstate+lemp->nrule+5)); lineno++;
drhe09daa92006-06-10 13:29:31 +00003506 if( lemp->wildcard ){
3507 fprintf(out,"#define YYWILDCARD %d\n",
3508 lemp->wildcard->index); lineno++;
3509 }
drh75897232000-05-29 14:26:00 +00003510 print_stack_union(out,lemp,&lineno,mhflag);
3511 if( lemp->stacksize ){
3512 if( atoi(lemp->stacksize)<=0 ){
3513 ErrorMsg(lemp->filename,0,
3514"Illegal stack size: [%s]. The stack size should be an integer constant.",
3515 lemp->stacksize);
3516 lemp->errorcnt++;
3517 lemp->stacksize = "100";
3518 }
3519 fprintf(out,"#define YYSTACKDEPTH %s\n",lemp->stacksize); lineno++;
3520 }else{
3521 fprintf(out,"#define YYSTACKDEPTH 100\n"); lineno++;
3522 }
3523 if( mhflag ){
3524 fprintf(out,"#if INTERFACE\n"); lineno++;
3525 }
3526 name = lemp->name ? lemp->name : "Parse";
3527 if( lemp->arg && lemp->arg[0] ){
3528 int i;
3529 i = strlen(lemp->arg);
drhb1edd012000-06-02 18:52:12 +00003530 while( i>=1 && isspace(lemp->arg[i-1]) ) i--;
3531 while( i>=1 && (isalnum(lemp->arg[i-1]) || lemp->arg[i-1]=='_') ) i--;
drh1f245e42002-03-11 13:55:50 +00003532 fprintf(out,"#define %sARG_SDECL %s;\n",name,lemp->arg); lineno++;
3533 fprintf(out,"#define %sARG_PDECL ,%s\n",name,lemp->arg); lineno++;
3534 fprintf(out,"#define %sARG_FETCH %s = yypParser->%s\n",
3535 name,lemp->arg,&lemp->arg[i]); lineno++;
3536 fprintf(out,"#define %sARG_STORE yypParser->%s = %s\n",
3537 name,&lemp->arg[i],&lemp->arg[i]); lineno++;
drh75897232000-05-29 14:26:00 +00003538 }else{
drh1f245e42002-03-11 13:55:50 +00003539 fprintf(out,"#define %sARG_SDECL\n",name); lineno++;
3540 fprintf(out,"#define %sARG_PDECL\n",name); lineno++;
3541 fprintf(out,"#define %sARG_FETCH\n",name); lineno++;
3542 fprintf(out,"#define %sARG_STORE\n",name); lineno++;
drh75897232000-05-29 14:26:00 +00003543 }
3544 if( mhflag ){
3545 fprintf(out,"#endif\n"); lineno++;
3546 }
3547 fprintf(out,"#define YYNSTATE %d\n",lemp->nstate); lineno++;
3548 fprintf(out,"#define YYNRULE %d\n",lemp->nrule); lineno++;
3549 fprintf(out,"#define YYERRORSYMBOL %d\n",lemp->errsym->index); lineno++;
3550 fprintf(out,"#define YYERRSYMDT yy%d\n",lemp->errsym->dtnum); lineno++;
drh0bd1f4e2002-06-06 18:54:39 +00003551 if( lemp->has_fallback ){
3552 fprintf(out,"#define YYFALLBACK 1\n"); lineno++;
3553 }
drh75897232000-05-29 14:26:00 +00003554 tplt_xfer(lemp->name,in,out,&lineno);
3555
drh8b582012003-10-21 13:16:03 +00003556 /* Generate the action table and its associates:
drh75897232000-05-29 14:26:00 +00003557 **
drh8b582012003-10-21 13:16:03 +00003558 ** yy_action[] A single table containing all actions.
3559 ** yy_lookahead[] A table containing the lookahead for each entry in
3560 ** yy_action. Used to detect hash collisions.
3561 ** yy_shift_ofst[] For each state, the offset into yy_action for
3562 ** shifting terminals.
3563 ** yy_reduce_ofst[] For each state, the offset into yy_action for
3564 ** shifting non-terminals after a reduce.
3565 ** yy_default[] Default action for each state.
drh75897232000-05-29 14:26:00 +00003566 */
drh75897232000-05-29 14:26:00 +00003567
drh8b582012003-10-21 13:16:03 +00003568 /* Compute the actions on all states and count them up */
drhfdbf9282003-10-21 16:34:41 +00003569 ax = malloc( sizeof(ax[0])*lemp->nstate*2 );
3570 if( ax==0 ){
3571 fprintf(stderr,"malloc failed\n");
3572 exit(1);
3573 }
drh75897232000-05-29 14:26:00 +00003574 for(i=0; i<lemp->nstate; i++){
drh75897232000-05-29 14:26:00 +00003575 stp = lemp->sorted[i];
drhfdbf9282003-10-21 16:34:41 +00003576 ax[i*2].stp = stp;
3577 ax[i*2].isTkn = 1;
3578 ax[i*2].nAction = stp->nTknAct;
3579 ax[i*2+1].stp = stp;
3580 ax[i*2+1].isTkn = 0;
3581 ax[i*2+1].nAction = stp->nNtAct;
drh75897232000-05-29 14:26:00 +00003582 }
drh8b582012003-10-21 13:16:03 +00003583 mxTknOfst = mnTknOfst = 0;
3584 mxNtOfst = mnNtOfst = 0;
3585
drhfdbf9282003-10-21 16:34:41 +00003586 /* Compute the action table. In order to try to keep the size of the
3587 ** action table to a minimum, the heuristic of placing the largest action
3588 ** sets first is used.
drh8b582012003-10-21 13:16:03 +00003589 */
drhfdbf9282003-10-21 16:34:41 +00003590 qsort(ax, lemp->nstate*2, sizeof(ax[0]), axset_compare);
drh8b582012003-10-21 13:16:03 +00003591 pActtab = acttab_alloc();
drhfdbf9282003-10-21 16:34:41 +00003592 for(i=0; i<lemp->nstate*2 && ax[i].nAction>0; i++){
3593 stp = ax[i].stp;
3594 if( ax[i].isTkn ){
3595 for(ap=stp->ap; ap; ap=ap->next){
3596 int action;
3597 if( ap->sp->index>=lemp->nterminal ) continue;
3598 action = compute_action(lemp, ap);
3599 if( action<0 ) continue;
3600 acttab_action(pActtab, ap->sp->index, action);
drh8b582012003-10-21 13:16:03 +00003601 }
drhfdbf9282003-10-21 16:34:41 +00003602 stp->iTknOfst = acttab_insert(pActtab);
3603 if( stp->iTknOfst<mnTknOfst ) mnTknOfst = stp->iTknOfst;
3604 if( stp->iTknOfst>mxTknOfst ) mxTknOfst = stp->iTknOfst;
3605 }else{
3606 for(ap=stp->ap; ap; ap=ap->next){
3607 int action;
3608 if( ap->sp->index<lemp->nterminal ) continue;
3609 if( ap->sp->index==lemp->nsymbol ) continue;
3610 action = compute_action(lemp, ap);
3611 if( action<0 ) continue;
3612 acttab_action(pActtab, ap->sp->index, action);
drh8b582012003-10-21 13:16:03 +00003613 }
drhfdbf9282003-10-21 16:34:41 +00003614 stp->iNtOfst = acttab_insert(pActtab);
3615 if( stp->iNtOfst<mnNtOfst ) mnNtOfst = stp->iNtOfst;
3616 if( stp->iNtOfst>mxNtOfst ) mxNtOfst = stp->iNtOfst;
drh8b582012003-10-21 13:16:03 +00003617 }
3618 }
drhfdbf9282003-10-21 16:34:41 +00003619 free(ax);
drh8b582012003-10-21 13:16:03 +00003620
3621 /* Output the yy_action table */
drh57196282004-10-06 15:41:16 +00003622 fprintf(out,"static const YYACTIONTYPE yy_action[] = {\n"); lineno++;
drh8b582012003-10-21 13:16:03 +00003623 n = acttab_size(pActtab);
3624 for(i=j=0; i<n; i++){
3625 int action = acttab_yyaction(pActtab, i);
3626 if( action<0 ) action = lemp->nsymbol + lemp->nrule + 2;
drhfdbf9282003-10-21 16:34:41 +00003627 if( j==0 ) fprintf(out," /* %5d */ ", i);
drh8b582012003-10-21 13:16:03 +00003628 fprintf(out, " %4d,", action);
3629 if( j==9 || i==n-1 ){
3630 fprintf(out, "\n"); lineno++;
3631 j = 0;
3632 }else{
3633 j++;
3634 }
3635 }
3636 fprintf(out, "};\n"); lineno++;
3637
3638 /* Output the yy_lookahead table */
drh57196282004-10-06 15:41:16 +00003639 fprintf(out,"static const YYCODETYPE yy_lookahead[] = {\n"); lineno++;
drh8b582012003-10-21 13:16:03 +00003640 for(i=j=0; i<n; i++){
3641 int la = acttab_yylookahead(pActtab, i);
3642 if( la<0 ) la = lemp->nsymbol;
drhfdbf9282003-10-21 16:34:41 +00003643 if( j==0 ) fprintf(out," /* %5d */ ", i);
drh8b582012003-10-21 13:16:03 +00003644 fprintf(out, " %4d,", la);
3645 if( j==9 || i==n-1 ){
3646 fprintf(out, "\n"); lineno++;
3647 j = 0;
3648 }else{
3649 j++;
3650 }
3651 }
3652 fprintf(out, "};\n"); lineno++;
3653
3654 /* Output the yy_shift_ofst[] table */
3655 fprintf(out, "#define YY_SHIFT_USE_DFLT (%d)\n", mnTknOfst-1); lineno++;
drhada354d2005-11-05 15:03:59 +00003656 n = lemp->nstate;
3657 while( n>0 && lemp->sorted[n-1]->iTknOfst==NO_OFFSET ) n--;
3658 fprintf(out, "#define YY_SHIFT_MAX %d\n", n-1); lineno++;
drh57196282004-10-06 15:41:16 +00003659 fprintf(out, "static const %s yy_shift_ofst[] = {\n",
drh8b582012003-10-21 13:16:03 +00003660 minimum_size_type(mnTknOfst-1, mxTknOfst)); lineno++;
drh8b582012003-10-21 13:16:03 +00003661 for(i=j=0; i<n; i++){
3662 int ofst;
3663 stp = lemp->sorted[i];
3664 ofst = stp->iTknOfst;
3665 if( ofst==NO_OFFSET ) ofst = mnTknOfst - 1;
drhfdbf9282003-10-21 16:34:41 +00003666 if( j==0 ) fprintf(out," /* %5d */ ", i);
drh8b582012003-10-21 13:16:03 +00003667 fprintf(out, " %4d,", ofst);
3668 if( j==9 || i==n-1 ){
3669 fprintf(out, "\n"); lineno++;
3670 j = 0;
3671 }else{
3672 j++;
3673 }
3674 }
3675 fprintf(out, "};\n"); lineno++;
3676
3677 /* Output the yy_reduce_ofst[] table */
3678 fprintf(out, "#define YY_REDUCE_USE_DFLT (%d)\n", mnNtOfst-1); lineno++;
drhada354d2005-11-05 15:03:59 +00003679 n = lemp->nstate;
3680 while( n>0 && lemp->sorted[n-1]->iNtOfst==NO_OFFSET ) n--;
3681 fprintf(out, "#define YY_REDUCE_MAX %d\n", n-1); lineno++;
drh57196282004-10-06 15:41:16 +00003682 fprintf(out, "static const %s yy_reduce_ofst[] = {\n",
drh8b582012003-10-21 13:16:03 +00003683 minimum_size_type(mnNtOfst-1, mxNtOfst)); lineno++;
drh8b582012003-10-21 13:16:03 +00003684 for(i=j=0; i<n; i++){
3685 int ofst;
3686 stp = lemp->sorted[i];
3687 ofst = stp->iNtOfst;
3688 if( ofst==NO_OFFSET ) ofst = mnNtOfst - 1;
drhfdbf9282003-10-21 16:34:41 +00003689 if( j==0 ) fprintf(out," /* %5d */ ", i);
drh8b582012003-10-21 13:16:03 +00003690 fprintf(out, " %4d,", ofst);
3691 if( j==9 || i==n-1 ){
3692 fprintf(out, "\n"); lineno++;
3693 j = 0;
3694 }else{
3695 j++;
3696 }
3697 }
3698 fprintf(out, "};\n"); lineno++;
3699
3700 /* Output the default action table */
drh57196282004-10-06 15:41:16 +00003701 fprintf(out, "static const YYACTIONTYPE yy_default[] = {\n"); lineno++;
drh8b582012003-10-21 13:16:03 +00003702 n = lemp->nstate;
3703 for(i=j=0; i<n; i++){
3704 stp = lemp->sorted[i];
drhfdbf9282003-10-21 16:34:41 +00003705 if( j==0 ) fprintf(out," /* %5d */ ", i);
drh8b582012003-10-21 13:16:03 +00003706 fprintf(out, " %4d,", stp->iDflt);
3707 if( j==9 || i==n-1 ){
3708 fprintf(out, "\n"); lineno++;
3709 j = 0;
3710 }else{
3711 j++;
3712 }
3713 }
3714 fprintf(out, "};\n"); lineno++;
drh75897232000-05-29 14:26:00 +00003715 tplt_xfer(lemp->name,in,out,&lineno);
3716
drh0bd1f4e2002-06-06 18:54:39 +00003717 /* Generate the table of fallback tokens.
3718 */
3719 if( lemp->has_fallback ){
3720 for(i=0; i<lemp->nterminal; i++){
3721 struct symbol *p = lemp->symbols[i];
3722 if( p->fallback==0 ){
3723 fprintf(out, " 0, /* %10s => nothing */\n", p->name);
3724 }else{
3725 fprintf(out, " %3d, /* %10s => %s */\n", p->fallback->index,
3726 p->name, p->fallback->name);
3727 }
3728 lineno++;
3729 }
3730 }
3731 tplt_xfer(lemp->name, in, out, &lineno);
3732
3733 /* Generate a table containing the symbolic name of every symbol
3734 */
drh75897232000-05-29 14:26:00 +00003735 for(i=0; i<lemp->nsymbol; i++){
3736 sprintf(line,"\"%s\",",lemp->symbols[i]->name);
3737 fprintf(out," %-15s",line);
3738 if( (i&3)==3 ){ fprintf(out,"\n"); lineno++; }
3739 }
3740 if( (i&3)!=0 ){ fprintf(out,"\n"); lineno++; }
3741 tplt_xfer(lemp->name,in,out,&lineno);
3742
drh0bd1f4e2002-06-06 18:54:39 +00003743 /* Generate a table containing a text string that describes every
3744 ** rule in the rule set of the grammer. This information is used
3745 ** when tracing REDUCE actions.
3746 */
3747 for(i=0, rp=lemp->rule; rp; rp=rp->next, i++){
3748 assert( rp->index==i );
3749 fprintf(out," /* %3d */ \"%s ::=", i, rp->lhs->name);
drhfd405312005-11-06 04:06:59 +00003750 for(j=0; j<rp->nrhs; j++){
3751 struct symbol *sp = rp->rhs[j];
3752 fprintf(out," %s", sp->name);
3753 if( sp->type==MULTITERMINAL ){
3754 int k;
3755 for(k=1; k<sp->nsubsym; k++){
3756 fprintf(out,"|%s",sp->subsym[k]->name);
3757 }
3758 }
3759 }
drh0bd1f4e2002-06-06 18:54:39 +00003760 fprintf(out,"\",\n"); lineno++;
3761 }
3762 tplt_xfer(lemp->name,in,out,&lineno);
3763
drh75897232000-05-29 14:26:00 +00003764 /* Generate code which executes every time a symbol is popped from
3765 ** the stack while processing errors or while destroying the parser.
drh0bd1f4e2002-06-06 18:54:39 +00003766 ** (In other words, generate the %destructor actions)
3767 */
drh75897232000-05-29 14:26:00 +00003768 if( lemp->tokendest ){
3769 for(i=0; i<lemp->nsymbol; i++){
3770 struct symbol *sp = lemp->symbols[i];
3771 if( sp==0 || sp->type!=TERMINAL ) continue;
3772 fprintf(out," case %d:\n",sp->index); lineno++;
3773 }
3774 for(i=0; i<lemp->nsymbol && lemp->symbols[i]->type!=TERMINAL; i++);
3775 if( i<lemp->nsymbol ){
3776 emit_destructor_code(out,lemp->symbols[i],lemp,&lineno);
3777 fprintf(out," break;\n"); lineno++;
3778 }
3779 }
drh8d659732005-01-13 23:54:06 +00003780 if( lemp->vardest ){
3781 struct symbol *dflt_sp = 0;
3782 for(i=0; i<lemp->nsymbol; i++){
3783 struct symbol *sp = lemp->symbols[i];
3784 if( sp==0 || sp->type==TERMINAL ||
3785 sp->index<=0 || sp->destructor!=0 ) continue;
3786 fprintf(out," case %d:\n",sp->index); lineno++;
3787 dflt_sp = sp;
3788 }
3789 if( dflt_sp!=0 ){
3790 emit_destructor_code(out,dflt_sp,lemp,&lineno);
3791 fprintf(out," break;\n"); lineno++;
3792 }
3793 }
drh75897232000-05-29 14:26:00 +00003794 for(i=0; i<lemp->nsymbol; i++){
3795 struct symbol *sp = lemp->symbols[i];
3796 if( sp==0 || sp->type==TERMINAL || sp->destructor==0 ) continue;
3797 fprintf(out," case %d:\n",sp->index); lineno++;
drh0bb132b2004-07-20 14:06:51 +00003798
3799 /* Combine duplicate destructors into a single case */
3800 for(j=i+1; j<lemp->nsymbol; j++){
3801 struct symbol *sp2 = lemp->symbols[j];
3802 if( sp2 && sp2->type!=TERMINAL && sp2->destructor
3803 && sp2->dtnum==sp->dtnum
3804 && strcmp(sp->destructor,sp2->destructor)==0 ){
3805 fprintf(out," case %d:\n",sp2->index); lineno++;
3806 sp2->destructor = 0;
3807 }
3808 }
3809
drh75897232000-05-29 14:26:00 +00003810 emit_destructor_code(out,lemp->symbols[i],lemp,&lineno);
3811 fprintf(out," break;\n"); lineno++;
3812 }
drh75897232000-05-29 14:26:00 +00003813 tplt_xfer(lemp->name,in,out,&lineno);
3814
3815 /* Generate code which executes whenever the parser stack overflows */
3816 tplt_print(out,lemp,lemp->overflow,lemp->overflowln,&lineno);
3817 tplt_xfer(lemp->name,in,out,&lineno);
3818
3819 /* Generate the table of rule information
3820 **
3821 ** Note: This code depends on the fact that rules are number
3822 ** sequentually beginning with 0.
3823 */
3824 for(rp=lemp->rule; rp; rp=rp->next){
3825 fprintf(out," { %d, %d },\n",rp->lhs->index,rp->nrhs); lineno++;
3826 }
3827 tplt_xfer(lemp->name,in,out,&lineno);
3828
3829 /* Generate code which execution during each REDUCE action */
3830 for(rp=lemp->rule; rp; rp=rp->next){
drh0bb132b2004-07-20 14:06:51 +00003831 if( rp->code ) translate_code(lemp, rp);
3832 }
3833 for(rp=lemp->rule; rp; rp=rp->next){
3834 struct rule *rp2;
3835 if( rp->code==0 ) continue;
drh75897232000-05-29 14:26:00 +00003836 fprintf(out," case %d:\n",rp->index); lineno++;
drh0bb132b2004-07-20 14:06:51 +00003837 for(rp2=rp->next; rp2; rp2=rp2->next){
3838 if( rp2->code==rp->code ){
3839 fprintf(out," case %d:\n",rp2->index); lineno++;
3840 rp2->code = 0;
3841 }
3842 }
drh75897232000-05-29 14:26:00 +00003843 emit_code(out,rp,lemp,&lineno);
3844 fprintf(out," break;\n"); lineno++;
3845 }
3846 tplt_xfer(lemp->name,in,out,&lineno);
3847
3848 /* Generate code which executes if a parse fails */
3849 tplt_print(out,lemp,lemp->failure,lemp->failureln,&lineno);
3850 tplt_xfer(lemp->name,in,out,&lineno);
3851
3852 /* Generate code which executes when a syntax error occurs */
3853 tplt_print(out,lemp,lemp->error,lemp->errorln,&lineno);
3854 tplt_xfer(lemp->name,in,out,&lineno);
3855
3856 /* Generate code which executes when the parser accepts its input */
3857 tplt_print(out,lemp,lemp->accept,lemp->acceptln,&lineno);
3858 tplt_xfer(lemp->name,in,out,&lineno);
3859
3860 /* Append any addition code the user desires */
3861 tplt_print(out,lemp,lemp->extracode,lemp->extracodeln,&lineno);
3862
3863 fclose(in);
3864 fclose(out);
3865 return;
3866}
3867
3868/* Generate a header file for the parser */
3869void ReportHeader(lemp)
3870struct lemon *lemp;
3871{
3872 FILE *out, *in;
3873 char *prefix;
3874 char line[LINESIZE];
3875 char pattern[LINESIZE];
3876 int i;
3877
3878 if( lemp->tokenprefix ) prefix = lemp->tokenprefix;
3879 else prefix = "";
drh2aa6ca42004-09-10 00:14:04 +00003880 in = file_open(lemp,".h","rb");
drh75897232000-05-29 14:26:00 +00003881 if( in ){
3882 for(i=1; i<lemp->nterminal && fgets(line,LINESIZE,in); i++){
3883 sprintf(pattern,"#define %s%-30s %2d\n",prefix,lemp->symbols[i]->name,i);
3884 if( strcmp(line,pattern) ) break;
3885 }
3886 fclose(in);
3887 if( i==lemp->nterminal ){
3888 /* No change in the file. Don't rewrite it. */
3889 return;
3890 }
3891 }
drh2aa6ca42004-09-10 00:14:04 +00003892 out = file_open(lemp,".h","wb");
drh75897232000-05-29 14:26:00 +00003893 if( out ){
3894 for(i=1; i<lemp->nterminal; i++){
3895 fprintf(out,"#define %s%-30s %2d\n",prefix,lemp->symbols[i]->name,i);
3896 }
3897 fclose(out);
3898 }
3899 return;
3900}
3901
3902/* Reduce the size of the action tables, if possible, by making use
3903** of defaults.
3904**
drhb59499c2002-02-23 18:45:13 +00003905** In this version, we take the most frequent REDUCE action and make
drhe09daa92006-06-10 13:29:31 +00003906** it the default. Except, there is no default if the wildcard token
3907** is a possible look-ahead.
drh75897232000-05-29 14:26:00 +00003908*/
3909void CompressTables(lemp)
3910struct lemon *lemp;
3911{
3912 struct state *stp;
drhb59499c2002-02-23 18:45:13 +00003913 struct action *ap, *ap2;
3914 struct rule *rp, *rp2, *rbest;
3915 int nbest, n;
drh75897232000-05-29 14:26:00 +00003916 int i;
drhe09daa92006-06-10 13:29:31 +00003917 int usesWildcard;
drh75897232000-05-29 14:26:00 +00003918
3919 for(i=0; i<lemp->nstate; i++){
3920 stp = lemp->sorted[i];
drhb59499c2002-02-23 18:45:13 +00003921 nbest = 0;
3922 rbest = 0;
drhe09daa92006-06-10 13:29:31 +00003923 usesWildcard = 0;
drh75897232000-05-29 14:26:00 +00003924
drhb59499c2002-02-23 18:45:13 +00003925 for(ap=stp->ap; ap; ap=ap->next){
drhe09daa92006-06-10 13:29:31 +00003926 if( ap->type==SHIFT && ap->sp==lemp->wildcard ){
3927 usesWildcard = 1;
3928 }
drhb59499c2002-02-23 18:45:13 +00003929 if( ap->type!=REDUCE ) continue;
3930 rp = ap->x.rp;
3931 if( rp==rbest ) continue;
3932 n = 1;
3933 for(ap2=ap->next; ap2; ap2=ap2->next){
3934 if( ap2->type!=REDUCE ) continue;
3935 rp2 = ap2->x.rp;
3936 if( rp2==rbest ) continue;
3937 if( rp2==rp ) n++;
3938 }
3939 if( n>nbest ){
3940 nbest = n;
3941 rbest = rp;
drh75897232000-05-29 14:26:00 +00003942 }
3943 }
drhb59499c2002-02-23 18:45:13 +00003944
3945 /* Do not make a default if the number of rules to default
drhe09daa92006-06-10 13:29:31 +00003946 ** is not at least 1 or if the wildcard token is a possible
3947 ** lookahead.
3948 */
3949 if( nbest<1 || usesWildcard ) continue;
drh75897232000-05-29 14:26:00 +00003950
drhb59499c2002-02-23 18:45:13 +00003951
3952 /* Combine matching REDUCE actions into a single default */
3953 for(ap=stp->ap; ap; ap=ap->next){
3954 if( ap->type==REDUCE && ap->x.rp==rbest ) break;
3955 }
drh75897232000-05-29 14:26:00 +00003956 assert( ap );
3957 ap->sp = Symbol_new("{default}");
3958 for(ap=ap->next; ap; ap=ap->next){
drhb59499c2002-02-23 18:45:13 +00003959 if( ap->type==REDUCE && ap->x.rp==rbest ) ap->type = NOT_USED;
drh75897232000-05-29 14:26:00 +00003960 }
3961 stp->ap = Action_sort(stp->ap);
3962 }
3963}
drhb59499c2002-02-23 18:45:13 +00003964
drhada354d2005-11-05 15:03:59 +00003965
3966/*
3967** Compare two states for sorting purposes. The smaller state is the
3968** one with the most non-terminal actions. If they have the same number
3969** of non-terminal actions, then the smaller is the one with the most
3970** token actions.
3971*/
3972static int stateResortCompare(const void *a, const void *b){
3973 const struct state *pA = *(const struct state**)a;
3974 const struct state *pB = *(const struct state**)b;
3975 int n;
3976
3977 n = pB->nNtAct - pA->nNtAct;
3978 if( n==0 ){
3979 n = pB->nTknAct - pA->nTknAct;
3980 }
3981 return n;
3982}
3983
3984
3985/*
3986** Renumber and resort states so that states with fewer choices
3987** occur at the end. Except, keep state 0 as the first state.
3988*/
3989void ResortStates(lemp)
3990struct lemon *lemp;
3991{
3992 int i;
3993 struct state *stp;
3994 struct action *ap;
3995
3996 for(i=0; i<lemp->nstate; i++){
3997 stp = lemp->sorted[i];
3998 stp->nTknAct = stp->nNtAct = 0;
3999 stp->iDflt = lemp->nstate + lemp->nrule;
4000 stp->iTknOfst = NO_OFFSET;
4001 stp->iNtOfst = NO_OFFSET;
4002 for(ap=stp->ap; ap; ap=ap->next){
4003 if( compute_action(lemp,ap)>=0 ){
4004 if( ap->sp->index<lemp->nterminal ){
4005 stp->nTknAct++;
4006 }else if( ap->sp->index<lemp->nsymbol ){
4007 stp->nNtAct++;
4008 }else{
4009 stp->iDflt = compute_action(lemp, ap);
4010 }
4011 }
4012 }
4013 }
4014 qsort(&lemp->sorted[1], lemp->nstate-1, sizeof(lemp->sorted[0]),
4015 stateResortCompare);
4016 for(i=0; i<lemp->nstate; i++){
4017 lemp->sorted[i]->statenum = i;
4018 }
4019}
4020
4021
drh75897232000-05-29 14:26:00 +00004022/***************** From the file "set.c" ************************************/
4023/*
4024** Set manipulation routines for the LEMON parser generator.
4025*/
4026
4027static int size = 0;
4028
4029/* Set the set size */
4030void SetSize(n)
4031int n;
4032{
4033 size = n+1;
4034}
4035
4036/* Allocate a new set */
4037char *SetNew(){
4038 char *s;
4039 int i;
4040 s = (char*)malloc( size );
4041 if( s==0 ){
4042 extern void memory_error();
4043 memory_error();
4044 }
4045 for(i=0; i<size; i++) s[i] = 0;
4046 return s;
4047}
4048
4049/* Deallocate a set */
4050void SetFree(s)
4051char *s;
4052{
4053 free(s);
4054}
4055
4056/* Add a new element to the set. Return TRUE if the element was added
4057** and FALSE if it was already there. */
4058int SetAdd(s,e)
4059char *s;
4060int e;
4061{
4062 int rv;
4063 rv = s[e];
4064 s[e] = 1;
4065 return !rv;
4066}
4067
4068/* Add every element of s2 to s1. Return TRUE if s1 changes. */
4069int SetUnion(s1,s2)
4070char *s1;
4071char *s2;
4072{
4073 int i, progress;
4074 progress = 0;
4075 for(i=0; i<size; i++){
4076 if( s2[i]==0 ) continue;
4077 if( s1[i]==0 ){
4078 progress = 1;
4079 s1[i] = 1;
4080 }
4081 }
4082 return progress;
4083}
4084/********************** From the file "table.c" ****************************/
4085/*
4086** All code in this file has been automatically generated
4087** from a specification in the file
4088** "table.q"
4089** by the associative array code building program "aagen".
4090** Do not edit this file! Instead, edit the specification
4091** file, then rerun aagen.
4092*/
4093/*
4094** Code for processing tables in the LEMON parser generator.
4095*/
4096
4097PRIVATE int strhash(x)
4098char *x;
4099{
4100 int h = 0;
4101 while( *x) h = h*13 + *(x++);
4102 return h;
4103}
4104
4105/* Works like strdup, sort of. Save a string in malloced memory, but
4106** keep strings in a table so that the same string is not in more
4107** than one place.
4108*/
4109char *Strsafe(y)
4110char *y;
4111{
4112 char *z;
4113
4114 z = Strsafe_find(y);
4115 if( z==0 && (z=malloc( strlen(y)+1 ))!=0 ){
4116 strcpy(z,y);
4117 Strsafe_insert(z);
4118 }
4119 MemoryCheck(z);
4120 return z;
4121}
4122
4123/* There is one instance of the following structure for each
4124** associative array of type "x1".
4125*/
4126struct s_x1 {
4127 int size; /* The number of available slots. */
4128 /* Must be a power of 2 greater than or */
4129 /* equal to 1 */
4130 int count; /* Number of currently slots filled */
4131 struct s_x1node *tbl; /* The data stored here */
4132 struct s_x1node **ht; /* Hash table for lookups */
4133};
4134
4135/* There is one instance of this structure for every data element
4136** in an associative array of type "x1".
4137*/
4138typedef struct s_x1node {
4139 char *data; /* The data */
4140 struct s_x1node *next; /* Next entry with the same hash */
4141 struct s_x1node **from; /* Previous link */
4142} x1node;
4143
4144/* There is only one instance of the array, which is the following */
4145static struct s_x1 *x1a;
4146
4147/* Allocate a new associative array */
4148void Strsafe_init(){
4149 if( x1a ) return;
4150 x1a = (struct s_x1*)malloc( sizeof(struct s_x1) );
4151 if( x1a ){
4152 x1a->size = 1024;
4153 x1a->count = 0;
4154 x1a->tbl = (x1node*)malloc(
4155 (sizeof(x1node) + sizeof(x1node*))*1024 );
4156 if( x1a->tbl==0 ){
4157 free(x1a);
4158 x1a = 0;
4159 }else{
4160 int i;
4161 x1a->ht = (x1node**)&(x1a->tbl[1024]);
4162 for(i=0; i<1024; i++) x1a->ht[i] = 0;
4163 }
4164 }
4165}
4166/* Insert a new record into the array. Return TRUE if successful.
4167** Prior data with the same key is NOT overwritten */
4168int Strsafe_insert(data)
4169char *data;
4170{
4171 x1node *np;
4172 int h;
4173 int ph;
4174
4175 if( x1a==0 ) return 0;
4176 ph = strhash(data);
4177 h = ph & (x1a->size-1);
4178 np = x1a->ht[h];
4179 while( np ){
4180 if( strcmp(np->data,data)==0 ){
4181 /* An existing entry with the same key is found. */
4182 /* Fail because overwrite is not allows. */
4183 return 0;
4184 }
4185 np = np->next;
4186 }
4187 if( x1a->count>=x1a->size ){
4188 /* Need to make the hash table bigger */
4189 int i,size;
4190 struct s_x1 array;
4191 array.size = size = x1a->size*2;
4192 array.count = x1a->count;
4193 array.tbl = (x1node*)malloc(
4194 (sizeof(x1node) + sizeof(x1node*))*size );
4195 if( array.tbl==0 ) return 0; /* Fail due to malloc failure */
4196 array.ht = (x1node**)&(array.tbl[size]);
4197 for(i=0; i<size; i++) array.ht[i] = 0;
4198 for(i=0; i<x1a->count; i++){
4199 x1node *oldnp, *newnp;
4200 oldnp = &(x1a->tbl[i]);
4201 h = strhash(oldnp->data) & (size-1);
4202 newnp = &(array.tbl[i]);
4203 if( array.ht[h] ) array.ht[h]->from = &(newnp->next);
4204 newnp->next = array.ht[h];
4205 newnp->data = oldnp->data;
4206 newnp->from = &(array.ht[h]);
4207 array.ht[h] = newnp;
4208 }
4209 free(x1a->tbl);
4210 *x1a = array;
4211 }
4212 /* Insert the new data */
4213 h = ph & (x1a->size-1);
4214 np = &(x1a->tbl[x1a->count++]);
4215 np->data = data;
4216 if( x1a->ht[h] ) x1a->ht[h]->from = &(np->next);
4217 np->next = x1a->ht[h];
4218 x1a->ht[h] = np;
4219 np->from = &(x1a->ht[h]);
4220 return 1;
4221}
4222
4223/* Return a pointer to data assigned to the given key. Return NULL
4224** if no such key. */
4225char *Strsafe_find(key)
4226char *key;
4227{
4228 int h;
4229 x1node *np;
4230
4231 if( x1a==0 ) return 0;
4232 h = strhash(key) & (x1a->size-1);
4233 np = x1a->ht[h];
4234 while( np ){
4235 if( strcmp(np->data,key)==0 ) break;
4236 np = np->next;
4237 }
4238 return np ? np->data : 0;
4239}
4240
4241/* Return a pointer to the (terminal or nonterminal) symbol "x".
4242** Create a new symbol if this is the first time "x" has been seen.
4243*/
4244struct symbol *Symbol_new(x)
4245char *x;
4246{
4247 struct symbol *sp;
4248
4249 sp = Symbol_find(x);
4250 if( sp==0 ){
4251 sp = (struct symbol *)malloc( sizeof(struct symbol) );
4252 MemoryCheck(sp);
4253 sp->name = Strsafe(x);
4254 sp->type = isupper(*x) ? TERMINAL : NONTERMINAL;
4255 sp->rule = 0;
drh0bd1f4e2002-06-06 18:54:39 +00004256 sp->fallback = 0;
drh75897232000-05-29 14:26:00 +00004257 sp->prec = -1;
4258 sp->assoc = UNK;
4259 sp->firstset = 0;
drhb27b83a2002-08-14 23:18:57 +00004260 sp->lambda = B_FALSE;
drh75897232000-05-29 14:26:00 +00004261 sp->destructor = 0;
4262 sp->datatype = 0;
4263 Symbol_insert(sp,sp->name);
4264 }
4265 return sp;
4266}
4267
drh60d31652004-02-22 00:08:04 +00004268/* Compare two symbols for working purposes
4269**
4270** Symbols that begin with upper case letters (terminals or tokens)
4271** must sort before symbols that begin with lower case letters
4272** (non-terminals). Other than that, the order does not matter.
4273**
4274** We find experimentally that leaving the symbols in their original
4275** order (the order they appeared in the grammar file) gives the
4276** smallest parser tables in SQLite.
4277*/
4278int Symbolcmpp(struct symbol **a, struct symbol **b){
4279 int i1 = (**a).index + 10000000*((**a).name[0]>'Z');
4280 int i2 = (**b).index + 10000000*((**b).name[0]>'Z');
4281 return i1-i2;
drh75897232000-05-29 14:26:00 +00004282}
4283
4284/* There is one instance of the following structure for each
4285** associative array of type "x2".
4286*/
4287struct s_x2 {
4288 int size; /* The number of available slots. */
4289 /* Must be a power of 2 greater than or */
4290 /* equal to 1 */
4291 int count; /* Number of currently slots filled */
4292 struct s_x2node *tbl; /* The data stored here */
4293 struct s_x2node **ht; /* Hash table for lookups */
4294};
4295
4296/* There is one instance of this structure for every data element
4297** in an associative array of type "x2".
4298*/
4299typedef struct s_x2node {
4300 struct symbol *data; /* The data */
4301 char *key; /* The key */
4302 struct s_x2node *next; /* Next entry with the same hash */
4303 struct s_x2node **from; /* Previous link */
4304} x2node;
4305
4306/* There is only one instance of the array, which is the following */
4307static struct s_x2 *x2a;
4308
4309/* Allocate a new associative array */
4310void Symbol_init(){
4311 if( x2a ) return;
4312 x2a = (struct s_x2*)malloc( sizeof(struct s_x2) );
4313 if( x2a ){
4314 x2a->size = 128;
4315 x2a->count = 0;
4316 x2a->tbl = (x2node*)malloc(
4317 (sizeof(x2node) + sizeof(x2node*))*128 );
4318 if( x2a->tbl==0 ){
4319 free(x2a);
4320 x2a = 0;
4321 }else{
4322 int i;
4323 x2a->ht = (x2node**)&(x2a->tbl[128]);
4324 for(i=0; i<128; i++) x2a->ht[i] = 0;
4325 }
4326 }
4327}
4328/* Insert a new record into the array. Return TRUE if successful.
4329** Prior data with the same key is NOT overwritten */
4330int Symbol_insert(data,key)
4331struct symbol *data;
4332char *key;
4333{
4334 x2node *np;
4335 int h;
4336 int ph;
4337
4338 if( x2a==0 ) return 0;
4339 ph = strhash(key);
4340 h = ph & (x2a->size-1);
4341 np = x2a->ht[h];
4342 while( np ){
4343 if( strcmp(np->key,key)==0 ){
4344 /* An existing entry with the same key is found. */
4345 /* Fail because overwrite is not allows. */
4346 return 0;
4347 }
4348 np = np->next;
4349 }
4350 if( x2a->count>=x2a->size ){
4351 /* Need to make the hash table bigger */
4352 int i,size;
4353 struct s_x2 array;
4354 array.size = size = x2a->size*2;
4355 array.count = x2a->count;
4356 array.tbl = (x2node*)malloc(
4357 (sizeof(x2node) + sizeof(x2node*))*size );
4358 if( array.tbl==0 ) return 0; /* Fail due to malloc failure */
4359 array.ht = (x2node**)&(array.tbl[size]);
4360 for(i=0; i<size; i++) array.ht[i] = 0;
4361 for(i=0; i<x2a->count; i++){
4362 x2node *oldnp, *newnp;
4363 oldnp = &(x2a->tbl[i]);
4364 h = strhash(oldnp->key) & (size-1);
4365 newnp = &(array.tbl[i]);
4366 if( array.ht[h] ) array.ht[h]->from = &(newnp->next);
4367 newnp->next = array.ht[h];
4368 newnp->key = oldnp->key;
4369 newnp->data = oldnp->data;
4370 newnp->from = &(array.ht[h]);
4371 array.ht[h] = newnp;
4372 }
4373 free(x2a->tbl);
4374 *x2a = array;
4375 }
4376 /* Insert the new data */
4377 h = ph & (x2a->size-1);
4378 np = &(x2a->tbl[x2a->count++]);
4379 np->key = key;
4380 np->data = data;
4381 if( x2a->ht[h] ) x2a->ht[h]->from = &(np->next);
4382 np->next = x2a->ht[h];
4383 x2a->ht[h] = np;
4384 np->from = &(x2a->ht[h]);
4385 return 1;
4386}
4387
4388/* Return a pointer to data assigned to the given key. Return NULL
4389** if no such key. */
4390struct symbol *Symbol_find(key)
4391char *key;
4392{
4393 int h;
4394 x2node *np;
4395
4396 if( x2a==0 ) return 0;
4397 h = strhash(key) & (x2a->size-1);
4398 np = x2a->ht[h];
4399 while( np ){
4400 if( strcmp(np->key,key)==0 ) break;
4401 np = np->next;
4402 }
4403 return np ? np->data : 0;
4404}
4405
4406/* Return the n-th data. Return NULL if n is out of range. */
4407struct symbol *Symbol_Nth(n)
4408int n;
4409{
4410 struct symbol *data;
4411 if( x2a && n>0 && n<=x2a->count ){
4412 data = x2a->tbl[n-1].data;
4413 }else{
4414 data = 0;
4415 }
4416 return data;
4417}
4418
4419/* Return the size of the array */
4420int Symbol_count()
4421{
4422 return x2a ? x2a->count : 0;
4423}
4424
4425/* Return an array of pointers to all data in the table.
4426** The array is obtained from malloc. Return NULL if memory allocation
4427** problems, or if the array is empty. */
4428struct symbol **Symbol_arrayof()
4429{
4430 struct symbol **array;
4431 int i,size;
4432 if( x2a==0 ) return 0;
4433 size = x2a->count;
4434 array = (struct symbol **)malloc( sizeof(struct symbol *)*size );
4435 if( array ){
4436 for(i=0; i<size; i++) array[i] = x2a->tbl[i].data;
4437 }
4438 return array;
4439}
4440
4441/* Compare two configurations */
4442int Configcmp(a,b)
4443struct config *a;
4444struct config *b;
4445{
4446 int x;
4447 x = a->rp->index - b->rp->index;
4448 if( x==0 ) x = a->dot - b->dot;
4449 return x;
4450}
4451
4452/* Compare two states */
4453PRIVATE int statecmp(a,b)
4454struct config *a;
4455struct config *b;
4456{
4457 int rc;
4458 for(rc=0; rc==0 && a && b; a=a->bp, b=b->bp){
4459 rc = a->rp->index - b->rp->index;
4460 if( rc==0 ) rc = a->dot - b->dot;
4461 }
4462 if( rc==0 ){
4463 if( a ) rc = 1;
4464 if( b ) rc = -1;
4465 }
4466 return rc;
4467}
4468
4469/* Hash a state */
4470PRIVATE int statehash(a)
4471struct config *a;
4472{
4473 int h=0;
4474 while( a ){
4475 h = h*571 + a->rp->index*37 + a->dot;
4476 a = a->bp;
4477 }
4478 return h;
4479}
4480
4481/* Allocate a new state structure */
4482struct state *State_new()
4483{
4484 struct state *new;
4485 new = (struct state *)malloc( sizeof(struct state) );
4486 MemoryCheck(new);
4487 return new;
4488}
4489
4490/* There is one instance of the following structure for each
4491** associative array of type "x3".
4492*/
4493struct s_x3 {
4494 int size; /* The number of available slots. */
4495 /* Must be a power of 2 greater than or */
4496 /* equal to 1 */
4497 int count; /* Number of currently slots filled */
4498 struct s_x3node *tbl; /* The data stored here */
4499 struct s_x3node **ht; /* Hash table for lookups */
4500};
4501
4502/* There is one instance of this structure for every data element
4503** in an associative array of type "x3".
4504*/
4505typedef struct s_x3node {
4506 struct state *data; /* The data */
4507 struct config *key; /* The key */
4508 struct s_x3node *next; /* Next entry with the same hash */
4509 struct s_x3node **from; /* Previous link */
4510} x3node;
4511
4512/* There is only one instance of the array, which is the following */
4513static struct s_x3 *x3a;
4514
4515/* Allocate a new associative array */
4516void State_init(){
4517 if( x3a ) return;
4518 x3a = (struct s_x3*)malloc( sizeof(struct s_x3) );
4519 if( x3a ){
4520 x3a->size = 128;
4521 x3a->count = 0;
4522 x3a->tbl = (x3node*)malloc(
4523 (sizeof(x3node) + sizeof(x3node*))*128 );
4524 if( x3a->tbl==0 ){
4525 free(x3a);
4526 x3a = 0;
4527 }else{
4528 int i;
4529 x3a->ht = (x3node**)&(x3a->tbl[128]);
4530 for(i=0; i<128; i++) x3a->ht[i] = 0;
4531 }
4532 }
4533}
4534/* Insert a new record into the array. Return TRUE if successful.
4535** Prior data with the same key is NOT overwritten */
4536int State_insert(data,key)
4537struct state *data;
4538struct config *key;
4539{
4540 x3node *np;
4541 int h;
4542 int ph;
4543
4544 if( x3a==0 ) return 0;
4545 ph = statehash(key);
4546 h = ph & (x3a->size-1);
4547 np = x3a->ht[h];
4548 while( np ){
4549 if( statecmp(np->key,key)==0 ){
4550 /* An existing entry with the same key is found. */
4551 /* Fail because overwrite is not allows. */
4552 return 0;
4553 }
4554 np = np->next;
4555 }
4556 if( x3a->count>=x3a->size ){
4557 /* Need to make the hash table bigger */
4558 int i,size;
4559 struct s_x3 array;
4560 array.size = size = x3a->size*2;
4561 array.count = x3a->count;
4562 array.tbl = (x3node*)malloc(
4563 (sizeof(x3node) + sizeof(x3node*))*size );
4564 if( array.tbl==0 ) return 0; /* Fail due to malloc failure */
4565 array.ht = (x3node**)&(array.tbl[size]);
4566 for(i=0; i<size; i++) array.ht[i] = 0;
4567 for(i=0; i<x3a->count; i++){
4568 x3node *oldnp, *newnp;
4569 oldnp = &(x3a->tbl[i]);
4570 h = statehash(oldnp->key) & (size-1);
4571 newnp = &(array.tbl[i]);
4572 if( array.ht[h] ) array.ht[h]->from = &(newnp->next);
4573 newnp->next = array.ht[h];
4574 newnp->key = oldnp->key;
4575 newnp->data = oldnp->data;
4576 newnp->from = &(array.ht[h]);
4577 array.ht[h] = newnp;
4578 }
4579 free(x3a->tbl);
4580 *x3a = array;
4581 }
4582 /* Insert the new data */
4583 h = ph & (x3a->size-1);
4584 np = &(x3a->tbl[x3a->count++]);
4585 np->key = key;
4586 np->data = data;
4587 if( x3a->ht[h] ) x3a->ht[h]->from = &(np->next);
4588 np->next = x3a->ht[h];
4589 x3a->ht[h] = np;
4590 np->from = &(x3a->ht[h]);
4591 return 1;
4592}
4593
4594/* Return a pointer to data assigned to the given key. Return NULL
4595** if no such key. */
4596struct state *State_find(key)
4597struct config *key;
4598{
4599 int h;
4600 x3node *np;
4601
4602 if( x3a==0 ) return 0;
4603 h = statehash(key) & (x3a->size-1);
4604 np = x3a->ht[h];
4605 while( np ){
4606 if( statecmp(np->key,key)==0 ) break;
4607 np = np->next;
4608 }
4609 return np ? np->data : 0;
4610}
4611
4612/* Return an array of pointers to all data in the table.
4613** The array is obtained from malloc. Return NULL if memory allocation
4614** problems, or if the array is empty. */
4615struct state **State_arrayof()
4616{
4617 struct state **array;
4618 int i,size;
4619 if( x3a==0 ) return 0;
4620 size = x3a->count;
4621 array = (struct state **)malloc( sizeof(struct state *)*size );
4622 if( array ){
4623 for(i=0; i<size; i++) array[i] = x3a->tbl[i].data;
4624 }
4625 return array;
4626}
4627
4628/* Hash a configuration */
4629PRIVATE int confighash(a)
4630struct config *a;
4631{
4632 int h=0;
4633 h = h*571 + a->rp->index*37 + a->dot;
4634 return h;
4635}
4636
4637/* There is one instance of the following structure for each
4638** associative array of type "x4".
4639*/
4640struct s_x4 {
4641 int size; /* The number of available slots. */
4642 /* Must be a power of 2 greater than or */
4643 /* equal to 1 */
4644 int count; /* Number of currently slots filled */
4645 struct s_x4node *tbl; /* The data stored here */
4646 struct s_x4node **ht; /* Hash table for lookups */
4647};
4648
4649/* There is one instance of this structure for every data element
4650** in an associative array of type "x4".
4651*/
4652typedef struct s_x4node {
4653 struct config *data; /* The data */
4654 struct s_x4node *next; /* Next entry with the same hash */
4655 struct s_x4node **from; /* Previous link */
4656} x4node;
4657
4658/* There is only one instance of the array, which is the following */
4659static struct s_x4 *x4a;
4660
4661/* Allocate a new associative array */
4662void Configtable_init(){
4663 if( x4a ) return;
4664 x4a = (struct s_x4*)malloc( sizeof(struct s_x4) );
4665 if( x4a ){
4666 x4a->size = 64;
4667 x4a->count = 0;
4668 x4a->tbl = (x4node*)malloc(
4669 (sizeof(x4node) + sizeof(x4node*))*64 );
4670 if( x4a->tbl==0 ){
4671 free(x4a);
4672 x4a = 0;
4673 }else{
4674 int i;
4675 x4a->ht = (x4node**)&(x4a->tbl[64]);
4676 for(i=0; i<64; i++) x4a->ht[i] = 0;
4677 }
4678 }
4679}
4680/* Insert a new record into the array. Return TRUE if successful.
4681** Prior data with the same key is NOT overwritten */
4682int Configtable_insert(data)
4683struct config *data;
4684{
4685 x4node *np;
4686 int h;
4687 int ph;
4688
4689 if( x4a==0 ) return 0;
4690 ph = confighash(data);
4691 h = ph & (x4a->size-1);
4692 np = x4a->ht[h];
4693 while( np ){
4694 if( Configcmp(np->data,data)==0 ){
4695 /* An existing entry with the same key is found. */
4696 /* Fail because overwrite is not allows. */
4697 return 0;
4698 }
4699 np = np->next;
4700 }
4701 if( x4a->count>=x4a->size ){
4702 /* Need to make the hash table bigger */
4703 int i,size;
4704 struct s_x4 array;
4705 array.size = size = x4a->size*2;
4706 array.count = x4a->count;
4707 array.tbl = (x4node*)malloc(
4708 (sizeof(x4node) + sizeof(x4node*))*size );
4709 if( array.tbl==0 ) return 0; /* Fail due to malloc failure */
4710 array.ht = (x4node**)&(array.tbl[size]);
4711 for(i=0; i<size; i++) array.ht[i] = 0;
4712 for(i=0; i<x4a->count; i++){
4713 x4node *oldnp, *newnp;
4714 oldnp = &(x4a->tbl[i]);
4715 h = confighash(oldnp->data) & (size-1);
4716 newnp = &(array.tbl[i]);
4717 if( array.ht[h] ) array.ht[h]->from = &(newnp->next);
4718 newnp->next = array.ht[h];
4719 newnp->data = oldnp->data;
4720 newnp->from = &(array.ht[h]);
4721 array.ht[h] = newnp;
4722 }
4723 free(x4a->tbl);
4724 *x4a = array;
4725 }
4726 /* Insert the new data */
4727 h = ph & (x4a->size-1);
4728 np = &(x4a->tbl[x4a->count++]);
4729 np->data = data;
4730 if( x4a->ht[h] ) x4a->ht[h]->from = &(np->next);
4731 np->next = x4a->ht[h];
4732 x4a->ht[h] = np;
4733 np->from = &(x4a->ht[h]);
4734 return 1;
4735}
4736
4737/* Return a pointer to data assigned to the given key. Return NULL
4738** if no such key. */
4739struct config *Configtable_find(key)
4740struct config *key;
4741{
4742 int h;
4743 x4node *np;
4744
4745 if( x4a==0 ) return 0;
4746 h = confighash(key) & (x4a->size-1);
4747 np = x4a->ht[h];
4748 while( np ){
4749 if( Configcmp(np->data,key)==0 ) break;
4750 np = np->next;
4751 }
4752 return np ? np->data : 0;
4753}
4754
4755/* Remove all data from the table. Pass each data to the function "f"
4756** as it is removed. ("f" may be null to avoid this step.) */
4757void Configtable_clear(f)
4758int(*f)(/* struct config * */);
4759{
4760 int i;
4761 if( x4a==0 || x4a->count==0 ) return;
4762 if( f ) for(i=0; i<x4a->count; i++) (*f)(x4a->tbl[i].data);
4763 for(i=0; i<x4a->size; i++) x4a->ht[i] = 0;
4764 x4a->count = 0;
4765 return;
4766}