regex.cxx
上传用户:hzhsqp
上传日期:2007-01-06
资源大小:1600k
文件大小:164k
源码类别:

IP电话/视频会议

开发平台:

Visual C++

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