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

编译器/解释器

开发平台:

Others

  1. /*
  2.  * fset.c
  3.  *
  4.  * Compute FIRST and FOLLOW sets.
  5.  *
  6.  * SOFTWARE RIGHTS
  7.  *
  8.  * We reserve no LEGAL rights to the Purdue Compiler Construction Tool
  9.  * Set (PCCTS) -- PCCTS is in the public domain.  An individual or
  10.  * company may do whatever they wish with source code distributed with
  11.  * PCCTS or the code generated by PCCTS, including the incorporation of
  12.  * PCCTS, or its output, into commerical software.
  13.  *
  14.  * We encourage users to develop software with PCCTS.  However, we do ask
  15.  * that credit is given to us for developing PCCTS.  By "credit",
  16.  * we mean that if you incorporate our source code into one of your
  17.  * programs (commercial product, research project, or otherwise) that you
  18.  * acknowledge this fact somewhere in the documentation, research report,
  19.  * etc...  If you like PCCTS and have developed a nice tool with the
  20.  * output, please mention that you developed it using PCCTS.  In
  21.  * addition, we ask that this header remain intact in our source code.
  22.  * As long as these guidelines are kept, we expect to continue enhancing
  23.  * this system and expect to make other tools available as they are
  24.  * completed.
  25.  *
  26.  * ANTLR 1.33
  27.  * Terence Parr
  28.  * Parr Research Corporation
  29.  * with Purdue University and AHPCRC, University of Minnesota
  30.  * 1989-1998
  31.  */
  32. #include <stdio.h>
  33. #ifdef __cplusplus
  34. #ifndef __STDC__
  35. #define __STDC__
  36. #endif
  37. #endif
  38. #include "set.h"
  39. #include "syn.h"
  40. #include "hash.h"
  41. #include "generic.h"
  42. #include "dlgdef.h"
  43. #include "limits.h"
  44. extern char *PRED_AND_LIST;
  45. extern char *PRED_OR_LIST;
  46. #ifdef __STDC__
  47. static void ensure_predicates_cover_ambiguous_lookahead_sequences
  48.                                     (Junction *, Junction *, char *, Tree *);
  49. #else
  50. static void ensure_predicates_cover_ambiguous_lookahead_sequences();
  51. #endif
  52. /*
  53.  * What tokens are k tokens away from junction q?
  54.  *
  55.  * Follow both p1 and p2 paths (unless RuleBlk) to collect the tokens k away from this
  56.  * node.
  57.  * We lock the junction according to k--the lookahead.  If we have been at this
  58.  * junction before looking for the same, k, number of lookahead tokens, we will
  59.  * do it again and again...until we blow up the stack.  Locks are only used on aLoopBlk,
  60.  * RuleBlk, aPlusBlk and EndRule junctions to remove/detect infinite recursion from
  61.  * FIRST and FOLLOW calcs.
  62.  *
  63.  * If p->jtype == EndRule we are going to attempt a FOLLOW.  (FOLLOWs are really defined
  64.  * in terms of FIRST's, however).  To proceed with the FOLLOW, p->halt cannot be
  65.  * set.  p->halt is set to indicate that a reference to the current rule is in progress
  66.  * and the FOLLOW is not desirable.
  67.  *
  68.  * If we attempt a FOLLOW and find that there is no FOLLOW or REACHing beyond the EndRule
  69.  * junction yields an empty set, replace the empty set with EOF.  No FOLLOW means that
  70.  * only EOF can follow the current rule.  This normally occurs only on the start symbol
  71.  * since all other rules are referenced by another rule somewhere.
  72.  *
  73.  * Normally, both p1 and p2 are followed.  However, checking p2 on a RuleBlk node is
  74.  * the same as checking the next rule which is clearly incorrect.
  75.  *
  76.  * Cycles in the FOLLOW sense are possible.  e.g. Fo(c) requires Fo(b) which requires
  77.  * Fo(c).  Both Fo(b) and Fo(c) are defined to be Fo(b) union Fo(c).  Let's say
  78.  * Fo(c) is attempted first.  It finds all of the FOLLOW symbols and then attempts
  79.  * to do Fo(b) which finds of its FOLLOW symbols.  So, we have:
  80.  *
  81.  *                  Fo(c)
  82.  *                 /     
  83.  *              a set    Fo(b)
  84.  *                      /     
  85.  *                   a set    Fo(c) .....Hmmmm..... Infinite recursion!
  86.  *
  87.  * The 2nd Fo(c) is not attempted and Fo(b) is left deficient, but Fo(c) is now
  88.  * correctly Fo(c) union Fo(b).  We wish to pick up where we left off, so the fact
  89.  * that Fo(b) terminated early means that we lack Fo(c) in the Fo(b) set already
  90.  * laying around.  SOOOOoooo, we track FOLLOW cycles.  All FOLLOW computations are
  91.  * cached in a hash table.  After the sequence of FOLLOWs finish, we reconcile all
  92.  * cycles --> correct all Fo(rule) sets in the cache.
  93.  *
  94.  * Confused? Good! Read my MS thesis [Purdue Technical Report TR90-30].
  95.  * TJP 8/93 -- can now read PhD thesis from Purdue.
  96.  *
  97.  * Also, FIRST sets are cached in the hash table.  Keys are (rulename,Fi/Fo,k).
  98.  * Only FIRST sets, for which the FOLLOW is not included, are stored.
  99.  *
  100.  * SPECIAL CASE of (...)+ blocks:
  101.  * I added an optional alt so that the alts could see what
  102.  * was behind the (...)+ block--thus using enough lookahead
  103.  * to branch out rather than just enough to distinguish
  104.  * between alts in the (...)+.  However, when the FIRST("(...)+") is
  105.  * is needed, must not use this last "optional" alt.  This routine
  106.  * turns off this path by setting a new 'ignore' flag for
  107.  * the alt and then resetting it afterwards.
  108.  */
  109. set
  110. #ifdef __STDC__
  111. rJunc( Junction *p, int k, set *rk )
  112. #else
  113. rJunc( p, k, rk )
  114. Junction *p;
  115. int k;
  116. set *rk;
  117. #endif
  118. {
  119. set     a, b;
  120. require(p!=NULL, "rJunc: NULL node");
  121. require(p->ntype==nJunction, "rJunc: not junction");
  122. #ifdef DBG_LL1
  123. if ( p->jtype == RuleBlk ) fprintf(stderr, "FIRST(%s,%d) n",((Junction *)p)->rname,k);
  124. else fprintf(stderr, "rJunc: %s in rule %sn",
  125. decodeJType[p->jtype], ((Junction *)p)->rname);
  126. #endif
  127. /* if this is one of the added optional alts for (...)+ then return */
  128.     /* no need to pop backtrace - hasn't been pushed */
  129. if ( p->ignore ) return empty;
  130.     if (MR_MaintainBackTrace) MR_pointerStackPush(&MR_BackTraceStack,p);
  131. /* MR14 */    if (AlphaBetaTrace && p->alpha_beta_guess_end) {
  132. /* MR14 */         warnFL(
  133. /* MR14 */           "not possible to compute follow set for alpha in an "(alpha)? beta" block.  ",
  134. /* MR14 */                 FileStr[p->file],p->line);
  135. /* MR14 */         MR_alphaBetaTraceReport();
  136. /* MR14 */    };
  137. /* MR14 */    if (p->alpha_beta_guess_end) {
  138. /* MR14 */      if (MR_MaintainBackTrace) MR_pointerStackPop(&MR_BackTraceStack);
  139. /* MR14 */      return empty;
  140. /* MR14 */    }
  141. /* locks are valid for aLoopBlk,aPlusBlk,RuleBlk,EndRule junctions only */
  142. if ( p->jtype==aLoopBlk || p->jtype==RuleBlk ||
  143.  p->jtype==aPlusBlk || p->jtype==EndRule )
  144. {
  145. require(p->lock!=NULL, "rJunc: lock array is NULL");
  146. if ( p->lock[k] )
  147. {
  148. if ( p->jtype == EndRule ) /* FOLLOW cycle? */
  149. {
  150. #ifdef DBG_LL1
  151. fprintf(stderr, "FOLLOW cycle to %s: panic!n", p->rname);
  152. #endif
  153.                 if (! MR_AmbSourceSearch) RegisterCycle(p->rname, k);
  154. }
  155.             if (MR_MaintainBackTrace) MR_pointerStackPop(&MR_BackTraceStack);
  156. return empty;
  157. }
  158. if ( p->jtype == RuleBlk &&
  159.                  p->end->halt  &&
  160.                      ! MR_AmbSourceSearch) /* check for FIRST cache */
  161. {
  162. CacheEntry *q = (CacheEntry *) hash_get(Fcache, Fkey(p->rname,'i',k));
  163. if ( q != NULL )
  164. {
  165. set_orin(rk, q->rk);
  166.                 if (MR_MaintainBackTrace) MR_pointerStackPop(&MR_BackTraceStack);
  167.     return set_dup( q->fset );
  168. }
  169. }
  170. if ( p->jtype == EndRule &&
  171.                 !p->halt &&                     /* MR11 was using cache even when halt set */
  172.                      ! MR_AmbSourceSearch) /* FOLLOW set cached already? */
  173. {
  174. CacheEntry *q = (CacheEntry *) hash_get(Fcache, Fkey(p->rname,'o',k));
  175. if ( q != NULL )
  176. {
  177. #ifdef DBG_LL1
  178. fprintf(stderr, "cache for FOLLOW(%s,%d):", p->rname,k);
  179. s_fprT(stderr, q->fset);
  180. if ( q->incomplete ) fprintf(stderr, " (incomplete)");
  181. fprintf(stderr, "n");
  182. #endif
  183. if ( !q->incomplete )
  184. {
  185.                     if (MR_MaintainBackTrace) MR_pointerStackPop(&MR_BackTraceStack);
  186. return set_dup( q->fset );
  187. }
  188. }
  189. }
  190. p->lock[k] = TRUE; /* This rule is busy */
  191. }
  192. a = b = empty;
  193. if ( p->jtype == EndRule )
  194. {
  195. if (p->halt ) /* don't want FOLLOW here? */ /* unless MR10 hoisting */
  196. {
  197.            p->lock[k] = FALSE;
  198.   set_orel(k, rk); /* indicate this k value needed */
  199.               if (MR_MaintainBackTrace) MR_pointerStackPop(&MR_BackTraceStack);
  200.   return empty;
  201. }
  202. if (! MR_AmbSourceSearch) FoPush(p->rname, k); /* Attempting FOLLOW */
  203. if ( p->p1 == NULL ) set_orel((TokenInd!=NULL?TokenInd[EofToken]:EofToken), &a);/* if no FOLLOW assume EOF */
  204. #ifdef DBG_LL1
  205. fprintf(stderr, "-->FOLLOW(%s,%d)n", p->rname,k);
  206. #endif
  207. }
  208. if ( p->p1 != NULL ) {
  209. /* MR14 */      if (p->guess) {
  210. /* MR14 */        if (p->guess_analysis_point == NULL) {
  211. /* MR14 */           Node * guess_point;
  212. /* MR14 */           guess_point=(Node *)analysis_point(p);
  213. /* MR14 */           if (guess_point == (Node *)p) {
  214. /* MR14 */             guess_point=p->p1;
  215. /* MR14 */           }
  216. /* MR14 */           p->guess_analysis_point=guess_point;
  217. /* MR14 */        }
  218. /* MR14 */        REACH(p->guess_analysis_point, k, rk, a);
  219.                 } else {
  220.                   REACH(p->p1, k, rk, a);
  221.                 }
  222.     }
  223. /* C a c h e  R e s u l t s */
  224. if ( p->jtype == RuleBlk && p->end->halt && ! MR_AmbSourceSearch) /* can save FIRST set? */
  225. {
  226. CacheEntry *q = newCacheEntry( Fkey(p->rname,'i',k) );
  227. /*fprintf(stderr, "Caching %s FIRST %dn", p->rname, k);*/
  228. hash_add(Fcache, Fkey(p->rname,'i',k), (Entry *)q);
  229. q->fset = set_dup( a );
  230. q->rk = set_dup( *rk );
  231. }
  232. if ( p->jtype == EndRule &&
  233.             !p->halt &&                         /* MR11 was using cache even with halt set */
  234.                  ! MR_AmbSourceSearch) /* just completed FOLLOW? */
  235. {
  236. /* Cache Follow set */
  237. CacheEntry *q = (CacheEntry *) hash_get(Fcache, Fkey(p->rname,'o',k));
  238. if ( q==NULL )
  239. {
  240. q = newCacheEntry( Fkey(p->rname,'o',k) );
  241. hash_add(Fcache, Fkey(p->rname,'o',k), (Entry *)q);
  242. }
  243. /*fprintf(stderr, "Caching %s FOLLOW %dn", p->rname, k);*/
  244. if ( set_nil(a) && !q->incomplete )
  245. {
  246. /* Don't ever save a nil set as complete.
  247.  * Turn it into an eof set.
  248.  */
  249. set_orel(EofToken, &a);
  250. }
  251. set_orin(&(q->fset), a);
  252. FoPop( k );
  253. if ( FoTOS[k] == NULL && Cycles[k] != NULL ) ResolveFoCycles(k);
  254. #ifdef DBG_LL1
  255. fprintf(stderr, "saving FOLLOW(%s,%d):", p->rname, k);
  256. s_fprT(stderr, q->fset);
  257. if ( q->incomplete ) fprintf(stderr, " (incomplete)");
  258. fprintf(stderr, "n");
  259. #endif
  260. }
  261.     if (p->jtype != RuleBlk && p->p2 != NULL && /* MR14 */ ! p->guess) {
  262.        REACH(p->p2, k, rk, b);
  263.     }
  264. if ( p->jtype==aLoopBlk || p->jtype==RuleBlk ||
  265.  p->jtype==aPlusBlk || p->jtype==EndRule )
  266. p->lock[k] = FALSE; /* unlock node */
  267. set_orin(&a, b);
  268. set_free(b);
  269.     if (MR_MaintainBackTrace) MR_pointerStackPop(&MR_BackTraceStack);
  270. return a;
  271. }
  272. set
  273. #ifdef __STDC__
  274. rRuleRef( RuleRefNode *p, int k, set *rk_out )
  275. #else
  276. rRuleRef( p, k, rk_out )
  277. RuleRefNode *p;
  278. int k;
  279. set *rk_out;
  280. #endif
  281. {
  282. set rk;
  283. Junction *r;
  284. int k2;
  285. set a, rk2, b;
  286. int save_halt;
  287. RuleEntry *q = (RuleEntry *) hash_get(Rname, p->text);
  288. require(p!=NULL, "rRuleRef: NULL node");
  289. require(p->ntype==nRuleRef, "rRuleRef: not rule ref");
  290. #ifdef DBG_LL1
  291. fprintf(stderr, "rRuleRef: %sn", p->text);
  292. #endif
  293.     if (MR_MaintainBackTrace) MR_pointerStackPush(&MR_BackTraceStack,p);
  294. if ( q == NULL )
  295. {
  296. warnFL( eMsg1("rule %s not defined",p->text), FileStr[p->file], p->line );
  297. REACH(p->next, k, rk_out, a);
  298.         if (MR_MaintainBackTrace) MR_pointerStackPop(&MR_BackTraceStack);
  299. return a;
  300. }
  301. rk2 = empty;
  302. /* MR9 Problems with rule references in guarded predicates */
  303. /* MR9    Perhaps can use hash table to find rule ?        */
  304. /* MR9 */    if (RulePtr == NULL) {
  305. /* MR9 */        fatalFL(eMsg2("Rule %s uses rule %s via RulePtr before it has been initialized",
  306. /* MR9 */                                p->rname,q->str),FileStr[p->file],p->line);
  307. /* MR9 */    };
  308. r = RulePtr[q->rulenum];
  309. if ( r->lock[k] )
  310. {
  311. errNoFL( eMsg2("infinite left-recursion to rule %s from rule %s",
  312. r->rname, p->rname) );
  313.         if (MR_MaintainBackTrace) MR_pointerStackPop(&MR_BackTraceStack);
  314. return empty;
  315. }
  316. save_halt = r->end->halt;
  317. r->end->halt = TRUE; /* don't let reach fall off end of rule here */
  318. rk = empty;
  319. REACH(r, k, &rk, a);
  320. r->end->halt = save_halt;
  321. while ( !set_nil(rk) ) {
  322. k2 = set_int(rk);               /* MR11 this messes up the ambiguity search routine */
  323. set_rm(k2, rk);
  324. REACH(p->next, k2, &rk2, b);    /* MR11 by changing the value of k                  */
  325. set_orin(&a, b);
  326. set_free(b);
  327. }
  328. set_free(rk); /* this has no members, but free it's memory */
  329. set_orin(rk_out, rk2); /* remember what we couldn't do */
  330. set_free(rk2);
  331.     if (MR_MaintainBackTrace) MR_pointerStackPop(&MR_BackTraceStack);
  332. return a;
  333. }
  334. /*
  335.  * Return FIRST sub k ( token_node )
  336.  *
  337.  * TJP 10/11/93 modified this so that token nodes that are actually
  338.  * ranges (T1..T2) work.
  339.  */
  340. set
  341. #ifdef __STDC__
  342. rToken( TokNode *p, int k, set *rk )
  343. #else
  344. rToken( p, k, rk )
  345. TokNode *p;
  346. int k;
  347. set *rk;
  348. #endif
  349. {
  350. set a;
  351. require(p!=NULL, "rToken: NULL node");
  352. require(p->ntype==nToken, "rToken: not token node");
  353. #ifdef DBG_LL1
  354. fprintf(stderr, "rToken: %sn", (TokenString(p->token)!=NULL)?TokenString(p->token):
  355. ExprString(p->token));
  356. #endif
  357.     if (MR_MaintainBackTrace) MR_pointerStackPush(&MR_BackTraceStack,p);
  358.     if (MR_AmbSourceSearch && (k-1) == 0) {
  359.       set       localConstrain;
  360.       set       intersection;
  361.       localConstrain=fset[maxk-k+1];
  362.       if (! set_nil(p->tset)) {
  363.         intersection=set_and(localConstrain,p->tset);
  364.         if (! set_nil(intersection)) {
  365.           MR_backTraceReport();
  366.         };
  367.         set_free(intersection);
  368.       } else {
  369.         if (set_el( (unsigned) p->token,localConstrain)) {
  370.           MR_backTraceReport();
  371.         }
  372.       };
  373.     };
  374. if ( k-1 == 0 ) {
  375.         if (MR_MaintainBackTrace) MR_pointerStackPop(&MR_BackTraceStack);
  376. if ( !set_nil(p->tset) ) {
  377.             return set_dup(p->tset);
  378.         } else {
  379.      return set_of(p->token);
  380.         };
  381. }
  382. REACH(p->next, k-1, rk, a);
  383.     if (MR_MaintainBackTrace) MR_pointerStackPop(&MR_BackTraceStack);
  384. return a;
  385. }
  386. set
  387. #ifdef __STDC__
  388. rAction( ActionNode *p, int k, set *rk )
  389. #else
  390. rAction( p, k, rk )
  391. ActionNode *p;
  392. int k;
  393. set *rk;
  394. #endif
  395. {
  396. set a;
  397. require(p!=NULL, "rJunc: NULL node");
  398. require(p->ntype==nAction, "rJunc: not action");
  399. /* MR11 */    if (p->is_predicate && p->ampersandPred != NULL) {
  400. /* MR11 */      Predicate   *pred=p->ampersandPred;
  401. /* MR11 */      if (k <= pred->k) {
  402. /* MR11 */        REACH(p->guardNodes,k,rk,a);
  403. /* MR11 */        return a;
  404. /* MR11 */      };
  405. /* MR11 */    };
  406.     /* it might be a good idea when doing an MR_AmbSourceSearch
  407.        to *not* look behind predicates under some circumstances
  408.        we'll look into that later
  409.     */
  410. REACH(p->next, k, rk, a); /* ignore actions */
  411. return a;
  412. }
  413. /* A m b i g u i t y  R e s o l u t i o n */
  414. void
  415. #ifdef __STDC__
  416. dumpAmbigMsg( set *fset, FILE *f, int want_nls )
  417. #else
  418. dumpAmbigMsg( fset, f, want_nls )
  419. set *fset;
  420. FILE *f;
  421. int want_nls;
  422. #endif
  423. {
  424. int i;
  425.     set     copy;               /* MR11 */
  426. if ( want_nls ) fprintf(f, "nt");
  427. else fprintf(f, " ");
  428. for (i=1; i<=CLL_k; i++)
  429. {
  430.         copy=set_dup(fset[i]);  /* MR11 */
  431. if ( i>1 )
  432. {
  433. if ( !want_nls ) fprintf(f, ", ");
  434. }
  435. if ( set_deg(copy) > 3 && elevel == 1 )
  436. {
  437. int e,m;
  438. fprintf(f, "{");
  439. for (m=1; m<=3; m++)
  440. {
  441. e=set_int(copy);
  442. fprintf(f, " %s", TerminalString(e));
  443. set_rm(e, copy);
  444. }
  445. fprintf(f, " ... }");
  446. }
  447. else s_fprT(f, copy);
  448. if ( want_nls ) fprintf(f, "nt");
  449.         set_free(copy);
  450. }
  451. fprintf(f, "n");
  452. }
  453. static void
  454. #ifdef __USE_PROTOS
  455. verify_context(Predicate *predicate)
  456. #else
  457. verify_context(predicate)
  458. Predicate *predicate;
  459. #endif
  460. {
  461. if ( predicate == NULL ) return;
  462. if ( predicate->expr == PRED_OR_LIST ||
  463.  predicate->expr == PRED_AND_LIST )
  464. {
  465. verify_context(predicate->down);
  466. verify_context(predicate->right);       /* MR10 */
  467. return;
  468. }
  469. if ( !predicate->source->ctxwarned && predicate->source->guardpred==NULL &&
  470.  ((predicate->k > 1 &&
  471.  !is_single_tuple(predicate->tcontext)) ||
  472.  ( predicate->k == 1 &&
  473.   set_deg(predicate->scontext[1])>1 )) )
  474. {
  475. /* MR9 Suppress annoying messages caused by our own clever(?) fix */
  476.    fprintf(stderr, ErrHdr, FileStr[predicate->source->file],
  477. predicate->source->line);
  478. fprintf(stderr, " warning: predicate applied for >1 lookahead %d-sequencesn", predicate->k);
  479. fprintf(stderr, ErrHdr, FileStr[predicate->source->file],
  480. predicate->source->line);
  481. fprintf(stderr, "     predicate text: "%s"n",
  482.                         (predicate->expr == NULL ? "(null)" : predicate->expr) );
  483. fprintf(stderr, ErrHdr, FileStr[predicate->source->file],
  484. predicate->source->line);
  485. fprintf(stderr, "     You may only want one lookahead %d-sequence to applyn", predicate->k);
  486. fprintf(stderr, ErrHdr, FileStr[predicate->source->file],
  487. predicate->source->line);
  488. fprintf(stderr, "     Try using a context guard '(...)? =>'n");
  489. predicate->source->ctxwarned = 1;
  490. }
  491.     verify_context(predicate->right);       /* MR10 */
  492. }
  493. /*
  494.  * If delta is the set of ambiguous lookahead sequences, then make sure that
  495.  * the predicate(s) for productions alt1,alt2 cover the sequences in delta.
  496.  *
  497.  * For example,
  498.  * a : <<PRED1>>? (A B|A C)
  499.  *   | b
  500.  *    ;
  501.  * b : <<PRED2>>? A B
  502.  *   | A C
  503.  *   ;
  504.  *
  505.  * This should give a warning that (A C) predicts both productions and alt2
  506.  * does not have a predicate in the production that generates (A C).
  507.  *
  508.  * The warning detection is simple.  Let delta = LOOK(alt1) intersection LOOK(alt2).
  509.  * Now, if ( delta set-difference context(predicates-for-alt1) != empty then
  510.  * alt1 does not "cover" all ambiguous sequences.
  511.  *
  512.  * If ambig is nonempty, then ambig in LL(k) sense -> use tree info; else use fset
  513.  * info.  Actually, sets are used only if k=1 for this grammar.
  514.  */
  515. static void
  516. #ifdef __USE_PROTOS
  517. ensure_predicates_cover_ambiguous_lookahead_sequences
  518.                         ( Junction *alt1, Junction *alt2, char *sub, Tree *ambig )
  519. #else
  520. ensure_predicates_cover_ambiguous_lookahead_sequences( alt1, alt2, sub, ambig )
  521. Junction *alt1;
  522. Junction *alt2;
  523. char *sub;
  524. Tree *ambig;
  525. #endif
  526. {
  527. if ( !ParseWithPredicates ) return;
  528. if ( ambig!=NULL )
  529. {
  530. Tree *non_covered = NULL;
  531. if ( alt1->predicate!=NULL )
  532. non_covered = tdif(ambig, alt1->predicate, alt1->fset, alt2->fset);
  533. if ( (non_covered!=NULL || alt1->predicate==NULL) && WarningLevel>1 )
  534. {
  535. fprintf(stderr, ErrHdr, FileStr[alt1->file], alt1->line);
  536. fprintf(stderr, " warning: alt %d %shas no predicate to resolve ambiguity",
  537. alt1->altnum, sub);
  538. if ( alt1->predicate!=NULL && non_covered!=NULL )
  539. {
  540. fprintf(stderr, " upon");
  541. preorder(non_covered);
  542. }
  543. else if ( alt1->predicate==NULL )
  544. {
  545. fprintf(stderr, " upon");
  546. preorder(ambig->down);
  547. }
  548. fprintf(stderr, "n");
  549. }
  550. Tfree(non_covered);
  551. non_covered = NULL;
  552. if ( alt2->predicate!=NULL )
  553. non_covered = tdif(ambig, alt2->predicate, alt1->fset, alt2->fset);
  554. if ( (non_covered!=NULL || alt2->predicate==NULL) && WarningLevel>1 )
  555. {
  556. fprintf(stderr, ErrHdr, FileStr[alt2->file], alt2->line);
  557. fprintf(stderr, " warning: alt %d %shas no predicate to resolve ambiguity",
  558. alt2->altnum, sub);
  559. if ( alt2->predicate!=NULL && non_covered!=NULL )
  560. {
  561. fprintf(stderr, " upon");
  562. preorder(non_covered);
  563. }
  564. else if ( alt2->predicate==NULL )
  565. {
  566. fprintf(stderr, " upon");
  567. preorder(ambig->down);
  568. }
  569. fprintf(stderr, "n");
  570. }
  571. Tfree(non_covered);
  572. }
  573. else if ( !set_nil(alt1->fset[1]) )
  574. {
  575. set delta, non_covered;
  576. delta = set_and(alt1->fset[1], alt2->fset[1]);
  577. non_covered = set_dif(delta, covered_set(alt1->predicate));
  578. if ( set_deg(non_covered)>0 && WarningLevel>1 )
  579. {
  580. fprintf(stderr, ErrHdr, FileStr[alt1->file], alt1->line);
  581. fprintf(stderr, " warning: alt %d %shas no predicate to resolve ambiguity",
  582. alt1->altnum, sub);
  583. if ( alt1->predicate!=NULL )
  584. {
  585. fprintf(stderr, " upon ");
  586. s_fprT(stderr, non_covered);
  587. }
  588. fprintf(stderr, "n");
  589. }
  590. set_free( non_covered );
  591. non_covered = set_dif(delta, covered_set(alt2->predicate));
  592. if ( set_deg(non_covered)>0 && WarningLevel>1 )
  593. {
  594. fprintf(stderr, ErrHdr, FileStr[alt2->file], alt2->line);
  595. fprintf(stderr, " warning: alt %d %shas no predicate to resolve ambiguity",
  596. alt2->altnum, sub);
  597. if ( alt2->predicate!=NULL )
  598. {
  599. fprintf(stderr, " upon ");
  600. s_fprT(stderr, non_covered);
  601. }
  602. fprintf(stderr, "n");
  603. }
  604. set_free( non_covered );
  605. set_free( delta );
  606. }
  607. else fatal_internal("productions have no lookahead in predicate checking routine");
  608. }
  609. #ifdef __STDC__
  610. void MR_doPredicatesHelp(int inGuessBlock,Junction *alt1,Junction *alt2,int jtype,char *sub)
  611. #else
  612. void MR_doPredicatesHelp(inGuessBlock,alt1,alt2,jtype,sub)
  613.   int       inGuessBlock;
  614.   Junction  *alt1;
  615.   Junction  *alt2;
  616.   int       jtype;
  617.   char      *sub;
  618. #endif
  619. {
  620.     int         doMsg=0;
  621.     Predicate   *p1;
  622.     Predicate   *p2;
  623.     Junction    *parentRule=MR_nameToRuleBlk(alt1->rname);
  624.     if (inGuessBlock && WarningLevel <= 1) return;
  625.     /* let antlr give the usual error message */
  626.     if (alt1->predicate == NULL && alt2->predicate == NULL) return;
  627.     if ( (jtype == RuleBlk || jtype == aSubBlk)
  628.              && (alt1->predicate == NULL && alt2->predicate != NULL)) {
  629.         fprintf(stderr, ErrHdr, FileStr[parentRule->file],parentRule->line);
  630.         fprintf(stderr," warning: alt %d line %d and alt %d line %d of %sn%s%s%s",
  631.           alt1->altnum,
  632.           alt1->line,
  633.           alt2->altnum,
  634.           alt2->line,
  635.           sub,
  636.           "     These alts have ambig lookahead sequences resolved by a predicate forn",
  637.           "     the second choice. The second choice may not be reachable.n",
  638.           "     You may want to use a complementary predicate or rearrange the altsn"
  639.         );
  640.         return;
  641.     };
  642.     /* first do the easy comparison.  then do the hard one */
  643.     if (MR_comparePredicates(alt1->predicate,alt2->predicate)) {
  644.       if (jtype == aLoopBegin || jtype == aPlusBlk ) {
  645.         /* I'm not sure this code is reachable.
  646.            Predicates following a (...)+ or (...)* block are probably
  647.              considered validation predicates and therefore not
  648.              participate in the predication expression
  649.         */
  650.        fprintf(stderr, ErrHdr,FileStr[parentRule->file],parentRule->line);
  651.         fprintf(stderr," warning: %s of %s in rule %sn     (file %s alt %d line %d and alt %d line %d)n%s",
  652.           "the predicates used to disambiguate optional/exit paths of ",
  653.           sub,
  654.           CurRule,
  655.           FileStr[alt1->file],
  656.           alt1->altnum,
  657.           alt1->line,
  658.           alt2->altnum,
  659.           alt2->line,
  660.           "     are identical and have no resolving powern");
  661.       } else {
  662.      fprintf(stderr, ErrHdr, FileStr[parentRule->file], parentRule->line);
  663.         fprintf(stderr," warning: %s rule %sn     (file %s alt %d line %d and alt %d line %d)n%s",
  664.           "the predicates used to disambiguate",
  665.           CurRule,
  666.           FileStr[alt1->file],
  667.           alt1->altnum,
  668.           alt1->line,
  669.           alt2->altnum,
  670.           alt2->line,
  671.           "     are identical and have no resolving powern");
  672.       };
  673.     } else {
  674.       p1=predicate_dup_without_context(alt1->predicate);
  675.       p1=MR_unfold(p1);
  676.       MR_clearPredEntry(p1);
  677.       MR_simplifyInverted(p1,0);
  678.       p1=MR_predSimplifyALL(p1);
  679.       p2=predicate_dup_without_context(alt2->predicate);
  680.       p2=MR_unfold(p2);
  681.       MR_clearPredEntry(p2);
  682.       MR_simplifyInverted(p2,0);
  683.       p2=MR_predSimplifyALL(p2);
  684.       if (MR_comparePredicates(p1,p2)) {
  685.         if (jtype == aLoopBegin || jtype == aPlusBlk ) {
  686.           fprintf(stderr, ErrHdr, FileStr[parentRule->file], parentRule->line);
  687.           fprintf(stderr," warning: %s of %s in rule %sn     (file %s alt %d line %d and alt %d line %d)n%s%s",
  688.             "the predicates used to disambiguate optional/exit paths of ",
  689.             sub,
  690.             CurRule,
  691.             FileStr[alt1->file],
  692.             alt1->altnum,
  693.             alt1->line,
  694.             alt2->altnum,
  695.             alt2->line,
  696.             "     are identical when compared without context and may have non",
  697.             "     resolving power for some lookahead sequences.n");
  698.         } else {
  699.           fprintf(stderr, ErrHdr, FileStr[parentRule->file], parentRule->line);
  700.           fprintf(stderr," warning: %s rule %sn     (file %s alt %d line %d and alt %d line %d)n%s%s",
  701.             "the predicates used to disambiguate",
  702.             CurRule,
  703.             FileStr[alt1->file],
  704.             alt1->altnum,
  705.             alt1->line,
  706.             alt2->altnum,
  707.             alt2->line,
  708.             "     are identical when compared without context and may have non",
  709.             "     resolving power for some lookahead sequences.n");
  710.         };
  711.         if (InfoP) {
  712.           fprintf(output,"n#if 0nn");
  713.           fprintf(output,"The following predicates are identical when compared withoutn");
  714.           fprintf(output,"  lookahead context information.  For some ambiguous lookaheadn");
  715.           fprintf(output,"  sequences they may not have any power to resolve the ambiguity.n");
  716.           fprintf(output,"n");
  717.           fprintf(output,"Choice 1: %s  alt %d  line %d  file %snn",
  718.                   MR_ruleNamePlusOffset( (Node *) alt1),
  719.                   alt1->altnum,
  720.                   alt1->line,
  721.                   FileStr[alt1->file]);
  722.           fprintf(output,"  The original predicate for choice 1 with available context information:nn");
  723.           MR_dumpPred1(2,alt1->predicate,1);
  724.           fprintf(output,"  The predicate for choice 1 after expansion (but without context information):nn");
  725.           MR_dumpPred1(2,p1,0);
  726.           if (p1 == NULL) {
  727.             Predicate   *phelp;
  728.             fprintf(output,"  The predicate for choice 1 after expansion (but before simplification)nn");
  729.             phelp=predicate_dup_without_context(alt1->predicate);
  730.             phelp=MR_unfold(phelp);
  731.             MR_clearPredEntry(phelp);
  732.             MR_simplifyInverted(phelp,0);
  733.             phelp=MR_predSimplifyALLX(phelp,1);
  734.             MR_dumpPred1(2,phelp,0);
  735.             predicate_free(phelp);
  736.           };
  737.           fprintf(output,"n");
  738.           fprintf(output,"Choice 2: %s  alt %d  line %d  file %snn",
  739.                   MR_ruleNamePlusOffset( (Node *) alt2),
  740.                   alt2->altnum,
  741.                   alt2->line,
  742.                   FileStr[alt2->file]);
  743.           fprintf(output,"  The original predicate for choice 2 with available context information:nn");
  744.           MR_dumpPred1(1,alt2->predicate,1);
  745.           fprintf(output,"  The predicate for choice 2 after expansion (but without context information):nn");
  746.           MR_dumpPred1(1,p2,0);
  747.           if (p2 == NULL) {
  748.             Predicate   *phelp;
  749.             fprintf(output,"  The predicate for choice 2 after expansion (but before simplification)nn");
  750.             phelp=predicate_dup_without_context(alt2->predicate);
  751.             phelp=MR_unfold(phelp);
  752.             MR_clearPredEntry(phelp);
  753.             MR_simplifyInverted(phelp,0);
  754.             phelp=MR_predSimplifyALLX(phelp,1);
  755.             MR_dumpPred1(2,phelp,0);
  756.             predicate_free(phelp);
  757.           };
  758.           fprintf(output,"n#endifn");
  759.         };
  760.       } else if (MR_secondPredicateUnreachable(p1,p2)) {
  761.         if (jtype == aLoopBegin || jtype == aPlusBlk ) {
  762.           fprintf(stderr, ErrHdr, FileStr[parentRule->file], parentRule->line);
  763.           fprintf(stderr," warning: %s of %s in rule %sn     (file %s alt %d line %d and alt %d line %d)n%s%s",
  764.             "the predicate used to disambiguate the first choice of the optional/exit paths of ",
  765.             sub,
  766.             CurRule,
  767.             FileStr[alt1->file],
  768.             alt1->altnum,
  769.             alt1->line,
  770.             alt2->altnum,
  771.             alt2->line,
  772.             "     appears to "cover" the second predicate when compared without context.n",
  773.             "     The second predicate may have no resolving power for some lookahead sequences.n");
  774.         } else {
  775.           fprintf(stderr, ErrHdr, FileStr[parentRule->file], parentRule->line);
  776.           fprintf(stderr," warning: %s rule %sn     (file %s alt %d line %d and alt %d line %d)n%s%s",
  777.             "the predicate used to disambiguate the first choice of",
  778.             CurRule,
  779.             FileStr[alt1->file],
  780.             alt1->altnum,
  781.             alt1->line,
  782.             alt2->altnum,
  783.             alt2->line,
  784.             "     appears to "cover" the second predicate when compared without context.n",
  785.             "     The second predicate may have no resolving power for some lookahead sequences.n");
  786.         };
  787.         if (InfoP) {
  788.           fprintf(output,"n#if 0nn");
  789.           fprintf(output,"The first predicate appears to "cover" the second predicate when theyn");
  790.           fprintf(output,"  are compared without lookahead context information.  For some ambiguousn");
  791.           fprintf(output,"  lookahead sequences the second predicate may not have any power ton");
  792.           fprintf(output,"  resolve the ambiguity.n");
  793.           fprintf(output,"n");
  794.           fprintf(output,"Choice 1: %s  alt %d  line %d  file %snn",
  795.                   MR_ruleNamePlusOffset( (Node *) alt1),
  796.                   alt1->altnum,
  797.                   alt1->line,
  798.                   FileStr[alt1->file]);
  799.           fprintf(output,"  The original predicate for choice 1 with available context information:nn");
  800.           MR_dumpPred1(2,alt1->predicate,1);
  801.           fprintf(output,"  The predicate for choice 1 after expansion (but without context information):nn");
  802.           MR_dumpPred1(2,p1,0);
  803.           if (p1 == NULL) {
  804.             Predicate   *phelp;
  805.             fprintf(output,"  The predicate for choice 1 after expansion (but before simplification)nn");
  806.             phelp=predicate_dup_without_context(alt1->predicate);
  807.             phelp=MR_unfold(phelp);
  808.             MR_clearPredEntry(phelp);
  809.             MR_simplifyInverted(phelp,0);
  810.             phelp=MR_predSimplifyALLX(phelp,1);
  811.             MR_dumpPred1(2,phelp,0);
  812.             predicate_free(phelp);
  813.           };
  814.           fprintf(output,"n");
  815.           fprintf(output,"Choice 2: %s  alt %d  line %d  file %snn",
  816.                   MR_ruleNamePlusOffset( (Node *) alt2),
  817.                   alt2->altnum,
  818.                   alt2->line,
  819.                   FileStr[alt2->file]);
  820.           fprintf(output,"  The original predicate for choice 2 with available context information:nn");
  821.           MR_dumpPred1(1,alt2->predicate,1);
  822.           fprintf(output,"  The predicate for choice 2 after expansion (but without context information):nn");
  823.           MR_dumpPred1(1,p2,0);
  824.           if (p2 == NULL) {
  825.             Predicate   *phelp;
  826.             fprintf(output,"  The predicate for choice 2 after expansion (but before simplification)nn");
  827.             phelp=predicate_dup_without_context(alt2->predicate);
  828.             phelp=MR_unfold(phelp);
  829.             MR_clearPredEntry(phelp);
  830.             MR_simplifyInverted(phelp,0);
  831.             phelp=MR_predSimplifyALLX(phelp,1);
  832.             MR_dumpPred1(2,phelp,0);
  833.             predicate_free(phelp);
  834.           };
  835.           fprintf(output,"n#endifn");
  836.         };
  837.       };
  838.       predicate_free(p1);
  839.       predicate_free(p2);
  840.     };
  841. }
  842. static  int     totalOverflow=0;                /* MR9 */
  843. void
  844. #ifdef __STDC__
  845. HandleAmbiguity( Junction *block, Junction *alt1, Junction *alt2, int jtype )
  846. #else
  847. HandleAmbiguity( block, alt1, alt2, jtype )
  848. Junction *block;
  849. Junction *alt1;
  850. Junction *alt2;
  851. int jtype;
  852. #endif
  853. {
  854. unsigned **ftbl;
  855. set *fset, b;
  856. int i, numAmbig,n2;
  857. Tree *ambig=NULL, *t, *u;
  858. char *sub = "";
  859.     long    n;
  860.     int     thisOverflow=0;             /* MR9 */
  861.     long    set_deg_value;              /* MR10 */
  862.     long    threshhold;                 /* MR10 */
  863. require(block!=NULL, "NULL block");
  864. require(block->ntype==nJunction, "invalid block");
  865. /* These sets are used to constrain LL_k set, but are made CLL_k long anyway */
  866. fset = (set *) calloc(CLL_k+1, sizeof(set));
  867. require(fset!=NULL, "cannot allocate fset");
  868. ftbl = (unsigned **) calloc(CLL_k+1, sizeof(unsigned *));
  869. require(ftbl!=NULL, "cannot allocate ftbl");
  870. /* create constraint table and count number of possible ambiguities (use<=LL_k) */
  871. for (n=1,i=1; i<=CLL_k; i++)
  872. {
  873.           b = set_and(alt1->fset[i], alt2->fset[i]);
  874. /* MR9 */       set_deg_value = set_deg(b);
  875. /* MR10 */      if (n > 0) {
  876. /* MR10 */        threshhold = LONG_MAX / n;
  877. /* MR10 */        if (set_deg_value <= threshhold) {
  878. /* MR10 */        n *= set_deg_value;
  879. /* MR10 */        } else {
  880. /* MR10 */          n=LONG_MAX;
  881. /* MR9 */           if (totalOverflow == 0) {
  882. #if 0
  883.                       /* MR10 comment this out because it just makes users worry */
  884. /* MR9 */             warnNoFL("Overflow in computing number of possible ambiguities in HandleAmbiguityn");
  885. #endif
  886. /* MR9 */           };
  887. /* MR9 */           thisOverflow++;
  888. /* MR9 */           totalOverflow++;
  889. /* MR9 */         };
  890. /* MR10 */      } else {
  891. /* MR10 */        n *= set_deg_value;
  892. /* MR9 */       };
  893. fset[i] = set_dup(b);
  894. ftbl[i] = set_pdq(b);
  895. set_free(b);
  896. }
  897. switch ( jtype )
  898. {
  899. case aSubBlk: sub = "of (..) "; break;
  900. case aOptBlk: sub = "of {..} "; break;
  901. case aLoopBegin: sub = "of (..)* "; break;
  902. case aLoopBlk: sub = "of (..)* "; break;
  903. case aPlusBlk: sub = "of (..)+ "; break;
  904. case RuleBlk: sub = "of the rule itself "; break;
  905. default : sub = ""; break;
  906. }
  907. /* If the block is marked as a compressed lookahead only block, then
  908.  * simply return; ambiguity warning is given only at warning level 2.
  909.  */
  910. if ( block->approx>0 )
  911. {
  912. if ( ParseWithPredicates )
  913. {
  914.             if (alt1->predicate != NULL) predicate_free(alt1->predicate);  /* MR12 */
  915.             if (alt2->predicate != NULL) predicate_free(alt2->predicate);  /* MR12 */
  916.             require(MR_PredRuleRefStack.count == 0,"PredRuleRef stack not empty");
  917.            alt1->predicate = MR_find_predicates_and_supp((Node *)alt1->p1);
  918.             require(MR_PredRuleRefStack.count == 0,"PredRuleRef stack not empty");
  919.             require (MR_predicate_context_completed(alt1->predicate),"predicate alt 1 not completed");
  920.             alt1->predicate=MR_predSimplifyALL(alt1->predicate);
  921.             require(MR_PredRuleRefStack.count == 0,"PredRuleRef stack not empty");
  922.      alt2->predicate = MR_find_predicates_and_supp((Node *)alt2->p1);
  923.             require(MR_PredRuleRefStack.count == 0,"PredRuleRef stack not empty");
  924.             require (MR_predicate_context_completed(alt2->predicate),"predicate alt 2 not completed");
  925.             alt2->predicate=MR_predSimplifyALL(alt2->predicate);
  926.             MR_doPredicatesHelp(0,alt1,alt2,jtype,sub);
  927. if ( HoistPredicateContext
  928.                     && (alt1->predicate!=NULL||alt2->predicate!=NULL) )
  929. {
  930. verify_context(alt1->predicate);
  931. verify_context(alt2->predicate);
  932. }
  933. if ( HoistPredicateContext
  934.                      && (alt1->predicate!=NULL||alt2->predicate!=NULL)
  935.                      && WarningLevel>1 )
  936. ensure_predicates_cover_ambiguous_lookahead_sequences(alt1, alt2, sub, ambig);
  937. }
  938. if ( WarningLevel>1 )
  939. {
  940. fprintf(stderr, ErrHdr, FileStr[alt1->file], alt1->line);
  941. if ( jtype == aLoopBegin || jtype == aPlusBlk )
  942. fprintf(stderr, " warning: optional/exit path and alt(s) %sambiguous upon", sub);
  943. else
  944. fprintf(stderr, " warning(approx): alts %d and %d %sambiguous upon",
  945. alt1->altnum, alt2->altnum, sub);
  946. dumpAmbigMsg(fset, stderr, 0);
  947.             MR_traceAmbSource(fset,alt1,alt2);
  948. }
  949. for (i=1; i<=CLL_k; i++) set_free( fset[i] );
  950. free((char *)fset);
  951. for (i=1; i<=CLL_k; i++) free( (char *)ftbl[i] );
  952. free((char *)ftbl);
  953. return;
  954.     }
  955. /* if all sets have degree 1 for k<LL_k, then must be ambig upon >=1 permutation;
  956.  * don't bother doing full LL(k) analysis.
  957.  * (This "if" block handles the LL(1) case)
  958.  */
  959. n2 = 0;
  960. for (i=1; i<LL_k; i++) n2 += set_deg(alt1->fset[i])+set_deg(alt2->fset[i]);
  961.     /* here STARTS the special case in which the lookahead sets for alt1 and alt2
  962.        all have degree 1 for k<LL_k (including LL_k=1)
  963.     */
  964. if ( n2==2*(LL_k-1) )
  965. {
  966.         /* TJP: added to fix the case where LL(1) and syntactic predicates didn't
  967.          * work.  It now recognizes syntactic predicates, but does not like combo:
  968.          * LL(1)/syn/sem predicates. (10/24/93)
  969.          */
  970. if ( first_item_is_guess_block((Junction *)alt1->p1)!=NULL )
  971. {
  972. if ( WarningLevel==1 )
  973. {
  974. for (i=1; i<=CLL_k; i++) set_free( fset[i] );
  975. free((char *)fset);
  976. for (i=1; i<=CLL_k; i++) free( (char *)ftbl[i] );
  977. free((char *)ftbl);
  978. return;
  979. }
  980. fprintf(stderr, ErrHdr, FileStr[alt1->file], alt1->line);
  981. if ( jtype == aLoopBegin || jtype == aPlusBlk )
  982.    fprintf(stderr, " warning: optional/exit path and alt(s) %sambiguous upon", sub);
  983. else
  984.    fprintf(stderr, " warning: alts %d and %d %sambiguous upon",
  985.    alt1->altnum, alt2->altnum, sub);
  986. dumpAmbigMsg(fset, stderr, 0);
  987.             MR_traceAmbSource(fset,alt1,alt2);
  988. }
  989. ambig = NULL;
  990. if ( LL_k>1 ) ambig = make_tree_from_sets(alt1->fset, alt2->fset);
  991. if ( ParseWithPredicates )
  992. {
  993.            if (alt1->predicate != NULL) predicate_free(alt1->predicate);  /* MR12 */
  994.            if (alt2->predicate != NULL) predicate_free(alt2->predicate);  /* MR12 */
  995.            require(MR_PredRuleRefStack.count == 0,"PredRuleRef stack not empty");
  996.            alt1->predicate = MR_find_predicates_and_supp((Node *)alt1->p1);
  997.            require(MR_PredRuleRefStack.count == 0,"PredRuleRef stack not empty");
  998.            require (MR_predicate_context_completed(alt1->predicate),"predicate alt 1 not completed");
  999.            alt1->predicate=MR_predSimplifyALL(alt1->predicate);
  1000.            require(MR_PredRuleRefStack.count == 0,"PredRuleRef stack not empty");
  1001.         alt2->predicate = MR_find_predicates_and_supp((Node *)alt2->p1);
  1002.            require(MR_PredRuleRefStack.count == 0,"PredRuleRef stack not empty");
  1003.            require (MR_predicate_context_completed(alt2->predicate),"predicate alt 2 not completed");
  1004.            alt2->predicate=MR_predSimplifyALL(alt2->predicate);
  1005.            MR_doPredicatesHelp(0,alt1,alt2,jtype,sub);
  1006.    if ( HoistPredicateContext && (alt1->predicate!=NULL||alt2->predicate!=NULL) )
  1007.    {
  1008. verify_context(alt1->predicate);
  1009. verify_context(alt2->predicate);
  1010.    }
  1011.    if (HoistPredicateContext&&(alt1->predicate!=NULL||alt2->predicate!=NULL) && WarningLevel>1)
  1012.   ensure_predicates_cover_ambiguous_lookahead_sequences(alt1, alt2, sub, ambig);
  1013.    if ( WarningLevel == 1 &&
  1014.    (alt1->predicate!=NULL||alt2->predicate!=NULL))
  1015.    {
  1016.   for (i=1; i<=CLL_k; i++) set_free( fset[i] );
  1017.   free((char *)fset);
  1018.   for (i=1; i<=CLL_k; i++) free( (char *)ftbl[i] );
  1019.   free((char *)ftbl);
  1020.   Tfree(ambig);
  1021.   return;
  1022.    }
  1023. }
  1024. /* end TJP (10/24/93) */
  1025. fprintf(stderr, ErrHdr, FileStr[alt1->file], alt1->line);
  1026. if ( jtype == aLoopBegin || jtype == aPlusBlk )
  1027. fprintf(stderr, " warning: optional/exit path and alt(s) %sambiguous upon", sub);
  1028. else
  1029.    fprintf(stderr, " warning: alts %d and %d %sambiguous upon",
  1030.    alt1->altnum, alt2->altnum, sub);
  1031. if ( elevel == 3 && LL_k>1 )
  1032. {
  1033.    preorder(ambig);
  1034.    fprintf(stderr, "n");
  1035.           for (i=1; i<=CLL_k; i++) set_free( fset[i] );
  1036.         free((char *)fset);
  1037.    for (i=1; i<=CLL_k; i++) free( (char *)ftbl[i] );
  1038.    free((char *)ftbl);
  1039.    Tfree(ambig);
  1040.    return;
  1041.         };
  1042. Tfree(ambig);
  1043. dumpAmbigMsg(fset, stderr, 0);
  1044.         /* because this is a special case in which both alt1 and alt2 have
  1045.            lookahead sets of degree 1 for k<LL_k (including k=1) the linear
  1046.            lookahead style search is adequate
  1047.         */
  1048.         MR_traceAmbSource(fset,alt1,alt2);
  1049. for (i=1; i<=CLL_k; i++) set_free( fset[i] );
  1050. free((char *)fset);
  1051. for (i=1; i<=CLL_k; i++) free( (char *)ftbl[i] );
  1052. free((char *)ftbl);
  1053. return;
  1054. }
  1055.     /* here ENDS the special case in which the lookahead sets for alt1 and alt2
  1056.        all have degree 1 for k<LL_k (including LL_k=1)
  1057.     */
  1058. /* in case tree construction runs out of memory, set info to make good err msg */
  1059. CurAmbigAlt1 = alt1->altnum;
  1060. CurAmbigAlt2 = alt2->altnum;
  1061. CurAmbigbtype = sub;
  1062. CurAmbigfile = alt1->file;
  1063. CurAmbigline = alt1->line;
  1064. /* Don't do full LL(n) analysis if (...)? block because the block,
  1065.    by definition, defies LL(n) analysis.
  1066.    If guess (...)? block and ambiguous then don't remove anything from
  1067.    2nd alt to resolve ambig.
  1068.    Want to predict with LL sup 1 ( n ) decision not LL(n) if guess block
  1069.    since it is much cheaper than LL(n).  LL sup 1 ( n ) "covers" the LL(n)
  1070.    lookahead information.
  1071.    Note: LL(n) context cannot be computed for semantic predicates when
  1072.    followed by (..)?.
  1073.    If (..)? then we scream "AAAHHHH!  No LL(n) analysis will help"
  1074.        Is 'ambig' always defined if we enter this if?  I hope so
  1075.    because the 'ensure...()' func references it. TJP Nov 1993.
  1076.    */
  1077. if ( first_item_is_guess_block((Junction *)alt1->p1)!=NULL )
  1078. {
  1079. if ( ParseWithPredicates )
  1080. {
  1081.             if (alt1->predicate != NULL) predicate_free(alt1->predicate);  /* MR12 */
  1082.             if (alt2->predicate != NULL) predicate_free(alt2->predicate);  /* MR12 */
  1083.             require(MR_PredRuleRefStack.count == 0,"PredRuleRef stack not empty");
  1084.          alt1->predicate = MR_find_predicates_and_supp((Node *)alt1->p1);
  1085.             require(MR_PredRuleRefStack.count == 0,"PredRuleRef stack not empty");
  1086.             require (MR_predicate_context_completed(alt1->predicate),"predicate alt 1 not completed");
  1087.             alt1->predicate=MR_predSimplifyALL(alt1->predicate);
  1088.             require(MR_PredRuleRefStack.count == 0,"PredRuleRef stack not empty");
  1089.      alt2->predicate = MR_find_predicates_and_supp((Node *)alt2->p1);
  1090.             require(MR_PredRuleRefStack.count == 0,"PredRuleRef stack not empty");
  1091.             require (MR_predicate_context_completed(alt2->predicate),"predicate alt 2 not completed");
  1092.             alt2->predicate=MR_predSimplifyALL(alt2->predicate);
  1093.             MR_doPredicatesHelp(1,alt1,alt2,jtype,sub);
  1094. if ( HoistPredicateContext && (alt1->predicate!=NULL||alt2->predicate!=NULL) )
  1095. {
  1096. verify_context(alt1->predicate);
  1097. verify_context(alt2->predicate);
  1098. }
  1099. if ( HoistPredicateContext && (alt1->predicate!=NULL||alt2->predicate!=NULL) && WarningLevel>1 )
  1100. ensure_predicates_cover_ambiguous_lookahead_sequences(alt1, alt2, sub, ambig);
  1101. if ( WarningLevel==1 &&
  1102. (alt1->predicate!=NULL||alt2->predicate!=NULL))
  1103. {
  1104. for (i=1; i<=CLL_k; i++) set_free( fset[i] );
  1105. free((char *)fset);
  1106. for (i=1; i<=CLL_k; i++) free( (char *)ftbl[i] );
  1107. free((char *)ftbl);
  1108. return;
  1109. }
  1110. }
  1111. if ( WarningLevel>1 )
  1112. {
  1113. fprintf(stderr, ErrHdr, FileStr[alt1->file], alt1->line);
  1114. if ( jtype == aLoopBegin || jtype == aPlusBlk )
  1115. fprintf(stderr, " warning: optional/exit path and alt(s) %sambiguous upon", sub);
  1116. else
  1117. fprintf(stderr, " warning: alts %d and %d %sambiguous upon",
  1118. alt1->altnum, alt2->altnum, sub);
  1119. dumpAmbigMsg(fset, stderr, 0);
  1120.             MR_traceAmbSource(fset,alt1,alt2);
  1121. }
  1122. for (i=1; i<=CLL_k; i++) set_free( fset[i] );
  1123. free((char *)fset);
  1124. for (i=1; i<=CLL_k; i++) free( (char *)ftbl[i] );
  1125. free((char *)ftbl);
  1126. return;
  1127. }
  1128. /* Not resolved with (..)? block.  Do full LL(n) analysis */
  1129. /* ambig is the set of k-tuples truly in common between alt 1 and alt 2 */
  1130.     /* MR11 VerifyAmbig once used fset destructively */
  1131. ambig = VerifyAmbig(alt1, alt2, ftbl, fset, &t, &u, &numAmbig);
  1132. /* are all things in intersection really ambigs? */
  1133. if (thisOverflow ||  numAmbig < n )                     /* MR9 */
  1134. {
  1135. Tree *v;
  1136. /* remove ambig permutation from 2nd alternative to resolve ambig;
  1137.  * We want to compute the set of artificial tuples, arising from
  1138.  * LL sup 1 (n) compression, that collide with real tuples from the
  1139.  * 2nd alternative.  This is the set of "special case" tuples that
  1140.  * the LL sup 1 (n) decision template maps incorrectly.
  1141.  */
  1142.         /* when generating code in genExpr() it does
  1143.          *
  1144.          *      if ( genExprSets(j->fset) && !genExprTree(j->ftree)) {...
  1145.          *
  1146.          * Sooooo the j->ftree is the tree of alt2
  1147.          *               after removal of conflicts, not alt1 !
  1148.          */
  1149. if ( ambig!=NULL )
  1150. {
  1151.             /* at the top of ambig is an ALT node */
  1152. for (v=ambig->down; v!=NULL; v=v->right)
  1153. {
  1154. u = trm_perm(u, v);     /* remove v FROM u */
  1155. }
  1156. /* fprintf(stderr, "after rm alt2:"); preorder(u); fprintf(stderr, "n");*/
  1157. }
  1158. Tfree( t );
  1159. alt1->ftree = tappend(alt1->ftree, u);
  1160. alt1->ftree = tleft_factor(alt1->ftree);
  1161. }
  1162. if ( ambig==NULL )
  1163. {
  1164. for (i=1; i<=CLL_k; i++) set_free( fset[i] );
  1165. free((char *)fset);
  1166. for (i=1; i<=CLL_k; i++) free( (char *)ftbl[i] );
  1167. free((char *)ftbl);
  1168. return;
  1169. }
  1170. ambig = tleft_factor(ambig);
  1171. /* TJP:
  1172.  * At this point, we surely have an LL(k) ambiguity.  Check for predicates
  1173.  */
  1174. if ( ParseWithPredicates )
  1175. {
  1176.         if (alt1->predicate != NULL) predicate_free(alt1->predicate);  /* MR12 */
  1177.         if (alt2->predicate != NULL) predicate_free(alt2->predicate);  /* MR12 */
  1178.         require(MR_PredRuleRefStack.count == 0,"PredRuleRef stack not empty");
  1179.      alt1->predicate = MR_find_predicates_and_supp((Node *)alt1->p1);
  1180.         require(MR_PredRuleRefStack.count == 0,"PredRuleRef stack not empty");
  1181.         require (MR_predicate_context_completed(alt1->predicate),"predicate alt 1 not completed");
  1182.         alt1->predicate=MR_predSimplifyALL(alt1->predicate);
  1183.         require(MR_PredRuleRefStack.count == 0,"PredRuleRef stack not empty");
  1184. alt2->predicate = MR_find_predicates_and_supp((Node *)alt2->p1);
  1185.         require(MR_PredRuleRefStack.count == 0,"PredRuleRef stack not empty");
  1186.         require (MR_predicate_context_completed(alt2->predicate),"predicate alt 2 not completed");
  1187.         alt2->predicate=MR_predSimplifyALL(alt2->predicate);
  1188.         MR_doPredicatesHelp(0,alt1,alt2,jtype,sub);
  1189. if ( HoistPredicateContext && (alt1->predicate!=NULL||alt2->predicate!=NULL) )
  1190. {
  1191. verify_context(alt1->predicate);
  1192. verify_context(alt2->predicate);
  1193. }
  1194. if ( HoistPredicateContext && (alt1->predicate!=NULL||alt2->predicate!=NULL) && WarningLevel>1 )
  1195.    ensure_predicates_cover_ambiguous_lookahead_sequences(alt1, alt2, sub, ambig);
  1196. if ( WarningLevel==1 &&
  1197.   (alt1->predicate!=NULL||alt2->predicate!=NULL))
  1198. {
  1199. /* We found at least one pred for at least one of the alts;
  1200.  * If warnings are low, just return.
  1201.  */
  1202. Tfree(ambig);
  1203.             for (i=1; i<=CLL_k; i++) set_free( fset[i] );
  1204.          free((char *)fset);
  1205.      for (i=1; i<=CLL_k; i++) free( (char *)ftbl[i] );
  1206.      free((char *)ftbl);
  1207. return;
  1208. }
  1209. /* else we're gonna give a warning */
  1210. }
  1211. /* end TJP addition */
  1212. fprintf(stderr, ErrHdr, FileStr[alt1->file], alt1->line);
  1213. if ( jtype == aLoopBegin || jtype == aPlusBlk )
  1214. fprintf(stderr, " warning: optional/exit path and alt(s) %sambiguous upon", sub);
  1215. else
  1216. fprintf(stderr, " warning: alts %d and %d %sambiguous upon",
  1217. alt1->altnum, alt2->altnum, sub);
  1218. if ( elevel == 3 )
  1219. {
  1220. preorder(ambig->down);      /* <===== k>1 ambiguity message data */
  1221. fprintf(stderr, "n");
  1222. } else {
  1223.         MR_skipped_e3_report=1;
  1224.      dumpAmbigMsg(fset, stderr, 0);
  1225.     };
  1226.     MR_traceAmbSourceK(ambig,alt1,alt2);     /* <====== k>1 ambiguity aid */
  1227. Tfree(ambig);
  1228.     for (i=1; i<=CLL_k; i++) set_free( fset[i] );
  1229. free((char *)fset);
  1230. for (i=1; i<=CLL_k; i++) free( (char *)ftbl[i] );
  1231. free((char *)ftbl);
  1232. }
  1233. /* Don't analyze alpha block of (alpha)?beta; if (alpha)? then analyze
  1234.  * Return the 1st node of the beta block if present else return j.
  1235.  */
  1236. Junction *
  1237. #ifdef __STDC__
  1238. analysis_point( Junction *j )
  1239. #else
  1240. analysis_point( j )
  1241. Junction *j;
  1242. #endif
  1243. {
  1244. Junction *gblock;
  1245.     /* MR13b  When there was an action/predicate preceding a guess block
  1246.               the guess block became invisible at the analysis_point.
  1247.               first_item_is_guess_block accepts any kind of node,
  1248.               despite the fact that the formal is a junction.  But
  1249.               I don't want to have to change it all over the place
  1250.               until I know it works.
  1251.     */
  1252. if ( j->ntype != nJunction && j->ntype != nAction) return j;
  1253. gblock = first_item_is_guess_block((Junction *)j);
  1254. if ( gblock!=NULL )
  1255. {
  1256. Junction *past = gblock->end;
  1257. Junction *p;
  1258. require(past!=NULL, "analysis_point: no end block on (...)? block");
  1259. for (p=(Junction *)past->p1; p!=NULL; )
  1260. {
  1261. if ( p->ntype==nAction )
  1262. {
  1263. p=(Junction *)((ActionNode *)p)->next;
  1264. continue;
  1265. }
  1266. if ( p->ntype!=nJunction )
  1267. {
  1268.                 past->alpha_beta_guess_end=1;           /* MR14 */
  1269. return (Junction *)past->p1;
  1270. }
  1271. if ( p->jtype==EndBlk || p->jtype==EndRule )
  1272. {
  1273. return j;
  1274. }
  1275. /* MR6                                       */
  1276. /* MR6 A guess block is of the form "(alpha)? beta" or "(alpha)?".           */
  1277. /* MR6  When beta is omitted (second form) this means "(alpha)? alpha".       */
  1278. /* MR6  The program does not store another copy of alpha in this case.        */
  1279. /* MR6  During analysis when the program needs to know what follows the       */
  1280. /* MR6    guess clause.  It calls this routine.                               */
  1281. /* MR6                                                                        */
  1282. /* MR6      If it is of the form "(alpha)? beta" it returns a pointer to beta.*/
  1283. /* MR6                                                                        */
  1284. /* MR6      If it is of the form "(alpha)?" it returns a pointer to the guess */
  1285. /* MR6        block itself thereby reusing the junction tree.                 */
  1286. /* MR6                                                                        */
  1287. /* MR6  It works by searching the "next in sequence" chain (skipping actions) */
  1288. /* MR6    searching for a RuleRef or Token node.  (Those are the only 4 kinds */
  1289. /* MR6    of nodes: Junctions, RuleRef, Token, and Action.)                   */
  1290. /* MR6                                                                        */
  1291. /* MR6  This won't work for the special case "(alpha)? ()" because it has no  */
  1292. /* MR6    rule references or token nodes.  It eventually encounters a         */
  1293. /* MR6   junction of type EndBlk or EndRule and says to its caller: nothing  */
  1294. /* MR6    more here to analyze - must be of the form "(alpha)?".              */
  1295. /* MR6                                                                        */
  1296. /* MR6  In the case of "(alpha)? ()" it should return a pointer to "()"       */
  1297. /* MR6                                                                        */
  1298. /* MR6  I think.                                                              */
  1299. /* MR6                                                                        */
  1300. if ( p->jtype!=Generic) {                            /* MR6 */
  1301.                 past->alpha_beta_guess_end=1;                          /* MR14 */
  1302. return (Junction *)past->p1;                           /* MR6 */
  1303. };                                        /* MR6 */
  1304.     p=(Junction *)p->p1;
  1305. }
  1306. }
  1307. return j;
  1308. }
  1309. set
  1310. #ifdef __STDC__
  1311. First( Junction *j, int k, int jtype, int *max_k )
  1312. #else
  1313. First( j, k, jtype, max_k )
  1314. Junction *j;
  1315. int k;
  1316. int jtype;
  1317. int *max_k;
  1318. #endif
  1319. {
  1320. Junction *alt1, *alt2;
  1321. set a, rk, fCurBlk;
  1322. int savek;
  1323. int p1, p2;
  1324.     int     save_maintainBackTrace;
  1325. require(j->ntype==nJunction, "First: non junction passed");
  1326. /* C o m p u t e  F I R S T  s e t  w i t h  k  l o o k a h e a d */
  1327. fCurBlk = rk = empty;
  1328. for (alt1=j; alt1!=NULL; alt1 = (Junction *)alt1->p2 )
  1329. {
  1330. Junction *p = analysis_point((Junction *)alt1->p1);
  1331. REACH(p, k, &rk, alt1->fset[k]);
  1332. require(set_nil(rk), "rk != nil");
  1333. set_free(rk);
  1334. set_orin(&fCurBlk, alt1->fset[k]);
  1335. }
  1336. /* D e t e c t  A m b i g u i t i e s */
  1337. *max_k = 1;
  1338. for (p1=1,alt1=j; alt1!=NULL; alt1 = (Junction *)alt1->p2, p1++)
  1339. {
  1340. for (p2=1,alt2=(Junction *)alt1->p2; alt2!=NULL; alt2 = (Junction *)alt2->p2, p2++)
  1341. {
  1342. savek = k;
  1343. a = set_and(alt1->fset[k], alt2->fset[k]);
  1344. while ( !set_nil(a) )
  1345. {
  1346. /* if we have hit the max k requested, just give warning */
  1347. if ( j->approx==k ) {
  1348. }
  1349. if ( k==CLL_k )
  1350. {
  1351. #ifdef NOT_USED
  1352. *** int save_LL_k = LL_k;
  1353. *** int save_CLL_k = CLL_k;
  1354. *** /* Get new LL_k from interactive feature if enabled */
  1355. *** if ( AImode )
  1356. *** AmbiguityDialog(j, jtype, alt1, alt2, &CLL_k, &LL_k);
  1357. #endif
  1358. *max_k = CLL_k;
  1359.                     save_maintainBackTrace=MR_MaintainBackTrace;
  1360.                     if (AlphaBetaTrace) MR_MaintainBackTrace=0;
  1361. HandleAmbiguity(j, alt1, alt2, jtype);
  1362.                     MR_MaintainBackTrace=save_maintainBackTrace;
  1363. break;
  1364. }
  1365. else
  1366. {
  1367. Junction *p = analysis_point((Junction *)alt1->p1);
  1368. Junction *q = analysis_point((Junction *)alt2->p1);
  1369. k++; /* attempt ambig alts again with more lookahead */
  1370. REACH(p, k, &rk, alt1->fset[k]);
  1371. require(set_nil(rk), "rk != nil");
  1372. REACH(q, k, &rk, alt2->fset[k]);
  1373. require(set_nil(rk), "rk != nil");
  1374. set_free(a);
  1375. a = set_and(alt1->fset[k], alt2->fset[k]);
  1376. if ( k > *max_k ) *max_k = k;
  1377. }
  1378. }
  1379. set_free(a);
  1380. k = savek;
  1381. }
  1382. }
  1383. return fCurBlk;
  1384. }