gnu_regex.c
上传用户:qunlip
上传日期:2007-01-04
资源大小:203k
文件大小:158k
源码类别:

代理服务器

开发平台:

Visual C++

  1.   DEBUG_PRINT2 ("                    size: %dn", fail_stack.size);
  2.   assert (fail_stack.avail >= NUM_NONREG_ITEMS);
  3.   DEBUG_POP (&failure_id);
  4.   DEBUG_PRINT2 ("  Popping failure id: %un", failure_id);
  5.   /* If the saved string location is NULL, it came from an
  6.      on_failure_keep_string_jump opcode, and we want to throw away the
  7.      saved NULL, thus retaining our current position in the string.  */
  8.   string_temp = POP_FAILURE_ITEM ();
  9.   if (string_temp != NULL)
  10.     str = (const char *) string_temp;
  11.   DEBUG_PRINT2 ("  Popping string 0x%x: `", str);
  12.   DEBUG_PRINT_DOUBLE_STRING (str, string1, size1, string2, size2);
  13.   DEBUG_PRINT1 ("'n");
  14.   pat = (unsigned char *) POP_FAILURE_ITEM ();
  15.   DEBUG_PRINT2 ("  Popping pattern 0x%x: ", pat);
  16.   DEBUG_PRINT_COMPILED_PATTERN (bufp, pat, pend);
  17.   /* Restore register info.  */
  18.   high_reg = (unsigned) POP_FAILURE_ITEM ();
  19.   DEBUG_PRINT2 ("  Popping high active reg: %dn", high_reg);
  20.   low_reg = (unsigned) POP_FAILURE_ITEM ();
  21.   DEBUG_PRINT2 ("  Popping  low active reg: %dn", low_reg);
  22.   for (this_reg = high_reg; this_reg >= low_reg; this_reg--)
  23.     {
  24.       DEBUG_PRINT2 ("    Popping reg: %dn", this_reg);
  25.       reg_info[this_reg].word = POP_FAILURE_ITEM ();
  26.       DEBUG_PRINT2 ("      info: 0x%xn", reg_info[this_reg]);
  27.       regend[this_reg] = (const char *) POP_FAILURE_ITEM ();
  28.       DEBUG_PRINT2 ("      end: 0x%xn", regend[this_reg]);
  29.       regstart[this_reg] = (const char *) POP_FAILURE_ITEM ();
  30.       DEBUG_PRINT2 ("      start: 0x%xn", regstart[this_reg]);
  31.     }
  32.   DEBUG_STATEMENT (nfailure_points_popped++);
  33. } /* POP_FAILURE_POINT */
  34. /* re_compile_fastmap computes a ``fastmap'' for the compiled pattern in
  35.    BUFP.  A fastmap records which of the (1 << BYTEWIDTH) possible
  36.    characters can start a string that matches the pattern.  This fastmap
  37.    is used by re_search to skip quickly over impossible starting points.
  38.    The caller must supply the address of a (1 << BYTEWIDTH)-byte data
  39.    area as BUFP->fastmap.
  40.    
  41.    We set the `fastmap', `fastmap_accurate', and `can_be_null' fields in
  42.    the pattern buffer.
  43.    Returns 0 if we succeed, -2 if an internal error.   */
  44. int
  45. re_compile_fastmap (bufp)
  46.      struct re_pattern_buffer *bufp;
  47. {
  48.   int j, k;
  49.   fail_stack_type fail_stack;
  50. #ifndef REGEX_MALLOC
  51.   char *destination;
  52. #endif
  53.   /* We don't push any register information onto the failure stack.  */
  54.   unsigned num_regs = 0;
  55.   
  56.   register char *fastmap = bufp->fastmap;
  57.   unsigned char *pattern = bufp->buffer;
  58.   unsigned long size = bufp->used;
  59.   const unsigned char *p = pattern;
  60.   register unsigned char *pend = pattern + size;
  61.   /* Assume that each path through the pattern can be null until
  62.      proven otherwise.  We set this false at the bottom of switch
  63.      statement, to which we get only if a particular path doesn't
  64.      match the empty string.  */
  65.   boolean path_can_be_null = true;
  66.   /* We aren't doing a `succeed_n' to begin with.  */
  67.   boolean succeed_n_p = false;
  68.   assert (fastmap != NULL && p != NULL);
  69.   
  70.   INIT_FAIL_STACK ();
  71.   bzero (fastmap, 1 << BYTEWIDTH);  /* Assume nothing's valid.  */
  72.   bufp->fastmap_accurate = 1;     /* It will be when we're done.  */
  73.   bufp->can_be_null = 0;
  74.       
  75.   while (p != pend || !FAIL_STACK_EMPTY ())
  76.     {
  77.       if (p == pend)
  78.         {
  79.           bufp->can_be_null |= path_can_be_null;
  80.           
  81.           /* Reset for next path.  */
  82.           path_can_be_null = true;
  83.           
  84.           p = fail_stack.stack[--fail_stack.avail];
  85. }
  86.       /* We should never be about to go beyond the end of the pattern.  */
  87.       assert (p < pend);
  88.       
  89. #ifdef SWITCH_ENUM_BUG
  90.       switch ((int) ((re_opcode_t) *p++))
  91. #else
  92.       switch ((re_opcode_t) *p++)
  93. #endif
  94. {
  95.         /* I guess the idea here is to simply not bother with a fastmap
  96.            if a backreference is used, since it's too hard to figure out
  97.            the fastmap for the corresponding group.  Setting
  98.            `can_be_null' stops `re_search_2' from using the fastmap, so
  99.            that is all we do.  */
  100. case duplicate:
  101.   bufp->can_be_null = 1;
  102.           return 0;
  103.       /* Following are the cases which match a character.  These end
  104.          with `break'.  */
  105. case exactn:
  106.           fastmap[p[1]] = 1;
  107.   break;
  108.         case charset:
  109.           for (j = *p++ * BYTEWIDTH - 1; j >= 0; j--)
  110.     if (p[j / BYTEWIDTH] & (1 << (j % BYTEWIDTH)))
  111.               fastmap[j] = 1;
  112.   break;
  113. case charset_not:
  114.   /* Chars beyond end of map must be allowed.  */
  115.   for (j = *p * BYTEWIDTH; j < (1 << BYTEWIDTH); j++)
  116.             fastmap[j] = 1;
  117.   for (j = *p++ * BYTEWIDTH - 1; j >= 0; j--)
  118.     if (!(p[j / BYTEWIDTH] & (1 << (j % BYTEWIDTH))))
  119.               fastmap[j] = 1;
  120.           break;
  121. case wordchar:
  122.   for (j = 0; j < (1 << BYTEWIDTH); j++)
  123.     if (SYNTAX (j) == Sword)
  124.       fastmap[j] = 1;
  125.   break;
  126. case notwordchar:
  127.   for (j = 0; j < (1 << BYTEWIDTH); j++)
  128.     if (SYNTAX (j) != Sword)
  129.       fastmap[j] = 1;
  130.   break;
  131.         case anychar:
  132.           /* `.' matches anything ...  */
  133.   for (j = 0; j < (1 << BYTEWIDTH); j++)
  134.             fastmap[j] = 1;
  135.           /* ... except perhaps newline.  */
  136.           if (!(bufp->syntax & RE_DOT_NEWLINE))
  137.             fastmap['n'] = 0;
  138.           /* Return if we have already set `can_be_null'; if we have,
  139.              then the fastmap is irrelevant.  Something's wrong here.  */
  140.   else if (bufp->can_be_null)
  141.     return 0;
  142.           /* Otherwise, have to check alternative paths.  */
  143.   break;
  144. #ifdef emacs
  145.         case syntaxspec:
  146.   k = *p++;
  147.   for (j = 0; j < (1 << BYTEWIDTH); j++)
  148.     if (SYNTAX (j) == (enum syntaxcode) k)
  149.       fastmap[j] = 1;
  150.   break;
  151. case notsyntaxspec:
  152.   k = *p++;
  153.   for (j = 0; j < (1 << BYTEWIDTH); j++)
  154.     if (SYNTAX (j) != (enum syntaxcode) k)
  155.       fastmap[j] = 1;
  156.   break;
  157.       /* All cases after this match the empty string.  These end with
  158.          `continue'.  */
  159. case before_dot:
  160. case at_dot:
  161. case after_dot:
  162.           continue;
  163. #endif /* not emacs */
  164.         case no_op:
  165.         case begline:
  166.         case endline:
  167. case begbuf:
  168. case endbuf:
  169. case wordbound:
  170. case notwordbound:
  171. case wordbeg:
  172. case wordend:
  173.         case push_dummy_failure:
  174.           continue;
  175. case jump_n:
  176.         case pop_failure_jump:
  177. case maybe_pop_jump:
  178. case jump:
  179.         case jump_past_alt:
  180. case dummy_failure_jump:
  181.           EXTRACT_NUMBER_AND_INCR (j, p);
  182.   p += j;
  183.   if (j > 0)
  184.     continue;
  185.             
  186.           /* Jump backward implies we just went through the body of a
  187.              loop and matched nothing.  Opcode jumped to should be
  188.              `on_failure_jump' or `succeed_n'.  Just treat it like an
  189.              ordinary jump.  For a * loop, it has pushed its failure
  190.              point already; if so, discard that as redundant.  */
  191.           if ((re_opcode_t) *p != on_failure_jump
  192.       && (re_opcode_t) *p != succeed_n)
  193.     continue;
  194.           p++;
  195.           EXTRACT_NUMBER_AND_INCR (j, p);
  196.           p += j;
  197.   
  198.           /* If what's on the stack is where we are now, pop it.  */
  199.           if (!FAIL_STACK_EMPTY () 
  200.       && fail_stack.stack[fail_stack.avail - 1] == p)
  201.             fail_stack.avail--;
  202.           continue;
  203.         case on_failure_jump:
  204.         case on_failure_keep_string_jump:
  205. handle_on_failure_jump:
  206.           EXTRACT_NUMBER_AND_INCR (j, p);
  207.           /* For some patterns, e.g., `(a?)?', `p+j' here points to the
  208.              end of the pattern.  We don't want to push such a point,
  209.              since when we restore it above, entering the switch will
  210.              increment `p' past the end of the pattern.  We don't need
  211.              to push such a point since we obviously won't find any more
  212.              fastmap entries beyond `pend'.  Such a pattern can match
  213.              the null string, though.  */
  214.           if (p + j < pend)
  215.             {
  216.               if (!PUSH_PATTERN_OP (p + j, fail_stack))
  217.                 return -2;
  218.             }
  219.           else
  220.             bufp->can_be_null = 1;
  221.           if (succeed_n_p)
  222.             {
  223.               EXTRACT_NUMBER_AND_INCR (k, p); /* Skip the n.  */
  224.               succeed_n_p = false;
  225.     }
  226.           continue;
  227. case succeed_n:
  228.           /* Get to the number of times to succeed.  */
  229.           p += 2;
  230.           /* Increment p past the n for when k != 0.  */
  231.           EXTRACT_NUMBER_AND_INCR (k, p);
  232.           if (k == 0)
  233.     {
  234.               p -= 4;
  235.          succeed_n_p = true;  /* Spaghetti code alert.  */
  236.               goto handle_on_failure_jump;
  237.             }
  238.           continue;
  239. case set_number_at:
  240.           p += 4;
  241.           continue;
  242. case start_memory:
  243.         case stop_memory:
  244.   p += 2;
  245.   continue;
  246. default:
  247.           abort (); /* We have listed all the cases.  */
  248.         } /* switch *p++ */
  249.       /* Getting here means we have found the possible starting
  250.          characters for one path of the pattern -- and that the empty
  251.          string does not match.  We need not follow this path further.
  252.          Instead, look at the next alternative (remembered on the
  253.          stack), or quit if no more.  The test at the top of the loop
  254.          does these things.  */
  255.       path_can_be_null = false;
  256.       p = pend;
  257.     } /* while p */
  258.   /* Set `can_be_null' for the last path (also the first path, if the
  259.      pattern is empty).  */
  260.   bufp->can_be_null |= path_can_be_null;
  261.   return 0;
  262. } /* re_compile_fastmap */
  263. /* Set REGS to hold NUM_REGS registers, storing them in STARTS and
  264.    ENDS.  Subsequent matches using PATTERN_BUFFER and REGS will use
  265.    this memory for recording register information.  STARTS and ENDS
  266.    must be allocated using the malloc library routine, and must each
  267.    be at least NUM_REGS * sizeof (regoff_t) bytes long.
  268.    If NUM_REGS == 0, then subsequent matches should allocate their own
  269.    register data.
  270.    Unless this function is called, the first search or match using
  271.    PATTERN_BUFFER will allocate its own register data, without
  272.    freeing the old data.  */
  273. void
  274. re_set_registers (bufp, regs, num_regs, starts, ends)
  275.     struct re_pattern_buffer *bufp;
  276.     struct re_registers *regs;
  277.     unsigned num_regs;
  278.     regoff_t *starts, *ends;
  279. {
  280.   if (num_regs)
  281.     {
  282.       bufp->regs_allocated = REGS_REALLOCATE;
  283.       regs->num_regs = num_regs;
  284.       regs->start = starts;
  285.       regs->end = ends;
  286.     }
  287.   else
  288.     {
  289.       bufp->regs_allocated = REGS_UNALLOCATED;
  290.       regs->num_regs = 0;
  291.       regs->start = regs->end = (regoff_t) 0;
  292.     }
  293. }
  294. /* Searching routines.  */
  295. /* Like re_search_2, below, but only one string is specified, and
  296.    doesn't let you say where to stop matching. */
  297. int
  298. re_search (bufp, string, size, startpos, range, regs)
  299.      struct re_pattern_buffer *bufp;
  300.      const char *string;
  301.      int size, startpos, range;
  302.      struct re_registers *regs;
  303. {
  304.   return re_search_2 (bufp, NULL, 0, string, size, startpos, range, 
  305.       regs, size);
  306. }
  307. /* Using the compiled pattern in BUFP->buffer, first tries to match the
  308.    virtual concatenation of STRING1 and STRING2, starting first at index
  309.    STARTPOS, then at STARTPOS + 1, and so on.
  310.    
  311.    STRING1 and STRING2 have length SIZE1 and SIZE2, respectively.
  312.    
  313.    RANGE is how far to scan while trying to match.  RANGE = 0 means try
  314.    only at STARTPOS; in general, the last start tried is STARTPOS +
  315.    RANGE.
  316.    
  317.    In REGS, return the indices of the virtual concatenation of STRING1
  318.    and STRING2 that matched the entire BUFP->buffer and its contained
  319.    subexpressions.
  320.    
  321.    Do not consider matching one past the index STOP in the virtual
  322.    concatenation of STRING1 and STRING2.
  323.    We return either the position in the strings at which the match was
  324.    found, -1 if no match, or -2 if error (such as failure
  325.    stack overflow).  */
  326. int
  327. re_search_2 (bufp, string1, size1, string2, size2, startpos, range, regs, stop)
  328.      struct re_pattern_buffer *bufp;
  329.      const char *string1, *string2;
  330.      int size1, size2;
  331.      int startpos;
  332.      int range;
  333.      struct re_registers *regs;
  334.      int stop;
  335. {
  336.   int val;
  337.   register char *fastmap = bufp->fastmap;
  338.   register char *translate = bufp->translate;
  339.   int total_size = size1 + size2;
  340.   int endpos = startpos + range;
  341.   /* Check for out-of-range STARTPOS.  */
  342.   if (startpos < 0 || startpos > total_size)
  343.     return -1;
  344.     
  345.   /* Fix up RANGE if it might eventually take us outside
  346.      the virtual concatenation of STRING1 and STRING2.  */
  347.   if (endpos < -1)
  348.     range = -1 - startpos;
  349.   else if (endpos > total_size)
  350.     range = total_size - startpos;
  351.   /* If the search isn't to be a backwards one, don't waste time in a
  352.      search for a pattern that must be anchored.  */
  353.   if (bufp->used > 0 && (re_opcode_t) bufp->buffer[0] == begbuf && range > 0)
  354.     {
  355.       if (startpos > 0)
  356. return -1;
  357.       else
  358. range = 1;
  359.     }
  360.   /* Update the fastmap now if not correct already.  */
  361.   if (fastmap && !bufp->fastmap_accurate)
  362.     if (re_compile_fastmap (bufp) == -2)
  363.       return -2;
  364.   
  365.   /* Loop through the string, looking for a place to start matching.  */
  366.   for (;;)
  367.     { 
  368.       /* If a fastmap is supplied, skip quickly over characters that
  369.          cannot be the start of a match.  If the pattern can match the
  370.          null string, however, we don't need to skip characters; we want
  371.          the first null string.  */
  372.       if (fastmap && startpos < total_size && !bufp->can_be_null)
  373. {
  374.   if (range > 0) /* Searching forwards.  */
  375.     {
  376.       register const char *d;
  377.       register int lim = 0;
  378.       int irange = range;
  379.               if (startpos < size1 && startpos + range >= size1)
  380.                 lim = range - (size1 - startpos);
  381.       d = (startpos >= size1 ? string2 - size1 : string1) + startpos;
  382.    
  383.               /* Written out as an if-else to avoid testing `translate'
  384.                  inside the loop.  */
  385.       if (translate)
  386.                 while (range > lim
  387.                        && !fastmap[(unsigned char)
  388.    translate[(unsigned char) *d++]])
  389.                   range--;
  390.       else
  391.                 while (range > lim && !fastmap[(unsigned char) *d++])
  392.                   range--;
  393.       startpos += irange - range;
  394.     }
  395.   else /* Searching backwards.  */
  396.     {
  397.       register char c = (size1 == 0 || startpos >= size1
  398.                                  ? string2[startpos - size1] 
  399.                                  : string1[startpos]);
  400.       if (!fastmap[(unsigned char) TRANSLATE (c)])
  401. goto advance;
  402.     }
  403. }
  404.       /* If can't match the null string, and that's all we have left, fail.  */
  405.       if (range >= 0 && startpos == total_size && fastmap
  406.           && !bufp->can_be_null)
  407. return -1;
  408.       val = re_match_2 (bufp, string1, size1, string2, size2,
  409.                 startpos, regs, stop);
  410.       if (val >= 0)
  411. return startpos;
  412.         
  413.       if (val == -2)
  414. return -2;
  415.     advance:
  416.       if (!range) 
  417.         break;
  418.       else if (range > 0) 
  419.         {
  420.           range--; 
  421.           startpos++;
  422.         }
  423.       else
  424.         {
  425.           range++; 
  426.           startpos--;
  427.         }
  428.     }
  429.   return -1;
  430. } /* re_search_2 */
  431. /* Declarations and macros for re_match_2.  */
  432. static int bcmp_translate ();
  433. static boolean alt_match_null_string_p (),
  434.                common_op_match_null_string_p (),
  435.                group_match_null_string_p ();
  436. /* Structure for per-register (a.k.a. per-group) information.
  437.    This must not be longer than one word, because we push this value
  438.    onto the failure stack.  Other register information, such as the
  439.    starting and ending positions (which are addresses), and the list of
  440.    inner groups (which is a bits list) are maintained in separate
  441.    variables.  
  442.    
  443.    We are making a (strictly speaking) nonportable assumption here: that
  444.    the compiler will pack our bit fields into something that fits into
  445.    the type of `word', i.e., is something that fits into one item on the
  446.    failure stack.  */
  447. typedef union
  448. {
  449.   fail_stack_elt_t word;
  450.   struct
  451.   {
  452.       /* This field is one if this group can match the empty string,
  453.          zero if not.  If not yet determined,  `MATCH_NULL_UNSET_VALUE'.  */
  454. #define MATCH_NULL_UNSET_VALUE 3
  455.     unsigned match_null_string_p : 2;
  456.     unsigned is_active : 1;
  457.     unsigned matched_something : 1;
  458.     unsigned ever_matched_something : 1;
  459.   } bits;
  460. } register_info_type;
  461. #define REG_MATCH_NULL_STRING_P(R)  ((R).bits.match_null_string_p)
  462. #define IS_ACTIVE(R)  ((R).bits.is_active)
  463. #define MATCHED_SOMETHING(R)  ((R).bits.matched_something)
  464. #define EVER_MATCHED_SOMETHING(R)  ((R).bits.ever_matched_something)
  465. /* Call this when have matched a real character; it sets `matched' flags
  466.    for the subexpressions which we are currently inside.  Also records
  467.    that those subexprs have matched.  */
  468. #define SET_REGS_MATCHED()
  469.   do
  470.     {
  471.       unsigned r;
  472.       for (r = lowest_active_reg; r <= highest_active_reg; r++)
  473.         {
  474.           MATCHED_SOMETHING (reg_info[r])
  475.             = EVER_MATCHED_SOMETHING (reg_info[r])
  476.             = 1;
  477.         }
  478.     }
  479.   while (0)
  480. /* This converts PTR, a pointer into one of the search strings `string1'
  481.    and `string2' into an offset from the beginning of that string.  */
  482. #define POINTER_TO_OFFSET(ptr)
  483.   (FIRST_STRING_P (ptr) ? (ptr) - string1 : (ptr) - string2 + size1)
  484. /* Registers are set to a sentinel when they haven't yet matched.  */
  485. #define REG_UNSET_VALUE ((char *) -1)
  486. #define REG_UNSET(e) ((e) == REG_UNSET_VALUE)
  487. /* Macros for dealing with the split strings in re_match_2.  */
  488. #define MATCHING_IN_FIRST_STRING  (dend == end_match_1)
  489. /* Call before fetching a character with *d.  This switches over to
  490.    string2 if necessary.  */
  491. #define PREFETCH()
  492.   while (d == dend)     
  493.     {
  494.       /* End of string2 => fail.  */
  495.       if (dend == end_match_2) 
  496.         goto fail;
  497.       /* End of string1 => advance to string2.  */ 
  498.       d = string2;         
  499.       dend = end_match_2;
  500.     }
  501. /* Test if at very beginning or at very end of the virtual concatenation
  502.    of `string1' and `string2'.  If only one string, it's `string2'.  */
  503. #define AT_STRINGS_BEG(d) ((d) == (size1 ? string1 : string2) || !size2)
  504. #define AT_STRINGS_END(d) ((d) == end2)
  505. /* Test if D points to a character which is word-constituent.  We have
  506.    two special cases to check for: if past the end of string1, look at
  507.    the first character in string2; and if before the beginning of
  508.    string2, look at the last character in string1.  */
  509. #define WORDCHAR_P(d)
  510.   (SYNTAX ((d) == end1 ? *string2
  511.            : (d) == string2 - 1 ? *(end1 - 1) : *(d))
  512.    == Sword)
  513. /* Test if the character before D and the one at D differ with respect
  514.    to being word-constituent.  */
  515. #define AT_WORD_BOUNDARY(d)
  516.   (AT_STRINGS_BEG (d) || AT_STRINGS_END (d)
  517.    || WORDCHAR_P (d - 1) != WORDCHAR_P (d))
  518. /* Free everything we malloc.  */
  519. #ifdef REGEX_MALLOC
  520. #define FREE_VAR(var) if (var) free (var); var = NULL
  521. #define FREE_VARIABLES()
  522.   do {
  523.     FREE_VAR (fail_stack.stack);
  524.     FREE_VAR (regstart);
  525.     FREE_VAR (regend);
  526.     FREE_VAR (old_regstart);
  527.     FREE_VAR (old_regend);
  528.     FREE_VAR (best_regstart);
  529.     FREE_VAR (best_regend);
  530.     FREE_VAR (reg_info);
  531.     FREE_VAR (reg_dummy);
  532.     FREE_VAR (reg_info_dummy);
  533.   } while (0)
  534. #else /* not REGEX_MALLOC */
  535. /* Some MIPS systems (at least) want this to free alloca'd storage.  */
  536. #define FREE_VARIABLES() alloca (0)
  537. #endif /* not REGEX_MALLOC */
  538. /* These values must meet several constraints.  They must not be valid
  539.    register values; since we have a limit of 255 registers (because
  540.    we use only one byte in the pattern for the register number), we can
  541.    use numbers larger than 255.  They must differ by 1, because of
  542.    NUM_FAILURE_ITEMS above.  And the value for the lowest register must
  543.    be larger than the value for the highest register, so we do not try
  544.    to actually save any registers when none are active.  */
  545. #define NO_HIGHEST_ACTIVE_REG (1 << BYTEWIDTH)
  546. #define NO_LOWEST_ACTIVE_REG (NO_HIGHEST_ACTIVE_REG + 1)
  547. /* Matching routines.  */
  548. #ifndef emacs   /* Emacs never uses this.  */
  549. /* re_match is like re_match_2 except it takes only a single string.  */
  550. int
  551. re_match (bufp, string, size, pos, regs)
  552.      struct re_pattern_buffer *bufp;
  553.      const char *string;
  554.      int size, pos;
  555.      struct re_registers *regs;
  556.  {
  557.   return re_match_2 (bufp, NULL, 0, string, size, pos, regs, size); 
  558. }
  559. #endif /* not emacs */
  560. /* re_match_2 matches the compiled pattern in BUFP against the
  561.    the (virtual) concatenation of STRING1 and STRING2 (of length SIZE1
  562.    and SIZE2, respectively).  We start matching at POS, and stop
  563.    matching at STOP.
  564.    
  565.    If REGS is non-null and the `no_sub' field of BUFP is nonzero, we
  566.    store offsets for the substring each group matched in REGS.  See the
  567.    documentation for exactly how many groups we fill.
  568.    We return -1 if no match, -2 if an internal error (such as the
  569.    failure stack overflowing).  Otherwise, we return the length of the
  570.    matched substring.  */
  571. int
  572. re_match_2 (bufp, string1, size1, string2, size2, pos, regs, stop)
  573.      struct re_pattern_buffer *bufp;
  574.      const char *string1, *string2;
  575.      int size1, size2;
  576.      int pos;
  577.      struct re_registers *regs;
  578.      int stop;
  579. {
  580.   /* General temporaries.  */
  581.   int mcnt;
  582.   unsigned char *p1;
  583.   /* Just past the end of the corresponding string.  */
  584.   const char *end1, *end2;
  585.   /* Pointers into string1 and string2, just past the last characters in
  586.      each to consider matching.  */
  587.   const char *end_match_1, *end_match_2;
  588.   /* Where we are in the data, and the end of the current string.  */
  589.   const char *d, *dend;
  590.   
  591.   /* Where we are in the pattern, and the end of the pattern.  */
  592.   unsigned char *p = bufp->buffer;
  593.   register unsigned char *pend = p + bufp->used;
  594.   /* We use this to map every character in the string.  */
  595.   char *translate = bufp->translate;
  596.   /* Failure point stack.  Each place that can handle a failure further
  597.      down the line pushes a failure point on this stack.  It consists of
  598.      restart, regend, and reg_info for all registers corresponding to
  599.      the subexpressions we're currently inside, plus the number of such
  600.      registers, and, finally, two char *'s.  The first char * is where
  601.      to resume scanning the pattern; the second one is where to resume
  602.      scanning the strings.  If the latter is zero, the failure point is
  603.      a ``dummy''; if a failure happens and the failure point is a dummy,
  604.      it gets discarded and the next next one is tried.  */
  605.   fail_stack_type fail_stack;
  606. #ifdef DEBUG
  607.   static unsigned failure_id = 0;
  608.   unsigned nfailure_points_pushed = 0, nfailure_points_popped = 0;
  609. #endif
  610.   /* We fill all the registers internally, independent of what we
  611.      return, for use in backreferences.  The number here includes
  612.      an element for register zero.  */
  613.   unsigned num_regs = bufp->re_nsub + 1;
  614.   
  615.   /* The currently active registers.  */
  616.   unsigned lowest_active_reg = NO_LOWEST_ACTIVE_REG;
  617.   unsigned highest_active_reg = NO_HIGHEST_ACTIVE_REG;
  618.   /* Information on the contents of registers. These are pointers into
  619.      the input strings; they record just what was matched (on this
  620.      attempt) by a subexpression part of the pattern, that is, the
  621.      regnum-th regstart pointer points to where in the pattern we began
  622.      matching and the regnum-th regend points to right after where we
  623.      stopped matching the regnum-th subexpression.  (The zeroth register
  624.      keeps track of what the whole pattern matches.)  */
  625.   const char **regstart, **regend;
  626.   /* If a group that's operated upon by a repetition operator fails to
  627.      match anything, then the register for its start will need to be
  628.      restored because it will have been set to wherever in the string we
  629.      are when we last see its open-group operator.  Similarly for a
  630.      register's end.  */
  631.   const char **old_regstart, **old_regend;
  632.   /* The is_active field of reg_info helps us keep track of which (possibly
  633.      nested) subexpressions we are currently in. The matched_something
  634.      field of reg_info[reg_num] helps us tell whether or not we have
  635.      matched any of the pattern so far this time through the reg_num-th
  636.      subexpression.  These two fields get reset each time through any
  637.      loop their register is in.  */
  638.   register_info_type *reg_info; 
  639.   /* The following record the register info as found in the above
  640.      variables when we find a match better than any we've seen before. 
  641.      This happens as we backtrack through the failure points, which in
  642.      turn happens only if we have not yet matched the entire string. */
  643.   unsigned best_regs_set = false;
  644.   const char **best_regstart, **best_regend;
  645.   
  646.   /* Logically, this is `best_regend[0]'.  But we don't want to have to
  647.      allocate space for that if we're not allocating space for anything
  648.      else (see below).  Also, we never need info about register 0 for
  649.      any of the other register vectors, and it seems rather a kludge to
  650.      treat `best_regend' differently than the rest.  So we keep track of
  651.      the end of the best match so far in a separate variable.  We
  652.      initialize this to NULL so that when we backtrack the first time
  653.      and need to test it, it's not garbage.  */
  654.   const char *match_end = NULL;
  655.   /* Used when we pop values we don't care about.  */
  656.   const char **reg_dummy;
  657.   register_info_type *reg_info_dummy;
  658. #ifdef DEBUG
  659.   /* Counts the total number of registers pushed.  */
  660.   unsigned num_regs_pushed = 0; 
  661. #endif
  662.   DEBUG_PRINT1 ("nnEntering re_match_2.n");
  663.   
  664.   INIT_FAIL_STACK ();
  665.   
  666.   /* Do not bother to initialize all the register variables if there are
  667.      no groups in the pattern, as it takes a fair amount of time.  If
  668.      there are groups, we include space for register 0 (the whole
  669.      pattern), even though we never use it, since it simplifies the
  670.      array indexing.  We should fix this.  */
  671.   if (bufp->re_nsub)
  672.     {
  673.       regstart = REGEX_TALLOC (num_regs, const char *);
  674.       regend = REGEX_TALLOC (num_regs, const char *);
  675.       old_regstart = REGEX_TALLOC (num_regs, const char *);
  676.       old_regend = REGEX_TALLOC (num_regs, const char *);
  677.       best_regstart = REGEX_TALLOC (num_regs, const char *);
  678.       best_regend = REGEX_TALLOC (num_regs, const char *);
  679.       reg_info = REGEX_TALLOC (num_regs, register_info_type);
  680.       reg_dummy = REGEX_TALLOC (num_regs, const char *);
  681.       reg_info_dummy = REGEX_TALLOC (num_regs, register_info_type);
  682.       if (!(regstart && regend && old_regstart && old_regend && reg_info 
  683.             && best_regstart && best_regend && reg_dummy && reg_info_dummy)) 
  684.         {
  685.           FREE_VARIABLES ();
  686.           return -2;
  687.         }
  688.     }
  689. #ifdef REGEX_MALLOC
  690.   else
  691.     {
  692.       /* We must initialize all our variables to NULL, so that
  693.          `FREE_VARIABLES' doesn't try to free them.  */
  694.       regstart = regend = old_regstart = old_regend = best_regstart
  695.         = best_regend = reg_dummy = NULL;
  696.       reg_info = reg_info_dummy = (register_info_type *) NULL;
  697.     }
  698. #endif /* REGEX_MALLOC */
  699.   /* The starting position is bogus.  */
  700.   if (pos < 0 || pos > size1 + size2)
  701.     {
  702.       FREE_VARIABLES ();
  703.       return -1;
  704.     }
  705.     
  706.   /* Initialize subexpression text positions to -1 to mark ones that no
  707.      start_memory/stop_memory has been seen for. Also initialize the
  708.      register information struct.  */
  709.   for (mcnt = 1; mcnt < num_regs; mcnt++)
  710.     {
  711.       regstart[mcnt] = regend[mcnt] 
  712.         = old_regstart[mcnt] = old_regend[mcnt] = REG_UNSET_VALUE;
  713.         
  714.       REG_MATCH_NULL_STRING_P (reg_info[mcnt]) = MATCH_NULL_UNSET_VALUE;
  715.       IS_ACTIVE (reg_info[mcnt]) = 0;
  716.       MATCHED_SOMETHING (reg_info[mcnt]) = 0;
  717.       EVER_MATCHED_SOMETHING (reg_info[mcnt]) = 0;
  718.     }
  719.   
  720.   /* We move `string1' into `string2' if the latter's empty -- but not if
  721.      `string1' is null.  */
  722.   if (size2 == 0 && string1 != NULL)
  723.     {
  724.       string2 = string1;
  725.       size2 = size1;
  726.       string1 = 0;
  727.       size1 = 0;
  728.     }
  729.   end1 = string1 + size1;
  730.   end2 = string2 + size2;
  731.   /* Compute where to stop matching, within the two strings.  */
  732.   if (stop <= size1)
  733.     {
  734.       end_match_1 = string1 + stop;
  735.       end_match_2 = string2;
  736.     }
  737.   else
  738.     {
  739.       end_match_1 = end1;
  740.       end_match_2 = string2 + stop - size1;
  741.     }
  742.   /* `p' scans through the pattern as `d' scans through the data. 
  743.      `dend' is the end of the input string that `d' points within.  `d'
  744.      is advanced into the following input string whenever necessary, but
  745.      this happens before fetching; therefore, at the beginning of the
  746.      loop, `d' can be pointing at the end of a string, but it cannot
  747.      equal `string2'.  */
  748.   if (size1 > 0 && pos <= size1)
  749.     {
  750.       d = string1 + pos;
  751.       dend = end_match_1;
  752.     }
  753.   else
  754.     {
  755.       d = string2 + pos - size1;
  756.       dend = end_match_2;
  757.     }
  758.   DEBUG_PRINT1 ("The compiled pattern is: ");
  759.   DEBUG_PRINT_COMPILED_PATTERN (bufp, p, pend);
  760.   DEBUG_PRINT1 ("The string to match is: `");
  761.   DEBUG_PRINT_DOUBLE_STRING (d, string1, size1, string2, size2);
  762.   DEBUG_PRINT1 ("'n");
  763.   
  764.   /* This loops over pattern commands.  It exits by returning from the
  765.      function if the match is complete, or it drops through if the match
  766.      fails at this starting point in the input data.  */
  767.   for (;;)
  768.     {
  769.       DEBUG_PRINT2 ("n0x%x: ", p);
  770.       if (p == pend)
  771. { /* End of pattern means we might have succeeded.  */
  772.           DEBUG_PRINT1 ("end of pattern ... ");
  773.           
  774.   /* If we haven't matched the entire string, and we want the
  775.              longest match, try backtracking.  */
  776.           if (d != end_match_2)
  777.     {
  778.               DEBUG_PRINT1 ("backtracking.n");
  779.               
  780.               if (!FAIL_STACK_EMPTY ())
  781.                 { /* More failure points to try.  */
  782.                   boolean same_str_p = (FIRST_STRING_P (match_end) 
  783.                          == MATCHING_IN_FIRST_STRING);
  784.                   /* If exceeds best match so far, save it.  */
  785.                   if (!best_regs_set
  786.                       || (same_str_p && d > match_end)
  787.                       || (!same_str_p && !MATCHING_IN_FIRST_STRING))
  788.                     {
  789.                       best_regs_set = true;
  790.                       match_end = d;
  791.                       
  792.                       DEBUG_PRINT1 ("nSAVING match as best so far.n");
  793.                       
  794.                       for (mcnt = 1; mcnt < num_regs; mcnt++)
  795.                         {
  796.                           best_regstart[mcnt] = regstart[mcnt];
  797.                           best_regend[mcnt] = regend[mcnt];
  798.                         }
  799.                     }
  800.                   goto fail;        
  801.                 }
  802.               /* If no failure points, don't restore garbage.  */
  803.               else if (best_regs_set)   
  804.                 {
  805.            restore_best_regs:
  806.                   /* Restore best match.  It may happen that `dend ==
  807.                      end_match_1' while the restored d is in string2.
  808.                      For example, the pattern `x.*y.*z' against the
  809.                      strings `x-' and `y-z-', if the two strings are
  810.                      not consecutive in memory.  */
  811.                   DEBUG_PRINT1 ("Restoring best registers.n");
  812.                   
  813.                   d = match_end;
  814.                   dend = ((d >= string1 && d <= end1)
  815.            ? end_match_1 : end_match_2);
  816.   for (mcnt = 1; mcnt < num_regs; mcnt++)
  817.     {
  818.       regstart[mcnt] = best_regstart[mcnt];
  819.       regend[mcnt] = best_regend[mcnt];
  820.     }
  821.                 }
  822.             } /* d != end_match_2 */
  823.           DEBUG_PRINT1 ("Accepting match.n");
  824.           /* If caller wants register contents data back, do it.  */
  825.           if (regs && !bufp->no_sub)
  826.     {
  827.               /* Have the register data arrays been allocated?  */
  828.               if (bufp->regs_allocated == REGS_UNALLOCATED)
  829.                 { /* No.  So allocate them with malloc.  We need one
  830.                      extra element beyond `num_regs' for the `-1' marker
  831.                      GNU code uses.  */
  832.                   regs->num_regs = MAX (RE_NREGS, num_regs + 1);
  833.                   regs->start = TALLOC (regs->num_regs, regoff_t);
  834.                   regs->end = TALLOC (regs->num_regs, regoff_t);
  835.                   if (regs->start == NULL || regs->end == NULL)
  836.                     return -2;
  837.                   bufp->regs_allocated = REGS_REALLOCATE;
  838.                 }
  839.               else if (bufp->regs_allocated == REGS_REALLOCATE)
  840.                 { /* Yes.  If we need more elements than were already
  841.                      allocated, reallocate them.  If we need fewer, just
  842.                      leave it alone.  */
  843.                   if (regs->num_regs < num_regs + 1)
  844.                     {
  845.                       regs->num_regs = num_regs + 1;
  846.                       RETALLOC (regs->start, regs->num_regs, regoff_t);
  847.                       RETALLOC (regs->end, regs->num_regs, regoff_t);
  848.                       if (regs->start == NULL || regs->end == NULL)
  849.                         return -2;
  850.                     }
  851.                 }
  852.               else
  853.                 assert (bufp->regs_allocated == REGS_FIXED);
  854.               /* Convert the pointer data in `regstart' and `regend' to
  855.                  indices.  Register zero has to be set differently,
  856.                  since we haven't kept track of any info for it.  */
  857.               if (regs->num_regs > 0)
  858.                 {
  859.                   regs->start[0] = pos;
  860.                   regs->end[0] = (MATCHING_IN_FIRST_STRING ? d - string1
  861.           : d - string2 + size1);
  862.                 }
  863.               
  864.               /* Go through the first `min (num_regs, regs->num_regs)'
  865.                  registers, since that is all we initialized.  */
  866.       for (mcnt = 1; mcnt < MIN (num_regs, regs->num_regs); mcnt++)
  867. {
  868.                   if (REG_UNSET (regstart[mcnt]) || REG_UNSET (regend[mcnt]))
  869.                     regs->start[mcnt] = regs->end[mcnt] = -1;
  870.                   else
  871.                     {
  872.       regs->start[mcnt] = POINTER_TO_OFFSET (regstart[mcnt]);
  873.                       regs->end[mcnt] = POINTER_TO_OFFSET (regend[mcnt]);
  874.                     }
  875. }
  876.               
  877.               /* If the regs structure we return has more elements than
  878.                  were in the pattern, set the extra elements to -1.  If
  879.                  we (re)allocated the registers, this is the case,
  880.                  because we always allocate enough to have at least one
  881.                  -1 at the end.  */
  882.               for (mcnt = num_regs; mcnt < regs->num_regs; mcnt++)
  883.                 regs->start[mcnt] = regs->end[mcnt] = -1;
  884.     } /* regs && !bufp->no_sub */
  885.           FREE_VARIABLES ();
  886.           DEBUG_PRINT4 ("%u failure points pushed, %u popped (%u remain).n",
  887.                         nfailure_points_pushed, nfailure_points_popped,
  888.                         nfailure_points_pushed - nfailure_points_popped);
  889.           DEBUG_PRINT2 ("%u registers pushed.n", num_regs_pushed);
  890.           mcnt = d - pos - (MATCHING_IN_FIRST_STRING 
  891.     ? string1 
  892.     : string2 - size1);
  893.           DEBUG_PRINT2 ("Returning %d from re_match_2.n", mcnt);
  894.           return mcnt;
  895.         }
  896.       /* Otherwise match next pattern command.  */
  897. #ifdef SWITCH_ENUM_BUG
  898.       switch ((int) ((re_opcode_t) *p++))
  899. #else
  900.       switch ((re_opcode_t) *p++)
  901. #endif
  902. {
  903.         /* Ignore these.  Used to ignore the n of succeed_n's which
  904.            currently have n == 0.  */
  905.         case no_op:
  906.           DEBUG_PRINT1 ("EXECUTING no_op.n");
  907.           break;
  908.         /* Match the next n pattern characters exactly.  The following
  909.            byte in the pattern defines n, and the n bytes after that
  910.            are the characters to match.  */
  911. case exactn:
  912.   mcnt = *p++;
  913.           DEBUG_PRINT2 ("EXECUTING exactn %d.n", mcnt);
  914.           /* This is written out as an if-else so we don't waste time
  915.              testing `translate' inside the loop.  */
  916.           if (translate)
  917.     {
  918.       do
  919. {
  920.   PREFETCH ();
  921.   if (translate[(unsigned char) *d++] != (char) *p++)
  922.                     goto fail;
  923. }
  924.       while (--mcnt);
  925.     }
  926.   else
  927.     {
  928.       do
  929. {
  930.   PREFETCH ();
  931.   if (*d++ != (char) *p++) goto fail;
  932. }
  933.       while (--mcnt);
  934.     }
  935.   SET_REGS_MATCHED ();
  936.           break;
  937.         /* Match any character except possibly a newline or a null.  */
  938. case anychar:
  939.           DEBUG_PRINT1 ("EXECUTING anychar.n");
  940.           PREFETCH ();
  941.           if ((!(bufp->syntax & RE_DOT_NEWLINE) && TRANSLATE (*d) == 'n')
  942.               || (bufp->syntax & RE_DOT_NOT_NULL && TRANSLATE (*d) == '00'))
  943.     goto fail;
  944.           SET_REGS_MATCHED ();
  945.           DEBUG_PRINT2 ("  Matched `%d'.n", *d);
  946.           d++;
  947.   break;
  948. case charset:
  949. case charset_not:
  950.   {
  951.     register unsigned char c;
  952.     boolean not = (re_opcode_t) *(p - 1) == charset_not;
  953.             DEBUG_PRINT2 ("EXECUTING charset%s.n", not ? "_not" : "");
  954.     PREFETCH ();
  955.     c = TRANSLATE (*d); /* The character to match.  */
  956.             /* Cast to `unsigned' instead of `unsigned char' in case the
  957.                bit list is a full 32 bytes long.  */
  958.     if (c < (unsigned) (*p * BYTEWIDTH)
  959. && p[1 + c / BYTEWIDTH] & (1 << (c % BYTEWIDTH)))
  960.       not = !not;
  961.     p += 1 + *p;
  962.     if (!not) goto fail;
  963.             
  964.     SET_REGS_MATCHED ();
  965.             d++;
  966.     break;
  967.   }
  968.         /* The beginning of a group is represented by start_memory.
  969.            The arguments are the register number in the next byte, and the
  970.            number of groups inner to this one in the next.  The text
  971.            matched within the group is recorded (in the internal
  972.            registers data structure) under the register number.  */
  973.         case start_memory:
  974.   DEBUG_PRINT3 ("EXECUTING start_memory %d (%d):n", *p, p[1]);
  975.           /* Find out if this group can match the empty string.  */
  976.   p1 = p; /* To send to group_match_null_string_p.  */
  977.           
  978.           if (REG_MATCH_NULL_STRING_P (reg_info[*p]) == MATCH_NULL_UNSET_VALUE)
  979.             REG_MATCH_NULL_STRING_P (reg_info[*p]) 
  980.               = group_match_null_string_p (&p1, pend, reg_info);
  981.           /* Save the position in the string where we were the last time
  982.              we were at this open-group operator in case the group is
  983.              operated upon by a repetition operator, e.g., with `(a*)*b'
  984.              against `ab'; then we want to ignore where we are now in
  985.              the string in case this attempt to match fails.  */
  986.           old_regstart[*p] = REG_MATCH_NULL_STRING_P (reg_info[*p])
  987.                              ? REG_UNSET (regstart[*p]) ? d : regstart[*p]
  988.                              : regstart[*p];
  989.   DEBUG_PRINT2 ("  old_regstart: %dn", 
  990.  POINTER_TO_OFFSET (old_regstart[*p]));
  991.           regstart[*p] = d;
  992.   DEBUG_PRINT2 ("  regstart: %dn", POINTER_TO_OFFSET (regstart[*p]));
  993.           IS_ACTIVE (reg_info[*p]) = 1;
  994.           MATCHED_SOMETHING (reg_info[*p]) = 0;
  995.           
  996.           /* This is the new highest active register.  */
  997.           highest_active_reg = *p;
  998.           
  999.           /* If nothing was active before, this is the new lowest active
  1000.              register.  */
  1001.           if (lowest_active_reg == NO_LOWEST_ACTIVE_REG)
  1002.             lowest_active_reg = *p;
  1003.           /* Move past the register number and inner group count.  */
  1004.           p += 2;
  1005.           break;
  1006.         /* The stop_memory opcode represents the end of a group.  Its
  1007.            arguments are the same as start_memory's: the register
  1008.            number, and the number of inner groups.  */
  1009. case stop_memory:
  1010.   DEBUG_PRINT3 ("EXECUTING stop_memory %d (%d):n", *p, p[1]);
  1011.              
  1012.           /* We need to save the string position the last time we were at
  1013.              this close-group operator in case the group is operated
  1014.              upon by a repetition operator, e.g., with `((a*)*(b*)*)*'
  1015.              against `aba'; then we want to ignore where we are now in
  1016.              the string in case this attempt to match fails.  */
  1017.           old_regend[*p] = REG_MATCH_NULL_STRING_P (reg_info[*p])
  1018.                            ? REG_UNSET (regend[*p]) ? d : regend[*p]
  1019.    : regend[*p];
  1020.   DEBUG_PRINT2 ("      old_regend: %dn", 
  1021.  POINTER_TO_OFFSET (old_regend[*p]));
  1022.           regend[*p] = d;
  1023.   DEBUG_PRINT2 ("      regend: %dn", POINTER_TO_OFFSET (regend[*p]));
  1024.           /* This register isn't active anymore.  */
  1025.           IS_ACTIVE (reg_info[*p]) = 0;
  1026.           
  1027.           /* If this was the only register active, nothing is active
  1028.              anymore.  */
  1029.           if (lowest_active_reg == highest_active_reg)
  1030.             {
  1031.               lowest_active_reg = NO_LOWEST_ACTIVE_REG;
  1032.               highest_active_reg = NO_HIGHEST_ACTIVE_REG;
  1033.             }
  1034.           else
  1035.             { /* We must scan for the new highest active register, since
  1036.                  it isn't necessarily one less than now: consider
  1037.                  (a(b)c(d(e)f)g).  When group 3 ends, after the f), the
  1038.                  new highest active register is 1.  */
  1039.               unsigned char r = *p - 1;
  1040.               while (r > 0 && !IS_ACTIVE (reg_info[r]))
  1041.                 r--;
  1042.               
  1043.               /* If we end up at register zero, that means that we saved
  1044.                  the registers as the result of an `on_failure_jump', not
  1045.                  a `start_memory', and we jumped to past the innermost
  1046.                  `stop_memory'.  For example, in ((.)*) we save
  1047.                  registers 1 and 2 as a result of the *, but when we pop
  1048.                  back to the second ), we are at the stop_memory 1.
  1049.                  Thus, nothing is active.  */
  1050.       if (r == 0)
  1051.                 {
  1052.                   lowest_active_reg = NO_LOWEST_ACTIVE_REG;
  1053.                   highest_active_reg = NO_HIGHEST_ACTIVE_REG;
  1054.                 }
  1055.               else
  1056.                 highest_active_reg = r;
  1057.             }
  1058.           
  1059.           /* If just failed to match something this time around with a
  1060.              group that's operated on by a repetition operator, try to
  1061.              force exit from the ``loop'', and restore the register
  1062.              information for this group that we had before trying this
  1063.              last match.  */
  1064.           if ((!MATCHED_SOMETHING (reg_info[*p])
  1065.                || (re_opcode_t) p[-3] == start_memory)
  1066.       && (p + 2) < pend)              
  1067.             {
  1068.               boolean is_a_jump_n = false;
  1069.               
  1070.               p1 = p + 2;
  1071.               mcnt = 0;
  1072.               switch ((re_opcode_t) *p1++)
  1073.                 {
  1074.                   case jump_n:
  1075.     is_a_jump_n = true;
  1076.                   case pop_failure_jump:
  1077.   case maybe_pop_jump:
  1078.   case jump:
  1079.   case dummy_failure_jump:
  1080.                     EXTRACT_NUMBER_AND_INCR (mcnt, p1);
  1081.     if (is_a_jump_n)
  1082.       p1 += 2;
  1083.                     break;
  1084.                   
  1085.                   default:
  1086.                     /* do nothing */ ;
  1087.                 }
  1088.       p1 += mcnt;
  1089.         
  1090.               /* If the next operation is a jump backwards in the pattern
  1091.          to an on_failure_jump right before the start_memory
  1092.                  corresponding to this stop_memory, exit from the loop
  1093.                  by forcing a failure after pushing on the stack the
  1094.                  on_failure_jump's jump in the pattern, and d.  */
  1095.               if (mcnt < 0 && (re_opcode_t) *p1 == on_failure_jump
  1096.                   && (re_opcode_t) p1[3] == start_memory && p1[4] == *p)
  1097. {
  1098.                   /* If this group ever matched anything, then restore
  1099.                      what its registers were before trying this last
  1100.                      failed match, e.g., with `(a*)*b' against `ab' for
  1101.                      regstart[1], and, e.g., with `((a*)*(b*)*)*'
  1102.                      against `aba' for regend[3].
  1103.                      
  1104.                      Also restore the registers for inner groups for,
  1105.                      e.g., `((a*)(b*))*' against `aba' (register 3 would
  1106.                      otherwise get trashed).  */
  1107.                      
  1108.                   if (EVER_MATCHED_SOMETHING (reg_info[*p]))
  1109.     {
  1110.       unsigned r; 
  1111.         
  1112.                       EVER_MATCHED_SOMETHING (reg_info[*p]) = 0;
  1113.                       
  1114.       /* Restore this and inner groups' (if any) registers.  */
  1115.                       for (r = *p; r < *p + *(p + 1); r++)
  1116.                         {
  1117.                           regstart[r] = old_regstart[r];
  1118.                           /* xx why this test?  */
  1119.                           if ((int) old_regend[r] >= (int) regstart[r])
  1120.                             regend[r] = old_regend[r];
  1121.                         }     
  1122.                     }
  1123.   p1++;
  1124.                   EXTRACT_NUMBER_AND_INCR (mcnt, p1);
  1125.                   PUSH_FAILURE_POINT (p1 + mcnt, d, -2);
  1126.                   goto fail;
  1127.                 }
  1128.             }
  1129.           
  1130.           /* Move past the register number and the inner group count.  */
  1131.           p += 2;
  1132.           break;
  1133. /* <digit> has been turned into a `duplicate' command which is
  1134.            followed by the numeric value of <digit> as the register number.  */
  1135.         case duplicate:
  1136.   {
  1137.     register const char *d2, *dend2;
  1138.     int regno = *p++;   /* Get which register to match against.  */
  1139.     DEBUG_PRINT2 ("EXECUTING duplicate %d.n", regno);
  1140.     /* Can't back reference a group which we've never matched.  */
  1141.             if (REG_UNSET (regstart[regno]) || REG_UNSET (regend[regno]))
  1142.               goto fail;
  1143.               
  1144.             /* Where in input to try to start matching.  */
  1145.             d2 = regstart[regno];
  1146.             
  1147.             /* Where to stop matching; if both the place to start and
  1148.                the place to stop matching are in the same string, then
  1149.                set to the place to stop, otherwise, for now have to use
  1150.                the end of the first string.  */
  1151.             dend2 = ((FIRST_STRING_P (regstart[regno]) 
  1152.       == FIRST_STRING_P (regend[regno]))
  1153.      ? regend[regno] : end_match_1);
  1154.     for (;;)
  1155.       {
  1156. /* If necessary, advance to next segment in register
  1157.                    contents.  */
  1158. while (d2 == dend2)
  1159.   {
  1160.     if (dend2 == end_match_2) break;
  1161.     if (dend2 == regend[regno]) break;
  1162.                     /* End of string1 => advance to string2. */
  1163.                     d2 = string2;
  1164.                     dend2 = regend[regno];
  1165.   }
  1166. /* At end of register contents => success */
  1167. if (d2 == dend2) break;
  1168. /* If necessary, advance to next segment in data.  */
  1169. PREFETCH ();
  1170. /* How many characters left in this segment to match.  */
  1171. mcnt = dend - d;
  1172.                 
  1173. /* Want how many consecutive characters we can match in
  1174.                    one shot, so, if necessary, adjust the count.  */
  1175.                 if (mcnt > dend2 - d2)
  1176.   mcnt = dend2 - d2;
  1177.                   
  1178. /* Compare that many; failure if mismatch, else move
  1179.                    past them.  */
  1180. if (translate 
  1181.                     ? bcmp_translate (d, d2, mcnt, translate) 
  1182.                     : bcmp (d, d2, mcnt))
  1183.   goto fail;
  1184. d += mcnt, d2 += mcnt;
  1185.       }
  1186.   }
  1187.   break;
  1188.         /* begline matches the empty string at the beginning of the string
  1189.            (unless `not_bol' is set in `bufp'), and, if
  1190.            `newline_anchor' is set, after newlines.  */
  1191. case begline:
  1192.           DEBUG_PRINT1 ("EXECUTING begline.n");
  1193.           
  1194.           if (AT_STRINGS_BEG (d))
  1195.             {
  1196.               if (!bufp->not_bol) break;
  1197.             }
  1198.           else if (d[-1] == 'n' && bufp->newline_anchor)
  1199.             {
  1200.               break;
  1201.             }
  1202.           /* In all other cases, we fail.  */
  1203.           goto fail;
  1204.         /* endline is the dual of begline.  */
  1205. case endline:
  1206.           DEBUG_PRINT1 ("EXECUTING endline.n");
  1207.           if (AT_STRINGS_END (d))
  1208.             {
  1209.               if (!bufp->not_eol) break;
  1210.             }
  1211.           
  1212.           /* We have to ``prefetch'' the next character.  */
  1213.           else if ((d == end1 ? *string2 : *d) == 'n'
  1214.                    && bufp->newline_anchor)
  1215.             {
  1216.               break;
  1217.             }
  1218.           goto fail;
  1219. /* Match at the very beginning of the data.  */
  1220.         case begbuf:
  1221.           DEBUG_PRINT1 ("EXECUTING begbuf.n");
  1222.           if (AT_STRINGS_BEG (d))
  1223.             break;
  1224.           goto fail;
  1225. /* Match at the very end of the data.  */
  1226.         case endbuf:
  1227.           DEBUG_PRINT1 ("EXECUTING endbuf.n");
  1228.   if (AT_STRINGS_END (d))
  1229.     break;
  1230.           goto fail;
  1231.         /* on_failure_keep_string_jump is used to optimize `.*n'.  It
  1232.            pushes NULL as the value for the string on the stack.  Then
  1233.            `pop_failure_point' will keep the current value for the
  1234.            string, instead of restoring it.  To see why, consider
  1235.            matching `foonbar' against `.*n'.  The .* matches the foo;
  1236.            then the . fails against the n.  But the next thing we want
  1237.            to do is match the n against the n; if we restored the
  1238.            string value, we would be back at the foo.
  1239.            
  1240.            Because this is used only in specific cases, we don't need to
  1241.            check all the things that `on_failure_jump' does, to make
  1242.            sure the right things get saved on the stack.  Hence we don't
  1243.            share its code.  The only reason to push anything on the
  1244.            stack at all is that otherwise we would have to change
  1245.            `anychar's code to do something besides goto fail in this
  1246.            case; that seems worse than this.  */
  1247.         case on_failure_keep_string_jump:
  1248.           DEBUG_PRINT1 ("EXECUTING on_failure_keep_string_jump");
  1249.           
  1250.           EXTRACT_NUMBER_AND_INCR (mcnt, p);
  1251.           DEBUG_PRINT3 (" %d (to 0x%x):n", mcnt, p + mcnt);
  1252.           PUSH_FAILURE_POINT (p + mcnt, NULL, -2);
  1253.           break;
  1254. /* Uses of on_failure_jump:
  1255.         
  1256.            Each alternative starts with an on_failure_jump that points
  1257.            to the beginning of the next alternative.  Each alternative
  1258.            except the last ends with a jump that in effect jumps past
  1259.            the rest of the alternatives.  (They really jump to the
  1260.            ending jump of the following alternative, because tensioning
  1261.            these jumps is a hassle.)
  1262.            Repeats start with an on_failure_jump that points past both
  1263.            the repetition text and either the following jump or
  1264.            pop_failure_jump back to this on_failure_jump.  */
  1265. case on_failure_jump:
  1266.         on_failure:
  1267.           DEBUG_PRINT1 ("EXECUTING on_failure_jump");
  1268.           EXTRACT_NUMBER_AND_INCR (mcnt, p);
  1269.           DEBUG_PRINT3 (" %d (to 0x%x)", mcnt, p + mcnt);
  1270.           /* If this on_failure_jump comes right before a group (i.e.,
  1271.              the original * applied to a group), save the information
  1272.              for that group and all inner ones, so that if we fail back
  1273.              to this point, the group's information will be correct.
  1274.              For example, in (a*)*1, we need the preceding group,
  1275.              and in ((a*)b*)2, we need the inner group.  */
  1276.           /* We can't use `p' to check ahead because we push
  1277.              a failure point to `p + mcnt' after we do this.  */
  1278.           p1 = p;
  1279.           /* We need to skip no_op's before we look for the
  1280.              start_memory in case this on_failure_jump is happening as
  1281.              the result of a completed succeed_n, as in (a){1,3}b1
  1282.              against aba.  */
  1283.           while (p1 < pend && (re_opcode_t) *p1 == no_op)
  1284.             p1++;
  1285.           if (p1 < pend && (re_opcode_t) *p1 == start_memory)
  1286.             {
  1287.               /* We have a new highest active register now.  This will
  1288.                  get reset at the start_memory we are about to get to,
  1289.                  but we will have saved all the registers relevant to
  1290.                  this repetition op, as described above.  */
  1291.               highest_active_reg = *(p1 + 1) + *(p1 + 2);
  1292.               if (lowest_active_reg == NO_LOWEST_ACTIVE_REG)
  1293.                 lowest_active_reg = *(p1 + 1);
  1294.             }
  1295.           DEBUG_PRINT1 (":n");
  1296.           PUSH_FAILURE_POINT (p + mcnt, d, -2);
  1297.           break;
  1298.         /* A smart repeat ends with `maybe_pop_jump'.
  1299.    We change it to either `pop_failure_jump' or `jump'.  */
  1300.         case maybe_pop_jump:
  1301.           EXTRACT_NUMBER_AND_INCR (mcnt, p);
  1302.           DEBUG_PRINT2 ("EXECUTING maybe_pop_jump %d.n", mcnt);
  1303.           {
  1304.     register unsigned char *p2 = p;
  1305.             /* Compare the beginning of the repeat with what in the
  1306.                pattern follows its end. If we can establish that there
  1307.                is nothing that they would both match, i.e., that we
  1308.                would have to backtrack because of (as in, e.g., `a*a')
  1309.                then we can change to pop_failure_jump, because we'll
  1310.                never have to backtrack.
  1311.                
  1312.                This is not true in the case of alternatives: in
  1313.                `(a|ab)*' we do need to backtrack to the `ab' alternative
  1314.                (e.g., if the string was `ab').  But instead of trying to
  1315.                detect that here, the alternative has put on a dummy
  1316.                failure point which is what we will end up popping.  */
  1317.     /* Skip over open/close-group commands.  */
  1318.     while (p2 + 2 < pend
  1319.    && ((re_opcode_t) *p2 == stop_memory
  1320.        || (re_opcode_t) *p2 == start_memory))
  1321.       p2 += 3; /* Skip over args, too.  */
  1322.             /* If we're at the end of the pattern, we can change.  */
  1323.             if (p2 == pend)
  1324.       {
  1325. /* Consider what happens when matching ":(.*)"
  1326.    against ":/".  I don't really understand this code
  1327.    yet.  */
  1328.            p[-3] = (unsigned char) pop_failure_jump;
  1329.                 DEBUG_PRINT1
  1330.                   ("  End of pattern: change to `pop_failure_jump'.n");
  1331.               }
  1332.             else if ((re_opcode_t) *p2 == exactn
  1333.      || (bufp->newline_anchor && (re_opcode_t) *p2 == endline))
  1334.       {
  1335. register unsigned char c
  1336.                   = *p2 == (unsigned char) endline ? 'n' : p2[2];
  1337. p1 = p + mcnt;
  1338.                 /* p1[0] ... p1[2] are the `on_failure_jump' corresponding
  1339.                    to the `maybe_finalize_jump' of this case.  Examine what 
  1340.                    follows.  */
  1341.                 if ((re_opcode_t) p1[3] == exactn && p1[5] != c)
  1342.                   {
  1343.        p[-3] = (unsigned char) pop_failure_jump;
  1344.                     DEBUG_PRINT3 ("  %c != %c => pop_failure_jump.n",
  1345.                                   c, p1[5]);
  1346.                   }
  1347.                   
  1348. else if ((re_opcode_t) p1[3] == charset
  1349.  || (re_opcode_t) p1[3] == charset_not)
  1350.   {
  1351.     int not = (re_opcode_t) p1[3] == charset_not;
  1352.                     
  1353.     if (c < (unsigned char) (p1[4] * BYTEWIDTH)
  1354. && p1[5 + c / BYTEWIDTH] & (1 << (c % BYTEWIDTH)))
  1355.       not = !not;
  1356.                     /* `not' is equal to 1 if c would match, which means
  1357.                         that we can't change to pop_failure_jump.  */
  1358.     if (!not)
  1359.                       {
  1360.            p[-3] = (unsigned char) pop_failure_jump;
  1361.                         DEBUG_PRINT1 ("  No match => pop_failure_jump.n");
  1362.                       }
  1363.   }
  1364.       }
  1365.   }
  1366.   p -= 2; /* Point at relative address again.  */
  1367.   if ((re_opcode_t) p[-1] != pop_failure_jump)
  1368.     {
  1369.       p[-1] = (unsigned char) jump;
  1370.               DEBUG_PRINT1 ("  Match => jump.n");
  1371.       goto unconditional_jump;
  1372.     }
  1373.         /* Note fall through.  */
  1374. /* The end of a simple repeat has a pop_failure_jump back to
  1375.            its matching on_failure_jump, where the latter will push a
  1376.            failure point.  The pop_failure_jump takes off failure
  1377.            points put on by this pop_failure_jump's matching
  1378.            on_failure_jump; we got through the pattern to here from the
  1379.            matching on_failure_jump, so didn't fail.  */
  1380.         case pop_failure_jump:
  1381.           {
  1382.             /* We need to pass separate storage for the lowest and
  1383.                highest registers, even though we don't care about the
  1384.                actual values.  Otherwise, we will restore only one
  1385.                register from the stack, since lowest will == highest in
  1386.                `pop_failure_point'.  */
  1387.             unsigned dummy_low_reg, dummy_high_reg;
  1388.             unsigned char *pdummy;
  1389.             const char *sdummy;
  1390.             DEBUG_PRINT1 ("EXECUTING pop_failure_jump.n");
  1391.             POP_FAILURE_POINT (sdummy, pdummy,
  1392.                                dummy_low_reg, dummy_high_reg,
  1393.                                reg_dummy, reg_dummy, reg_info_dummy);
  1394.           }
  1395.           /* Note fall through.  */
  1396.           
  1397.         /* Unconditionally jump (without popping any failure points).  */
  1398.         case jump:
  1399. unconditional_jump:
  1400.   EXTRACT_NUMBER_AND_INCR (mcnt, p); /* Get the amount to jump.  */
  1401.           DEBUG_PRINT2 ("EXECUTING jump %d ", mcnt);
  1402.   p += mcnt; /* Do the jump.  */
  1403.           DEBUG_PRINT2 ("(to 0x%x).n", p);
  1404.   break;
  1405.         /* We need this opcode so we can detect where alternatives end
  1406.            in `group_match_null_string_p' et al.  */
  1407.         case jump_past_alt:
  1408.           DEBUG_PRINT1 ("EXECUTING jump_past_alt.n");
  1409.           goto unconditional_jump;
  1410.         /* Normally, the on_failure_jump pushes a failure point, which
  1411.            then gets popped at pop_failure_jump.  We will end up at
  1412.            pop_failure_jump, also, and with a pattern of, say, `a+', we
  1413.            are skipping over the on_failure_jump, so we have to push
  1414.            something meaningless for pop_failure_jump to pop.  */
  1415.         case dummy_failure_jump:
  1416.           DEBUG_PRINT1 ("EXECUTING dummy_failure_jump.n");
  1417.           /* It doesn't matter what we push for the string here.  What
  1418.              the code at `fail' tests is the value for the pattern.  */
  1419.           PUSH_FAILURE_POINT (0, 0, -2);
  1420.           goto unconditional_jump;
  1421.         /* At the end of an alternative, we need to push a dummy failure
  1422.            point in case we are followed by a `pop_failure_jump', because
  1423.            we don't want the failure point for the alternative to be
  1424.            popped.  For example, matching `(a|ab)*' against `aab'
  1425.            requires that we match the `ab' alternative.  */
  1426.         case push_dummy_failure:
  1427.           DEBUG_PRINT1 ("EXECUTING push_dummy_failure.n");
  1428.           /* See comments just above at `dummy_failure_jump' about the
  1429.              two zeroes.  */
  1430.           PUSH_FAILURE_POINT (0, 0, -2);
  1431.           break;
  1432.         /* Have to succeed matching what follows at least n times.
  1433.            After that, handle like `on_failure_jump'.  */
  1434.         case succeed_n: 
  1435.           EXTRACT_NUMBER (mcnt, p + 2);
  1436.           DEBUG_PRINT2 ("EXECUTING succeed_n %d.n", mcnt);
  1437.           assert (mcnt >= 0);
  1438.           /* Originally, this is how many times we HAVE to succeed.  */
  1439.           if (mcnt > 0)
  1440.             {
  1441.                mcnt--;
  1442.        p += 2;
  1443.                STORE_NUMBER_AND_INCR (p, mcnt);
  1444.                DEBUG_PRINT3 ("  Setting 0x%x to %d.n", p, mcnt);
  1445.             }
  1446.   else if (mcnt == 0)
  1447.             {
  1448.               DEBUG_PRINT2 ("  Setting two bytes from 0x%x to no_op.n", p+2);
  1449.       p[2] = (unsigned char) no_op;
  1450.               p[3] = (unsigned char) no_op;
  1451.               goto on_failure;
  1452.             }
  1453.           break;
  1454.         
  1455.         case jump_n: 
  1456.           EXTRACT_NUMBER (mcnt, p + 2);
  1457.           DEBUG_PRINT2 ("EXECUTING jump_n %d.n", mcnt);
  1458.           /* Originally, this is how many times we CAN jump.  */
  1459.           if (mcnt)
  1460.             {
  1461.                mcnt--;
  1462.                STORE_NUMBER (p + 2, mcnt);
  1463.        goto unconditional_jump;      
  1464.             }
  1465.           /* If don't have to jump any more, skip over the rest of command.  */
  1466.   else      
  1467.     p += 4;      
  1468.           break;
  1469.         
  1470. case set_number_at:
  1471.   {
  1472.             DEBUG_PRINT1 ("EXECUTING set_number_at.n");
  1473.             EXTRACT_NUMBER_AND_INCR (mcnt, p);
  1474.             p1 = p + mcnt;
  1475.             EXTRACT_NUMBER_AND_INCR (mcnt, p);
  1476.             DEBUG_PRINT3 ("  Setting 0x%x to %d.n", p1, mcnt);
  1477.     STORE_NUMBER (p1, mcnt);
  1478.             break;
  1479.           }
  1480.         case wordbound:
  1481.           DEBUG_PRINT1 ("EXECUTING wordbound.n");
  1482.           if (AT_WORD_BOUNDARY (d))
  1483.     break;
  1484.           goto fail;
  1485. case notwordbound:
  1486.           DEBUG_PRINT1 ("EXECUTING notwordbound.n");
  1487.   if (AT_WORD_BOUNDARY (d))
  1488.     goto fail;
  1489.           break;
  1490. case wordbeg:
  1491.           DEBUG_PRINT1 ("EXECUTING wordbeg.n");
  1492.   if (WORDCHAR_P (d) && (AT_STRINGS_BEG (d) || !WORDCHAR_P (d - 1)))
  1493.     break;
  1494.           goto fail;
  1495. case wordend:
  1496.           DEBUG_PRINT1 ("EXECUTING wordend.n");
  1497.   if (!AT_STRINGS_BEG (d) && WORDCHAR_P (d - 1)
  1498.               && (!WORDCHAR_P (d) || AT_STRINGS_END (d)))
  1499.     break;
  1500.           goto fail;
  1501. #ifdef emacs
  1502. #ifdef emacs19
  1503.    case before_dot:
  1504.           DEBUG_PRINT1 ("EXECUTING before_dot.n");
  1505.     if (PTR_CHAR_POS ((unsigned char *) d) >= point)
  1506.        goto fail;
  1507.      break;
  1508.   
  1509.    case at_dot:
  1510.           DEBUG_PRINT1 ("EXECUTING at_dot.n");
  1511.     if (PTR_CHAR_POS ((unsigned char *) d) != point)
  1512.        goto fail;
  1513.      break;
  1514.   
  1515.    case after_dot:
  1516.           DEBUG_PRINT1 ("EXECUTING after_dot.n");
  1517.           if (PTR_CHAR_POS ((unsigned char *) d) <= point)
  1518.        goto fail;
  1519.      break;
  1520. #else /* not emacs19 */
  1521. case at_dot:
  1522.           DEBUG_PRINT1 ("EXECUTING at_dot.n");
  1523.   if (PTR_CHAR_POS ((unsigned char *) d) + 1 != point)
  1524.     goto fail;
  1525.   break;
  1526. #endif /* not emacs19 */
  1527. case syntaxspec:
  1528.           DEBUG_PRINT2 ("EXECUTING syntaxspec %d.n", mcnt);
  1529.   mcnt = *p++;
  1530.   goto matchsyntax;
  1531.         case wordchar:
  1532.           DEBUG_PRINT1 ("EXECUTING Emacs wordchar.n");
  1533.   mcnt = (int) Sword;
  1534.         matchsyntax:
  1535.   PREFETCH ();
  1536.   if (SYNTAX (*d++) != (enum syntaxcode) mcnt)
  1537.             goto fail;
  1538.           SET_REGS_MATCHED ();
  1539.   break;
  1540. case notsyntaxspec:
  1541.           DEBUG_PRINT2 ("EXECUTING notsyntaxspec %d.n", mcnt);
  1542.   mcnt = *p++;
  1543.   goto matchnotsyntax;
  1544.         case notwordchar:
  1545.           DEBUG_PRINT1 ("EXECUTING Emacs notwordchar.n");
  1546.   mcnt = (int) Sword;
  1547.         matchnotsyntax:
  1548.   PREFETCH ();
  1549.   if (SYNTAX (*d++) == (enum syntaxcode) mcnt)
  1550.             goto fail;
  1551.   SET_REGS_MATCHED ();
  1552.           break;
  1553. #else /* not emacs */
  1554. case wordchar:
  1555.           DEBUG_PRINT1 ("EXECUTING non-Emacs wordchar.n");
  1556.   PREFETCH ();
  1557.           if (!WORDCHAR_P (d))
  1558.             goto fail;
  1559.   SET_REGS_MATCHED ();
  1560.           d++;
  1561.   break;
  1562.   
  1563. case notwordchar:
  1564.           DEBUG_PRINT1 ("EXECUTING non-Emacs notwordchar.n");
  1565.   PREFETCH ();
  1566.   if (WORDCHAR_P (d))
  1567.             goto fail;
  1568.           SET_REGS_MATCHED ();
  1569.           d++;
  1570.   break;
  1571. #endif /* not emacs */
  1572.           
  1573.         default:
  1574.           abort ();
  1575. }
  1576.       continue;  /* Successfully executed one pattern command; keep going.  */
  1577.     /* We goto here if a matching operation fails. */
  1578.     fail:
  1579.       if (!FAIL_STACK_EMPTY ())
  1580. { /* A restart point is known.  Restore to that state.  */
  1581.           DEBUG_PRINT1 ("nFAIL:n");
  1582.           POP_FAILURE_POINT (d, p,
  1583.                              lowest_active_reg, highest_active_reg,
  1584.                              regstart, regend, reg_info);
  1585.           /* If this failure point is a dummy, try the next one.  */
  1586.           if (!p)
  1587.     goto fail;
  1588.           /* If we failed to the end of the pattern, don't examine *p.  */
  1589.   assert (p <= pend);
  1590.           if (p < pend)
  1591.             {
  1592.               boolean is_a_jump_n = false;
  1593.               
  1594.               /* If failed to a backwards jump that's part of a repetition
  1595.                  loop, need to pop this failure point and use the next one.  */
  1596.               switch ((re_opcode_t) *p)
  1597.                 {
  1598.                 case jump_n:
  1599.                   is_a_jump_n = true;
  1600.                 case maybe_pop_jump:
  1601.                 case pop_failure_jump:
  1602.                 case jump:
  1603.                   p1 = p + 1;
  1604.                   EXTRACT_NUMBER_AND_INCR (mcnt, p1);
  1605.                   p1 += mcnt;
  1606.                   if ((is_a_jump_n && (re_opcode_t) *p1 == succeed_n)
  1607.                       || (!is_a_jump_n
  1608.                           && (re_opcode_t) *p1 == on_failure_jump))
  1609.                     goto fail;
  1610.                   break;
  1611.                 default:
  1612.                   /* do nothing */ ;
  1613.                 }
  1614.             }
  1615.           if (d >= string1 && d <= end1)
  1616.     dend = end_match_1;
  1617.         }
  1618.       else
  1619.         break;   /* Matching at this starting point really fails.  */
  1620.     } /* for (;;) */
  1621.   if (best_regs_set)
  1622.     goto restore_best_regs;
  1623.   FREE_VARIABLES ();
  1624.   return -1;          /* Failure to match.  */
  1625. } /* re_match_2 */
  1626. /* Subroutine definitions for re_match_2.  */
  1627. /* We are passed P pointing to a register number after a start_memory.
  1628.    
  1629.    Return true if the pattern up to the corresponding stop_memory can
  1630.    match the empty string, and false otherwise.
  1631.    
  1632.    If we find the matching stop_memory, sets P to point to one past its number.
  1633.    Otherwise, sets P to an undefined byte less than or equal to END.
  1634.    We don't handle duplicates properly (yet).  */
  1635. static boolean
  1636. group_match_null_string_p (p, end, reg_info)
  1637.     unsigned char **p, *end;
  1638.     register_info_type *reg_info;
  1639. {
  1640.   int mcnt;
  1641.   /* Point to after the args to the start_memory.  */
  1642.   unsigned char *p1 = *p + 2;
  1643.   
  1644.   while (p1 < end)
  1645.     {
  1646.       /* Skip over opcodes that can match nothing, and return true or
  1647.  false, as appropriate, when we get to one that can't, or to the
  1648.          matching stop_memory.  */
  1649.       
  1650.       switch ((re_opcode_t) *p1)
  1651.         {
  1652.         /* Could be either a loop or a series of alternatives.  */
  1653.         case on_failure_jump:
  1654.           p1++;
  1655.           EXTRACT_NUMBER_AND_INCR (mcnt, p1);
  1656.           
  1657.           /* If the next operation is not a jump backwards in the
  1658.      pattern.  */
  1659.   if (mcnt >= 0)
  1660.     {
  1661.               /* Go through the on_failure_jumps of the alternatives,
  1662.                  seeing if any of the alternatives cannot match nothing.
  1663.                  The last alternative starts with only a jump,
  1664.                  whereas the rest start with on_failure_jump and end
  1665.                  with a jump, e.g., here is the pattern for `a|b|c':
  1666.                  /on_failure_jump/0/6/exactn/1/a/jump_past_alt/0/6
  1667.                  /on_failure_jump/0/6/exactn/1/b/jump_past_alt/0/3
  1668.                  /exactn/1/c
  1669.                  So, we have to first go through the first (n-1)
  1670.                  alternatives and then deal with the last one separately.  */
  1671.               /* Deal with the first (n-1) alternatives, which start
  1672.                  with an on_failure_jump (see above) that jumps to right
  1673.                  past a jump_past_alt.  */
  1674.               while ((re_opcode_t) p1[mcnt-3] == jump_past_alt)
  1675.                 {
  1676.                   /* `mcnt' holds how many bytes long the alternative
  1677.                      is, including the ending `jump_past_alt' and
  1678.                      its number.  */
  1679.                   if (!alt_match_null_string_p (p1, p1 + mcnt - 3, 
  1680.                       reg_info))
  1681.                     return false;
  1682.                   /* Move to right after this alternative, including the
  1683.      jump_past_alt.  */
  1684.                   p1 += mcnt;
  1685.                   /* Break if it's the beginning of an n-th alternative
  1686.                      that doesn't begin with an on_failure_jump.  */
  1687.                   if ((re_opcode_t) *p1 != on_failure_jump)
  1688.                     break;
  1689.   /* Still have to check that it's not an n-th
  1690.      alternative that starts with an on_failure_jump.  */
  1691.   p1++;
  1692.                   EXTRACT_NUMBER_AND_INCR (mcnt, p1);
  1693.                   if ((re_opcode_t) p1[mcnt-3] != jump_past_alt)
  1694.                     {
  1695.       /* Get to the beginning of the n-th alternative.  */
  1696.                       p1 -= 3;
  1697.                       break;
  1698.                     }
  1699.                 }
  1700.               /* Deal with the last alternative: go back and get number
  1701.                  of the `jump_past_alt' just before it.  `mcnt' contains
  1702.                  the length of the alternative.  */
  1703.               EXTRACT_NUMBER (mcnt, p1 - 2);
  1704.               if (!alt_match_null_string_p (p1, p1 + mcnt, reg_info))
  1705.                 return false;
  1706.               p1 += mcnt; /* Get past the n-th alternative.  */
  1707.             } /* if mcnt > 0 */
  1708.           break;
  1709.           
  1710.         case stop_memory:
  1711.   assert (p1[1] == **p);
  1712.           *p = p1 + 2;
  1713.           return true;
  1714.         
  1715.         default: 
  1716.           if (!common_op_match_null_string_p (&p1, end, reg_info))
  1717.             return false;
  1718.         }
  1719.     } /* while p1 < end */
  1720.   return false;
  1721. } /* group_match_null_string_p */
  1722. /* Similar to group_match_null_string_p, but doesn't deal with alternatives:
  1723.    It expects P to be the first byte of a single alternative and END one
  1724.    byte past the last. The alternative can contain groups.  */
  1725.    
  1726. static boolean
  1727. alt_match_null_string_p (p, end, reg_info)
  1728.     unsigned char *p, *end;
  1729.     register_info_type *reg_info;
  1730. {
  1731.   int mcnt;
  1732.   unsigned char *p1 = p;
  1733.   
  1734.   while (p1 < end)
  1735.     {
  1736.       /* Skip over opcodes that can match nothing, and break when we get 
  1737.          to one that can't.  */
  1738.       
  1739.       switch ((re_opcode_t) *p1)
  1740.         {
  1741. /* It's a loop.  */
  1742.         case on_failure_jump:
  1743.           p1++;
  1744.           EXTRACT_NUMBER_AND_INCR (mcnt, p1);
  1745.           p1 += mcnt;
  1746.           break;
  1747.           
  1748. default: 
  1749.           if (!common_op_match_null_string_p (&p1, end, reg_info))
  1750.             return false;
  1751.         }
  1752.     }  /* while p1 < end */
  1753.   return true;
  1754. } /* alt_match_null_string_p */
  1755. /* Deals with the ops common to group_match_null_string_p and
  1756.    alt_match_null_string_p.  
  1757.    
  1758.    Sets P to one after the op and its arguments, if any.  */
  1759. static boolean
  1760. common_op_match_null_string_p (p, end, reg_info)
  1761.     unsigned char **p, *end;
  1762.     register_info_type *reg_info;
  1763. {
  1764.   int mcnt;
  1765.   boolean ret;
  1766.   int reg_no;
  1767.   unsigned char *p1 = *p;
  1768.   switch ((re_opcode_t) *p1++)
  1769.     {
  1770.     case no_op:
  1771.     case begline:
  1772.     case endline:
  1773.     case begbuf:
  1774.     case endbuf:
  1775.     case wordbeg:
  1776.     case wordend:
  1777.     case wordbound:
  1778.     case notwordbound:
  1779. #ifdef emacs
  1780.     case before_dot:
  1781.     case at_dot:
  1782.     case after_dot:
  1783. #endif
  1784.       break;
  1785.     case start_memory:
  1786.       reg_no = *p1;
  1787.       assert (reg_no > 0 && reg_no <= MAX_REGNUM);
  1788.       ret = group_match_null_string_p (&p1, end, reg_info);
  1789.       
  1790.       /* Have to set this here in case we're checking a group which
  1791.          contains a group and a back reference to it.  */
  1792.       if (REG_MATCH_NULL_STRING_P (reg_info[reg_no]) == MATCH_NULL_UNSET_VALUE)
  1793.         REG_MATCH_NULL_STRING_P (reg_info[reg_no]) = ret;
  1794.       if (!ret)
  1795.         return false;
  1796.       break;
  1797.           
  1798.     /* If this is an optimized succeed_n for zero times, make the jump.  */
  1799.     case jump:
  1800.       EXTRACT_NUMBER_AND_INCR (mcnt, p1);
  1801.       if (mcnt >= 0)
  1802.         p1 += mcnt;
  1803.       else
  1804.         return false;
  1805.       break;
  1806.     case succeed_n:
  1807.       /* Get to the number of times to succeed.  */
  1808.       p1 += 2;
  1809.       EXTRACT_NUMBER_AND_INCR (mcnt, p1);
  1810.       if (mcnt == 0)
  1811.         {
  1812.           p1 -= 4;
  1813.           EXTRACT_NUMBER_AND_INCR (mcnt, p1);
  1814.           p1 += mcnt;
  1815.         }
  1816.       else
  1817.         return false;
  1818.       break;
  1819.     case duplicate: 
  1820.       if (!REG_MATCH_NULL_STRING_P (reg_info[*p1]))
  1821.         return false;
  1822.       break;
  1823.     case set_number_at:
  1824.       p1 += 4;
  1825.     default:
  1826.       /* All other opcodes mean we cannot match the empty string.  */
  1827.       return false;
  1828.   }
  1829.   *p = p1;
  1830.   return true;
  1831. } /* common_op_match_null_string_p */
  1832. /* Return zero if TRANSLATE[S1] and TRANSLATE[S2] are identical for LEN
  1833.    bytes; nonzero otherwise.  */
  1834.    
  1835. static int
  1836. bcmp_translate (s1, s2, len, translate)
  1837.      unsigned char *s1, *s2;
  1838.      register int len;
  1839.      char *translate;
  1840. {
  1841.   register unsigned char *p1 = s1, *p2 = s2;
  1842.   while (len)
  1843.     {
  1844.       if (translate[*p1++] != translate[*p2++]) return 1;
  1845.       len--;
  1846.     }
  1847.   return 0;
  1848. }
  1849. /* Entry points for GNU code.  */
  1850. /* re_compile_pattern is the GNU regular expression compiler: it
  1851.    compiles PATTERN (of length SIZE) and puts the result in BUFP.
  1852.    Returns 0 if the pattern was valid, otherwise an error string.
  1853.    
  1854.    Assumes the `allocated' (and perhaps `buffer') and `translate' fields
  1855.    are set in BUFP on entry.
  1856.    
  1857.    We call regex_compile to do the actual compilation.  */
  1858. const char *
  1859. re_compile_pattern (pattern, length, bufp)
  1860.      const char *pattern;
  1861.      int length;
  1862.      struct re_pattern_buffer *bufp;
  1863. {
  1864.   reg_errcode_t ret;
  1865.   
  1866.   /* GNU code is written to assume at least RE_NREGS registers will be set
  1867.      (and at least one extra will be -1).  */
  1868.   bufp->regs_allocated = REGS_UNALLOCATED;
  1869.   
  1870.   /* And GNU code determines whether or not to get register information
  1871.      by passing null for the REGS argument to re_match, etc., not by
  1872.      setting no_sub.  */
  1873.   bufp->no_sub = 0;
  1874.   
  1875.   /* Match anchors at newline.  */
  1876.   bufp->newline_anchor = 1;
  1877.   
  1878.   ret = regex_compile (pattern, length, re_syntax_options, bufp);
  1879.   return re_error_msg[(int) ret];
  1880. }     
  1881. /* Entry points compatible with 4.2 BSD regex library.  We don't define
  1882.    them if this is an Emacs or POSIX compilation.  */
  1883. #if !defined (emacs) && !defined (_POSIX_SOURCE)
  1884. /* BSD has one and only one pattern buffer.  */
  1885. static struct re_pattern_buffer re_comp_buf;
  1886. char *
  1887. re_comp (s)
  1888.     const char *s;
  1889. {
  1890.   reg_errcode_t ret;
  1891.   
  1892.   if (!s)
  1893.     {
  1894.       if (!re_comp_buf.buffer)
  1895. return "No previous regular expression";
  1896.       return 0;
  1897.     }
  1898.   if (!re_comp_buf.buffer)
  1899.     {
  1900.       re_comp_buf.buffer = (unsigned char *) malloc (200);
  1901.       if (re_comp_buf.buffer == NULL)
  1902.         return "Memory exhausted";
  1903.       re_comp_buf.allocated = 200;
  1904.       re_comp_buf.fastmap = (char *) malloc (1 << BYTEWIDTH);
  1905.       if (re_comp_buf.fastmap == NULL)
  1906. return "Memory exhausted";
  1907.     }
  1908.   /* Since `re_exec' always passes NULL for the `regs' argument, we
  1909.      don't need to initialize the pattern buffer fields which affect it.  */
  1910.   /* Match anchors at newlines.  */
  1911.   re_comp_buf.newline_anchor = 1;
  1912.   ret = regex_compile (s, strlen (s), re_syntax_options, &re_comp_buf);
  1913.   
  1914.   /* Yes, we're discarding `const' here.  */
  1915.   return (char *) re_error_msg[(int) ret];
  1916. }
  1917. int
  1918. re_exec (s)
  1919.     const char *s;
  1920. {
  1921.   const int len = strlen (s);
  1922.   return
  1923.     0 <= re_search (&re_comp_buf, s, len, 0, len, (struct re_registers *) 0);
  1924. }
  1925. #endif /* not emacs and not _POSIX_SOURCE */
  1926. /* POSIX.2 functions.  Don't define these for Emacs.  */
  1927. #ifndef emacs
  1928. /* regcomp takes a regular expression as a string and compiles it.
  1929.    PREG is a regex_t *.  We do not expect any fields to be initialized,
  1930.    since POSIX says we shouldn't.  Thus, we set
  1931.      `buffer' to the compiled pattern;
  1932.      `used' to the length of the compiled pattern;
  1933.      `syntax' to RE_SYNTAX_POSIX_EXTENDED if the
  1934.        REG_EXTENDED bit in CFLAGS is set; otherwise, to
  1935.        RE_SYNTAX_POSIX_BASIC;
  1936.      `newline_anchor' to REG_NEWLINE being set in CFLAGS;
  1937.      `fastmap' and `fastmap_accurate' to zero;
  1938.      `re_nsub' to the number of subexpressions in PATTERN.
  1939.    PATTERN is the address of the pattern string.
  1940.    CFLAGS is a series of bits which affect compilation.
  1941.      If REG_EXTENDED is set, we use POSIX extended syntax; otherwise, we
  1942.      use POSIX basic syntax.
  1943.      If REG_NEWLINE is set, then . and [^...] don't match newline.
  1944.      Also, regexec will try a match beginning after every newline.
  1945.      If REG_ICASE is set, then we considers upper- and lowercase
  1946.      versions of letters to be equivalent when matching.
  1947.      If REG_NOSUB is set, then when PREG is passed to regexec, that
  1948.      routine will report only success or failure, and nothing about the
  1949.      registers.
  1950.    It returns 0 if it succeeds, nonzero if it doesn't.  (See regex.h for
  1951.    the return codes and their meanings.)  */
  1952. int
  1953. regcomp (preg, pattern, cflags)
  1954.     regex_t *preg;
  1955.     const char *pattern; 
  1956.     int cflags;
  1957. {
  1958.   reg_errcode_t ret;
  1959.   unsigned syntax
  1960.     = (cflags & REG_EXTENDED) ?
  1961.       RE_SYNTAX_POSIX_EXTENDED : RE_SYNTAX_POSIX_BASIC;
  1962.   /* regex_compile will allocate the space for the compiled pattern.  */
  1963.   preg->buffer = 0;
  1964.   preg->allocated = 0;
  1965.   
  1966.   /* Don't bother to use a fastmap when searching.  This simplifies the
  1967.      REG_NEWLINE case: if we used a fastmap, we'd have to put all the
  1968.      characters after newlines into the fastmap.  This way, we just try
  1969.      every character.  */
  1970.   preg->fastmap = 0;
  1971.   
  1972.   if (cflags & REG_ICASE)
  1973.     {
  1974.       unsigned i;
  1975.       
  1976.       preg->translate = (char *) malloc (CHAR_SET_SIZE);
  1977.       if (preg->translate == NULL)
  1978.         return (int) REG_ESPACE;
  1979.       /* Map uppercase characters to corresponding lowercase ones.  */
  1980.       for (i = 0; i < CHAR_SET_SIZE; i++)
  1981.         preg->translate[i] = ISUPPER (i) ? tolower (i) : i;
  1982.     }
  1983.   else
  1984.     preg->translate = NULL;
  1985.   /* If REG_NEWLINE is set, newlines are treated differently.  */
  1986.   if (cflags & REG_NEWLINE)
  1987.     { /* REG_NEWLINE implies neither . nor [^...] match newline.  */
  1988.       syntax &= ~RE_DOT_NEWLINE;
  1989.       syntax |= RE_HAT_LISTS_NOT_NEWLINE;
  1990.       /* It also changes the matching behavior.  */
  1991.       preg->newline_anchor = 1;
  1992.     }
  1993.   else
  1994.     preg->newline_anchor = 0;
  1995.   preg->no_sub = !!(cflags & REG_NOSUB);
  1996.   /* POSIX says a null character in the pattern terminates it, so we 
  1997.      can use strlen here in compiling the pattern.  */
  1998.   ret = regex_compile (pattern, strlen (pattern), syntax, preg);
  1999.   
  2000.   /* POSIX doesn't distinguish between an unmatched open-group and an
  2001.      unmatched close-group: both are REG_EPAREN.  */
  2002.   if (ret == REG_ERPAREN) ret = REG_EPAREN;
  2003.   
  2004.   return (int) ret;
  2005. }
  2006. /* regexec searches for a given pattern, specified by PREG, in the
  2007.    string STRING.
  2008.    
  2009.    If NMATCH is zero or REG_NOSUB was set in the cflags argument to
  2010.    `regcomp', we ignore PMATCH.  Otherwise, we assume PMATCH has at
  2011.    least NMATCH elements, and we set them to the offsets of the
  2012.    corresponding matched substrings.
  2013.    
  2014.    EFLAGS specifies `execution flags' which affect matching: if
  2015.    REG_NOTBOL is set, then ^ does not match at the beginning of the
  2016.    string; if REG_NOTEOL is set, then $ does not match at the end.
  2017.    
  2018.    We return 0 if we find a match and REG_NOMATCH if not.  */
  2019. int
  2020. regexec (preg, string, nmatch, pmatch, eflags)
  2021.     const regex_t *preg;
  2022.     const char *string; 
  2023.     size_t nmatch; 
  2024.     regmatch_t pmatch[]; 
  2025.     int eflags;
  2026. {
  2027.   int ret;
  2028.   struct re_registers regs;
  2029.   regex_t private_preg;
  2030.   int len = strlen (string);
  2031.   boolean want_reg_info = !preg->no_sub && nmatch > 0;
  2032.   private_preg = *preg;
  2033.   
  2034.   private_preg.not_bol = !!(eflags & REG_NOTBOL);
  2035.   private_preg.not_eol = !!(eflags & REG_NOTEOL);
  2036.   
  2037.   /* The user has told us exactly how many registers to return
  2038.      information about, via `nmatch'.  We have to pass that on to the
  2039.      matching routines.  */
  2040.   private_preg.regs_allocated = REGS_FIXED;
  2041.   
  2042.   if (want_reg_info)
  2043.     {
  2044.       regs.num_regs = nmatch;
  2045.       regs.start = TALLOC (nmatch, regoff_t);
  2046.       regs.end = TALLOC (nmatch, regoff_t);
  2047.       if (regs.start == NULL || regs.end == NULL)
  2048.         return (int) REG_NOMATCH;
  2049.     }
  2050.   /* Perform the searching operation.  */
  2051.   ret = re_search (&private_preg, string, len,
  2052.                    /* start: */ 0, /* range: */ len,
  2053.                    want_reg_info ? &regs : (struct re_registers *) 0);
  2054.   
  2055.   /* Copy the register information to the POSIX structure.  */
  2056.   if (want_reg_info)
  2057.     {
  2058.       if (ret >= 0)
  2059.         {
  2060.           unsigned r;
  2061.           for (r = 0; r < nmatch; r++)
  2062.             {
  2063.               pmatch[r].rm_so = regs.start[r];
  2064.               pmatch[r].rm_eo = regs.end[r];
  2065.             }
  2066.         }
  2067.       /* If we needed the temporary register info, free the space now.  */
  2068.       free (regs.start);
  2069.       free (regs.end);
  2070.     }
  2071.   /* We want zero return to mean success, unlike `re_search'.  */
  2072.   return ret >= 0 ? (int) REG_NOERROR : (int) REG_NOMATCH;
  2073. }
  2074. /* Returns a message corresponding to an error code, ERRCODE, returned
  2075.    from either regcomp or regexec.   We don't use PREG here.  */
  2076. size_t
  2077. regerror (errcode, preg, errbuf, errbuf_size)
  2078.     int errcode;
  2079.     const regex_t *preg;
  2080.     char *errbuf;
  2081.     size_t errbuf_size;
  2082. {
  2083.   const char *msg;
  2084.   size_t msg_size;
  2085.   if (errcode < 0
  2086.       || errcode >= (sizeof (re_error_msg) / sizeof (re_error_msg[0])))
  2087.     /* Only error codes returned by the rest of the code should be passed 
  2088.        to this routine.  If we are given anything else, or if other regex
  2089.        code generates an invalid error code, then the program has a bug.
  2090.        Dump core so we can fix it.  */
  2091.     abort ();
  2092.   msg = re_error_msg[errcode];
  2093.   /* POSIX doesn't require that we do anything in this case, but why
  2094.      not be nice.  */
  2095.   if (! msg)
  2096.     msg = "Success";
  2097.   msg_size = strlen (msg) + 1; /* Includes the null.  */
  2098.   
  2099.   if (errbuf_size != 0)
  2100.     {
  2101.       if (msg_size > errbuf_size)
  2102.         {
  2103.           strncpy (errbuf, msg, errbuf_size - 1);
  2104.           errbuf[errbuf_size - 1] = 0;
  2105.         }
  2106.       else
  2107.         strcpy (errbuf, msg);
  2108.     }
  2109.   return msg_size;
  2110. }
  2111. /* Free dynamically allocated space used by PREG.  */
  2112. void
  2113. regfree (preg)
  2114.     regex_t *preg;
  2115. {
  2116.   if (preg->buffer != NULL)
  2117.     free (preg->buffer);
  2118.   preg->buffer = NULL;
  2119.   
  2120.   preg->allocated = 0;
  2121.   preg->used = 0;
  2122.   if (preg->fastmap != NULL)
  2123.     free (preg->fastmap);
  2124.   preg->fastmap = NULL;
  2125.   preg->fastmap_accurate = 0;
  2126.   if (preg->translate != NULL)
  2127.     free (preg->translate);
  2128.   preg->translate = NULL;
  2129. }
  2130. #endif /* not emacs  */
  2131. /*
  2132. Local variables:
  2133. make-backup-files: t
  2134. version-control: t
  2135. trim-versions-without-asking: nil
  2136. End:
  2137. */
  2138. #endif