home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / DMAKE38A.ZIP / INFER.C < prev    next >
C/C++ Source or Header  |  1992-01-23  |  24KB  |  823 lines

  1. /* RCS      -- $Header: /u2/dvadura/src/generic/dmake/src/RCS/infer.c,v 1.1 1992/01/24 03:27:21 dvadura Exp $
  2. -- SYNOPSIS -- infer how to make a target.
  3. -- 
  4. -- DESCRIPTION
  5. --    This file contains the code to infer a recipe, and possibly some new
  6. --    prerequisites for a target which dmake does not know how to make, or
  7. --    has no explicit recipe.
  8. --
  9. --    The inference fails if no path through the inference graph can be
  10. --    found by which we can make the target.
  11. -- 
  12. -- AUTHOR
  13. --      Dennis Vadura, dvadura@watdragon.uwaterloo.ca
  14. --      CS DEPT, University of Waterloo, Waterloo, Ont., Canada
  15. --
  16. -- COPYRIGHT
  17. --      Copyright (c) 1990 by Dennis Vadura.  All rights reserved.
  18. -- 
  19. --      This program is free software; you can redistribute it and/or
  20. --      modify it under the terms of the GNU General Public License
  21. --      (version 1), as published by the Free Software Foundation, and
  22. --      found in the file 'LICENSE' included with this distribution.
  23. -- 
  24. --      This program is distributed in the hope that it will be useful,
  25. --      but WITHOUT ANY WARRANTY; without even the implied warrant of
  26. --      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  27. --      GNU General Public License for more details.
  28. -- 
  29. --      You should have received a copy of the GNU General Public License
  30. --      along with this program;  if not, write to the Free Software
  31. --      Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  32. --
  33. -- LOG
  34. --     $Log: infer.c,v $
  35.  * Revision 1.1  1992/01/24  03:27:21  dvadura
  36.  * dmake Version 3.8, Initial revision
  37.  *
  38. */
  39.  
  40. #include "extern.h"
  41.  
  42. /* attributes that get transfered from the % start cell to the inferred
  43.  * cells. */
  44.  
  45. #define A_TRANSFER  (A_EPILOG | A_PRECIOUS | A_SILENT | A_SHELL | A_SETDIR |\
  46.              A_SEQ | A_LIBRARY | A_IGNORE | A_PROLOG | A_SWAP |\
  47.              A_NOSTATE )
  48.  
  49.  
  50. /* Define local static functions */
  51. static DFALINKPTR _dfa_subset  ANSI((DFALINKPTR, DFASETPTR));
  52. static void       _free_dfas   ANSI((DFALINKPTR));
  53. static int      _count_dots  ANSI((char *));
  54. static char *      _build_name  ANSI((char *, char *, char *));
  55. static void      _free_icells ANSI(());
  56. static ICELLPTR   _union_iset  ANSI((ICELLPTR, ICELLPTR));
  57. static ICELLPTR   _add_iset    ANSI((ICELLPTR,ICELLPTR,CELLPTR,DFALINKPTR,
  58.                      CELLPTR,int,int,char *,char *, int));
  59. static ICELLPTR   _derive_prerequisites ANSI((ICELLPTR, ICELLPTR *));
  60. static char *      _dump_inf_chain ANSI((ICELLPTR, int, int));
  61.  
  62. static int _prep = -1;    /* Integer value of Prep variable */
  63.  
  64.  
  65. PUBLIC void
  66. Infer_recipe( cp, setdirroot )/*
  67. ================================
  68.    Perform a breadth-first search of the inference graph and return if
  69.    possible an inferred set of prerequisites for making the current target.
  70. */
  71. CELLPTR cp;
  72. CELLPTR setdirroot;
  73. {
  74.    ICELLPTR nomatch, match;
  75.  
  76.    DB_ENTER("Infer_recipe");
  77.  
  78.    if( cp->ce_attr & A_NOINFER ) {DB_VOID_RETURN;}
  79.    if( _prep == -1 ) _prep = atoi(Prep);  /* _dfa_subset needs _prep */
  80.  
  81.    match = NIL(ICELL);
  82.    nomatch = _add_iset( NIL(ICELL), NIL(ICELL), NIL(CELL), NIL(DFALINK),
  83.             setdirroot, _prep+_count_dots(cp->CE_NAME), 0,
  84.             _strdup(cp->CE_NAME), NIL(char),
  85.             cp->ce_time != (time_t)0L);
  86.  
  87.    /* Make sure we try whole heartedly to infer at least one suffix */
  88.    if( nomatch->ic_dmax == 0 ) ++nomatch->ic_dmax;
  89.  
  90.    DB_EXECUTE( "inf", _dump_iset("nomatch",nomatch); );
  91.  
  92.    while( nomatch != NIL(ICELL) ) {
  93.       ICELLPTR new_nomatch = NIL(ICELL);
  94.       ICELLPTR ic, pmatch, mmatch;
  95.       CELLPTR  prereq;
  96.       int      first;
  97.  
  98.       for( ic=nomatch; ic != NIL(ICELL); ic=ic->ic_next ) {
  99.      int ipush = FALSE;
  100.  
  101.      if( ic->ic_dir ) ipush = Push_dir(ic->ic_dir, ic->ic_name, FALSE);
  102.      match = _union_iset(match, _derive_prerequisites(ic, &new_nomatch));
  103.      if( ipush ) Pop_dir(FALSE);
  104.       }
  105.  
  106.       DB_EXECUTE( "inf", _dump_iset("match",match); );
  107.       DB_EXECUTE( "inf", _dump_iset("nomatch",new_nomatch); );
  108.  
  109.       /* We have now deduced the two sets MATCH and NOMATCH.  MATCH holds the
  110.        * set of edges that we encountered that matched.  If this set is empty
  111.        * then we can apply transitive closure (if enabled) to the elements of
  112.        * NOMATCH to see if we can find some other method to make the target.
  113.        *
  114.        * If MATCH is non-empty, we have found a method for making the target.
  115.        * It is the shortest method for doing so (ie. uses fewest number of
  116.        * steps).  If MATCH contains more than one element then we have a
  117.        * possible ambiguity.
  118.        */
  119.       if( match == NIL(ICELL) ) {
  120.      nomatch = new_nomatch;
  121.      if( Transitive ) continue;
  122.      goto all_done;
  123.       }
  124.  
  125.       /* Ok, we have a set of possible matches in MATCH, we should check the
  126.        * set for ambiguity.  If more than one inference path exists of the
  127.        * same depth, then we may issue an ambigous inference error message.
  128.        *
  129.        * The message is suppressed if MATCH contains two elements and one of
  130.        * them is the empty-prerequisite-rule.  In this case we ignore the
  131.        * ambiguity and take the rule that infers the prerequisite.
  132.        *
  133.        * Also if there are any chains that rely on a non-existant prerequisite
  134.        * that may get made because it has a recipe then we prefer any that
  135.        * rely on existing final prerequisites over those that we have to make.
  136.        *
  137.        * NOTE:  May turn this around at some point.
  138.        */
  139.  
  140.       /* Split out those that have to be made from those that end in
  141.        * prerequisites that already exist. */
  142.       pmatch = mmatch = NIL(ICELL);
  143.       for(; match; match = ic ) {
  144.      ic = match->ic_next;
  145.      match->ic_next = NIL(ICELL);
  146.  
  147.      if( match->ic_exists )
  148.         pmatch = _union_iset(pmatch, match);
  149.      else
  150.         mmatch = _union_iset(mmatch, match);
  151.       }
  152.  
  153.       if( pmatch )
  154.      match = pmatch;
  155.       else
  156.      match = mmatch;
  157.  
  158.       /* Make sure it is unique */
  159.       if( match->ic_next != NIL(ICELL) ) {
  160.      int dump = (match->ic_next->ic_next != NIL(ICELL));
  161.  
  162.      /* Check for definite ambiguity */
  163.      if( !dump )
  164.         if( (match->ic_meta->ce_prq && match->ic_next->ic_meta->ce_prq) ||
  165.             (!match->ic_meta->ce_prq && !match->ic_next->ic_meta->ce_prq)  )
  166.            dump = TRUE;
  167.         else if(!match->ic_meta->ce_prq && match->ic_next->ic_meta->ce_prq )
  168.            match = match->ic_next;
  169.  
  170.      if( dump ) {
  171.         int count = 1;
  172.  
  173.         Continue = TRUE;
  174.         Error( "Ambiguous inference chains for target '%s'", cp->CE_NAME );
  175.         for( ic=match; ic; ic=ic->ic_next )
  176.            (void) _dump_inf_chain(ic, TRUE, count++);
  177.         Fatal( "resolve ambiguity before proceeding.");
  178.         /*NOTREACHED*/
  179.      }
  180.       }
  181.  
  182.       /* MATCH now points at the derived recipe.  We must now take cp, and
  183.        * construct the correct graph so that the make may proceed. */
  184.  
  185.       if( Verbose & V_INFER ) {
  186.      char *tmp = _dump_inf_chain(match, TRUE, FALSE);
  187.      printf("%s:  Inferring prerequistes and recipes using:\n%s:  ... %s\n",
  188.          Pname, Pname, tmp );
  189.      FREE(tmp);
  190.       }
  191.  
  192.       pmatch = NIL(ICELL);
  193.       prereq = NIL(CELL);
  194.       first  = TRUE;
  195.  
  196.       while( match ) {
  197.          CELLPTR infcell=NIL(CELL);
  198.  
  199.      /* Compute the inferred prerequisite first. */
  200.      if( match->ic_name ) {
  201.         if( match->ic_meta )
  202.            infcell = Def_cell( match->ic_name );
  203.         else
  204.            infcell = cp;
  205.  
  206.         infcell->ce_flag |= F_TARGET;
  207.  
  208.         if( infcell != cp ) {
  209.            infcell->ce_flag |= F_INFER;
  210.            if( !first ) infcell->ce_flag |= F_REMOVE;
  211.         }
  212.  
  213.         if( !match->ic_flag )
  214.            infcell->ce_attr |= A_NOINFER;
  215.  
  216.         first = FALSE;
  217.      }
  218.  
  219.      /* Add global prerequisites from previous rule if there are any and
  220.       * the recipe. */
  221.      if( pmatch ) {
  222.         CELLPTR imeta = pmatch->ic_meta;
  223.         LINKPTR lp;
  224.  
  225.         infcell->ce_per   = pmatch->ic_dfa->dl_per;
  226.         infcell->ce_attr |= (imeta->ce_attr & A_TRANSFER);
  227.  
  228.         if( !(infcell->ce_flag & F_RULES) ) {
  229.            infcell->ce_flag |= (imeta->ce_flag&(F_SINGLE|F_GROUP))|F_RULES;
  230.            infcell->ce_recipe = imeta->ce_recipe;
  231.         }
  232.  
  233.         pmatch->ic_dfa->dl_per = NIL(char);
  234.  
  235.         /* If infcell already had a directory set then modify it based on
  236.          * whether it was the original cell or some intermediary. */
  237.         if( imeta->ce_dir )
  238.            if( infcell->ce_dir && infcell == cp ) {
  239.           /* cp->ce_dir was set and we have pushed the directory prior
  240.            * to calling this routine.  We should therefore pop it and
  241.            * push the new concatenated directory required by the
  242.            * inference. */
  243.           infcell->ce_dir=_strdup(Build_path(infcell->ce_dir,
  244.                              imeta->ce_dir));
  245.            }
  246.            else
  247.           infcell->ce_dir = imeta->ce_dir;
  248.  
  249.         for( lp=imeta->ce_indprq; lp != NIL(LINK); lp=lp->cl_next ) {
  250.            char    *name = lp->cl_prq->CE_NAME;
  251.            CELLPTR tcp;
  252.  
  253.            name = _build_name( cp->CE_NAME, name, infcell->ce_per );
  254.            tcp  = Def_cell( name );
  255.            tcp->ce_flag |= F_REMOVE;
  256.            Add_prerequisite( infcell, tcp, FALSE, FALSE );
  257.  
  258.            if( Verbose & V_INFER )
  259.           printf( "%s:  Inferred indirect prerequisite [%s]\n",
  260.               Pname, name );
  261.            FREE(name);
  262.         }
  263.      }
  264.  
  265.      /* Add the previous cell as the prerequisite */
  266.      if( prereq )
  267.         (Add_prerequisite(infcell,prereq,FALSE,FALSE))->cl_flag |= F_TARGET;
  268.  
  269.      pmatch = match;
  270.      prereq = infcell;
  271.      match  = match->ic_parent;
  272.       }
  273.  
  274.       DB_PRINT("inf", ("Terminated due to a match"));
  275.       break;
  276.    }
  277.  
  278. all_done:
  279.    _free_icells();
  280.  
  281.    DB_VOID_RETURN;
  282. }
  283.  
  284.  
  285. static ICELLPTR
  286. _derive_prerequisites( ic, nnmp )/*
  287. ===================================
  288.    Take a cell and derive a set of prerequisites from the cell.  Categorize
  289.    them into those that MATCH (ie. those that we found in the file system),
  290.    and those that do not match NOMATCH that we may possibly have a look at
  291.    later.  When we process the next level of the breadth-first search.
  292.    
  293.    Once MATCH is non-empty we will stop inserting elements into NOMATCH
  294.    since we know that either MATCH is successful and unique or it will
  295.    issue an ambiguity error.  We will never go on to look at elements
  296.    in NOMATCH after wards. */
  297. ICELLPTR ic;
  298. ICELLPTR *nnmp;
  299. {
  300.    ICELLPTR   match = NIL(ICELL);
  301.    DFALINKPTR pdfa;
  302.    DFALINKPTR dfas;
  303.  
  304.    DB_ENTER("_derive_prerequisites");
  305.  
  306.    /* If none of the inference nodes match then forget about the inference.
  307.     * The user did not tell us how to make such a target.  We also stop the
  308.     * Inference if the new set of DFA's is a proper subset of a previous
  309.     * subset and it's PREP counts exceed the value of Prep.
  310.     */
  311.    dfas = _dfa_subset( Match_dfa(ic->ic_name), &ic->ic_dfastack );
  312.  
  313.    DB_EXECUTE("inf", _dump_dfa_stack(dfas, &ic->ic_dfastack); );
  314.  
  315.    /* Ok, we have nothing here to work with so return an empty cell. */
  316.    if( dfas == NIL(DFALINK) ) {
  317.       DB_PRINT( "mem", ("%s:<- mem %ld",ic->ic_name, (long)coreleft()));
  318.       DB_PRINT( "inf", ("<<< Exit, no dfas, cp = %04x", NIL(CELL)) );
  319.       DB_RETURN( NIL(ICELL) );
  320.    }
  321.  
  322.    /* Save the dfas, we are going to use on the stack for this cell. */
  323.    ic->ic_dfastack.df_set = dfas;
  324.  
  325.    /* Run through the %-meta cells, build the prerequisite cells.  For each
  326.     * %-meta go through it's list of edges and try to use each in turn to
  327.     * decuce a likely prerequisite.  We perform a breadth-first search
  328.     * matching the first path that results in a unique method for making the
  329.     * target. */
  330.    for( pdfa = dfas; pdfa != NIL(DFALINK); pdfa = pdfa->dl_next ) {
  331.       LINK tl;
  332.       LINKPTR edge;
  333.       CELLPTR pmeta;
  334.  
  335.       pmeta = pdfa->dl_meta;
  336.       DB_PRINT( "inf", ("Using dfa:  [%s]", pmeta->CE_NAME) );
  337.  
  338.       /* If the %-meta is a singleton meta then deal with it differently from
  339.        * the case when it is a bunch of %-meta's found on the original entries
  340.        * prerequisite list. */
  341.       if( pmeta->ce_flag & F_MULTI )
  342.      edge = pmeta->ce_prq;
  343.       else {
  344.      tl.cl_prq = pmeta;
  345.      tl.cl_next = NIL(LINK);
  346.      edge = &tl;
  347.       }
  348.  
  349.       /* Now run through the list of prerequisite edge's for the %-meta. */
  350.       for( ; edge != NIL(LINK); edge = edge->cl_next ) {
  351.      HASHPTR  thp;        /* temporary hash table pointer        */
  352.      HASH     iprqh;    /* hash cell for new prerequisite    */
  353.      CELL     iprq;        /* inferred prerequisite to look for    */
  354.      CELLPTR  idirroot;    /* Inferred prerequisite root        */
  355.      CELLPTR  nidirroot;    /* Inferred prerequisite root        */
  356.      STRINGPTR ircp;    /* Inferred prerequisites recipe    */
  357.      char     *idir;    /* directory to CD to.            */
  358.      int      ipush = 0;    /* flag for push on inferred prereq     */
  359.      char     *name = NIL(char);         /* prerequisite name    */
  360.      CELLPTR  meta = edge->cl_prq;
  361.      int      dmax_fix;
  362.      int      trans;
  363.      int      noinf;
  364.      int      exists;
  365.      
  366.      if( meta->ce_prq ) name = meta->ce_prq->cl_prq->CE_NAME;
  367.  
  368.      DB_PRINT( "inf", ("Trying edge from [%s] to [%s] for [%s]",
  369.            meta->CE_NAME, name?name:"(nil)", ic->ic_name) );
  370.  
  371.      /* Set the temp CELL used for building prerequisite candidates to
  372.       * all zero so that we don't have to keep initializing all the
  373.       * fields. */
  374.      {
  375.         register char *s = (char *) &iprq;
  376.         register int   n = sizeof(CELL);
  377.         while( n ) { *s++ = '\0'; n--; }
  378.      }
  379.  
  380.      nidirroot = idirroot = ic->ic_setdirroot;
  381.      iprq.ce_name = &iprqh;
  382.  
  383.      if( name ) {
  384.         /* Build the prerequisite name from the %-meta prerequisite given
  385.          * for the %-meta rule. */
  386.         iprqh.ht_name = _build_name( ic->ic_name, name, pdfa->dl_per );
  387.         if((dmax_fix = (_count_dots(name)-_count_dots(meta->CE_NAME))) < 0)
  388.            dmax_fix = 0;
  389.  
  390.         if( !strcmp(ic->ic_name, iprqh.ht_name) ||
  391.         (_count_dots(iprqh.ht_name) > ic->ic_dmax + dmax_fix) ) {
  392.            FREE( iprqh.ht_name );
  393.            continue;
  394.         }
  395.  
  396.         DB_PRINT( "inf", ("Checking prerequisite [%s]", iprqh.ht_name) );
  397.  
  398.         /* See if the prerequisite CELL has been previously defined.  If
  399.          * it has, then make a copy of it into iprq, and use it to try
  400.          * the inference.  We make the copy so that we don't modify the
  401.          * stat of the inferred cell if the inference fails.
  402.          */
  403.         thp = Get_name( iprqh.ht_name, Defs, FALSE );
  404.         if(thp != NIL(HASH)) {
  405.            iprq = *thp->CP_OWNR;
  406.            ircp = iprq.ce_recipe;
  407.         }
  408.         else
  409.            ircp = NIL(STRING);
  410.      }
  411.      else
  412.         iprqh.ht_name = NIL(char);
  413.  
  414.  
  415.      /* If the %-meta has a .SETDIR set then we change to the new
  416.       * directory prior to performing the stat of the new prerequisite.
  417.       * If the change of directory fails then the rule is droped from
  418.       * further consideration.
  419.       */
  420.      if( iprq.ce_dir ) {
  421.         if( ipush = Push_dir(iprq.ce_dir, iprqh.ht_name, TRUE) ) {
  422.            nidirroot = thp->CP_OWNR;
  423.            idir      = Pwd;
  424.         }
  425.         else {
  426.            if( iprqh.ht_name ) FREE( iprqh.ht_name );
  427.            continue;
  428.         }
  429.      }
  430.      else
  431.         idir = NIL(char);
  432.  
  433.  
  434.      /* Stat the inferred prerequisite.
  435.       */
  436.      if( name ) {
  437.         if( Verbose & V_INFER )
  438.            printf( "%s:  Trying prerequisite [%s] for [%s]\n", Pname,
  439.                iprqh.ht_name, ic->ic_name );
  440.  
  441.         if( !(iprq.ce_flag & F_STAT) ) Stat_target(&iprq, FALSE);
  442.      }
  443.  
  444.  
  445.      /* If the STAT succeeded or if the prerequisite has a recipe for
  446.       * making it then it's a match and a candidate for getting infered.
  447.       * Otherwise it is not a match, and we cannot yet tell if it is
  448.       * going to be a successful path to follow, so we save it for
  449.       * later consideration.
  450.       */
  451.      noinf = ((Glob_attr)&A_NOINFER);
  452.      if( meta->ce_prq )
  453.         noinf |= ((meta->ce_prq->cl_prq->ce_attr)&A_NOINFER);
  454.      trans = Transitive || !noinf;
  455.      exists = (iprq.ce_time != (time_t)0L);
  456.  
  457.      if( exists || (ircp != NIL(STRING)) || !name ) {
  458.         match = _add_iset( match, ic, meta, pdfa, idirroot, ic->ic_dmax,
  459.                    trans, iprq.ce_name->ht_name, idir, exists );
  460.         DB_PRINT("inf",("Added to MATCH %s",iprq.ce_name->ht_name));
  461.      }
  462.      else if( !noinf && match == NIL(ICELL) ) {
  463.         *nnmp = _add_iset( *nnmp, ic, meta, pdfa, nidirroot, ic->ic_dmax,
  464.                    trans, iprq.ce_name->ht_name, idir, exists );
  465.         DB_PRINT("inf",("Added to NOMATCH %s",iprq.ce_name->ht_name));
  466.      }
  467.  
  468.      /* If we pushed a directory for the inferred prerequisite then
  469.       * pop it.
  470.       */
  471.      if( ipush ) Pop_dir(FALSE);
  472.      if( iprqh.ht_name ) FREE(iprqh.ht_name);
  473.       }
  474.    }
  475.  
  476.    DB_RETURN(match);
  477. }
  478.  
  479.  
  480. static char *
  481. _build_name( tg, meta, per )
  482. char *tg;
  483. char *meta;
  484. char *per;
  485. {
  486.    char    *name;
  487.  
  488.    name = Apply_edit( meta, "%", per, FALSE, FALSE );
  489.    if( strchr(name, '$') ) {
  490.       HASHPTR m_at;
  491.       char *tmp;
  492.  
  493.       m_at = Def_macro( "@", tg, M_MULTI );
  494.       tmp = Expand( name );
  495.  
  496.       if( m_at->ht_value != NIL(char) ) {
  497.      FREE( m_at->ht_value );
  498.      m_at->ht_value = NIL(char);
  499.       }
  500.  
  501.       if( name != meta ) FREE( name );
  502.       name = tmp;
  503.    }
  504.    else if( name == meta )
  505.       name = _strdup( name );
  506.  
  507.    return(name);
  508. }
  509.  
  510.  
  511. static DFALINKPTR
  512. _dfa_subset( pdfa, stack )/*
  513. ============================
  514.    This is the valid DFA subset computation.  Whenever a CELL has a Match_dfa
  515.    subset computed this algorithm is run to see if any of the previously
  516.    computed sets on the DFA stack are proper subsets of the new set.  If they
  517.    are, then any elements of the matching subset whose Prep counts exceed
  518.    the allowed maximum given by Prep are removed from the computed DFA set,
  519.    and hence from consideration, thereby cutting off the cycle in the
  520.    inference graph. */
  521. DFALINKPTR       pdfa;
  522. register DFASETPTR stack;
  523. {
  524.    register DFALINKPTR element;
  525.    DFALINKPTR          nelement;
  526.  
  527.    DB_ENTER( "_dfa_subset" );
  528.  
  529.    for(; pdfa != NIL(DFALINK) && stack != NIL(DFASET); stack = stack->df_next) {
  530.       int subset = TRUE;
  531.  
  532.       for( element=stack->df_set; subset && element != NIL(DFALINK);
  533.            element=element->dl_next ) {
  534.          register DFALINKPTR subel;
  535.  
  536.      for( subel = pdfa;
  537.           subel != NIL(DFALINK) && (subel->dl_meta != element->dl_meta);
  538.           subel = subel->dl_next );
  539.  
  540.      if( subset = (subel != NIL(DFALINK)) ) element->dl_member = subel;
  541.       }
  542.  
  543.       if( subset )
  544.      for( element=stack->df_set; element != NIL(DFALINK);
  545.           element=element->dl_next ) {
  546.         DFALINKPTR mem = element->dl_member;
  547.         int        npr = element->dl_prep + 1;
  548.  
  549.         if( npr > _prep )
  550.            mem->dl_delete++;
  551.         else
  552.            mem->dl_prep = npr;
  553.      }
  554.    }
  555.  
  556.    for( element = pdfa; element != NIL(DFALINK); element = nelement ) {
  557.       nelement = element->dl_next;
  558.  
  559.       if( element->dl_delete ) {
  560.      /* A member of the subset has a PREP count equal to PREP, so
  561.       * it should not be considered further in the inference, hence
  562.       * we remove it from the doubly linked set list */
  563.      if( element == pdfa )
  564.         pdfa = element->dl_next;
  565.      else
  566.         element->dl_prev->dl_next = element->dl_next;
  567.  
  568.      if( element->dl_next != NIL(DFALINK) )
  569.         element->dl_next->dl_prev = element->dl_prev;
  570.  
  571.      DB_PRINT("inf", ("deleting dfa [%s]", element->dl_meta->CE_NAME));
  572.      FREE( element->dl_per );
  573.      FREE( element );
  574.       }
  575.    }
  576.  
  577.    DB_RETURN( pdfa );
  578. }
  579.  
  580.  
  581.  
  582. static void
  583. _free_dfas( chain )/*
  584. =====================
  585.    Free the list of DFA's constructed by Match_dfa, and linked together by
  586.    LINK cells.  FREE the % value as well, as long as it isn't NIL. */
  587. DFALINKPTR chain;
  588. {
  589.    register DFALINKPTR tl;
  590.  
  591.    DB_ENTER( "_free_dfas" );
  592.  
  593.    for( tl=chain; tl != NIL(DFALINK); chain = tl ) {
  594.       tl = tl->dl_next;
  595.  
  596.       DB_PRINT( "inf", ("Freeing DFA [%s], %% = [%s]", chain->dl_meta->CE_NAME,
  597.                 chain->dl_per) );
  598.  
  599.       if( chain->dl_per != NIL(char) ) FREE( chain->dl_per );
  600.       FREE( chain );
  601.    }
  602.  
  603.    DB_VOID_RETURN;
  604. }
  605.  
  606.  
  607. static int
  608. _count_dots( name )/*
  609. =====================*/
  610. char *name;
  611. {
  612.    register char *p;
  613.    register int  i = 0;
  614.  
  615.    for( p = name; *p; p++ ) if(*p == '.') i++;
  616.  
  617.    return( i );
  618. }
  619.  
  620.  
  621. static ICELLPTR _icells = NIL(ICELL);
  622. #ifdef DBUG
  623. static int _icell_cost = 0;
  624. #endif
  625.  
  626. static ICELLPTR
  627. _add_iset( iset, parent, meta, dfa, setdirroot, dmax, noinf, name, dir, exists)
  628. ICELLPTR   iset;
  629. ICELLPTR   parent;
  630. CELLPTR    meta;
  631. DFALINKPTR dfa;
  632. CELLPTR    setdirroot;
  633. int       dmax;
  634. int       noinf;
  635. char      *name;
  636. char      *dir;
  637. int       exists;
  638. {
  639.    ICELLPTR icell;
  640.  
  641.    DB_ENTER("_add_iset");
  642.    TALLOC(icell, 1, ICELL);
  643.  
  644.    DB_EXECUTE("inf", _icell_cost+=(sizeof(ICELL)+strlen(dir?dir:"")+strlen(name?name:"")+2););
  645.  
  646.    icell->ic_meta = meta;
  647.    icell->ic_dfa  = dfa;
  648.    icell->ic_setdirroot = setdirroot;
  649.  
  650.    if( parent ) icell->ic_dfastack.df_next = &parent->ic_dfastack;
  651.  
  652.    icell->ic_dmax = dmax;
  653.    icell->ic_dir = _strdup(dir);
  654.    icell->ic_name = _strdup(name);
  655.    icell->ic_parent = parent;
  656.    icell->ic_next = iset;
  657.    icell->ic_flag = noinf;
  658.    icell->ic_exists = exists;
  659.  
  660.    icell->ic_link = _icells;
  661.    _icells = icell;
  662.  
  663.    DB_RETURN(icell);
  664. }
  665.  
  666.  
  667. static void
  668. _free_icells()
  669. {
  670.    register ICELLPTR ic;
  671.  
  672.    DB_ENTER("_free_icells");
  673.  
  674.    for( ; _icells; _icells = ic ) {
  675.       ic = _icells->ic_link;
  676.  
  677.       _free_dfas(_icells->ic_dfastack.df_set);
  678.       if( _icells->ic_dir ) FREE(_icells->ic_dir);
  679.       if( _icells->ic_name) FREE(_icells->ic_name);
  680.       FREE(_icells);
  681.    }
  682.  
  683.    DB_PRINT("inf",("Used %d memory for icells",_icell_cost));
  684.    DB_EXECUTE("inf", _icell_cost=0; );
  685.  
  686.    DB_VOID_RETURN;
  687. }
  688.  
  689.  
  690. static ICELLPTR
  691. _union_iset( iset, uset )
  692. ICELLPTR iset;
  693. ICELLPTR uset;
  694. {
  695.    register ICELLPTR ic;
  696.  
  697.    if( iset == NIL(ICELL) ) return(uset);
  698.  
  699.    for( ic=iset; ic->ic_next != NIL(ICELL); ic=ic->ic_next );
  700.    ic->ic_next = uset;
  701.  
  702.    return(iset);
  703. }
  704.  
  705.  
  706. static char *
  707. _dump_inf_chain( ip, flag, print )/*
  708. ====================================*/
  709. ICELLPTR ip;
  710. int      flag;
  711. int     print;
  712. {
  713.    char *tmp;
  714.  
  715.    if( ip == NIL(ICELL) ) return(NIL(char));
  716.  
  717.    tmp = _dump_inf_chain(ip->ic_parent, FALSE, FALSE);
  718.  
  719.    if( ip->ic_meta ) {
  720.       tmp = _strjoin(tmp, "(", -1, TRUE);
  721.       tmp = _strjoin(tmp, ip->ic_meta->CE_NAME, -1, TRUE);
  722.  
  723.       if( ip->ic_dir && !*ip->ic_dir ) {
  724.      tmp = _strjoin(tmp, "[", -1, TRUE);
  725.      if( strncmp(Makedir,ip->ic_dir, strlen(Makedir)) )
  726.         tmp = _strjoin(tmp, ip->ic_dir, -1, TRUE);
  727.      else
  728.         tmp = _strjoin(tmp, ip->ic_dir+strlen(Makedir)+1, -1, TRUE);
  729.      tmp = _strjoin(tmp, "]", -1, TRUE);
  730.       }
  731.       tmp = _strjoin(tmp, (ip->ic_name)?") -->":")", -1, TRUE);
  732.    }
  733.    
  734.    if( ip->ic_name ) tmp = _strapp( tmp, ip->ic_name );
  735.  
  736.    if( flag && ip->ic_meta->ce_prq) {
  737.       tmp = _strjoin(tmp, "(", -1, TRUE);
  738.       tmp = _strjoin(tmp, ip->ic_meta->ce_prq->cl_prq->CE_NAME, -1, TRUE);
  739.       tmp = _strjoin(tmp, ")", -1, TRUE);
  740.    }
  741.  
  742.    if( print ) {
  743.       fprintf( stderr, "%s:  %2d. %s\n", Pname, print, tmp );
  744.       FREE(tmp);
  745.       tmp = NIL(char);
  746.    }
  747.  
  748.    return(tmp);
  749. }
  750.  
  751.  
  752. #ifdef DBUG
  753. _dump_dfa_stack(dfas, dfa_stack)
  754. DFALINKPTR dfas;
  755. DFASETPTR  dfa_stack;
  756. {
  757.    register DFALINKPTR pdfa;
  758.    char      *tmp = NIL(char);
  759.    DFASETPTR ds;
  760.  
  761.    for( pdfa = dfas; pdfa != NIL(DFALINK); pdfa = pdfa->dl_next )
  762.       tmp = _strapp( tmp, pdfa->dl_meta->CE_NAME );
  763.  
  764.    tmp = _strapp( tmp, ":: {" );
  765.    for( ds = dfa_stack; ds != NIL(DFASET); ds = ds->df_next ) {
  766.       tmp = _strapp( tmp, "[" );
  767.       for( pdfa = ds->df_set; pdfa != NIL(DFALINK); pdfa = pdfa->dl_next )
  768.      tmp = _strapp( tmp, pdfa->dl_meta->CE_NAME );
  769.       tmp = _strapp( tmp, "]" );
  770.    }
  771.    tmp = _strapp( tmp, "}" );
  772.  
  773.    printf( "DFA set and stack contents:\n%s\n", tmp );
  774.    FREE(tmp);
  775. }
  776.  
  777.  
  778. _dump_iset( name, iset )
  779. char     *name;
  780. ICELLPTR iset;
  781. {
  782.    int cell = 0;
  783.  
  784.    printf( "**** ISET for %s\n", name );
  785.    for( ; iset != NIL(ICELL); iset = iset->ic_next ){
  786.       printf( "cell %d\n", cell++ );
  787.       if( iset->ic_meta )
  788.      printf( "edge: %s --> %s\n", iset->ic_meta->CE_NAME,
  789.          iset->ic_meta->ce_prq ?
  790.          iset->ic_meta->ce_prq->cl_prq->CE_NAME :
  791.          "(nil)" );
  792.       else
  793.      printf( "edge: (nil)\n" );
  794.  
  795.       if( iset->ic_dfa )
  796.      printf( "dfa: %s\n", iset->ic_dfa->dl_meta->CE_NAME );
  797.       else
  798.      printf( "dfa: (nil)\n" );
  799.  
  800.       printf( "sdr: %04x\n", iset->ic_setdirroot );
  801.       _dump_dfa_stack(iset->ic_dfastack.df_set, &iset->ic_dfastack);
  802.  
  803.       printf( "dmax: %d\n", iset->ic_dmax );
  804.       printf( "name: %s\n", iset->ic_name );
  805.       printf( "dir:  %s\n", iset->ic_dir?iset->ic_dir:"(nil)" );
  806.  
  807.       printf( "parent: " );
  808.       if( iset->ic_parent )
  809.     if( iset->ic_parent->ic_meta )
  810.        printf( "%s --> %s\n",
  811.                iset->ic_parent->ic_meta->CE_NAME,
  812.            iset->ic_parent->ic_meta->ce_prq ?
  813.            iset->ic_parent->ic_meta->ce_prq->cl_prq->CE_NAME :
  814.            "(nil)" );
  815.     else
  816.        printf( "(nil)\n" );
  817.       else
  818.      printf( "(nil)\n" );
  819.    }
  820.    printf( "==================================\n" );
  821. }
  822. #endif
  823.