regex.c
上传用户:xiaozhuqw
上传日期:2009-11-15
资源大小:1338k
文件大小:184k
源码类别:

网络

开发平台:

Unix_Linux

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