antlr.c
上传用户:itx_2006
上传日期:2007-01-06
资源大小:493k
文件大小:70k
源码类别:

编译器/解释器

开发平台:

Others

  1. /*
  2.  * A n t l r  T r a n s l a t i o n  H e a d e r
  3.  *
  4.  * Terence Parr, Will Cohen, and Hank Dietz: 1989-1998
  5.  * Purdue University Electrical Engineering
  6.  * With AHPCRC, University of Minnesota
  7.  * ANTLR Version 1.33MR14
  8.  *
  9.  *   ../bin/antlr -gh antlr.g
  10.  *
  11.  */
  12. #define ANTLR_VERSION 13314
  13. #include "pcctscfg.h"
  14. #include PCCTS_STDIO_H
  15. #include "set.h"
  16. #include <ctype.h>
  17. #include "syn.h"
  18. #include "hash.h"
  19. #include "generic.h"
  20. #define zzcr_attr(attr,tok,t)
  21. #define zzSET_SIZE 20
  22. #include "antlr.h"
  23. #include "tokens.h"
  24. #include "dlgdef.h"
  25. #include "mode.h"
  26. #ifndef PURIFY
  27. #define PURIFY(r,s) memset((char *) &(r),'',(s));
  28. #endif
  29. ANTLR_INFO
  30. #ifdef __USE_PROTOS
  31. static void chkToken(char *, char *, char *, int);
  32. #else
  33. static void chkToken();
  34. #endif
  35. #ifdef __USE_PROTOS
  36. static int isDLGmaxToken(char *Token);      /* MR3 */
  37. #else
  38. static int isDLGmaxToken();                              /* MR3 */
  39. #endif
  40. static int class_nest_level = 0;
  41. extern int inAlt;
  42. extern set attribsRefdFromAction;
  43. extern int UsedOldStyleAttrib;
  44. extern int UsedNewStyleLabel;
  45. void
  46. #ifdef __USE_PROTOS
  47. grammar(void)
  48. #else
  49. grammar()
  50. #endif
  51. {
  52. zzRULE;
  53. zzBLOCK(zztasp1);
  54. zzMake0;
  55. {
  56. Graph g;
  57. {
  58. zzBLOCK(zztasp2);
  59. zzMake0;
  60. {
  61. while ( 1 ) {
  62. if ( !((setwd1[LA(1)]&0x1))) break;
  63. if ( (LA(1)==92) ) {
  64. zzmatch(92); zzCONSUME;
  65. zzmatch(Action);
  66. if ( HdrAction==NULL ) {
  67. HdrAction = (char *) calloc(strlen(LATEXT(1))+1, sizeof(char));
  68. require(HdrAction!=NULL, "rule grammar: cannot allocate header action");
  69. strcpy(HdrAction, LATEXT(1));
  70. }
  71. else warn("additional #header statement ignored");
  72.  zzCONSUME;
  73. }
  74. else {
  75. if ( (LA(1)==93) ) {
  76. zzmatch(93); zzCONSUME;
  77. zzmatch(Action);
  78. if ( FirstAction==NULL ) {
  79. FirstAction = (char *) calloc(strlen(LATEXT(1))+1, sizeof(char));
  80. require(FirstAction!=NULL, "rule grammar: cannot allocate #first action");
  81. strcpy(FirstAction, LATEXT(1));
  82. } else {
  83. warn("additional #first statement ignored");
  84. };
  85.  zzCONSUME;
  86. }
  87. else {
  88. if ( (LA(1)==94) ) {
  89. zzmatch(94); zzCONSUME;
  90. zzmatch(QuotedTerm);
  91. if ( GenCC ) {
  92. warn("#parser meta-op incompatible with -CC; ignored");
  93. }
  94. else {
  95. if ( strcmp(ParserName,"zzparser")==0 ) {
  96. ParserName=StripQuotes(mystrdup(LATEXT(1)));
  97. if ( RulePrefix[0]!='' )
  98. {
  99. warn("#parser meta-op incompatible with '-gp prefix'; '-gp' ignored");
  100. RulePrefix[0]='';
  101. }
  102. }
  103. else warn("additional #parser statement ignored");
  104. }
  105.  zzCONSUME;
  106. }
  107. else {
  108. if ( (LA(1)==95) ) {
  109. zzmatch(95); zzCONSUME;
  110. zzmatch(QuotedTerm);
  111. {
  112. char *fname;
  113. zzantlr_state st; FILE *f; struct zzdlg_state dst;
  114. UserTokenDefsFile = mystrdup(LATEXT(1));
  115. zzsave_antlr_state(&st);
  116. zzsave_dlg_state(&dst);
  117. fname = mystrdup(LATEXT(1));
  118. f = fopen(StripQuotes(fname), "r");
  119. if ( f==NULL ) {warn(eMsg1("cannot open token defs file '%s'", fname+1));}
  120. else {
  121. ANTLRm(enum_file(fname+1), f, PARSE_ENUM_FILE);
  122. UserDefdTokens = 1;
  123. }
  124. zzrestore_antlr_state(&st);
  125. zzrestore_dlg_state(&dst);
  126. }
  127.  zzCONSUME;
  128. }
  129. else break; /* MR6 code for exiting loop "for sure" */
  130. }
  131. }
  132. }
  133. zzLOOP(zztasp2);
  134. }
  135. zzEXIT(zztasp2);
  136. }
  137. }
  138. {
  139. zzBLOCK(zztasp2);
  140. zzMake0;
  141. {
  142. while ( 1 ) {
  143. if ( !((setwd1[LA(1)]&0x2))) break;
  144. if ( (LA(1)==Action) ) {
  145. zzmatch(Action);
  146. {
  147. UserAction *ua = newUserAction(LATEXT(1));
  148. ua->file = action_file; ua->line = action_line;
  149. if ( class_nest_level>0 ) list_add(&class_before_actions, ua);
  150. else list_add(&BeforeActions, ua);
  151. }
  152.  zzCONSUME;
  153. }
  154. else {
  155. if ( (LA(1)==106) ) {
  156. laction();
  157. }
  158. else {
  159. if ( (LA(1)==107) ) {
  160. lmember();
  161. }
  162. else {
  163. if ( (LA(1)==108) ) {
  164. lprefix();
  165. }
  166. else {
  167. if ( (LA(1)==114) ) {
  168. aLexclass();
  169. }
  170. else {
  171. if ( (LA(1)==118) ) {
  172. token();
  173. }
  174. else {
  175. if ( (LA(1)==115) ) {
  176. error();
  177. }
  178. else {
  179. if ( (LA(1)==116) ) {
  180. tclass();
  181. }
  182. else {
  183. if ( (LA(1)==109) ) {
  184. aPred();
  185. }
  186. else {
  187. if ( (LA(1)==132) ) {
  188. default_exception_handler();
  189. }
  190. else {
  191. if ( (LA(1)==97) ) {
  192. class_def();
  193. }
  194. else {
  195. if ( (LA(1)==96) ) {
  196. zzmatch(96);
  197. if ( class_nest_level==0 )
  198. warn("missing class definition for trailing '}'");
  199. class_nest_level--;
  200.  zzCONSUME;
  201. }
  202. else break; /* MR6 code for exiting loop "for sure" */
  203. }
  204. }
  205. }
  206. }
  207. }
  208. }
  209. }
  210. }
  211. }
  212. }
  213. }
  214. zzLOOP(zztasp2);
  215. }
  216. zzEXIT(zztasp2);
  217. }
  218. }
  219. rule();
  220. g=zzaArg(zztasp1,3); SynDiag = (Junction *) zzaArg(zztasp1,3 ).left;
  221. {
  222. zzBLOCK(zztasp2);
  223. zzMake0;
  224. {
  225. while ( 1 ) {
  226. if ( !((setwd1[LA(1)]&0x4))) break;
  227. if ( (LA(1)==NonTerminal) ) {
  228. rule();
  229. if ( zzaArg(zztasp2,1 ).left!=NULL ) {g.right = NULL; g = Or(g, zzaArg(zztasp2,1));}
  230. }
  231. else {
  232. if ( (LA(1)==114) ) {
  233. aLexclass();
  234. }
  235. else {
  236. if ( (LA(1)==118) ) {
  237. token();
  238. }
  239. else {
  240. if ( (LA(1)==115) ) {
  241. error();
  242. }
  243. else {
  244. if ( (LA(1)==116) ) {
  245. tclass();
  246. }
  247. else {
  248. if ( (LA(1)==109) ) {
  249. aPred();
  250. }
  251. else {
  252. if ( (LA(1)==97) ) {
  253. class_def();
  254. }
  255. else {
  256. if ( (LA(1)==96) ) {
  257. zzmatch(96);
  258. if ( class_nest_level==0 )
  259. warn("missing class definition for trailing '}'");
  260. class_nest_level--;
  261.  zzCONSUME;
  262. }
  263. else break; /* MR6 code for exiting loop "for sure" */
  264. }
  265. }
  266. }
  267. }
  268. }
  269. }
  270. }
  271. zzLOOP(zztasp2);
  272. }
  273. zzEXIT(zztasp2);
  274. }
  275. }
  276. {
  277. zzBLOCK(zztasp2);
  278. zzMake0;
  279. {
  280. while ( 1 ) {
  281. if ( !((setwd1[LA(1)]&0x8))) break;
  282. if ( (LA(1)==Action) ) {
  283. zzmatch(Action);
  284. {
  285. UserAction *ua = newUserAction(LATEXT(1));
  286. ua->file = action_file; ua->line = action_line;
  287. if ( class_nest_level>0 ) list_add(&class_after_actions, ua);
  288. else list_add(&AfterActions, ua);
  289. }
  290.  zzCONSUME;
  291. }
  292. else {
  293. if ( (LA(1)==106) ) {
  294. laction();
  295. }
  296. else {
  297. if ( (LA(1)==107) ) {
  298. lmember();
  299. }
  300. else {
  301. if ( (LA(1)==108) ) {
  302. lprefix();
  303. }
  304. else {
  305. if ( (LA(1)==115) ) {
  306. error();
  307. }
  308. else {
  309. if ( (LA(1)==116) ) {
  310. tclass();
  311. }
  312. else {
  313. if ( (LA(1)==97) ) {
  314. class_def();
  315. }
  316. else {
  317. if ( (LA(1)==109) ) {
  318. aPred();
  319. }
  320. else {
  321. if ( (LA(1)==96) ) {
  322. zzmatch(96);
  323. if ( class_nest_level==0 )
  324. warn("missing class definition for trailing '}'");
  325. class_nest_level--;
  326.  zzCONSUME;
  327. }
  328. else break; /* MR6 code for exiting loop "for sure" */
  329. }
  330. }
  331. }
  332. }
  333. }
  334. }
  335. }
  336. }
  337. zzLOOP(zztasp2);
  338. }
  339. zzEXIT(zztasp2);
  340. }
  341. }
  342. zzmatch(Eof); zzCONSUME;
  343. zzEXIT(zztasp1);
  344. return;
  345. fail:
  346. zzEXIT(zztasp1);
  347. CannotContinue=TRUE;
  348. zzsyn(zzMissText, zzBadTok, (ANTLRChar *)"", zzMissSet, zzMissTok, zzErrk, zzBadText);
  349. zzresynch(setwd1, 0x10);
  350. }
  351. }
  352. void
  353. #ifdef __USE_PROTOS
  354. class_def(void)
  355. #else
  356. class_def()
  357. #endif
  358. {
  359. zzRULE;
  360. zzBLOCK(zztasp1);
  361. zzMake0;
  362. {
  363. int go=1; char name[MaxRuleName+1];
  364. zzmatch(97); zzCONSUME;
  365. {
  366. zzBLOCK(zztasp2);
  367. zzMake0;
  368. {
  369. if ( (LA(1)==NonTerminal) ) {
  370. zzmatch(NonTerminal);
  371. if(go) strncpy(name,LATEXT(1),MaxRuleName);
  372.  zzCONSUME;
  373. }
  374. else {
  375. if ( (LA(1)==TokenTerm) ) {
  376. zzmatch(TokenTerm);
  377. if(go) strncpy(name,LATEXT(1),MaxRuleName);
  378.  zzCONSUME;
  379. }
  380. else {zzFAIL(1,zzerr1,&zzMissSet,&zzMissText,&zzBadTok,&zzBadText,&zzErrk); goto fail;}
  381. }
  382. zzEXIT(zztasp2);
  383. }
  384. }
  385. if ( CurrentClassName[0]!='' && strcmp(CurrentClassName,name)!=0
  386. && GenCC ) {
  387. err("only one grammar class allowed in this release");
  388. go = 0;
  389. }
  390. else strcpy(CurrentClassName, name);
  391. if ( !GenCC ) { err("class meta-op used without C++ option"); }
  392. {
  393. zzBLOCK(zztasp2);
  394. zzMake0;
  395. {
  396. while ( (setwd1[LA(1)]&0x20) ) {
  397. zzsetmatch(zzerr2);
  398. if (ClassDeclStuff == NULL) {
  399. /* MR10 */                   ClassDeclStuff=(char *)calloc(MaxClassDeclStuff+1,sizeof(char));
  400. /* MR10 */              };
  401. /* MR10 */              strncat(ClassDeclStuff," ",MaxClassDeclStuff);
  402. /* MR10 */              strncat(ClassDeclStuff,LATEXT(1),MaxClassDeclStuff);
  403. /* MR10 */
  404.  zzCONSUME;
  405. zzLOOP(zztasp2);
  406. }
  407. zzEXIT(zztasp2);
  408. }
  409. }
  410. zzmatch(100);
  411. no_classes_found = 0;
  412. if ( class_nest_level>=1 ) {warn("cannot have nested classes");}
  413. else class_nest_level++;
  414.  zzCONSUME;
  415. zzEXIT(zztasp1);
  416. return;
  417. fail:
  418. zzEXIT(zztasp1);
  419. CannotContinue=TRUE;
  420. zzsyn(zzMissText, zzBadTok, (ANTLRChar *)"", zzMissSet, zzMissTok, zzErrk, zzBadText);
  421. zzresynch(setwd1, 0x40);
  422. }
  423. }
  424. void
  425. #ifdef __USE_PROTOS
  426. rule(void)
  427. #else
  428. rule()
  429. #endif
  430. {
  431. zzRULE;
  432. zzBLOCK(zztasp1);
  433. zzMake0;
  434. {
  435. ListNode *ex_groups = NULL;
  436. ExceptionGroup *eg;
  437. RuleEntry *q; Junction *p; Graph r; int f, l; ECnode *e;
  438. set toksrefd, rulesrefd;
  439. char *pdecl=NULL, *ret=NULL, *a; CurRetDef = CurParmDef = NULL;
  440. CurExGroups = NULL;
  441. CurElementLabels = NULL;
  442. /* We want a new element label hash table for each rule */
  443. if ( Elabel!=NULL ) killHashTable(Elabel);
  444. Elabel = newHashTable();
  445. attribsRefdFromAction = empty;
  446. zzmatch(NonTerminal);
  447. q=NULL;
  448. if ( hash_get(Rname, LATEXT(1))!=NULL ) {
  449. err(eMsg1("duplicate rule definition: '%s'",LATEXT(1)));
  450. CannotContinue=TRUE;
  451. }
  452. else
  453. {
  454. q = (RuleEntry *)hash_add(Rname,
  455. LATEXT(1),
  456. (Entry *)newRuleEntry(LATEXT(1)));
  457. CurRule = q->str;
  458. }
  459. CurRuleNode = q;
  460. f = CurFile; l = zzline;
  461. NumRules++;
  462.  zzCONSUME;
  463. {
  464. zzBLOCK(zztasp2);
  465. zzMake0;
  466. {
  467. if ( (LA(1)==101) ) {
  468. zzmatch(101);
  469. if ( q!=NULL ) q->noAST = TRUE;
  470.  zzCONSUME;
  471. }
  472. zzEXIT(zztasp2);
  473. }
  474. }
  475. {
  476. zzBLOCK(zztasp2);
  477. zzMake0;
  478. {
  479. ;
  480. if ( (setwd1[LA(1)]&0x80) ) {
  481. {
  482. zzBLOCK(zztasp3);
  483. zzMake0;
  484. {
  485. if ( (LA(1)==102) ) {
  486. zzmatch(102); zzCONSUME;
  487. }
  488. zzEXIT(zztasp3);
  489. }
  490. }
  491. zzmatch(PassAction);
  492. pdecl = (char *) calloc(strlen(LATEXT(1))+1, sizeof(char));
  493. require(pdecl!=NULL, "rule rule: cannot allocate param decl");
  494. strcpy(pdecl, LATEXT(1));
  495. CurParmDef = pdecl;
  496.  zzCONSUME;
  497. }
  498. zzEXIT(zztasp2);
  499. }
  500. }
  501. {
  502. zzBLOCK(zztasp2);
  503. zzMake0;
  504. {
  505. if ( (LA(1)==103) ) {
  506. zzmatch(103); zzCONSUME;
  507. zzmatch(PassAction);
  508. ret = (char *) calloc(strlen(LATEXT(1))+1, sizeof(char));
  509. require(ret!=NULL, "rule rule: cannot allocate ret type");
  510. strcpy(ret, LATEXT(1));
  511. CurRetDef = ret;
  512.  zzCONSUME;
  513. }
  514. zzEXIT(zztasp2);
  515. }
  516. }
  517. {
  518. zzBLOCK(zztasp2);
  519. zzMake0;
  520. {
  521. if ( (LA(1)==QuotedTerm) ) {
  522. zzmatch(QuotedTerm);
  523. if ( q!=NULL ) q->egroup=mystrdup(LATEXT(1));
  524.  zzCONSUME;
  525. }
  526. zzEXIT(zztasp2);
  527. }
  528. }
  529. if ( GenEClasseForRules && q!=NULL ) {
  530. e = newECnode;
  531. require(e!=NULL, "cannot allocate error class node");
  532. if ( q->egroup == NULL ) {a = q->str; a[0] = (char)toupper(a[0]);}
  533. else a = q->egroup;
  534. if ( Tnum( a ) == 0 )
  535. {
  536. e->tok = addTname( a );
  537. list_add(&eclasses, (char *)e);
  538. if ( q->egroup == NULL ) a[0] = (char)tolower(a[0]);
  539. /* refers to itself */
  540. list_add(&(e->elist), mystrdup(q->str));
  541. }
  542. else {
  543. warn(eMsg1("default errclass for '%s' would conflict with token/errclass/tokclass",a));
  544. if ( q->egroup == NULL ) a[0] = (char)tolower(a[0]);
  545. free((char *)e);
  546. }
  547. }
  548. BlkLevel++;
  549. zzmatch(104);
  550. inAlt=1;
  551.  zzCONSUME;
  552. block( &toksrefd, &rulesrefd );
  553. r = makeBlk(zzaArg(zztasp1,7),0);
  554. CurRuleBlk = (Junction *)r.left;
  555. CurRuleBlk->blockid = CurBlockID;
  556. CurRuleBlk->jtype = RuleBlk;
  557. if ( q!=NULL ) CurRuleBlk->rname = q->str;
  558. CurRuleBlk->file = f;
  559. CurRuleBlk->line = l;
  560. CurRuleBlk->pdecl = pdecl;
  561. CurRuleBlk->ret = ret;
  562. CurRuleBlk->lock = makelocks();
  563. CurRuleBlk->pred_lock = makelocks();
  564. CurRuleBlk->tokrefs = toksrefd;
  565. CurRuleBlk->rulerefs = rulesrefd;
  566. p = newJunction(); /* add EndRule Node */
  567. ((Junction *)r.right)->p1 = (Node *)p;
  568. r.right = (Node *) p;
  569. p->jtype = EndRule;
  570. p->lock = makelocks();
  571. p->pred_lock = makelocks();
  572. CurRuleBlk->end = p;
  573. if ( q!=NULL ) q->rulenum = NumRules;
  574. zzaArg(zztasp1,7) = r;
  575. --BlkLevel;
  576. altFixup();leFixup();egFixup();
  577. zzmatch(105);
  578. inAlt=0;
  579.  zzCONSUME;
  580. {
  581. zzBLOCK(zztasp2);
  582. zzMake0;
  583. {
  584. if ( (LA(1)==Action) ) {
  585. zzmatch(Action);
  586. a = (char *) calloc(strlen(LATEXT(1))+1, sizeof(char));
  587. require(a!=NULL, "rule rule: cannot allocate error action");
  588. strcpy(a, LATEXT(1));
  589. CurRuleBlk->erraction = a;
  590.  zzCONSUME;
  591. }
  592. zzEXIT(zztasp2);
  593. }
  594. }
  595. {
  596. zzBLOCK(zztasp2);
  597. zzMake0;
  598. {
  599. while ( (LA(1)==132) ) {
  600.  eg  = exception_group();
  601. if ( eg!=NULL ) {
  602. list_add(&CurExGroups, (void *)eg);
  603. if (eg->label == NULL || *eg->label=='' ) q->has_rule_exception = 1;
  604. }
  605. zzLOOP(zztasp2);
  606. }
  607. zzEXIT(zztasp2);
  608. }
  609. }
  610. if ( q==NULL ) zzaArg(zztasp1,0 ).left = NULL; else zzaArg(zztasp1,0) = zzaArg(zztasp1,7);
  611. CurRuleNode = NULL;
  612. CurRuleBlk->exceptions = CurExGroups;
  613. CurRuleBlk->el_labels = CurElementLabels;
  614. zzEXIT(zztasp1);
  615. return;
  616. fail:
  617. zzEXIT(zztasp1);
  618. CannotContinue=TRUE;
  619. zzsyn(zzMissText, zzBadTok, (ANTLRChar *)"", zzMissSet, zzMissTok, zzErrk, zzBadText);
  620. zzresynch(setwd2, 0x1);
  621. }
  622. }
  623. void
  624. #ifdef __USE_PROTOS
  625. laction(void)
  626. #else
  627. laction()
  628. #endif
  629. {
  630. zzRULE;
  631. zzBLOCK(zztasp1);
  632. zzMake0;
  633. {
  634. char *a;
  635. zzmatch(106); zzCONSUME;
  636. zzmatch(Action);
  637. a = (char *) calloc(strlen(LATEXT(1))+1, sizeof(char));
  638. require(a!=NULL, "rule laction: cannot allocate action");
  639. strcpy(a, LATEXT(1));
  640. list_add(&LexActions, a);
  641.  zzCONSUME;
  642. zzEXIT(zztasp1);
  643. return;
  644. fail:
  645. zzEXIT(zztasp1);
  646. CannotContinue=TRUE;
  647. zzsyn(zzMissText, zzBadTok, (ANTLRChar *)"", zzMissSet, zzMissTok, zzErrk, zzBadText);
  648. zzresynch(setwd2, 0x2);
  649. }
  650. }
  651. void
  652. #ifdef __USE_PROTOS
  653. lmember(void)
  654. #else
  655. lmember()
  656. #endif
  657. {
  658. zzRULE;
  659. zzBLOCK(zztasp1);
  660. zzMake0;
  661. {
  662. char *a;
  663. zzmatch(107); zzCONSUME;
  664. zzmatch(Action);
  665. /* MR1 */ if (! GenCC) {
  666. /* MR1 */   err("Use #lexmember only in C++ mode (to insert code in DLG class header");
  667. /* MR1 */         } else {
  668. /* MR1 */   a = (char *) calloc(strlen(LATEXT(1))+1, sizeof(char));
  669. /* MR1 */   require(a!=NULL, "rule lmember: cannot allocate action");
  670. /* MR1 */   strcpy(a, LATEXT(1));
  671. /* MR1 */   list_add(&LexMemberActions, a);
  672. /* MR1 */ };
  673. /* MR1 */
  674.  zzCONSUME;
  675. zzEXIT(zztasp1);
  676. return;
  677. fail:
  678. zzEXIT(zztasp1);
  679. CannotContinue=TRUE;
  680. zzsyn(zzMissText, zzBadTok, (ANTLRChar *)"", zzMissSet, zzMissTok, zzErrk, zzBadText);
  681. zzresynch(setwd2, 0x4);
  682. }
  683. }
  684. void
  685. #ifdef __USE_PROTOS
  686. lprefix(void)
  687. #else
  688. lprefix()
  689. #endif
  690. {
  691. zzRULE;
  692. zzBLOCK(zztasp1);
  693. zzMake0;
  694. {
  695. char *a;
  696. zzmatch(108); zzCONSUME;
  697. zzmatch(Action);
  698. /* MR1 */ if (! GenCC) {
  699. /* MR1 */   err("Use #lexprefixr only in C++ mode (to insert code in DLG class header");
  700. /* MR1 */         } else {
  701. /* MR1 */   a = (char *) calloc(strlen(LATEXT(1))+1, sizeof(char));
  702. /* MR1 */   require(a!=NULL, "rule lprefix: cannot allocate action");
  703. /* MR1 */   strcpy(a, LATEXT(1));
  704. /* MR1 */   list_add(&LexPrefixActions, a);
  705. /* MR1 */ };
  706. /* MR1 */
  707.  zzCONSUME;
  708. zzEXIT(zztasp1);
  709. return;
  710. fail:
  711. zzEXIT(zztasp1);
  712. CannotContinue=TRUE;
  713. zzsyn(zzMissText, zzBadTok, (ANTLRChar *)"", zzMissSet, zzMissTok, zzErrk, zzBadText);
  714. zzresynch(setwd2, 0x8);
  715. }
  716. }
  717. void
  718. #ifdef __USE_PROTOS
  719. aPred(void)
  720. #else
  721. aPred()
  722. #endif
  723. {
  724. zzRULE;
  725. zzBLOCK(zztasp1);
  726. zzMake0;
  727. {
  728. PredEntry     *predEntry=NULL;
  729. char          *name=NULL;
  730. Predicate     *predExpr=NULL;
  731. char          *predLiteral=NULL;
  732. int           save_file;
  733. int           save_line;
  734. int           predExprPresent=0;
  735. zzmatch(109);
  736. MR_usingPredNames=1;      /* will need to use -mrhoist version of genPredTree */
  737.  zzCONSUME;
  738. zzmatch(TokenTerm);
  739. name=mystrdup(LATEXT(1));
  740.  zzCONSUME;
  741. /* don't free - referenced in predicates */
  742.             CurPredName=(char *)calloc(1,strlen(name) + 10);
  743. strcat("#pred ",CurPredName);
  744. strcat(name,CurPredName);
  745.             predEntry=(PredEntry *) hash_get(Pname,name);
  746. if (predEntry != NULL) {
  747. warnFL(eMsg1("#pred %s previously defined - ignored",name),
  748. FileStr[action_file],action_line);
  749. name=NULL;
  750. };
  751. {
  752. zzBLOCK(zztasp2);
  753. zzMake0;
  754. {
  755. if ( (LA(1)==Pred) ) {
  756. zzmatch(Pred);
  757. predLiteral=mystrdup(LATEXT(1));
  758. save_line=action_line;
  759. save_file=action_file;
  760.  zzCONSUME;
  761. {
  762. zzBLOCK(zztasp3);
  763. zzMake0;
  764. {
  765. if ( (setwd2[LA(1)]&0x10) ) {
  766.  predExpr  = predOrExpr();
  767. predExprPresent=1;
  768. }
  769. zzEXIT(zztasp3);
  770. }
  771. }
  772. if (predLiteral != NULL && name != NULL) {
  773.                       /*
  774. *  predExpr may be NULL due to syntax errors
  775. *    or simply omitted by the user
  776. */
  777.                       predEntry=newPredEntry(name);
  778. predEntry->file=save_file;
  779. predEntry->line=save_line;
  780. predExpr=MR_predFlatten(predExpr);
  781. predEntry->predLiteral=predLiteral;
  782. if (! predExprPresent || predExpr == NULL) {
  783. predExpr=new_pred();
  784. predExpr->expr=predLiteral;
  785. predExpr->source=newActionNode();
  786. predExpr->source->action=predExpr->expr;
  787. predExpr->source->rname=CurPredName;
  788. predExpr->source->line=action_line;
  789. predExpr->source->file=action_file;
  790. predExpr->source->is_predicate=1;
  791. predExpr->k=predicateLookaheadDepth(predExpr->source);
  792. };
  793. predEntry->pred=predExpr;
  794. hash_add(Pname,name,(Entry *)predEntry);
  795. predExpr=NULL;
  796. };
  797. predicate_free(predExpr);
  798. }
  799. else {
  800. if ( (setwd2[LA(1)]&0x20) ) {
  801. save_line=zzline; save_file=CurFile;
  802.  predExpr  = predOrExpr();
  803. if (predExpr != NULL && name != NULL) {
  804. predEntry=newPredEntry(name);
  805. predEntry->file=CurFile;
  806. predEntry->line=zzline;
  807. predExpr=MR_predFlatten(predExpr);
  808. predEntry->pred=predExpr;
  809. hash_add(Pname,name,(Entry *)predEntry);
  810. predExpr=NULL;
  811. };
  812. predicate_free(predExpr);
  813. }
  814. else {zzFAIL(1,zzerr3,&zzMissSet,&zzMissText,&zzBadTok,&zzBadText,&zzErrk); goto fail;}
  815. }
  816. zzEXIT(zztasp2);
  817. }
  818. }
  819. {
  820. zzBLOCK(zztasp2);
  821. zzMake0;
  822. {
  823. if ( (LA(1)==105) ) {
  824. zzmatch(105); zzCONSUME;
  825. }
  826. zzEXIT(zztasp2);
  827. }
  828. }
  829. zzEXIT(zztasp1);
  830. return;
  831. fail:
  832. zzEXIT(zztasp1);
  833. predicate_free(predExpr);
  834. zzsyn(zzMissText, zzBadTok, (ANTLRChar *)"", zzMissSet, zzMissTok, zzErrk, zzBadText);
  835. zzresynch(setwd2, 0x40);
  836. }
  837. }
  838.  Predicate *
  839. #ifdef __USE_PROTOS
  840. predOrExpr(void)
  841. #else
  842. predOrExpr()
  843. #endif
  844. {
  845.  Predicate *   _retv;
  846. zzRULE;
  847. zzBLOCK(zztasp1);
  848. PURIFY(_retv,sizeof( Predicate *  ))
  849. zzMake0;
  850. {
  851. Predicate     *ORnode;
  852. Predicate     *predExpr;
  853. Predicate     **tail=NULL;
  854.  predExpr  = predAndExpr();
  855. ORnode=new_pred();
  856. ORnode->expr=PRED_OR_LIST;
  857. if (predExpr != NULL) {
  858. ORnode->down=predExpr;
  859. tail=&predExpr->right;
  860. };
  861. {
  862. zzBLOCK(zztasp2);
  863. zzMake0;
  864. {
  865. while ( (LA(1)==110) ) {
  866. zzmatch(110); zzCONSUME;
  867.  predExpr  = predAndExpr();
  868. if (predExpr != NULL) {
  869. *tail=predExpr;
  870. tail=&predExpr->right;
  871. };
  872. zzLOOP(zztasp2);
  873. }
  874. zzEXIT(zztasp2);
  875. }
  876. }
  877. _retv=ORnode;
  878. ORnode=NULL;
  879. zzEXIT(zztasp1);
  880. return _retv;
  881. fail:
  882. zzEXIT(zztasp1);
  883. predicate_free(ORnode);
  884. zzsyn(zzMissText, zzBadTok, (ANTLRChar *)"", zzMissSet, zzMissTok, zzErrk, zzBadText);
  885. zzresynch(setwd2, 0x80);
  886. return _retv;
  887. }
  888. }
  889.  Predicate *
  890. #ifdef __USE_PROTOS
  891. predAndExpr(void)
  892. #else
  893. predAndExpr()
  894. #endif
  895. {
  896.  Predicate *   _retv;
  897. zzRULE;
  898. zzBLOCK(zztasp1);
  899. PURIFY(_retv,sizeof( Predicate *  ))
  900. zzMake0;
  901. {
  902. Predicate     *ANDnode;
  903. Predicate     *predExpr;
  904. Predicate     **tail=NULL;
  905.  predExpr  = predPrimary();
  906. ANDnode=new_pred();
  907. ANDnode->expr=PRED_AND_LIST;
  908. if (predExpr != NULL) {
  909. ANDnode->down=predExpr;
  910. tail=&predExpr->right;
  911. };
  912. {
  913. zzBLOCK(zztasp2);
  914. zzMake0;
  915. {
  916. while ( (LA(1)==111) ) {
  917. zzmatch(111); zzCONSUME;
  918.  predExpr  = predPrimary();
  919. if (predExpr != NULL) {
  920. *tail=predExpr;
  921. tail=&predExpr->right;
  922. };
  923. zzLOOP(zztasp2);
  924. }
  925. zzEXIT(zztasp2);
  926. }
  927. }
  928. _retv=ANDnode;
  929. ANDnode=NULL;
  930. zzEXIT(zztasp1);
  931. return _retv;
  932. fail:
  933. zzEXIT(zztasp1);
  934. predicate_free(ANDnode);
  935. zzsyn(zzMissText, zzBadTok, (ANTLRChar *)"", zzMissSet, zzMissTok, zzErrk, zzBadText);
  936. zzresynch(setwd3, 0x1);
  937. return _retv;
  938. }
  939. }
  940.  Predicate *
  941. #ifdef __USE_PROTOS
  942. predPrimary(void)
  943. #else
  944. predPrimary()
  945. #endif
  946. {
  947.  Predicate *   _retv;
  948. zzRULE;
  949. zzBLOCK(zztasp1);
  950. PURIFY(_retv,sizeof( Predicate *  ))
  951. zzMake0;
  952. {
  953. char          *name=NULL;
  954. PredEntry     *predEntry=NULL;
  955. Predicate     *predExpr=NULL;
  956. int           inverted=0;
  957. if ( (LA(1)==TokenTerm) ) {
  958. zzmatch(TokenTerm);
  959. name=mystrdup(LATEXT(1));
  960.  zzCONSUME;
  961. predEntry=(PredEntry *) hash_get(Pname,name);
  962. if (predEntry == NULL) {
  963. warnFL(eMsg1("no previously defined #pred with name "%s"",name),
  964. FileStr[CurFile],zzline);
  965. name=NULL;
  966. _retv=NULL;
  967. } else {
  968. predExpr=predicate_dup(predEntry->pred);
  969. predExpr->predEntry=predEntry;
  970. _retv=predExpr;
  971. };
  972. }
  973. else {
  974. if ( (LA(1)==112) ) {
  975. zzmatch(112); zzCONSUME;
  976.  predExpr  = predOrExpr();
  977. zzmatch(113);
  978. _retv=predExpr;
  979.  zzCONSUME;
  980. }
  981. else {
  982. if ( (LA(1)==101) ) {
  983. zzmatch(101); zzCONSUME;
  984.  predExpr  = predPrimary();
  985. predExpr->inverted=!predExpr->inverted;
  986. _retv=predExpr;
  987. }
  988. else {zzFAIL(1,zzerr4,&zzMissSet,&zzMissText,&zzBadTok,&zzBadText,&zzErrk); goto fail;}
  989. }
  990. }
  991. zzEXIT(zztasp1);
  992. return _retv;
  993. fail:
  994. zzEXIT(zztasp1);
  995. predicate_free(predExpr);
  996. zzsyn(zzMissText, zzBadTok, (ANTLRChar *)"", zzMissSet, zzMissTok, zzErrk, zzBadText);
  997. zzresynch(setwd3, 0x2);
  998. return _retv;
  999. }
  1000. }
  1001. void
  1002. #ifdef __USE_PROTOS
  1003. aLexclass(void)
  1004. #else
  1005. aLexclass()
  1006. #endif
  1007. {
  1008. zzRULE;
  1009. zzBLOCK(zztasp1);
  1010. zzMake0;
  1011. {
  1012. zzmatch(114); zzCONSUME;
  1013. zzmatch(TokenTerm);
  1014. lexclass(mystrdup(LATEXT(1)));
  1015.  zzCONSUME;
  1016. zzEXIT(zztasp1);
  1017. return;
  1018. fail:
  1019. zzEXIT(zztasp1);
  1020. CannotContinue=TRUE;
  1021. zzsyn(zzMissText, zzBadTok, (ANTLRChar *)"", zzMissSet, zzMissTok, zzErrk, zzBadText);
  1022. zzresynch(setwd3, 0x4);
  1023. }
  1024. }
  1025. void
  1026. #ifdef __USE_PROTOS
  1027. error(void)
  1028. #else
  1029. error()
  1030. #endif
  1031. {
  1032. zzRULE;
  1033. zzBLOCK(zztasp1);
  1034. zzMake0;
  1035. {
  1036. char *t=NULL; ECnode *e; int go=1; TermEntry *p;
  1037. zzmatch(115); zzCONSUME;
  1038. {
  1039. zzBLOCK(zztasp2);
  1040. zzMake0;
  1041. {
  1042. ;
  1043. if ( (LA(1)==TokenTerm) ) {
  1044. zzmatch(TokenTerm);
  1045. t=mystrdup(LATEXT(1));
  1046.  zzCONSUME;
  1047. }
  1048. else {
  1049. if ( (LA(1)==QuotedTerm) ) {
  1050. zzmatch(QuotedTerm);
  1051. t=mystrdup(LATEXT(1));
  1052.  zzCONSUME;
  1053. }
  1054. else {zzFAIL(1,zzerr5,&zzMissSet,&zzMissText,&zzBadTok,&zzBadText,&zzErrk); goto fail;}
  1055. }
  1056. zzEXIT(zztasp2);
  1057. }
  1058. }
  1059. e = newECnode;
  1060. require(e!=NULL, "cannot allocate error class node");
  1061. e->lexclass = CurrentLexClass;
  1062. if ( Tnum( (t=StripQuotes(t)) ) == 0 )
  1063. {
  1064. if ( hash_get(Texpr, t) != NULL )
  1065. warn(eMsg1("errclass name conflicts with regular expression  '%s'",t));
  1066. e->tok = addTname( t );
  1067. set_orel(e->tok, &imag_tokens);
  1068. require((p=(TermEntry *)hash_get(Tname, t)) != NULL,
  1069. "hash table mechanism is broken");
  1070. p->classname = 1; /* entry is errclass name, not token */
  1071. list_add(&eclasses, (char *)e);
  1072. }
  1073. else
  1074. {
  1075. warn(eMsg1("redefinition of errclass or conflict w/token or tokclass '%s'; ignored",t));
  1076. free( (char *)e );
  1077. go=0;
  1078. }
  1079. zzmatch(100); zzCONSUME;
  1080. {
  1081. zzBLOCK(zztasp2);
  1082. zzMake0;
  1083. {
  1084. if ( (LA(1)==NonTerminal) ) {
  1085. zzmatch(NonTerminal);
  1086. if ( go ) t=mystrdup(LATEXT(1));
  1087.  zzCONSUME;
  1088. }
  1089. else {
  1090. if ( (LA(1)==TokenTerm) ) {
  1091. zzmatch(TokenTerm);
  1092. if ( go ) t=mystrdup(LATEXT(1));
  1093.  zzCONSUME;
  1094. }
  1095. else {
  1096. if ( (LA(1)==QuotedTerm) ) {
  1097. zzmatch(QuotedTerm);
  1098. if ( go ) t=mystrdup(LATEXT(1));
  1099.  zzCONSUME;
  1100. }
  1101. else {zzFAIL(1,zzerr6,&zzMissSet,&zzMissText,&zzBadTok,&zzBadText,&zzErrk); goto fail;}
  1102. }
  1103. }
  1104. zzEXIT(zztasp2);
  1105. }
  1106. }
  1107. if ( go ) list_add(&(e->elist), t);
  1108. {
  1109. zzBLOCK(zztasp2);
  1110. zzMake0;
  1111. {
  1112. while ( (setwd3[LA(1)]&0x8) ) {
  1113. {
  1114. zzBLOCK(zztasp3);
  1115. zzMake0;
  1116. {
  1117. if ( (LA(1)==NonTerminal) ) {
  1118. zzmatch(NonTerminal);
  1119. if ( go ) t=mystrdup(LATEXT(1));
  1120.  zzCONSUME;
  1121. }
  1122. else {
  1123. if ( (LA(1)==TokenTerm) ) {
  1124. zzmatch(TokenTerm);
  1125. if ( go ) t=mystrdup(LATEXT(1));
  1126.  zzCONSUME;
  1127. }
  1128. else {
  1129. if ( (LA(1)==QuotedTerm) ) {
  1130. zzmatch(QuotedTerm);
  1131. if ( go ) t=mystrdup(LATEXT(1));
  1132.  zzCONSUME;
  1133. }
  1134. else {zzFAIL(1,zzerr7,&zzMissSet,&zzMissText,&zzBadTok,&zzBadText,&zzErrk); goto fail;}
  1135. }
  1136. }
  1137. zzEXIT(zztasp3);
  1138. }
  1139. }
  1140. if ( go ) list_add(&(e->elist), t);
  1141. zzLOOP(zztasp2);
  1142. }
  1143. zzEXIT(zztasp2);
  1144. }
  1145. }
  1146. zzmatch(96); zzCONSUME;
  1147. zzEXIT(zztasp1);
  1148. return;
  1149. fail:
  1150. zzEXIT(zztasp1);
  1151. CannotContinue=TRUE;
  1152. zzsyn(zzMissText, zzBadTok, (ANTLRChar *)"", zzMissSet, zzMissTok, zzErrk, zzBadText);
  1153. zzresynch(setwd3, 0x10);
  1154. }
  1155. }
  1156. void
  1157. #ifdef __USE_PROTOS
  1158. tclass(void)
  1159. #else
  1160. tclass()
  1161. #endif
  1162. {
  1163. zzRULE;
  1164. zzBLOCK(zztasp1);
  1165. zzMake0;
  1166. {
  1167. char *t=NULL; TCnode *e; int go=1,tok,totok; TermEntry *p, *term, *toterm;
  1168. char *totext=NULL;
  1169. zzmatch(116); zzCONSUME;
  1170. zzmatch(TokenTerm);
  1171. t=mystrdup(LATEXT(1));
  1172.  zzCONSUME;
  1173. e = newTCnode;
  1174. require(e!=NULL, "cannot allocate token class node");
  1175. e->lexclass = CurrentLexClass;
  1176. if ( Tnum( t ) == 0 )
  1177. {
  1178. e->tok = addTname( t );
  1179. set_orel(e->tok, &imag_tokens);
  1180. set_orel(e->tok, &tokclasses);
  1181. require((p=(TermEntry *)hash_get(Tname, t)) != NULL,
  1182. "hash table mechanism is broken");
  1183. p->classname = 1; /* entry is class name, not token */
  1184. p->tclass = e; /* save ptr to this tclass def */
  1185. list_add(&tclasses, (char *)e);
  1186. }
  1187. else
  1188. {
  1189. warn(eMsg1("redefinition of tokclass or conflict w/token '%s'; ignored",t));
  1190. free( (char *)e );
  1191. go=0;
  1192. }
  1193. zzmatch(100); zzCONSUME;
  1194. {
  1195. zzBLOCK(zztasp2);
  1196. zzMake0;
  1197. {
  1198. while ( (setwd3[LA(1)]&0x20) ) {
  1199. {
  1200. zzBLOCK(zztasp3);
  1201. zzMake0;
  1202. {
  1203. if ( (LA(1)==TokenTerm) ) {
  1204. zzmatch(TokenTerm);
  1205. if ( go ) {
  1206. term = (TermEntry *) hash_get(Tname, LATEXT(1));
  1207. if ( term==NULL && UserDefdTokens ) {
  1208. err("implicit token definition not allowed with #tokdefs");
  1209. go = 0;
  1210. }
  1211. else {t=mystrdup(LATEXT(1)); tok=addTname(LATEXT(1));}
  1212. }
  1213.  zzCONSUME;
  1214. {
  1215. zzBLOCK(zztasp4);
  1216. zzMake0;
  1217. {
  1218. if ( (LA(1)==117) ) {
  1219. zzmatch(117); zzCONSUME;
  1220. zzmatch(TokenTerm);
  1221. if ( go ) {
  1222. toterm = (TermEntry *) hash_get(Tname, LATEXT(1));
  1223. if ( toterm==NULL && UserDefdTokens ) {
  1224. err("implicit token definition not allowed with #tokdefs");
  1225. go = 0;
  1226. } else {
  1227. totext=mystrdup(LATEXT(1)); totok=addTname(LATEXT(1));
  1228. }
  1229. }
  1230.  zzCONSUME;
  1231. }
  1232. zzEXIT(zztasp4);
  1233. }
  1234. }
  1235. }
  1236. else {
  1237. if ( (LA(1)==QuotedTerm) ) {
  1238. zzmatch(QuotedTerm);
  1239. if ( go ) {
  1240. term = (TermEntry *) hash_get(Texpr, LATEXT(1));
  1241. if ( term==NULL && UserDefdTokens ) {
  1242. err("implicit token definition not allowed with #tokdefs");
  1243. go = 0;
  1244. }
  1245. else {t=mystrdup(LATEXT(1)); tok=addTexpr(LATEXT(1));}
  1246. }
  1247.  zzCONSUME;
  1248. }
  1249. else {zzFAIL(1,zzerr8,&zzMissSet,&zzMissText,&zzBadTok,&zzBadText,&zzErrk); goto fail;}
  1250. }
  1251. zzEXIT(zztasp3);
  1252. }
  1253. }
  1254. if ( go ) {
  1255. if (totext == NULL) {
  1256. list_add(&(e->tlist), t);
  1257. } else {
  1258. list_add(&(e->tlist),"..");
  1259. list_add(&(e->tlist),t);
  1260. list_add(&(e->tlist),totext);
  1261. }
  1262. totext=NULL;
  1263. }
  1264. zzLOOP(zztasp2);
  1265. }
  1266. zzEXIT(zztasp2);
  1267. }
  1268. }
  1269. zzmatch(96); zzCONSUME;
  1270. zzEXIT(zztasp1);
  1271. return;
  1272. fail:
  1273. zzEXIT(zztasp1);
  1274. CannotContinue=TRUE;
  1275. zzsyn(zzMissText, zzBadTok, (ANTLRChar *)"", zzMissSet, zzMissTok, zzErrk, zzBadText);
  1276. zzresynch(setwd3, 0x40);
  1277. }
  1278. }
  1279. void
  1280. #ifdef __USE_PROTOS
  1281. token(void)
  1282. #else
  1283. token()
  1284. #endif
  1285. {
  1286. zzRULE;
  1287. zzBLOCK(zztasp1);
  1288. zzMake0;
  1289. {
  1290. char *t=NULL, *e=NULL, *a=NULL; int tnum=0;
  1291. char *akaString=NULL; TermEntry *te;int save_file=0,save_line=0;
  1292. zzmatch(118);
  1293. tokenActionActive=1;
  1294.  zzCONSUME;
  1295. {
  1296. zzBLOCK(zztasp2);
  1297. zzMake0;
  1298. {
  1299. if ( (LA(1)==TokenTerm) ) {
  1300. zzmatch(TokenTerm);
  1301. t=mystrdup(LATEXT(1));
  1302.  zzCONSUME;
  1303. {
  1304. zzBLOCK(zztasp3);
  1305. zzMake0;
  1306. {
  1307. if ( (LA(1)==112) ) {
  1308. zzmatch(112); zzCONSUME;
  1309. zzmatch(QuotedTerm);
  1310. akaString=mystrdup(StripQuotes(LATEXT(1)));
  1311. /* MR11 */                   save_file=CurFile;save_line=zzline;
  1312. /* MR11 */
  1313.  zzCONSUME;
  1314. zzmatch(113); zzCONSUME;
  1315. }
  1316. zzEXIT(zztasp3);
  1317. }
  1318. }
  1319. {
  1320. zzBLOCK(zztasp3);
  1321. zzMake0;
  1322. {
  1323. if ( (LA(1)==119) ) {
  1324. zzmatch(119); zzCONSUME;
  1325. zzmatch(120);
  1326. tnum = atoi(LATEXT(1));
  1327.  zzCONSUME;
  1328. }
  1329. zzEXIT(zztasp3);
  1330. }
  1331. }
  1332. }
  1333. zzEXIT(zztasp2);
  1334. }
  1335. }
  1336. {
  1337. zzBLOCK(zztasp2);
  1338. zzMake0;
  1339. {
  1340. if ( (LA(1)==QuotedTerm) ) {
  1341. zzmatch(QuotedTerm);
  1342. e=mystrdup(LATEXT(1));
  1343.  zzCONSUME;
  1344. }
  1345. zzEXIT(zztasp2);
  1346. }
  1347. }
  1348. {
  1349. zzBLOCK(zztasp2);
  1350. zzMake0;
  1351. {
  1352. if ( (LA(1)==Action) ) {
  1353. zzmatch(Action);
  1354. a = (char *) calloc(strlen(LATEXT(1))+1, sizeof(char));
  1355. require(a!=NULL, "rule token: cannot allocate action");
  1356. strcpy(a, LATEXT(1));
  1357.  zzCONSUME;
  1358. }
  1359. zzEXIT(zztasp2);
  1360. }
  1361. }
  1362. {
  1363. zzBLOCK(zztasp2);
  1364. zzMake0;
  1365. {
  1366. if ( (LA(1)==105) ) {
  1367. zzmatch(105); zzCONSUME;
  1368. }
  1369. zzEXIT(zztasp2);
  1370. }
  1371. }
  1372. chkToken(t, e, a, tnum);
  1373. if (t != NULL) {
  1374. te=(TermEntry *)hash_get(Tname,t);
  1375. if (te != NULL && akaString != NULL) {
  1376. if (te->akaString != NULL) {
  1377. if (strcmp(te->akaString,akaString) != 0) {
  1378. warnFL(eMsg2("this #token statment conflicts with a previous #token %s("%s") statement",
  1379. t,te->akaString),
  1380. FileStr[save_file],save_line);
  1381. };
  1382. } else {
  1383. te->akaString=akaString;
  1384. };
  1385. };
  1386. };
  1387. zzEXIT(zztasp1);
  1388. return;
  1389. fail:
  1390. zzEXIT(zztasp1);
  1391. CannotContinue=TRUE;
  1392. zzsyn(zzMissText, zzBadTok, (ANTLRChar *)"", zzMissSet, zzMissTok, zzErrk, zzBadText);
  1393. zzresynch(setwd3, 0x80);
  1394. }
  1395. }
  1396. void
  1397. #ifdef __USE_PROTOS
  1398. block( set *toksrefd, set *rulesrefd )
  1399. #else
  1400. block(toksrefd,rulesrefd)
  1401.  set *toksrefd;
  1402. set *rulesrefd ;
  1403. #endif
  1404. {
  1405. zzRULE;
  1406. zzBLOCK(zztasp1);
  1407. zzMake0;
  1408. {
  1409. Graph g, b;
  1410. set saveblah;
  1411. int saveinalt = inAlt;
  1412. ExceptionGroup *eg;
  1413. * toksrefd = empty;
  1414. * rulesrefd = empty;
  1415. set_clr(AST_nodes_refd_in_actions);
  1416. CurBlockID++;
  1417. CurAltNum = 1;
  1418. saveblah = attribsRefdFromAction;
  1419. attribsRefdFromAction = empty;
  1420. alt( toksrefd,rulesrefd );
  1421. b = g = zzaArg(zztasp1,1);
  1422. if ( ((Junction *)g.left)->p1->ntype == nAction )
  1423. {
  1424. ActionNode *actionNode=(ActionNode *)
  1425. ( ( (Junction *)g.left) ->p1);
  1426. if (!actionNode->is_predicate )
  1427. {
  1428. actionNode->init_action = TRUE;
  1429. /* MR12c */   if (actionNode->noHoist) {
  1430. /* MR12c */           errFL("<<nohoist>> appears as init-action - use <<>> <<nohoist>>",
  1431. /* MR12c */                       FileStr[actionNode->file],actionNode->line);
  1432. /* MR12c */         };
  1433. }
  1434. }
  1435. ((Junction *)g.left)->blockid = CurBlockID;
  1436. {
  1437. zzBLOCK(zztasp2);
  1438. zzMake0;
  1439. {
  1440. while ( (LA(1)==132) ) {
  1441.  eg  = exception_group();
  1442. if ( eg!=NULL ) {
  1443. /* MR7 *****        eg->altID = makeAltID(CurBlockID,CurAltNum);        *****/
  1444. /* MR7 ***** CurAltStart->exception_label = eg->altID;           *****/
  1445. list_add(&CurExGroups, (void *)eg);
  1446. }
  1447. zzLOOP(zztasp2);
  1448. }
  1449. zzEXIT(zztasp2);
  1450. }
  1451. }
  1452. CurAltNum++;
  1453. {
  1454. zzBLOCK(zztasp2);
  1455. zzMake0;
  1456. {
  1457. while ( (LA(1)==121) ) {
  1458. zzmatch(121);
  1459. inAlt=1;
  1460.  zzCONSUME;
  1461. alt( toksrefd,rulesrefd );
  1462. g = Or(g, zzaArg(zztasp2,2));
  1463. ((Junction *)g.left)->blockid = CurBlockID;
  1464. {
  1465. zzBLOCK(zztasp3);
  1466. zzMake0;
  1467. {
  1468. while ( (LA(1)==132) ) {
  1469.  eg  = exception_group();
  1470. if ( eg!=NULL ) {
  1471. /* MR7 *****        eg->altID = makeAltID(CurBlockID,CurAltNum);        *****/
  1472. /* MR7 ***** CurAltStart->exception_label = eg->altID;           *****/
  1473. list_add(&CurExGroups, (void *)eg);
  1474. }
  1475. zzLOOP(zztasp3);
  1476. }
  1477. zzEXIT(zztasp3);
  1478. }
  1479. }
  1480. CurAltNum++;
  1481. zzLOOP(zztasp2);
  1482. }
  1483. zzEXIT(zztasp2);
  1484. }
  1485. }
  1486. zzaArg(zztasp1,0) = b;
  1487. attribsRefdFromAction = saveblah; inAlt = saveinalt;
  1488. zzEXIT(zztasp1);
  1489. return;
  1490. fail:
  1491. zzEXIT(zztasp1);
  1492. CannotContinue=TRUE;
  1493. zzsyn(zzMissText, zzBadTok, (ANTLRChar *)"", zzMissSet, zzMissTok, zzErrk, zzBadText);
  1494. zzresynch(setwd4, 0x1);
  1495. }
  1496. }
  1497. void
  1498. #ifdef __USE_PROTOS
  1499. alt( set *toksrefd, set *rulesrefd )
  1500. #else
  1501. alt(toksrefd,rulesrefd)
  1502.  set *toksrefd;
  1503. set *rulesrefd ;
  1504. #endif
  1505. {
  1506. zzRULE;
  1507. zzBLOCK(zztasp1);
  1508. zzMake0;
  1509. {
  1510. int n=0,ne=0; Graph g; int e_num=0, not=0; Node *node; set elems, dif;
  1511. int first_on_line = 1, use_def_MT_handler = 0;
  1512. g.left=NULL; g.right=NULL;
  1513. CurAltStart = NULL;
  1514. elems = empty;
  1515. inAlt = 1;
  1516. {
  1517. zzBLOCK(zztasp2);
  1518. zzMake0;
  1519. {
  1520. if ( (LA(1)==88) ) {
  1521. zzmatch(88);
  1522. use_def_MT_handler = 1;
  1523.  zzCONSUME;
  1524. }
  1525. zzEXIT(zztasp2);
  1526. }
  1527. }
  1528. {
  1529. zzBLOCK(zztasp2);
  1530. zzMake0;
  1531. {
  1532. ;
  1533. while ( (setwd4[LA(1)]&0x2) ) {
  1534. {
  1535. zzBLOCK(zztasp3);
  1536. zzMake0;
  1537. {
  1538. not=0;
  1539. if ( (LA(1)==122) ) {
  1540. zzmatch(122);
  1541. not=1;
  1542.  zzCONSUME;
  1543. }
  1544. zzEXIT(zztasp3);
  1545. }
  1546. }
  1547.  node  = element( not, first_on_line, use_def_MT_handler );
  1548. if ( node!=NULL && node->ntype!=nAction ) first_on_line = 0;
  1549. if ( zzaArg(zztasp2,2 ).left!=NULL ) {
  1550. g = Cat(g, zzaArg(zztasp2,2));
  1551. n++;
  1552. if ( node!=NULL ) {
  1553. if ( node->ntype!=nAction ) e_num++;
  1554. /* record record number of all rule and token refs */
  1555. if ( node->ntype==nToken ) {
  1556. TokNode *tk = (TokNode *)((Junction *)zzaArg(zztasp2,2 ).left)->p1;
  1557. tk->elnum = e_num;
  1558. set_orel(e_num, &elems);
  1559. }
  1560. else if ( node->ntype==nRuleRef ) {
  1561. RuleRefNode *rn = (RuleRefNode *)((Junction *)zzaArg(zztasp2,2 ).left)->p1;
  1562. rn->elnum = e_num;
  1563. set_orel(e_num,  rulesrefd);
  1564. }
  1565. }
  1566. }
  1567. zzLOOP(zztasp2);
  1568. }
  1569. zzEXIT(zztasp2);
  1570. }
  1571. }
  1572. if ( n == 0 ) g = emptyAlt();
  1573. zzaArg(zztasp1,0) = g;
  1574. /* We want to reduce number of LT(i) calls and the number of
  1575. * local attribute variables in C++ mode (for moment, later we'll
  1576. * do for C also).  However, if trees are being built, they
  1577. * require most of the attrib variables to create the tree nodes
  1578. * with; therefore, we gen a token ptr for each token ref in C++
  1579. */
  1580. if ( GenCC && !GenAST )
  1581. {
  1582. /* This now free's the temp set -ATG 5/6/95 */
  1583. set temp;
  1584. temp = set_and(elems, attribsRefdFromAction);
  1585. set_orin( toksrefd, temp);
  1586. set_free(temp);
  1587. }
  1588. else set_orin( toksrefd, elems);
  1589. if ( GenCC ) {
  1590. dif = set_dif(attribsRefdFromAction, elems);
  1591. if ( set_deg(dif)>0 )
  1592. err("one or more $i in action(s) refer to non-token elements");
  1593. set_free(dif);
  1594. }
  1595. set_free(elems);
  1596. set_free(attribsRefdFromAction);
  1597. inAlt = 0;
  1598. zzEXIT(zztasp1);
  1599. return;
  1600. fail:
  1601. zzEXIT(zztasp1);
  1602. CannotContinue=TRUE;
  1603. zzsyn(zzMissText, zzBadTok, (ANTLRChar *)"", zzMissSet, zzMissTok, zzErrk, zzBadText);
  1604. zzresynch(setwd4, 0x4);
  1605. }
  1606. }
  1607.  LabelEntry *
  1608. #ifdef __USE_PROTOS
  1609. element_label(void)
  1610. #else
  1611. element_label()
  1612. #endif
  1613. {
  1614.  LabelEntry *   _retv;
  1615. zzRULE;
  1616. zzBLOCK(zztasp1);
  1617. PURIFY(_retv,sizeof( LabelEntry *  ))
  1618. zzMake0;
  1619. {
  1620. TermEntry *t=NULL; LabelEntry *l=NULL; RuleEntry *r=NULL; char *lab;
  1621. zzmatch(LABEL);
  1622. lab = mystrdup(LATEXT(1));
  1623.  zzCONSUME;
  1624. UsedNewStyleLabel = 1;
  1625. if ( UsedOldStyleAttrib ) err("cannot mix with new-style labels with old-style $i");
  1626. t = (TermEntry *) hash_get(Tname, lab);
  1627. if ( t==NULL ) t = (TermEntry *) hash_get(Texpr, lab);
  1628. if ( t==NULL ) r = (RuleEntry *) hash_get(Rname, lab);
  1629. if ( t!=NULL ) {
  1630. err(eMsg1("label definition clashes with token/tokclass definition: '%s'", lab));
  1631. _retv = NULL;
  1632. }
  1633. else if ( r!=NULL ) {
  1634. err(eMsg1("label definition clashes with rule definition: '%s'", lab));
  1635. _retv = NULL;
  1636. }
  1637. else {
  1638. /* we don't clash with anybody else */
  1639. l = (LabelEntry *) hash_get(Elabel, lab);
  1640. if ( l==NULL ) { /* ok to add new element label */
  1641. l = (LabelEntry *)hash_add(Elabel,
  1642. lab,
  1643. (Entry *)newLabelEntry(lab));
  1644. /* add to list of element labels for this rule */
  1645. list_add(&CurElementLabels, (void *)lab);
  1646. /* MR7 */       leAdd(l);  /* list of labels waiting for exception group definitions */
  1647. _retv = l;
  1648. }
  1649. else {
  1650. err(eMsg1("label definitions must be unique per rule: '%s'", lab));
  1651. _retv = NULL;
  1652. }
  1653. }
  1654. zzmatch(104); zzCONSUME;
  1655. zzEXIT(zztasp1);
  1656. return _retv;
  1657. fail:
  1658. zzEXIT(zztasp1);
  1659. zzsyn(zzMissText, zzBadTok, (ANTLRChar *)"", zzMissSet, zzMissTok, zzErrk, zzBadText);
  1660. zzresynch(setwd4, 0x8);
  1661. return _retv;
  1662. }
  1663. }
  1664.  Node *
  1665. #ifdef __USE_PROTOS
  1666. element( int not, int first_on_line, int use_def_MT_handler )
  1667. #else
  1668. element(not,first_on_line,use_def_MT_handler)
  1669.  int not;
  1670. int first_on_line;
  1671. int use_def_MT_handler ;
  1672. #endif
  1673. {
  1674.  Node *   _retv;
  1675. zzRULE;
  1676. zzBLOCK(zztasp1);
  1677. PURIFY(_retv,sizeof( Node *  ))
  1678. zzMake0;
  1679. {
  1680. Attrib blk;
  1681. Predicate *pred = NULL;
  1682. int local_use_def_MT_handler=0;
  1683. ActionNode *act;
  1684. RuleRefNode *rr;
  1685. set toksrefd, rulesrefd;
  1686. TermEntry *term;
  1687. TokNode *p=NULL; RuleRefNode *q; int approx=0;
  1688. LabelEntry *label=NULL;
  1689. int predMsgDone=0;
  1690. int semDepth=0;
  1691. int   ampersandStyle;
  1692. int   height;         /* MR11 */
  1693. int   equal_height;   /* MR11 */
  1694.   _retv = NULL;
  1695. if ( (setwd4[LA(1)]&0x10) ) {
  1696. {
  1697. zzBLOCK(zztasp2);
  1698. zzMake0;
  1699. {
  1700. if ( (LA(1)==LABEL) ) {
  1701.  label  = element_label();
  1702. }
  1703. zzEXIT(zztasp2);
  1704. }
  1705. }
  1706. {
  1707. zzBLOCK(zztasp2);
  1708. zzMake0;
  1709. {
  1710. if ( (LA(1)==TokenTerm) ) {
  1711. zzmatch(TokenTerm);
  1712. term = (TermEntry *) hash_get(Tname, LATEXT(1));
  1713. if ( term==NULL && UserDefdTokens ) {
  1714. err("implicit token definition not allowed with #tokdefs");
  1715. zzaRet.left = zzaRet.right = NULL;
  1716. }
  1717. else {
  1718. zzaRet = buildToken(LATEXT(1));
  1719. p=((TokNode *)((Junction *)zzaRet.left)->p1);
  1720. term = (TermEntry *) hash_get(Tname, LATEXT(1));
  1721. require( term!= NULL, "hash table mechanism is broken");
  1722. p->tclass = term->tclass;
  1723. p->complement =  not;
  1724. if ( label!=NULL ) {
  1725. p->el_label = label->str;
  1726. label->elem = (Node *)p;
  1727. }
  1728. }
  1729.  zzCONSUME;
  1730. {
  1731. zzBLOCK(zztasp3);
  1732. zzMake0;
  1733. {
  1734. if ( (LA(1)==117) ) {
  1735. zzmatch(117); zzCONSUME;
  1736. {
  1737. zzBLOCK(zztasp4);
  1738. zzMake0;
  1739. {
  1740. if ( (LA(1)==QuotedTerm) ) {
  1741. zzmatch(QuotedTerm);
  1742. if ( p!=NULL ) setUpperRange(p, LATEXT(1));
  1743.  zzCONSUME;
  1744. }
  1745. else {
  1746. if ( (LA(1)==TokenTerm) ) {
  1747. zzmatch(TokenTerm);
  1748. if ( p!=NULL ) setUpperRange(p, LATEXT(1));
  1749.  zzCONSUME;
  1750. }
  1751. else {zzFAIL(1,zzerr9,&zzMissSet,&zzMissText,&zzBadTok,&zzBadText,&zzErrk); goto fail;}
  1752. }
  1753. zzEXIT(zztasp4);
  1754. }
  1755. }
  1756. }
  1757. zzEXIT(zztasp3);
  1758. }
  1759. }
  1760. if ( p!=NULL && (p->upper_range!=0 || p->tclass ||  not) )
  1761. list_add(&MetaTokenNodes, (void *)p);
  1762. {
  1763. zzBLOCK(zztasp3);
  1764. zzMake0;
  1765. {
  1766. if ( (LA(1)==123) ) {
  1767. zzmatch(123);
  1768. if ( p!=NULL ) p->astnode=ASTroot;
  1769.  zzCONSUME;
  1770. }
  1771. else {
  1772. if ( (setwd4[LA(1)]&0x20) ) {
  1773. if ( p!=NULL ) p->astnode=ASTchild;
  1774. }
  1775. else {
  1776. if ( (LA(1)==101) ) {
  1777. zzmatch(101);
  1778. if ( p!=NULL ) p->astnode=ASTexclude;
  1779.  zzCONSUME;
  1780. }
  1781. else {zzFAIL(1,zzerr10,&zzMissSet,&zzMissText,&zzBadTok,&zzBadText,&zzErrk); goto fail;}
  1782. }
  1783. }
  1784. zzEXIT(zztasp3);
  1785. }
  1786. }
  1787. {
  1788. zzBLOCK(zztasp3);
  1789. zzMake0;
  1790. {
  1791. if ( (LA(1)==88) ) {
  1792. zzmatch(88);
  1793. local_use_def_MT_handler = 1;
  1794.  zzCONSUME;
  1795. }
  1796. zzEXIT(zztasp3);
  1797. }
  1798. }
  1799. if ( p!=NULL &&  first_on_line ) {
  1800. CurAltStart = (Junction *)zzaRet.left;
  1801. altAdd(CurAltStart);                                 /* MR7 */
  1802. p->altstart = CurAltStart;
  1803. }
  1804. if ( p!=NULL )
  1805. p->use_def_MT_handler =  use_def_MT_handler || local_use_def_MT_handler;
  1806. _retv = (Node *)p;
  1807. }
  1808. else {
  1809. if ( (LA(1)==QuotedTerm) ) {
  1810. zzmatch(QuotedTerm);
  1811. term = (TermEntry *) hash_get(Texpr, LATEXT(1));
  1812. if ( term==NULL && UserDefdTokens ) {
  1813. err("implicit token definition not allowed with #tokdefs");
  1814. zzaRet.left = zzaRet.right = NULL;
  1815. }
  1816. else {
  1817. zzaRet = buildToken(LATEXT(1)); p=((TokNode *)((Junction *)zzaRet.left)->p1);
  1818. p->complement =  not;
  1819. if ( label!=NULL ) {
  1820. p->el_label = label->str;
  1821. label->elem = (Node *)p;
  1822. }
  1823. }
  1824.  zzCONSUME;
  1825. {
  1826. zzBLOCK(zztasp3);
  1827. zzMake0;
  1828. {
  1829. if ( (LA(1)==117) ) {
  1830. zzmatch(117); zzCONSUME;
  1831. {
  1832. zzBLOCK(zztasp4);
  1833. zzMake0;
  1834. {
  1835. if ( (LA(1)==QuotedTerm) ) {
  1836. zzmatch(QuotedTerm);
  1837. if ( p!=NULL ) setUpperRange(p, LATEXT(1));
  1838.  zzCONSUME;
  1839. }
  1840. else {
  1841. if ( (LA(1)==TokenTerm) ) {
  1842. zzmatch(TokenTerm);
  1843. if ( p!=NULL ) setUpperRange(p, LATEXT(1));
  1844.  zzCONSUME;
  1845. }
  1846. else {zzFAIL(1,zzerr11,&zzMissSet,&zzMissText,&zzBadTok,&zzBadText,&zzErrk); goto fail;}
  1847. }
  1848. zzEXIT(zztasp4);
  1849. }
  1850. }
  1851. }
  1852. zzEXIT(zztasp3);
  1853. }
  1854. }
  1855. {
  1856. zzBLOCK(zztasp3);
  1857. zzMake0;
  1858. {
  1859. if ( (LA(1)==123) ) {
  1860. zzmatch(123);
  1861. if ( p!=NULL ) p->astnode=ASTroot;
  1862.  zzCONSUME;
  1863. }
  1864. else {
  1865. if ( (setwd4[LA(1)]&0x40) ) {
  1866. if ( p!=NULL ) p->astnode=ASTchild;
  1867. }
  1868. else {
  1869. if ( (LA(1)==101) ) {
  1870. zzmatch(101);
  1871. if ( p!=NULL ) p->astnode=ASTexclude;
  1872.  zzCONSUME;
  1873. }
  1874. else {zzFAIL(1,zzerr12,&zzMissSet,&zzMissText,&zzBadTok,&zzBadText,&zzErrk); goto fail;}
  1875. }
  1876. }
  1877. zzEXIT(zztasp3);
  1878. }
  1879. }
  1880. {
  1881. zzBLOCK(zztasp3);
  1882. zzMake0;
  1883. {
  1884. if ( (LA(1)==88) ) {
  1885. zzmatch(88);
  1886. local_use_def_MT_handler = 1;
  1887.  zzCONSUME;
  1888. }
  1889. zzEXIT(zztasp3);
  1890. }
  1891. }
  1892. if ( p!=NULL && (p->upper_range!=0 || p->tclass ||  not) )
  1893. list_add(&MetaTokenNodes, (void *)p);
  1894. if (  first_on_line ) {
  1895. CurAltStart = (Junction *)zzaRet.left;
  1896. altAdd(CurAltStart);                                 /* MR7 */
  1897. p->altstart = CurAltStart;
  1898. }
  1899. if ( p!=NULL )
  1900. p->use_def_MT_handler =  use_def_MT_handler || local_use_def_MT_handler;
  1901. _retv = (Node *)p;
  1902. }
  1903. else {
  1904. if ( (LA(1)==WildCard) ) {
  1905. if (  not ) warn("~ WILDCARD is an undefined operation (implies 'nothing')");
  1906. zzmatch(WildCard);
  1907. zzaRet = buildWildCard(LATEXT(1)); p=((TokNode *)((Junction *)zzaRet.left)->p1);
  1908.  zzCONSUME;
  1909. {
  1910. zzBLOCK(zztasp3);
  1911. zzMake0;
  1912. {
  1913. if ( (LA(1)==123) ) {
  1914. zzmatch(123);
  1915. p->astnode=ASTroot;
  1916.  zzCONSUME;
  1917. }
  1918. else {
  1919. if ( (setwd4[LA(1)]&0x80) ) {
  1920. p->astnode=ASTchild;
  1921. }
  1922. else {
  1923. if ( (LA(1)==101) ) {
  1924. zzmatch(101);
  1925. p->astnode=ASTexclude;
  1926.  zzCONSUME;
  1927. }
  1928. else {zzFAIL(1,zzerr13,&zzMissSet,&zzMissText,&zzBadTok,&zzBadText,&zzErrk); goto fail;}
  1929. }
  1930. }
  1931. zzEXIT(zztasp3);
  1932. }
  1933. }
  1934. list_add(&MetaTokenNodes, (void *)p);
  1935. if (  first_on_line ) {
  1936. CurAltStart = (Junction *)zzaRet.left;
  1937. altAdd(CurAltStart);                                 /* MR7 */
  1938. p->altstart = CurAltStart;
  1939. if ( label!=NULL ) {
  1940. p->el_label = label->str;
  1941. label->elem = (Node *)p;
  1942. }
  1943. }
  1944. _retv = (Node *)p;
  1945. }
  1946. else {
  1947. if ( (LA(1)==NonTerminal) ) {
  1948. if (  not ) warn("~ NONTERMINAL is an undefined operation");
  1949. zzmatch(NonTerminal);
  1950. zzaRet = buildRuleRef(LATEXT(1));
  1951.  zzCONSUME;
  1952. {
  1953. zzBLOCK(zztasp3);
  1954. zzMake0;
  1955. {
  1956. if ( (LA(1)==101) ) {
  1957. zzmatch(101);
  1958. q = (RuleRefNode *) ((Junction *)zzaRet.left)->p1;
  1959. q->astnode=ASTexclude;
  1960.  zzCONSUME;
  1961. }
  1962. zzEXIT(zztasp3);
  1963. }
  1964. }
  1965. {
  1966. zzBLOCK(zztasp3);
  1967. zzMake0;
  1968. {
  1969. if ( (setwd5[LA(1)]&0x1) ) {
  1970. {
  1971. zzBLOCK(zztasp4);
  1972. zzMake0;
  1973. {
  1974. if ( (LA(1)==102) ) {
  1975. zzmatch(102); zzCONSUME;
  1976. }
  1977. zzEXIT(zztasp4);
  1978. }
  1979. }
  1980. zzmatch(PassAction);
  1981. addParm(((Junction *)zzaRet.left)->p1, LATEXT(1));
  1982.  zzCONSUME;
  1983. }
  1984. zzEXIT(zztasp3);
  1985. }
  1986. }
  1987. rr=(RuleRefNode *) ((Junction *)zzaRet.left)->p1;
  1988. {
  1989. zzBLOCK(zztasp3);
  1990. zzMake0;
  1991. {
  1992. char *a;
  1993. if ( (LA(1)==103) ) {
  1994. zzmatch(103); zzCONSUME;
  1995. zzmatch(PassAction);
  1996. a = (char *) calloc(strlen(LATEXT(1))+1, sizeof(char));
  1997. require(a!=NULL, "rule element: cannot allocate assignment");
  1998. strcpy(a, LATEXT(1));
  1999. rr->assign = a;
  2000.  zzCONSUME;
  2001. }
  2002. zzEXIT(zztasp3);
  2003. }
  2004. }
  2005. if ( label!=NULL ) {
  2006. rr->el_label = label->str;
  2007. label->elem = (Node *)rr;
  2008. }
  2009. if (  first_on_line ) {
  2010. CurAltStart = (Junction *)zzaRet.left;
  2011. altAdd(CurAltStart);                                 /* MR7 */
  2012. ((RuleRefNode *)((Junction *)zzaRet.left)->p1)->altstart = CurAltStart;
  2013. }
  2014. _retv = (Node *)rr;
  2015. }
  2016. else {zzFAIL(1,zzerr14,&zzMissSet,&zzMissText,&zzBadTok,&zzBadText,&zzErrk); goto fail;}
  2017. }
  2018. }
  2019. }
  2020. zzEXIT(zztasp2);
  2021. }
  2022. }
  2023. }
  2024. else {
  2025. if ( (LA(1)==Action) ) {
  2026. if (  not ) warn("~ ACTION is an undefined operation");
  2027. zzmatch(Action);
  2028. zzaArg(zztasp1,0) = buildAction(LATEXT(1),action_file,action_line, 0);
  2029.  zzCONSUME;
  2030. if (  first_on_line ) {                                /* MR7 */
  2031. CurAltStart = (Junction *)zzaArg(zztasp1,0 ).left;                   /* MR7 */
  2032. altAdd(CurAltStart);                                 /* MR7 */
  2033. };
  2034. _retv = (Node *) ((Junction *)zzaArg(zztasp1,0 ).left)->p1;
  2035. }
  2036. else {
  2037. if ( (LA(1)==Pred) ) {
  2038. if (  not ) warn("~ SEMANTIC-PREDICATE is an undefined operation");
  2039. zzmatch(Pred);
  2040. zzaArg(zztasp1,0) = buildAction(LATEXT(1),action_file,action_line, 1);
  2041.  zzCONSUME;
  2042. act = (ActionNode *) ((Junction *)zzaArg(zztasp1,0 ).left)->p1;
  2043. if (numericActionLabel) {             /* MR10 */
  2044. list_add(&NumericPredLabels,act);   /* MR10 */
  2045. numericActionLabel=0;               /* MR10 */
  2046. };                                    /* MR10 */
  2047. {
  2048. zzBLOCK(zztasp2);
  2049. zzMake0;
  2050. {
  2051. char *a;
  2052. if ( (LA(1)==PassAction) ) {
  2053. zzmatch(PassAction);
  2054. a = (char *) calloc(strlen(LATEXT(1))+1, sizeof(char));
  2055. require(a!=NULL, "rule element: cannot allocate predicate fail action");
  2056. strcpy(a, LATEXT(1));
  2057. act->pred_fail = a;
  2058.  zzCONSUME;
  2059. }
  2060. zzEXIT(zztasp2);
  2061. }
  2062. }
  2063. if (  first_on_line ) {                                /* MR7 */
  2064. CurAltStart = (Junction *)zzaArg(zztasp1,0 ).left;                   /* MR7 */
  2065. altAdd(CurAltStart);                                 /* MR7 */
  2066. };
  2067. _retv = (Node *)act;
  2068. }
  2069. else {
  2070. if ( (setwd5[LA(1)]&0x2) ) {
  2071. if (  not ) warn("~ BLOCK is an undefined operation");
  2072. BlkLevel++;
  2073. {
  2074. zzBLOCK(zztasp2);
  2075. zzMake0;
  2076. {
  2077. if ( (LA(1)==124) ) {
  2078. zzmatch(124); zzCONSUME;
  2079. {
  2080. zzBLOCK(zztasp3);
  2081. zzMake0;
  2082. {
  2083. if ( (LA(1)==125) ) {
  2084. zzmatch(125);
  2085. approx=LL_k;
  2086.  zzCONSUME;
  2087. }
  2088. else {
  2089. if ( (LA(1)==126) ) {
  2090. zzmatch(126);
  2091. approx = 1;
  2092.  zzCONSUME;
  2093. }
  2094. else {
  2095. if ( (LA(1)==127) ) {
  2096. zzmatch(127);
  2097. approx = 2;
  2098.  zzCONSUME;
  2099. }
  2100. else {zzFAIL(1,zzerr15,&zzMissSet,&zzMissText,&zzBadTok,&zzBadText,&zzErrk); goto fail;}
  2101. }
  2102. }
  2103. zzEXIT(zztasp3);
  2104. }
  2105. }
  2106. }
  2107. zzEXIT(zztasp2);
  2108. }
  2109. }
  2110. {
  2111. zzBLOCK(zztasp2);
  2112. zzMake0;
  2113. {
  2114. if ( (LA(1)==112) ) {
  2115. zzmatch(112); zzCONSUME;
  2116. block( &toksrefd,&rulesrefd );
  2117. zzmatch(113);
  2118. blk = zzaRet = zzaArg(zztasp2,2); --BlkLevel;
  2119.  zzCONSUME;
  2120. {
  2121. zzBLOCK(zztasp3);
  2122. zzMake0;
  2123. {
  2124. if ( (LA(1)==128) ) {
  2125. zzmatch(128);
  2126. zzaRet = makeLoop(zzaRet,approx);
  2127.  zzCONSUME;
  2128. }
  2129. else {
  2130. if ( (LA(1)==129) ) {
  2131. zzmatch(129);
  2132. zzaRet = makePlus(zzaRet,approx);
  2133.  zzCONSUME;
  2134. }
  2135. else {
  2136. if ( (LA(1)==130) ) {
  2137. zzmatch(130); zzCONSUME;
  2138. {
  2139. zzBLOCK(zztasp4);
  2140. zzMake0;
  2141. {
  2142. if ( (setwd5[LA(1)]&0x4) ) {
  2143. {
  2144. zzBLOCK(zztasp5);
  2145. zzMake0;
  2146. {
  2147. if ( (LA(1)==131) ) {
  2148. zzmatch(131);
  2149. ampersandStyle=0;
  2150.  zzCONSUME;
  2151. }
  2152. else {
  2153. if ( (LA(1)==111) ) {
  2154. zzmatch(111);
  2155. ampersandStyle=1;
  2156.  zzCONSUME;
  2157. }
  2158. else {zzFAIL(1,zzerr16,&zzMissSet,&zzMissText,&zzBadTok,&zzBadText,&zzErrk); goto fail;}
  2159. }
  2160. zzEXIT(zztasp5);
  2161. }
  2162. }
  2163. zzmatch(Pred);
  2164. zzaRet = buildAction(LATEXT(1),action_file,action_line,1);
  2165.  zzCONSUME;
  2166. act = (ActionNode *) ((Junction *)zzaRet.left)->p1;
  2167. semDepth=predicateLookaheadDepth(act);
  2168. if (numericActionLabel) {             /* MR10 */
  2169. list_add(&NumericPredLabels,act);   /* MR10 */
  2170. numericActionLabel=0;               /* MR10 */
  2171. };                                    /* MR10 */
  2172. {
  2173. zzBLOCK(zztasp5);
  2174. zzMake0;
  2175. {
  2176. char *a;
  2177. if ( (LA(1)==PassAction) ) {
  2178. zzmatch(PassAction);
  2179. a = (char *)calloc(strlen(LATEXT(1))+1, sizeof(char));
  2180. require(a!=NULL, "rule element: cannot allocate predicate fail action");
  2181. strcpy(a, LATEXT(1));
  2182. act->pred_fail = a;
  2183.  zzCONSUME;
  2184. }
  2185. zzEXIT(zztasp5);
  2186. }
  2187. }
  2188. if ( first_on_line) {                      /* MR7 */
  2189. CurAltStart=(Junction *)zzaRet.left;         /* MR7 */
  2190. altAdd(CurAltStart);                     /* MR7 */
  2191. };
  2192. _retv = (Node *)act;
  2193. pred = computePredicateFromContextGuard(blk,&predMsgDone);      /* MR10 */
  2194. if ( pred==NULL) {                                              /* MR10 */
  2195. if ( !predMsgDone) err("invalid or missing context guard");   /* MR10 */
  2196. predMsgDone=1;                                                /* MR10 */
  2197. } else {                                                        /* MR10 */
  2198. act->guardNodes=(Junction *)blk.left;                       /* MR11 */
  2199. pred->expr = act->action;
  2200. pred->source = act;
  2201. /* MR10 */                  pred->ampersandStyle = ampersandStyle;  /* 0 means (g)? => ... 1 means (g)? && ... */
  2202. /* MR13 */                  if (pred->tcontext != NULL) {
  2203. /* MR13 */                    height=MR_max_height_of_tree(pred->tcontext);
  2204. /* MR13 */                    equal_height=MR_all_leaves_same_height(pred->tcontext,height);
  2205. /* MR13 */                    if (! equal_height) {
  2206. /* MR13 */                       errFL("in guarded predicates all tokens in the guard must be at the same height",
  2207. /* MR13 */                              FileStr[act->file],act->line);
  2208. /* MR13 */                    };
  2209. /* MR13 */                  }
  2210. /* MR10 */                  if (ampersandStyle) {
  2211. /* MR10 */      act->ampersandPred = pred;
  2212. /* MR11 */                    if (! HoistPredicateContext) {
  2213. /* MR11 */                      errFL("without "-prc on" (guard)? && <<pred>>? ... doesn't make sense",
  2214. /* MR11 */                              FileStr[act->file],act->line);
  2215. /* MR11 */                    };
  2216. /* MR10 */                  } else {
  2217. /* MR10 */      act->guardpred = pred;
  2218. /* MR10 */                  };
  2219. /* MR10 */                  if (pred->k != semDepth) {
  2220. /* MR10 */                     warn(eMsgd2("length of guard (%d) does not match the length of semantic predicate (%d)",
  2221. /* MR10 */                                  pred->k,semDepth));
  2222. /* MR10 */                  };
  2223. }
  2224. }
  2225. else {
  2226. if ( (setwd5[LA(1)]&0x8) ) {
  2227. zzaRet = makeBlk(zzaRet,approx);
  2228. FoundGuessBlk = 1;
  2229. ((Junction *) ((Junction *)zzaRet.left)->p1)->guess=1;
  2230. if ( ! first_on_line ) {
  2231. err("(...)? predicate must be first element of production");
  2232. }
  2233. }
  2234. else {zzFAIL(1,zzerr17,&zzMissSet,&zzMissText,&zzBadTok,&zzBadText,&zzErrk); goto fail;}
  2235. }
  2236. zzEXIT(zztasp4);
  2237. }
  2238. }
  2239. }
  2240. else {
  2241. if ( (setwd5[LA(1)]&0x10) ) {
  2242. zzaRet = makeBlk(zzaRet,approx);
  2243. }
  2244. else {zzFAIL(1,zzerr18,&zzMissSet,&zzMissText,&zzBadTok,&zzBadText,&zzErrk); goto fail;}
  2245. }
  2246. }
  2247. }
  2248. zzEXIT(zztasp3);
  2249. }
  2250. }
  2251. if ( pred==NULL && !predMsgDone) {                                      /* MR10 */
  2252. ((Junction *)((Junction *)zzaRet.left)->p1)->blockid = CurBlockID;
  2253. ((Junction *)((Junction *)zzaRet.left)->p1)->tokrefs = toksrefd;
  2254. ((Junction *)((Junction *)zzaRet.left)->p1)->rulerefs = rulesrefd;
  2255. if (  first_on_line ) {                         /* MR7 */
  2256. CurAltStart = (Junction *)((Junction *)((Junction *)zzaRet.left)->p1);  /* MR7 */
  2257. altAdd(CurAltStart);                         /* MR7 */
  2258. };                                              /* MR7 */
  2259. _retv = (Node *) ((Junction *)zzaRet.left)->p1;
  2260. }
  2261. }
  2262. else {
  2263. if ( (LA(1)==100) ) {
  2264. zzmatch(100); zzCONSUME;
  2265. block( &toksrefd,&rulesrefd );
  2266. zzaRet = makeOpt(zzaArg(zztasp2,2),approx); --BlkLevel;
  2267. zzmatch(96);
  2268. ((Junction *)((Junction *)zzaRet.left)->p1)->blockid = CurBlockID;
  2269. ((Junction *)((Junction *)zzaRet.left)->p1)->tokrefs = toksrefd;
  2270. ((Junction *)((Junction *)zzaRet.left)->p1)->rulerefs = rulesrefd;
  2271.  zzCONSUME;
  2272. if (  first_on_line ) {                            /* MR7 */
  2273. CurAltStart = (Junction *) ((Junction *)((Junction *)zzaRet.left)->p1);  /* MR7 */
  2274. altAdd(CurAltStart);                             /* MR7 */
  2275. };
  2276. _retv = (Node *) ((Junction *)zzaRet.left)->p1;
  2277. }
  2278. else {zzFAIL(1,zzerr19,&zzMissSet,&zzMissText,&zzBadTok,&zzBadText,&zzErrk); goto fail;}
  2279. }
  2280. zzEXIT(zztasp2);
  2281. }
  2282. }
  2283. }
  2284. else {
  2285. if ( (LA(1)==128) ) {
  2286. zzmatch(128);
  2287. warn("don't you want a ')' with that '*'?"); CannotContinue=TRUE;
  2288.  zzCONSUME;
  2289. }
  2290. else {
  2291. if ( (LA(1)==129) ) {
  2292. zzmatch(129);
  2293. warn("don't you want a ')' with that '+'?"); CannotContinue=TRUE;
  2294.  zzCONSUME;
  2295. }
  2296. else {
  2297. if ( (LA(1)==103) ) {
  2298. zzmatch(103);
  2299. warn("'>' can only appear after a nonterminal"); CannotContinue=TRUE;
  2300.  zzCONSUME;
  2301. }
  2302. else {
  2303. if ( (LA(1)==PassAction) ) {
  2304. zzmatch(PassAction);
  2305. warn("[...] out of context 'rule > [...]'");
  2306. CannotContinue=TRUE;
  2307.  zzCONSUME;
  2308. }
  2309. else {zzFAIL(1,zzerr20,&zzMissSet,&zzMissText,&zzBadTok,&zzBadText,&zzErrk); goto fail;}
  2310. }
  2311. }
  2312. }
  2313. }
  2314. }
  2315. }
  2316. }
  2317. zzEXIT(zztasp1);
  2318. return _retv;
  2319. fail:
  2320. zzEXIT(zztasp1);
  2321. CannotContinue=TRUE;
  2322. zzsyn(zzMissText, zzBadTok, (ANTLRChar *)"", zzMissSet, zzMissTok, zzErrk, zzBadText);
  2323. zzresynch(setwd5, 0x20);
  2324. return _retv;
  2325. }
  2326. }
  2327. void
  2328. #ifdef __USE_PROTOS
  2329. default_exception_handler(void)
  2330. #else
  2331. default_exception_handler()
  2332. #endif
  2333. {
  2334. zzRULE;
  2335. zzBLOCK(zztasp1);
  2336. zzMake0;
  2337. {
  2338.  DefaultExGroup  = exception_group();
  2339. zzEXIT(zztasp1);
  2340. return;
  2341. fail:
  2342. zzEXIT(zztasp1);
  2343. zzsyn(zzMissText, zzBadTok, (ANTLRChar *)"", zzMissSet, zzMissTok, zzErrk, zzBadText);
  2344. zzresynch(setwd5, 0x40);
  2345. }
  2346. }
  2347.  ExceptionGroup *
  2348. #ifdef __USE_PROTOS
  2349. exception_group(void)
  2350. #else
  2351. exception_group()
  2352. #endif
  2353. {
  2354.  ExceptionGroup *   _retv;
  2355. zzRULE;
  2356. zzBLOCK(zztasp1);
  2357. PURIFY(_retv,sizeof( ExceptionGroup *  ))
  2358. zzMake0;
  2359. {
  2360. ExceptionHandler *h; LabelEntry *label=NULL;   /* MR6 */
  2361. FoundException = 1; FoundExceptionGroup = 1;
  2362. zzmatch(132);
  2363. _retv = (ExceptionGroup *)calloc(1, sizeof(ExceptionGroup));
  2364.  zzCONSUME;
  2365. {
  2366. zzBLOCK(zztasp2);
  2367. zzMake0;
  2368. {
  2369. char *p;
  2370. if ( (LA(1)==PassAction) ) {
  2371. zzmatch(PassAction);
  2372. p = LATEXT(1)+1;
  2373. p[strlen(p)-1] = ''; /* kill trailing space */
  2374. label = (LabelEntry *) hash_get(Elabel, LATEXT(1)+1);
  2375. if ( label==NULL )
  2376. {
  2377. err(eMsg1("unknown label in exception handler: '%s'", LATEXT(1)+1));
  2378. }
  2379.  zzCONSUME;
  2380. }
  2381. zzEXIT(zztasp2);
  2382. }
  2383. }
  2384. {
  2385. zzBLOCK(zztasp2);
  2386. zzMake0;
  2387. {
  2388. while ( (LA(1)==134) ) {
  2389.  h  = exception_handler();
  2390. list_add(&(_retv->handlers), (void *)h);
  2391. zzLOOP(zztasp2);
  2392. }
  2393. zzEXIT(zztasp2);
  2394. }
  2395. }
  2396. {
  2397. zzBLOCK(zztasp2);
  2398. zzMake0;
  2399. {
  2400. if ( (LA(1)==133) ) {
  2401. zzmatch(133); zzCONSUME;
  2402. zzmatch(104); zzCONSUME;
  2403. zzmatch(Action);
  2404. {
  2405. ExceptionHandler *eh = (ExceptionHandler *)
  2406. calloc(1, sizeof(ExceptionHandler));
  2407. char *a = (char *) calloc(strlen(LATEXT(1))+1, sizeof(char));
  2408. require(eh!=NULL, "exception: cannot allocate handler");
  2409. require(a!=NULL, "exception: cannot allocate action");
  2410. strcpy(a, LATEXT(1));
  2411. eh->action = a;
  2412. eh->signalname = (char *) calloc(strlen("default")+1, sizeof(char));
  2413. require(eh->signalname!=NULL, "exception: cannot allocate sig name");
  2414. strcpy(eh->signalname, "default");
  2415. list_add(&(_retv->handlers), (void *)eh);
  2416. }
  2417.  zzCONSUME;
  2418. }
  2419. zzEXIT(zztasp2);
  2420. }
  2421. }
  2422. if ( label!=NULL ) {
  2423. /* Record ex group in sym tab for this label */
  2424. if ( label->ex_group!=NULL ) {
  2425. err(eMsg1("duplicate exception handler for label '%s'",label->str));
  2426. } else {
  2427. label->ex_group = _retv;
  2428. /* Label the exception group itself */
  2429. _retv->label = label->str;
  2430. /* Make the labelled element pt to the exception also */
  2431. /* MR6 */   if (label->elem == NULL) {
  2432. /* MR6 */      err(eMsg1("reference in exception handler to undefined label '%s'",label->str));
  2433. /* MR6 */   } else {
  2434. switch ( label->elem->ntype ) {
  2435. case nRuleRef :
  2436. {
  2437. RuleRefNode *r = (RuleRefNode *)label->elem;
  2438. r->ex_group = _retv;
  2439. break;
  2440. }
  2441. case nToken :
  2442. {
  2443. TokNode *t = (TokNode *)label->elem;
  2444. t->ex_group = _retv;
  2445. break;
  2446. }
  2447. } /* end switch */
  2448. /* MR6 */   }; /* end test on label->elem */
  2449. } /* end test on label->ex_group */
  2450. } /* end test on exception label */
  2451. /* MR7 */
  2452. /* MR7 */   if (BlkLevel == 1 && label == NULL) {
  2453. /* MR7 */     _retv->forRule=1;
  2454. /* MR7 */   } else if (label == NULL) {
  2455. /* MR7 */     _retv->altID = makeAltID(CurBlockID,CurAltNum);
  2456. /* MR7 */     egAdd(_retv);
  2457. /* MR7 */   } else {
  2458. /* MR7 */     _retv->labelEntry=label;
  2459. /* MR7 */   };
  2460. /* MR7 */
  2461. /* MR7 */     /* You may want to remove this exc from the rule list  */
  2462. /* MR7 */ /* and handle at the labeled element site.             */
  2463. /* MR7 */
  2464. /* MR7 */   if (label != NULL) {
  2465. /* MR7 */     _retv = NULL;
  2466. /* MR7 */   };
  2467. zzEXIT(zztasp1);
  2468. return _retv;
  2469. fail:
  2470. zzEXIT(zztasp1);
  2471. CannotContinue=TRUE;
  2472. zzsyn(zzMissText, zzBadTok, (ANTLRChar *)"", zzMissSet, zzMissTok, zzErrk, zzBadText);
  2473. zzresynch(setwd5, 0x80);
  2474. return _retv;
  2475. }
  2476. }
  2477.  ExceptionHandler *
  2478. #ifdef __USE_PROTOS
  2479. exception_handler(void)
  2480. #else
  2481. exception_handler()
  2482. #endif
  2483. {
  2484.  ExceptionHandler *   _retv;
  2485. zzRULE;
  2486. zzBLOCK(zztasp1);
  2487. PURIFY(_retv,sizeof( ExceptionHandler *  ))
  2488. zzMake0;
  2489. {
  2490. ;
  2491. zzmatch(134);
  2492. _retv = (ExceptionHandler *)calloc(1, sizeof(ExceptionHandler));
  2493. require(_retv!=NULL, "exception: cannot allocate handler");
  2494.  zzCONSUME;
  2495. {
  2496. zzBLOCK(zztasp2);
  2497. zzMake0;
  2498. {
  2499. if ( (LA(1)==NonTerminal) ) {
  2500. zzmatch(NonTerminal);
  2501. _retv->signalname = (char *) calloc(strlen(LATEXT(1))+1, sizeof(char));
  2502. require(_retv->signalname!=NULL, "exception: cannot allocate sig name");
  2503. strcpy(_retv->signalname, LATEXT(1));
  2504.  zzCONSUME;
  2505. }
  2506. else {
  2507. if ( (LA(1)==TokenTerm) ) {
  2508. zzmatch(TokenTerm);
  2509. _retv->signalname = (char *) calloc(strlen(LATEXT(1))+1, sizeof(char));
  2510. require(_retv->signalname!=NULL, "exception: cannot allocate sig name");
  2511. strcpy(_retv->signalname, LATEXT(1));
  2512.  zzCONSUME;
  2513. }
  2514. else {zzFAIL(1,zzerr21,&zzMissSet,&zzMissText,&zzBadTok,&zzBadText,&zzErrk); goto fail;}
  2515. }
  2516. zzEXIT(zztasp2);
  2517. }
  2518. }
  2519. zzmatch(104); zzCONSUME;
  2520. {
  2521. zzBLOCK(zztasp2);
  2522. zzMake0;
  2523. {
  2524. _retv->action = NULL;
  2525. if ( (LA(1)==Action) ) {
  2526. zzmatch(Action);
  2527. _retv->action = (char *) calloc(strlen(LATEXT(1))+1, sizeof(char));
  2528. require(_retv->action!=NULL, "exception: cannot allocate action");
  2529. strcpy(_retv->action, LATEXT(1));
  2530.  zzCONSUME;
  2531. }
  2532. zzEXIT(zztasp2);
  2533. }
  2534. }
  2535. zzEXIT(zztasp1);
  2536. return _retv;
  2537. fail:
  2538. zzEXIT(zztasp1);
  2539. CannotContinue=TRUE;
  2540. zzsyn(zzMissText, zzBadTok, (ANTLRChar *)"", zzMissSet, zzMissTok, zzErrk, zzBadText);
  2541. zzresynch(setwd6, 0x1);
  2542. return _retv;
  2543. }
  2544. }
  2545. void
  2546. #ifdef __USE_PROTOS
  2547. enum_file( char *fname )
  2548. #else
  2549. enum_file(fname)
  2550.  char *fname ;
  2551. #endif
  2552. {
  2553. zzRULE;
  2554. zzBLOCK(zztasp1);
  2555. zzMake0;
  2556. {
  2557. if ( (setwd6[LA(1)]&0x2) ) {
  2558. {
  2559. zzBLOCK(zztasp2);
  2560. zzMake0;
  2561. {
  2562. if ( (LA(1)==142) ) {
  2563. zzmatch(142); zzCONSUME;
  2564. zzmatch(ID); zzCONSUME;
  2565. {
  2566. zzBLOCK(zztasp3);
  2567. zzMake0;
  2568. {
  2569. if ( (LA(1)==148) ) {
  2570. zzmatch(148); zzCONSUME;
  2571. zzmatch(ID); zzCONSUME;
  2572. }
  2573. zzEXIT(zztasp3);
  2574. }
  2575. }
  2576. }
  2577. zzEXIT(zztasp2);
  2578. }
  2579. }
  2580. {
  2581. zzBLOCK(zztasp2);
  2582. zzMake0;
  2583. {
  2584. if ( (LA(1)==150) ) {
  2585. {
  2586. zzBLOCK(zztasp3);
  2587. int zzcnt=1;
  2588. zzMake0;
  2589. {
  2590. do {
  2591. enum_def(  fname );
  2592. zzLOOP(zztasp3);
  2593. } while ( (LA(1)==150) );
  2594. zzEXIT(zztasp3);
  2595. }
  2596. }
  2597. }
  2598. else {
  2599. if ( (LA(1)==148) ) {
  2600. defines(  fname );
  2601. }
  2602. else {zzFAIL(1,zzerr22,&zzMissSet,&zzMissText,&zzBadTok,&zzBadText,&zzErrk); goto fail;}
  2603. }
  2604. zzEXIT(zztasp2);
  2605. }
  2606. }
  2607. }
  2608. else {
  2609. if ( (LA(1)==Eof) ) {
  2610. }
  2611. else {zzFAIL(1,zzerr23,&zzMissSet,&zzMissText,&zzBadTok,&zzBadText,&zzErrk); goto fail;}
  2612. }
  2613. zzEXIT(zztasp1);
  2614. return;
  2615. fail:
  2616. zzEXIT(zztasp1);
  2617. zzsyn(zzMissText, zzBadTok, (ANTLRChar *)"", zzMissSet, zzMissTok, zzErrk, zzBadText);
  2618. zzresynch(setwd6, 0x4);
  2619. }
  2620. }
  2621. void
  2622. #ifdef __USE_PROTOS
  2623. defines( char *fname )
  2624. #else
  2625. defines(fname)
  2626.  char *fname ;
  2627. #endif
  2628. {
  2629. zzRULE;
  2630. zzBLOCK(zztasp1);
  2631. zzMake0;
  2632. {
  2633. int v; int maxt=(-1); char *t;
  2634. {
  2635. zzBLOCK(zztasp2);
  2636. int zzcnt=1;
  2637. zzMake0;
  2638. {
  2639. do {
  2640. zzmatch(148); zzCONSUME;
  2641. zzmatch(ID);
  2642. t = mystrdup(LATEXT(1));
  2643.  zzCONSUME;
  2644. zzmatch(INT);
  2645. v = atoi(LATEXT(1));
  2646. /* fprintf(stderr, "#token %s=%dn", t, v);*/
  2647. /* MR2 Andreas Magnusson (Andreas.Magnusson@mailbox.swipnet.se) */
  2648. /* MR2 Fix to bug introduced by 1.33MR1 for #tokdefs            */
  2649. /* MR2 Don't let #tokdefs be confused by  */
  2650. /* MR2   DLGminToken and DLGmaxToken      */
  2651. if ( ! isDLGmaxToken(t)) { /* MR2 */
  2652. TokenNum = v;
  2653. if ( v>maxt ) maxt=v;
  2654. if ( Tnum( t ) == 0 ) {
  2655. addForcedTname( t, v );
  2656. } else {
  2657. warnFL(eMsg1("redefinition of token %s; ignored",t), fname,zzline);
  2658. };
  2659. };
  2660.  zzCONSUME;
  2661. zzLOOP(zztasp2);
  2662. } while ( (LA(1)==148) );
  2663. zzEXIT(zztasp2);
  2664. }
  2665. }
  2666. TokenNum = maxt + 1;
  2667. zzEXIT(zztasp1);
  2668. return;
  2669. fail:
  2670. zzEXIT(zztasp1);
  2671. zzsyn(zzMissText, zzBadTok, (ANTLRChar *)"", zzMissSet, zzMissTok, zzErrk, zzBadText);
  2672. zzresynch(setwd6, 0x8);
  2673. }
  2674. }
  2675. void
  2676. #ifdef __USE_PROTOS
  2677. enum_def( char *fname )
  2678. #else
  2679. enum_def(fname)
  2680.  char *fname ;
  2681. #endif
  2682. {
  2683. zzRULE;
  2684. zzBLOCK(zztasp1);
  2685. zzMake0;
  2686. {
  2687. int v= 0; int maxt=(-1); char *t;
  2688. zzmatch(150); zzCONSUME;
  2689. zzmatch(ID); zzCONSUME;
  2690. zzmatch(151); zzCONSUME;
  2691. zzmatch(ID);
  2692. t = mystrdup(LATEXT(1));
  2693.  zzCONSUME;
  2694. {
  2695. zzBLOCK(zztasp2);
  2696. zzMake0;
  2697. {
  2698. if ( (LA(1)==152) ) {
  2699. zzmatch(152); zzCONSUME;
  2700. zzmatch(INT);
  2701. v=atoi(LATEXT(1));
  2702.  zzCONSUME;
  2703. }
  2704. else {
  2705. if ( (setwd6[LA(1)]&0x10) ) {
  2706. v++;
  2707. }
  2708. else {zzFAIL(1,zzerr24,&zzMissSet,&zzMissText,&zzBadTok,&zzBadText,&zzErrk); goto fail;}
  2709. }
  2710. zzEXIT(zztasp2);
  2711. }
  2712. }
  2713. /* fprintf(stderr, "#token %s=%dn", t, v);*/
  2714. TokenNum = v;
  2715. if ( v>maxt ) maxt=v; /* MR3 */
  2716. if ( Tnum( t ) == 0 ) addForcedTname( t, v );
  2717. else {
  2718. warnFL(eMsg1("redefinition of token %s; ignored",t), fname,zzline);
  2719. }
  2720. {
  2721. zzBLOCK(zztasp2);
  2722. zzMake0;
  2723. {
  2724. while ( (LA(1)==153) ) {
  2725. zzmatch(153); zzCONSUME;
  2726. {
  2727. zzBLOCK(zztasp3);
  2728. zzMake0;
  2729. {
  2730. if ( (LA(1)==ID)&&(isDLGmaxToken(LATEXT(1))) ) {
  2731. if (!(isDLGmaxToken(LATEXT(1)))) {zzfailed_pred("  isDLGmaxToken(LATEXT(1))");}
  2732. zzmatch(ID); zzCONSUME;
  2733. {
  2734. zzBLOCK(zztasp4);
  2735. zzMake0;
  2736. {
  2737. if ( (LA(1)==152) ) {
  2738. zzmatch(152); zzCONSUME;
  2739. zzmatch(INT); zzCONSUME;
  2740. }
  2741. zzEXIT(zztasp4);
  2742. }
  2743. }
  2744. }
  2745. else {
  2746. if ( (LA(1)==ID) ) {
  2747. zzmatch(ID);
  2748. t = mystrdup(LATEXT(1));
  2749.  zzCONSUME;
  2750. {
  2751. zzBLOCK(zztasp4);
  2752. zzMake0;
  2753. {
  2754. if ( (LA(1)==152) ) {
  2755. zzmatch(152); zzCONSUME;
  2756. zzmatch(INT);
  2757. v=atoi(LATEXT(1));
  2758.  zzCONSUME;
  2759. }
  2760. else {
  2761. if ( (setwd6[LA(1)]&0x20) ) {
  2762. v++;
  2763. }
  2764. else {zzFAIL(1,zzerr25,&zzMissSet,&zzMissText,&zzBadTok,&zzBadText,&zzErrk); goto fail;}
  2765. }
  2766. zzEXIT(zztasp4);
  2767. }
  2768. }
  2769. /* fprintf(stderr, "#token %s=%dn", t, v);*/
  2770. TokenNum = v;
  2771. if ( v>maxt ) maxt=v; /* MR3 */
  2772. if ( Tnum( t ) == 0 ) addForcedTname( t, v );
  2773. else {
  2774. warnFL(eMsg1("redefinition of token %s; ignored",t), fname,zzline);
  2775. }
  2776. }
  2777. }
  2778. zzEXIT(zztasp3);
  2779. }
  2780. }
  2781. zzLOOP(zztasp2);
  2782. }
  2783. zzEXIT(zztasp2);
  2784. }
  2785. }
  2786. zzmatch(154); zzCONSUME;
  2787. zzmatch(155);
  2788. TokenNum = maxt + 1;
  2789.  zzCONSUME;
  2790. zzEXIT(zztasp1);
  2791. return;
  2792. fail:
  2793. zzEXIT(zztasp1);
  2794. zzsyn(zzMissText, zzBadTok, (ANTLRChar *)"", zzMissSet, zzMissTok, zzErrk, zzBadText);
  2795. zzresynch(setwd6, 0x40);
  2796. }
  2797. }
  2798. /* MR2 Andreas Magnusson (Andreas.Magnusson@mailbox.swipnet.se) */
  2799. /* MR2 Fix to bug introduced by 1.33MR1 for #tokdefs            */
  2800. /* MR2 Don't let #tokdefs be confused by  */
  2801. /* MR2   DLGminToken and DLGmaxToken      */
  2802. /* semantic check on DLGminToken and DLGmaxmaxToken in #tokdefs */
  2803. #ifdef __USE_PROTOS
  2804. static int isDLGmaxToken(char *Token)
  2805. #else
  2806. static int isDLGmaxToken(Token)
  2807. char * Token;
  2808. #endif
  2809. {
  2810. static char checkStr1[] = "DLGmaxToken";
  2811. static char checkStr2[] = "DLGminToken";
  2812.    if (strcmp(Token, checkStr1) == 0)
  2813. return 1;
  2814. else if (strcmp(Token, checkStr2) == 0)
  2815. return 1;
  2816. else
  2817. return 0;
  2818. }
  2819. /* semantics of #token */
  2820. static void
  2821. #ifdef __USE_PROTOS
  2822. chkToken(char *t, char *e, char *a, int tnum)
  2823. #else
  2824. chkToken(t,e,a,tnum)
  2825. char *t, *e, *a;
  2826. int tnum;
  2827. #endif
  2828. {
  2829. TermEntry *p;
  2830. /* check to see that they don't try to redefine a token as a token class */
  2831. if ( t!=NULL ) {
  2832. p = (TermEntry *) hash_get(Tname, t);
  2833. if ( p!=NULL && p->classname ) {
  2834. err(eMsg1("redefinition of #tokclass '%s' to #token not allowed; ignored",t));
  2835. if ( a!=NULL ) free((char *)a);
  2836. return;
  2837. }
  2838. }
  2839. if ( t==NULL && e==NULL ) { /* none found */
  2840. err("#token requires at least token name or rexpr");
  2841. }
  2842. else if ( t!=NULL && e!=NULL ) { /* both found */
  2843. if ( UserDefdTokens ) { /* if #tokdefs, must not define new */
  2844. p = (TermEntry *) hash_get(Tname, t);
  2845. if ( p == NULL) {
  2846. err(eMsg1("new token definition '%s' not allowed - only #token with name already defined by #tokdefs file allowed",t));
  2847. return;
  2848. };
  2849. }
  2850. Tklink(t, e);
  2851. if ( a!=NULL ) {
  2852. if ( hasAction(e) ) {
  2853. err(eMsg1("redefinition of action for %s; ignored",e));
  2854. }
  2855. else setHasAction(e, a);
  2856. }
  2857. }
  2858. else if ( t!=NULL ) { /* only one found */
  2859. if ( UserDefdTokens ) {
  2860. p = (TermEntry *) hash_get(Tname, t);
  2861. if (p == NULL) {
  2862. err(eMsg1("new token definition '%s' not allowed - only #token with name already defined by #tokdefs file allowed",t));
  2863. };
  2864. return;
  2865. }
  2866. if ( Tnum( t ) == 0 ) addTname( t );
  2867. else {
  2868. err(eMsg1("redefinition of token %s; ignored",t));
  2869. }
  2870. if ( a!=NULL ) {
  2871. err(eMsg1("action cannot be attached to a token name (%s); ignored",t));
  2872. free((char *)a);
  2873. }
  2874. }
  2875. else if ( e!=NULL ) {
  2876. if ( Tnum( e ) == 0 ) addTexpr( e );
  2877. else {
  2878. if ( hasAction(e) ) {
  2879. err(eMsg1("redefinition of action for expr %s; ignored",e));
  2880. }
  2881. else if ( a==NULL ) {
  2882. err(eMsg1("redefinition of expr %s; ignored",e));
  2883. }
  2884. }
  2885. if ( a!=NULL ) setHasAction(e, a);
  2886. }
  2887. /* if a token type number was specified, then add the token ID and 'tnum'
  2888. * pair to the ForcedTokens list.  (only applies if an id was given)
  2889. */
  2890. if ( t!=NULL && tnum>0 )
  2891. {
  2892. if ( set_el(tnum, reserved_positions) )
  2893. {
  2894. err(eMsgd("a token has already been forced to token number %d; ignored", tnum));
  2895. }
  2896. else
  2897. {
  2898. list_add(&ForcedTokens, newForcedToken(t,tnum));
  2899. set_orel(tnum, &reserved_positions);
  2900. }
  2901. }
  2902. }
  2903. static int
  2904. #ifdef __USE_PROTOS
  2905. match_token(char *s, char **nxt)
  2906. #else
  2907. match_token(s,nxt)
  2908. char *s;
  2909. char **nxt;
  2910. #endif
  2911. {
  2912. if ( !(*s>='A' && *s<='Z') ) return 0;
  2913. s++;
  2914. while ( (*s>='a' && *s<='z') ||
  2915. (*s>='A' && *s<='Z') ||
  2916. (*s>='0' && *s<='9') ||
  2917. *s=='_' )
  2918. {
  2919. s++;
  2920. }
  2921. if ( *s!=' ' && *s!='}' ) return 0;
  2922. *nxt = s;
  2923. return 1;
  2924. }
  2925. static int
  2926. #ifdef __USE_PROTOS
  2927. match_rexpr(char *s, char **nxt)
  2928. #else
  2929. match_rexpr(s,nxt)
  2930. char *s;
  2931. char **nxt;
  2932. #endif
  2933. {
  2934. if ( *s!='"' ) return 0;
  2935. s++;
  2936. while ( *s!='"' )
  2937. {
  2938. if ( *s=='n' || *s=='r' )                   /* MR13 */
  2939. warn("eoln found in regular expression");
  2940. if ( *s=='\' ) s++;
  2941. s++;
  2942. }
  2943. *nxt = s+1;
  2944. return 1;
  2945. }
  2946. /*
  2947. * Walk a string "{ A .. Z }" where A..Z is a space separated list
  2948. * of token references (either labels or reg exprs).  Return a
  2949. * string "inlineX_set" for some unique integer X.  Basically,
  2950. * we pretend as if we had seen "#tokclass inlineX { A .. Z }"
  2951. * on the input stream outside of an action.
  2952. */
  2953. char *
  2954. #ifdef __USE_PROTOS
  2955. inline_set(char *s)
  2956. #else
  2957. inline_set(s)
  2958. char *s;
  2959. #endif
  2960. {
  2961. char *nxt;
  2962. fprintf(stderr, "found consumeUntil( {...} )n");
  2963. while ( *s==' ' || *s=='t' || *s=='n' || *s=='r' ) {s++;}
  2964. if ( *s!='{' )
  2965. {
  2966. err("malformed consumeUntil( {...} ); missing '{'");
  2967. return "bad_set";
  2968. }
  2969. s++;
  2970. while ( *s==' ' || *s=='t' || *s=='n' || *s=='r' ) {s++;}
  2971. while ( *s!='}' )
  2972. {
  2973. if ( match_token(s,&nxt) ) fprintf(stderr, "found token %sn", s);
  2974. else if ( match_rexpr(s,&nxt) ) fprintf(stderr, "found rexpr %sn", s);
  2975. else {
  2976. err("invalid element in consumeUntil( {...} )");
  2977. return "bad_set";
  2978. }
  2979. s = nxt;
  2980. while ( *s==' ' || *s=='t' || *s=='n' || *s=='r' ) {s++;}
  2981. }
  2982. return "inlineX_set";
  2983. }
  2984. /* ANTLR-specific syntax error message generator
  2985. * (define USER_ZZSYN when compiling so don't get 2 definitions)
  2986. */
  2987. void
  2988. #ifdef __USE_PROTOS
  2989. zzsyn(char *text, int tok, char *egroup, SetWordType *eset, int etok,
  2990. int k, char *bad_text)
  2991. #else
  2992. zzsyn(text, tok, egroup, eset, etok, k, bad_text)
  2993. char *text, *egroup, *bad_text;
  2994. int tok;
  2995. int etok;
  2996. int k;
  2997. SetWordType *eset;
  2998. #endif
  2999. {
  3000. fprintf(stderr, ErrHdr, FileStr[CurFile]!=NULL?FileStr[CurFile]:"stdin", zzline);
  3001. fprintf(stderr, " syntax error at "%s"", (tok==zzEOF_TOKEN)?"EOF":text);
  3002. if ( !etok && !eset ) {fprintf(stderr, "n"); return;}
  3003. if ( k==1 ) fprintf(stderr, " missing");
  3004. else
  3005. {
  3006. fprintf(stderr, "; "%s" not", bad_text);
  3007. if ( zzset_deg(eset)>1 ) fprintf(stderr, " in");
  3008. }
  3009. if ( zzset_deg(eset)>0 ) zzedecode(eset);
  3010. else fprintf(stderr, " %s", zztokens[etok]);
  3011. if ( strlen(egroup) > (size_t)0 ) fprintf(stderr, " in %s", egroup);
  3012. fprintf(stderr, "n");
  3013. }