Fix debugging of string-match-p errors
[emacs.git] / src / search.c
blobdc7e2d88603cce30ce34e2ff625b766a7fe62474
1 /* String search routines for GNU Emacs.
3 Copyright (C) 1985-1987, 1993-1994, 1997-1999, 2001-2016 Free Software
4 Foundation, Inc.
6 This file is part of GNU Emacs.
8 GNU Emacs is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or (at
11 your option) any later version.
13 GNU Emacs is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
22 #include <config.h>
24 #include "lisp.h"
25 #include "character.h"
26 #include "buffer.h"
27 #include "syntax.h"
28 #include "charset.h"
29 #include "region-cache.h"
30 #include "blockinput.h"
31 #include "intervals.h"
33 #include <sys/types.h>
34 #include "regex.h"
36 #define REGEXP_CACHE_SIZE 20
38 /* If the regexp is non-nil, then the buffer contains the compiled form
39 of that regexp, suitable for searching. */
40 struct regexp_cache
42 struct regexp_cache *next;
43 Lisp_Object regexp, whitespace_regexp;
44 /* Syntax table for which the regexp applies. We need this because
45 of character classes. If this is t, then the compiled pattern is valid
46 for any syntax-table. */
47 Lisp_Object syntax_table;
48 struct re_pattern_buffer buf;
49 char fastmap[0400];
50 /* True means regexp was compiled to do full POSIX backtracking. */
51 bool posix;
54 /* The instances of that struct. */
55 static struct regexp_cache searchbufs[REGEXP_CACHE_SIZE];
57 /* The head of the linked list; points to the most recently used buffer. */
58 static struct regexp_cache *searchbuf_head;
61 /* Every call to re_match, etc., must pass &search_regs as the regs
62 argument unless you can show it is unnecessary (i.e., if re_match
63 is certainly going to be called again before region-around-match
64 can be called).
66 Since the registers are now dynamically allocated, we need to make
67 sure not to refer to the Nth register before checking that it has
68 been allocated by checking search_regs.num_regs.
70 The regex code keeps track of whether it has allocated the search
71 buffer using bits in the re_pattern_buffer. This means that whenever
72 you compile a new pattern, it completely forgets whether it has
73 allocated any registers, and will allocate new registers the next
74 time you call a searching or matching function. Therefore, we need
75 to call re_set_registers after compiling a new pattern or after
76 setting the match registers, so that the regex functions will be
77 able to free or re-allocate it properly. */
78 static struct re_registers search_regs;
80 /* The buffer in which the last search was performed, or
81 Qt if the last search was done in a string;
82 Qnil if no searching has been done yet. */
83 static Lisp_Object last_thing_searched;
85 static void set_search_regs (ptrdiff_t, ptrdiff_t);
86 static void save_search_regs (void);
87 static EMACS_INT simple_search (EMACS_INT, unsigned char *, ptrdiff_t,
88 ptrdiff_t, Lisp_Object, ptrdiff_t, ptrdiff_t,
89 ptrdiff_t, ptrdiff_t);
90 static EMACS_INT boyer_moore (EMACS_INT, unsigned char *, ptrdiff_t,
91 Lisp_Object, Lisp_Object, ptrdiff_t,
92 ptrdiff_t, int);
93 static EMACS_INT search_buffer (Lisp_Object, ptrdiff_t, ptrdiff_t,
94 ptrdiff_t, ptrdiff_t, EMACS_INT, int,
95 Lisp_Object, Lisp_Object, bool);
97 static _Noreturn void
98 matcher_overflow (void)
100 error ("Stack overflow in regexp matcher");
103 /* Compile a regexp and signal a Lisp error if anything goes wrong.
104 PATTERN is the pattern to compile.
105 CP is the place to put the result.
106 TRANSLATE is a translation table for ignoring case, or nil for none.
107 POSIX is true if we want full backtracking (POSIX style) for this pattern.
108 False means backtrack only enough to get a valid match.
110 The behavior also depends on Vsearch_spaces_regexp. */
112 static void
113 compile_pattern_1 (struct regexp_cache *cp, Lisp_Object pattern,
114 Lisp_Object translate, bool posix)
116 char *val;
117 reg_syntax_t old;
119 cp->regexp = Qnil;
120 cp->buf.translate = (! NILP (translate) ? translate : make_number (0));
121 cp->posix = posix;
122 cp->buf.multibyte = STRING_MULTIBYTE (pattern);
123 cp->buf.charset_unibyte = charset_unibyte;
124 if (STRINGP (Vsearch_spaces_regexp))
125 cp->whitespace_regexp = Vsearch_spaces_regexp;
126 else
127 cp->whitespace_regexp = Qnil;
129 /* rms: I think BLOCK_INPUT is not needed here any more,
130 because regex.c defines malloc to call xmalloc.
131 Using BLOCK_INPUT here means the debugger won't run if an error occurs.
132 So let's turn it off. */
133 /* BLOCK_INPUT; */
134 old = re_set_syntax (RE_SYNTAX_EMACS
135 | (posix ? 0 : RE_NO_POSIX_BACKTRACKING));
137 if (STRINGP (Vsearch_spaces_regexp))
138 re_set_whitespace_regexp (SSDATA (Vsearch_spaces_regexp));
139 else
140 re_set_whitespace_regexp (NULL);
142 val = (char *) re_compile_pattern (SSDATA (pattern),
143 SBYTES (pattern), &cp->buf);
145 /* If the compiled pattern hard codes some of the contents of the
146 syntax-table, it can only be reused with *this* syntax table. */
147 cp->syntax_table = cp->buf.used_syntax ? BVAR (current_buffer, syntax_table) : Qt;
149 re_set_whitespace_regexp (NULL);
151 re_set_syntax (old);
152 /* unblock_input (); */
153 if (val)
154 xsignal1 (Qinvalid_regexp, build_string (val));
156 cp->regexp = Fcopy_sequence (pattern);
159 /* Shrink each compiled regexp buffer in the cache
160 to the size actually used right now.
161 This is called from garbage collection. */
163 void
164 shrink_regexp_cache (void)
166 struct regexp_cache *cp;
168 for (cp = searchbuf_head; cp != 0; cp = cp->next)
170 cp->buf.allocated = cp->buf.used;
171 cp->buf.buffer = xrealloc (cp->buf.buffer, cp->buf.used);
175 /* Clear the regexp cache w.r.t. a particular syntax table,
176 because it was changed.
177 There is no danger of memory leak here because re_compile_pattern
178 automagically manages the memory in each re_pattern_buffer struct,
179 based on its `allocated' and `buffer' values. */
180 void
181 clear_regexp_cache (void)
183 int i;
185 for (i = 0; i < REGEXP_CACHE_SIZE; ++i)
186 /* It's tempting to compare with the syntax-table we've actually changed,
187 but it's not sufficient because char-table inheritance means that
188 modifying one syntax-table can change others at the same time. */
189 if (!EQ (searchbufs[i].syntax_table, Qt))
190 searchbufs[i].regexp = Qnil;
193 /* Compile a regexp if necessary, but first check to see if there's one in
194 the cache.
195 PATTERN is the pattern to compile.
196 TRANSLATE is a translation table for ignoring case, or nil for none.
197 REGP is the structure that says where to store the "register"
198 values that will result from matching this pattern.
199 If it is 0, we should compile the pattern not to record any
200 subexpression bounds.
201 POSIX is true if we want full backtracking (POSIX style) for this pattern.
202 False means backtrack only enough to get a valid match. */
204 struct re_pattern_buffer *
205 compile_pattern (Lisp_Object pattern, struct re_registers *regp,
206 Lisp_Object translate, bool posix, bool multibyte)
208 struct regexp_cache *cp, **cpp;
210 for (cpp = &searchbuf_head; ; cpp = &cp->next)
212 cp = *cpp;
213 /* Entries are initialized to nil, and may be set to nil by
214 compile_pattern_1 if the pattern isn't valid. Don't apply
215 string accessors in those cases. However, compile_pattern_1
216 is only applied to the cache entry we pick here to reuse. So
217 nil should never appear before a non-nil entry. */
218 if (NILP (cp->regexp))
219 goto compile_it;
220 if (SCHARS (cp->regexp) == SCHARS (pattern)
221 && STRING_MULTIBYTE (cp->regexp) == STRING_MULTIBYTE (pattern)
222 && !NILP (Fstring_equal (cp->regexp, pattern))
223 && EQ (cp->buf.translate, (! NILP (translate) ? translate : make_number (0)))
224 && cp->posix == posix
225 && (EQ (cp->syntax_table, Qt)
226 || EQ (cp->syntax_table, BVAR (current_buffer, syntax_table)))
227 && !NILP (Fequal (cp->whitespace_regexp, Vsearch_spaces_regexp))
228 && cp->buf.charset_unibyte == charset_unibyte)
229 break;
231 /* If we're at the end of the cache, compile into the nil cell
232 we found, or the last (least recently used) cell with a
233 string value. */
234 if (cp->next == 0)
236 compile_it:
237 compile_pattern_1 (cp, pattern, translate, posix);
238 break;
242 /* When we get here, cp (aka *cpp) contains the compiled pattern,
243 either because we found it in the cache or because we just compiled it.
244 Move it to the front of the queue to mark it as most recently used. */
245 *cpp = cp->next;
246 cp->next = searchbuf_head;
247 searchbuf_head = cp;
249 /* Advise the searching functions about the space we have allocated
250 for register data. */
251 if (regp)
252 re_set_registers (&cp->buf, regp, regp->num_regs, regp->start, regp->end);
254 /* The compiled pattern can be used both for multibyte and unibyte
255 target. But, we have to tell which the pattern is used for. */
256 cp->buf.target_multibyte = multibyte;
258 return &cp->buf;
262 static Lisp_Object
263 looking_at_1 (Lisp_Object string, bool posix)
265 Lisp_Object val;
266 unsigned char *p1, *p2;
267 ptrdiff_t s1, s2;
268 register ptrdiff_t i;
269 struct re_pattern_buffer *bufp;
271 if (running_asynch_code)
272 save_search_regs ();
274 /* This is so set_image_of_range_1 in regex.c can find the EQV table. */
275 set_char_table_extras (BVAR (current_buffer, case_canon_table), 2,
276 BVAR (current_buffer, case_eqv_table));
278 CHECK_STRING (string);
279 bufp = compile_pattern (string,
280 (NILP (Vinhibit_changing_match_data)
281 ? &search_regs : NULL),
282 (!NILP (BVAR (current_buffer, case_fold_search))
283 ? BVAR (current_buffer, case_canon_table) : Qnil),
284 posix,
285 !NILP (BVAR (current_buffer, enable_multibyte_characters)));
287 immediate_quit = 1;
288 QUIT; /* Do a pending quit right away, to avoid paradoxical behavior */
290 /* Get pointers and sizes of the two strings
291 that make up the visible portion of the buffer. */
293 p1 = BEGV_ADDR;
294 s1 = GPT_BYTE - BEGV_BYTE;
295 p2 = GAP_END_ADDR;
296 s2 = ZV_BYTE - GPT_BYTE;
297 if (s1 < 0)
299 p2 = p1;
300 s2 = ZV_BYTE - BEGV_BYTE;
301 s1 = 0;
303 if (s2 < 0)
305 s1 = ZV_BYTE - BEGV_BYTE;
306 s2 = 0;
309 re_match_object = Qnil;
311 i = re_match_2 (bufp, (char *) p1, s1, (char *) p2, s2,
312 PT_BYTE - BEGV_BYTE,
313 (NILP (Vinhibit_changing_match_data)
314 ? &search_regs : NULL),
315 ZV_BYTE - BEGV_BYTE);
316 immediate_quit = 0;
318 if (i == -2)
319 matcher_overflow ();
321 val = (i >= 0 ? Qt : Qnil);
322 if (NILP (Vinhibit_changing_match_data) && i >= 0)
324 for (i = 0; i < search_regs.num_regs; i++)
325 if (search_regs.start[i] >= 0)
327 search_regs.start[i]
328 = BYTE_TO_CHAR (search_regs.start[i] + BEGV_BYTE);
329 search_regs.end[i]
330 = BYTE_TO_CHAR (search_regs.end[i] + BEGV_BYTE);
332 /* Set last_thing_searched only when match data is changed. */
333 XSETBUFFER (last_thing_searched, current_buffer);
336 return val;
339 DEFUN ("looking-at", Flooking_at, Slooking_at, 1, 1, 0,
340 doc: /* Return t if text after point matches regular expression REGEXP.
341 This function modifies the match data that `match-beginning',
342 `match-end' and `match-data' access; save and restore the match
343 data if you want to preserve them. */)
344 (Lisp_Object regexp)
346 return looking_at_1 (regexp, 0);
349 DEFUN ("posix-looking-at", Fposix_looking_at, Sposix_looking_at, 1, 1, 0,
350 doc: /* Return t if text after point matches regular expression REGEXP.
351 Find the longest match, in accord with Posix regular expression rules.
352 This function modifies the match data that `match-beginning',
353 `match-end' and `match-data' access; save and restore the match
354 data if you want to preserve them. */)
355 (Lisp_Object regexp)
357 return looking_at_1 (regexp, 1);
360 static Lisp_Object
361 string_match_1 (Lisp_Object regexp, Lisp_Object string, Lisp_Object start,
362 bool posix)
364 ptrdiff_t val;
365 struct re_pattern_buffer *bufp;
366 EMACS_INT pos;
367 ptrdiff_t pos_byte, i;
369 if (running_asynch_code)
370 save_search_regs ();
372 CHECK_STRING (regexp);
373 CHECK_STRING (string);
375 if (NILP (start))
376 pos = 0, pos_byte = 0;
377 else
379 ptrdiff_t len = SCHARS (string);
381 CHECK_NUMBER (start);
382 pos = XINT (start);
383 if (pos < 0 && -pos <= len)
384 pos = len + pos;
385 else if (0 > pos || pos > len)
386 args_out_of_range (string, start);
387 pos_byte = string_char_to_byte (string, pos);
390 /* This is so set_image_of_range_1 in regex.c can find the EQV table. */
391 set_char_table_extras (BVAR (current_buffer, case_canon_table), 2,
392 BVAR (current_buffer, case_eqv_table));
394 bufp = compile_pattern (regexp,
395 (NILP (Vinhibit_changing_match_data)
396 ? &search_regs : NULL),
397 (!NILP (BVAR (current_buffer, case_fold_search))
398 ? BVAR (current_buffer, case_canon_table) : Qnil),
399 posix,
400 STRING_MULTIBYTE (string));
401 immediate_quit = 1;
402 re_match_object = string;
404 val = re_search (bufp, SSDATA (string),
405 SBYTES (string), pos_byte,
406 SBYTES (string) - pos_byte,
407 (NILP (Vinhibit_changing_match_data)
408 ? &search_regs : NULL));
409 immediate_quit = 0;
411 /* Set last_thing_searched only when match data is changed. */
412 if (NILP (Vinhibit_changing_match_data))
413 last_thing_searched = Qt;
415 if (val == -2)
416 matcher_overflow ();
417 if (val < 0) return Qnil;
419 if (NILP (Vinhibit_changing_match_data))
420 for (i = 0; i < search_regs.num_regs; i++)
421 if (search_regs.start[i] >= 0)
423 search_regs.start[i]
424 = string_byte_to_char (string, search_regs.start[i]);
425 search_regs.end[i]
426 = string_byte_to_char (string, search_regs.end[i]);
429 return make_number (string_byte_to_char (string, val));
432 DEFUN ("string-match", Fstring_match, Sstring_match, 2, 3, 0,
433 doc: /* Return index of start of first match for REGEXP in STRING, or nil.
434 Matching ignores case if `case-fold-search' is non-nil.
435 If third arg START is non-nil, start search at that index in STRING.
436 For index of first char beyond the match, do (match-end 0).
437 `match-end' and `match-beginning' also give indices of substrings
438 matched by parenthesis constructs in the pattern.
440 You can use the function `match-string' to extract the substrings
441 matched by the parenthesis constructions in REGEXP. */)
442 (Lisp_Object regexp, Lisp_Object string, Lisp_Object start)
444 return string_match_1 (regexp, string, start, 0);
447 DEFUN ("posix-string-match", Fposix_string_match, Sposix_string_match, 2, 3, 0,
448 doc: /* Return index of start of first match for REGEXP in STRING, or nil.
449 Find the longest match, in accord with Posix regular expression rules.
450 Case is ignored if `case-fold-search' is non-nil in the current buffer.
451 If third arg START is non-nil, start search at that index in STRING.
452 For index of first char beyond the match, do (match-end 0).
453 `match-end' and `match-beginning' also give indices of substrings
454 matched by parenthesis constructs in the pattern. */)
455 (Lisp_Object regexp, Lisp_Object string, Lisp_Object start)
457 return string_match_1 (regexp, string, start, 1);
460 /* Match REGEXP against STRING using translation table TABLE,
461 searching all of STRING, and return the index of the match,
462 or negative on failure. This does not clobber the match data. */
464 ptrdiff_t
465 fast_string_match_internal (Lisp_Object regexp, Lisp_Object string,
466 Lisp_Object table)
468 ptrdiff_t val;
469 struct re_pattern_buffer *bufp;
471 bufp = compile_pattern (regexp, 0, table,
472 0, STRING_MULTIBYTE (string));
473 immediate_quit = 1;
474 re_match_object = string;
476 val = re_search (bufp, SSDATA (string),
477 SBYTES (string), 0,
478 SBYTES (string), 0);
479 immediate_quit = 0;
480 return val;
483 /* Match REGEXP against STRING, searching all of STRING ignoring case,
484 and return the index of the match, or negative on failure.
485 This does not clobber the match data.
486 We assume that STRING contains single-byte characters. */
488 ptrdiff_t
489 fast_c_string_match_ignore_case (Lisp_Object regexp,
490 const char *string, ptrdiff_t len)
492 ptrdiff_t val;
493 struct re_pattern_buffer *bufp;
495 regexp = string_make_unibyte (regexp);
496 re_match_object = Qt;
497 bufp = compile_pattern (regexp, 0,
498 Vascii_canon_table, 0,
500 immediate_quit = 1;
501 val = re_search (bufp, string, len, 0, len, 0);
502 immediate_quit = 0;
503 return val;
506 /* Match REGEXP against the characters after POS to LIMIT, and return
507 the number of matched characters. If STRING is non-nil, match
508 against the characters in it. In that case, POS and LIMIT are
509 indices into the string. This function doesn't modify the match
510 data. */
512 ptrdiff_t
513 fast_looking_at (Lisp_Object regexp, ptrdiff_t pos, ptrdiff_t pos_byte,
514 ptrdiff_t limit, ptrdiff_t limit_byte, Lisp_Object string)
516 bool multibyte;
517 struct re_pattern_buffer *buf;
518 unsigned char *p1, *p2;
519 ptrdiff_t s1, s2;
520 ptrdiff_t len;
522 if (STRINGP (string))
524 if (pos_byte < 0)
525 pos_byte = string_char_to_byte (string, pos);
526 if (limit_byte < 0)
527 limit_byte = string_char_to_byte (string, limit);
528 p1 = NULL;
529 s1 = 0;
530 p2 = SDATA (string);
531 s2 = SBYTES (string);
532 re_match_object = string;
533 multibyte = STRING_MULTIBYTE (string);
535 else
537 if (pos_byte < 0)
538 pos_byte = CHAR_TO_BYTE (pos);
539 if (limit_byte < 0)
540 limit_byte = CHAR_TO_BYTE (limit);
541 pos_byte -= BEGV_BYTE;
542 limit_byte -= BEGV_BYTE;
543 p1 = BEGV_ADDR;
544 s1 = GPT_BYTE - BEGV_BYTE;
545 p2 = GAP_END_ADDR;
546 s2 = ZV_BYTE - GPT_BYTE;
547 if (s1 < 0)
549 p2 = p1;
550 s2 = ZV_BYTE - BEGV_BYTE;
551 s1 = 0;
553 if (s2 < 0)
555 s1 = ZV_BYTE - BEGV_BYTE;
556 s2 = 0;
558 re_match_object = Qnil;
559 multibyte = ! NILP (BVAR (current_buffer, enable_multibyte_characters));
562 buf = compile_pattern (regexp, 0, Qnil, 0, multibyte);
563 immediate_quit = 1;
564 len = re_match_2 (buf, (char *) p1, s1, (char *) p2, s2,
565 pos_byte, NULL, limit_byte);
566 immediate_quit = 0;
568 return len;
572 /* The newline cache: remembering which sections of text have no newlines. */
574 /* If the user has requested the long scans caching, make sure it's on.
575 Otherwise, make sure it's off.
576 This is our cheezy way of associating an action with the change of
577 state of a buffer-local variable. */
578 static struct region_cache *
579 newline_cache_on_off (struct buffer *buf)
581 struct buffer *base_buf = buf;
582 bool indirect_p = false;
584 if (buf->base_buffer)
586 base_buf = buf->base_buffer;
587 indirect_p = true;
590 /* Don't turn on or off the cache in the base buffer, if the value
591 of cache-long-scans of the base buffer is inconsistent with that.
592 This is because doing so will just make the cache pure overhead,
593 since if we turn it on via indirect buffer, it will be
594 immediately turned off by its base buffer. */
595 if (NILP (BVAR (buf, cache_long_scans)))
597 if (!indirect_p
598 || NILP (BVAR (base_buf, cache_long_scans)))
600 /* It should be off. */
601 if (base_buf->newline_cache)
603 free_region_cache (base_buf->newline_cache);
604 base_buf->newline_cache = 0;
607 return NULL;
609 else
611 if (!indirect_p
612 || !NILP (BVAR (base_buf, cache_long_scans)))
614 /* It should be on. */
615 if (base_buf->newline_cache == 0)
616 base_buf->newline_cache = new_region_cache ();
618 return base_buf->newline_cache;
623 /* Search for COUNT newlines between START/START_BYTE and END/END_BYTE.
625 If COUNT is positive, search forwards; END must be >= START.
626 If COUNT is negative, search backwards for the -COUNTth instance;
627 END must be <= START.
628 If COUNT is zero, do anything you please; run rogue, for all I care.
630 If END is zero, use BEGV or ZV instead, as appropriate for the
631 direction indicated by COUNT.
633 If we find COUNT instances, set *SHORTAGE to zero, and return the
634 position past the COUNTth match. Note that for reverse motion
635 this is not the same as the usual convention for Emacs motion commands.
637 If we don't find COUNT instances before reaching END, set *SHORTAGE
638 to the number of newlines left unfound, and return END.
640 If BYTEPOS is not NULL, set *BYTEPOS to the byte position corresponding
641 to the returned character position.
643 If ALLOW_QUIT, set immediate_quit. That's good to do
644 except when inside redisplay. */
646 ptrdiff_t
647 find_newline (ptrdiff_t start, ptrdiff_t start_byte, ptrdiff_t end,
648 ptrdiff_t end_byte, ptrdiff_t count, ptrdiff_t *shortage,
649 ptrdiff_t *bytepos, bool allow_quit)
651 struct region_cache *newline_cache;
652 int direction;
653 struct buffer *cache_buffer;
655 if (count > 0)
657 direction = 1;
658 if (!end)
659 end = ZV, end_byte = ZV_BYTE;
661 else
663 direction = -1;
664 if (!end)
665 end = BEGV, end_byte = BEGV_BYTE;
667 if (end_byte == -1)
668 end_byte = CHAR_TO_BYTE (end);
670 newline_cache = newline_cache_on_off (current_buffer);
671 if (current_buffer->base_buffer)
672 cache_buffer = current_buffer->base_buffer;
673 else
674 cache_buffer = current_buffer;
676 if (shortage != 0)
677 *shortage = 0;
679 immediate_quit = allow_quit;
681 if (count > 0)
682 while (start != end)
684 /* Our innermost scanning loop is very simple; it doesn't know
685 about gaps, buffer ends, or the newline cache. ceiling is
686 the position of the last character before the next such
687 obstacle --- the last character the dumb search loop should
688 examine. */
689 ptrdiff_t tem, ceiling_byte = end_byte - 1;
691 /* If we're using the newline cache, consult it to see whether
692 we can avoid some scanning. */
693 if (newline_cache)
695 ptrdiff_t next_change;
696 int result = 1;
698 immediate_quit = 0;
699 while (start < end && result)
701 ptrdiff_t lim1;
703 result = region_cache_forward (cache_buffer, newline_cache,
704 start, &next_change);
705 if (result)
707 /* When the cache revalidation is deferred,
708 next-change might point beyond ZV, which will
709 cause assertion violation in CHAR_TO_BYTE below.
710 Limit next_change to ZV to avoid that. */
711 if (next_change > ZV)
712 next_change = ZV;
713 start = next_change;
714 lim1 = next_change = end;
716 else
717 lim1 = min (next_change, end);
719 /* The cache returned zero for this region; see if
720 this is because the region is known and includes
721 only newlines. While at that, count any newlines
722 we bump into, and exit if we found enough off them. */
723 start_byte = CHAR_TO_BYTE (start);
724 while (start < lim1
725 && FETCH_BYTE (start_byte) == '\n')
727 start_byte++;
728 start++;
729 if (--count == 0)
731 if (bytepos)
732 *bytepos = start_byte;
733 return start;
736 /* If we found a non-newline character before hitting
737 position where the cache will again return non-zero
738 (i.e. no newlines beyond that position), it means
739 this region is not yet known to the cache, and we
740 must resort to the "dumb loop" method. */
741 if (start < next_change && !result)
742 break;
743 result = 1;
745 if (start >= end)
747 start = end;
748 start_byte = end_byte;
749 break;
751 immediate_quit = allow_quit;
753 /* START should never be after END. */
754 if (start_byte > ceiling_byte)
755 start_byte = ceiling_byte;
757 /* Now the text after start is an unknown region, and
758 next_change is the position of the next known region. */
759 ceiling_byte = min (CHAR_TO_BYTE (next_change) - 1, ceiling_byte);
761 else if (start_byte == -1)
762 start_byte = CHAR_TO_BYTE (start);
764 /* The dumb loop can only scan text stored in contiguous
765 bytes. BUFFER_CEILING_OF returns the last character
766 position that is contiguous, so the ceiling is the
767 position after that. */
768 tem = BUFFER_CEILING_OF (start_byte);
769 ceiling_byte = min (tem, ceiling_byte);
772 /* The termination address of the dumb loop. */
773 unsigned char *lim_addr = BYTE_POS_ADDR (ceiling_byte) + 1;
774 ptrdiff_t lim_byte = ceiling_byte + 1;
776 /* Nonpositive offsets (relative to LIM_ADDR and LIM_BYTE)
777 of the base, the cursor, and the next line. */
778 ptrdiff_t base = start_byte - lim_byte;
779 ptrdiff_t cursor, next;
781 for (cursor = base; cursor < 0; cursor = next)
783 /* The dumb loop. */
784 unsigned char *nl = memchr (lim_addr + cursor, '\n', - cursor);
785 next = nl ? nl - lim_addr : 0;
787 /* If we're using the newline cache, cache the fact that
788 the region we just traversed is free of newlines. */
789 if (newline_cache && cursor != next)
791 know_region_cache (cache_buffer, newline_cache,
792 BYTE_TO_CHAR (lim_byte + cursor),
793 BYTE_TO_CHAR (lim_byte + next));
794 /* know_region_cache can relocate buffer text. */
795 lim_addr = BYTE_POS_ADDR (ceiling_byte) + 1;
798 if (! nl)
799 break;
800 next++;
802 if (--count == 0)
804 immediate_quit = 0;
805 if (bytepos)
806 *bytepos = lim_byte + next;
807 return BYTE_TO_CHAR (lim_byte + next);
811 start_byte = lim_byte;
812 start = BYTE_TO_CHAR (start_byte);
815 else
816 while (start > end)
818 /* The last character to check before the next obstacle. */
819 ptrdiff_t tem, ceiling_byte = end_byte;
821 /* Consult the newline cache, if appropriate. */
822 if (newline_cache)
824 ptrdiff_t next_change;
825 int result = 1;
827 immediate_quit = 0;
828 while (start > end && result)
830 ptrdiff_t lim1;
832 result = region_cache_backward (cache_buffer, newline_cache,
833 start, &next_change);
834 if (result)
836 start = next_change;
837 lim1 = next_change = end;
839 else
840 lim1 = max (next_change, end);
841 start_byte = CHAR_TO_BYTE (start);
842 while (start > lim1
843 && FETCH_BYTE (start_byte - 1) == '\n')
845 if (++count == 0)
847 if (bytepos)
848 *bytepos = start_byte;
849 return start;
851 start_byte--;
852 start--;
854 if (start > next_change && !result)
855 break;
856 result = 1;
858 if (start <= end)
860 start = end;
861 start_byte = end_byte;
862 break;
864 immediate_quit = allow_quit;
866 /* Start should never be at or before end. */
867 if (start_byte <= ceiling_byte)
868 start_byte = ceiling_byte + 1;
870 /* Now the text before start is an unknown region, and
871 next_change is the position of the next known region. */
872 ceiling_byte = max (CHAR_TO_BYTE (next_change), ceiling_byte);
874 else if (start_byte == -1)
875 start_byte = CHAR_TO_BYTE (start);
877 /* Stop scanning before the gap. */
878 tem = BUFFER_FLOOR_OF (start_byte - 1);
879 ceiling_byte = max (tem, ceiling_byte);
882 /* The termination address of the dumb loop. */
883 unsigned char *ceiling_addr = BYTE_POS_ADDR (ceiling_byte);
885 /* Offsets (relative to CEILING_ADDR and CEILING_BYTE) of
886 the base, the cursor, and the previous line. These
887 offsets are at least -1. */
888 ptrdiff_t base = start_byte - ceiling_byte;
889 ptrdiff_t cursor, prev;
891 for (cursor = base; 0 < cursor; cursor = prev)
893 unsigned char *nl = memrchr (ceiling_addr, '\n', cursor);
894 prev = nl ? nl - ceiling_addr : -1;
896 /* If we're looking for newlines, cache the fact that
897 this line's region is free of them. */
898 if (newline_cache && cursor != prev + 1)
900 know_region_cache (cache_buffer, newline_cache,
901 BYTE_TO_CHAR (ceiling_byte + prev + 1),
902 BYTE_TO_CHAR (ceiling_byte + cursor));
903 /* know_region_cache can relocate buffer text. */
904 ceiling_addr = BYTE_POS_ADDR (ceiling_byte);
907 if (! nl)
908 break;
910 if (++count >= 0)
912 immediate_quit = 0;
913 if (bytepos)
914 *bytepos = ceiling_byte + prev + 1;
915 return BYTE_TO_CHAR (ceiling_byte + prev + 1);
919 start_byte = ceiling_byte;
920 start = BYTE_TO_CHAR (start_byte);
924 immediate_quit = 0;
925 if (shortage)
926 *shortage = count * direction;
927 if (bytepos)
929 *bytepos = start_byte == -1 ? CHAR_TO_BYTE (start) : start_byte;
930 eassert (*bytepos == CHAR_TO_BYTE (start));
932 return start;
935 /* Search for COUNT instances of a line boundary.
936 Start at START. If COUNT is negative, search backwards.
938 We report the resulting position by calling TEMP_SET_PT_BOTH.
940 If we find COUNT instances. we position after (always after,
941 even if scanning backwards) the COUNTth match, and return 0.
943 If we don't find COUNT instances before reaching the end of the
944 buffer (or the beginning, if scanning backwards), we return
945 the number of line boundaries left unfound, and position at
946 the limit we bumped up against.
948 If ALLOW_QUIT, set immediate_quit. That's good to do
949 except in special cases. */
951 ptrdiff_t
952 scan_newline (ptrdiff_t start, ptrdiff_t start_byte,
953 ptrdiff_t limit, ptrdiff_t limit_byte,
954 ptrdiff_t count, bool allow_quit)
956 ptrdiff_t charpos, bytepos, shortage;
958 charpos = find_newline (start, start_byte, limit, limit_byte,
959 count, &shortage, &bytepos, allow_quit);
960 if (shortage)
961 TEMP_SET_PT_BOTH (limit, limit_byte);
962 else
963 TEMP_SET_PT_BOTH (charpos, bytepos);
964 return shortage;
967 /* Like above, but always scan from point and report the
968 resulting position in *CHARPOS and *BYTEPOS. */
970 ptrdiff_t
971 scan_newline_from_point (ptrdiff_t count, ptrdiff_t *charpos,
972 ptrdiff_t *bytepos)
974 ptrdiff_t shortage;
976 if (count <= 0)
977 *charpos = find_newline (PT, PT_BYTE, BEGV, BEGV_BYTE, count - 1,
978 &shortage, bytepos, 1);
979 else
980 *charpos = find_newline (PT, PT_BYTE, ZV, ZV_BYTE, count,
981 &shortage, bytepos, 1);
982 return shortage;
985 /* Like find_newline, but doesn't allow QUITting and doesn't return
986 SHORTAGE. */
987 ptrdiff_t
988 find_newline_no_quit (ptrdiff_t from, ptrdiff_t frombyte,
989 ptrdiff_t cnt, ptrdiff_t *bytepos)
991 return find_newline (from, frombyte, 0, -1, cnt, NULL, bytepos, 0);
994 /* Like find_newline, but returns position before the newline, not
995 after, and only search up to TO.
996 This isn't just find_newline_no_quit (...)-1, because you might hit TO. */
998 ptrdiff_t
999 find_before_next_newline (ptrdiff_t from, ptrdiff_t to,
1000 ptrdiff_t cnt, ptrdiff_t *bytepos)
1002 ptrdiff_t shortage;
1003 ptrdiff_t pos = find_newline (from, -1, to, -1, cnt, &shortage, bytepos, 1);
1005 if (shortage == 0)
1007 if (bytepos)
1008 DEC_BOTH (pos, *bytepos);
1009 else
1010 pos--;
1012 return pos;
1015 /* Subroutines of Lisp buffer search functions. */
1017 static Lisp_Object
1018 search_command (Lisp_Object string, Lisp_Object bound, Lisp_Object noerror,
1019 Lisp_Object count, int direction, int RE, bool posix)
1021 EMACS_INT np;
1022 EMACS_INT lim;
1023 ptrdiff_t lim_byte;
1024 EMACS_INT n = direction;
1026 if (!NILP (count))
1028 CHECK_NUMBER (count);
1029 n *= XINT (count);
1032 CHECK_STRING (string);
1033 if (NILP (bound))
1035 if (n > 0)
1036 lim = ZV, lim_byte = ZV_BYTE;
1037 else
1038 lim = BEGV, lim_byte = BEGV_BYTE;
1040 else
1042 CHECK_NUMBER_COERCE_MARKER (bound);
1043 lim = XINT (bound);
1044 if (n > 0 ? lim < PT : lim > PT)
1045 error ("Invalid search bound (wrong side of point)");
1046 if (lim > ZV)
1047 lim = ZV, lim_byte = ZV_BYTE;
1048 else if (lim < BEGV)
1049 lim = BEGV, lim_byte = BEGV_BYTE;
1050 else
1051 lim_byte = CHAR_TO_BYTE (lim);
1054 /* This is so set_image_of_range_1 in regex.c can find the EQV table. */
1055 set_char_table_extras (BVAR (current_buffer, case_canon_table), 2,
1056 BVAR (current_buffer, case_eqv_table));
1058 np = search_buffer (string, PT, PT_BYTE, lim, lim_byte, n, RE,
1059 (!NILP (BVAR (current_buffer, case_fold_search))
1060 ? BVAR (current_buffer, case_canon_table)
1061 : Qnil),
1062 (!NILP (BVAR (current_buffer, case_fold_search))
1063 ? BVAR (current_buffer, case_eqv_table)
1064 : Qnil),
1065 posix);
1066 if (np <= 0)
1068 if (NILP (noerror))
1069 xsignal1 (Qsearch_failed, string);
1071 if (!EQ (noerror, Qt))
1073 eassert (BEGV <= lim && lim <= ZV);
1074 SET_PT_BOTH (lim, lim_byte);
1075 return Qnil;
1076 #if 0 /* This would be clean, but maybe programs depend on
1077 a value of nil here. */
1078 np = lim;
1079 #endif
1081 else
1082 return Qnil;
1085 eassert (BEGV <= np && np <= ZV);
1086 SET_PT (np);
1088 return make_number (np);
1091 /* Return true if REGEXP it matches just one constant string. */
1093 static bool
1094 trivial_regexp_p (Lisp_Object regexp)
1096 ptrdiff_t len = SBYTES (regexp);
1097 unsigned char *s = SDATA (regexp);
1098 while (--len >= 0)
1100 switch (*s++)
1102 case '.': case '*': case '+': case '?': case '[': case '^': case '$':
1103 return 0;
1104 case '\\':
1105 if (--len < 0)
1106 return 0;
1107 switch (*s++)
1109 case '|': case '(': case ')': case '`': case '\'': case 'b':
1110 case 'B': case '<': case '>': case 'w': case 'W': case 's':
1111 case 'S': case '=': case '{': case '}': case '_':
1112 case 'c': case 'C': /* for categoryspec and notcategoryspec */
1113 case '1': case '2': case '3': case '4': case '5':
1114 case '6': case '7': case '8': case '9':
1115 return 0;
1119 return 1;
1122 /* Search for the n'th occurrence of STRING in the current buffer,
1123 starting at position POS and stopping at position LIM,
1124 treating STRING as a literal string if RE is false or as
1125 a regular expression if RE is true.
1127 If N is positive, searching is forward and LIM must be greater than POS.
1128 If N is negative, searching is backward and LIM must be less than POS.
1130 Returns -x if x occurrences remain to be found (x > 0),
1131 or else the position at the beginning of the Nth occurrence
1132 (if searching backward) or the end (if searching forward).
1134 POSIX is nonzero if we want full backtracking (POSIX style)
1135 for this pattern. 0 means backtrack only enough to get a valid match. */
1137 #define TRANSLATE(out, trt, d) \
1138 do \
1140 if (! NILP (trt)) \
1142 Lisp_Object temp; \
1143 temp = Faref (trt, make_number (d)); \
1144 if (INTEGERP (temp)) \
1145 out = XINT (temp); \
1146 else \
1147 out = d; \
1149 else \
1150 out = d; \
1152 while (0)
1154 /* Only used in search_buffer, to record the end position of the match
1155 when searching regexps and SEARCH_REGS should not be changed
1156 (i.e. Vinhibit_changing_match_data is non-nil). */
1157 static struct re_registers search_regs_1;
1159 static EMACS_INT
1160 search_buffer (Lisp_Object string, ptrdiff_t pos, ptrdiff_t pos_byte,
1161 ptrdiff_t lim, ptrdiff_t lim_byte, EMACS_INT n,
1162 int RE, Lisp_Object trt, Lisp_Object inverse_trt, bool posix)
1164 ptrdiff_t len = SCHARS (string);
1165 ptrdiff_t len_byte = SBYTES (string);
1166 register ptrdiff_t i;
1168 if (running_asynch_code)
1169 save_search_regs ();
1171 /* Searching 0 times means don't move. */
1172 /* Null string is found at starting position. */
1173 if (len == 0 || n == 0)
1175 set_search_regs (pos_byte, 0);
1176 return pos;
1179 if (RE && !(trivial_regexp_p (string) && NILP (Vsearch_spaces_regexp)))
1181 unsigned char *p1, *p2;
1182 ptrdiff_t s1, s2;
1183 struct re_pattern_buffer *bufp;
1185 bufp = compile_pattern (string,
1186 (NILP (Vinhibit_changing_match_data)
1187 ? &search_regs : &search_regs_1),
1188 trt, posix,
1189 !NILP (BVAR (current_buffer, enable_multibyte_characters)));
1191 immediate_quit = 1; /* Quit immediately if user types ^G,
1192 because letting this function finish
1193 can take too long. */
1194 QUIT; /* Do a pending quit right away,
1195 to avoid paradoxical behavior */
1196 /* Get pointers and sizes of the two strings
1197 that make up the visible portion of the buffer. */
1199 p1 = BEGV_ADDR;
1200 s1 = GPT_BYTE - BEGV_BYTE;
1201 p2 = GAP_END_ADDR;
1202 s2 = ZV_BYTE - GPT_BYTE;
1203 if (s1 < 0)
1205 p2 = p1;
1206 s2 = ZV_BYTE - BEGV_BYTE;
1207 s1 = 0;
1209 if (s2 < 0)
1211 s1 = ZV_BYTE - BEGV_BYTE;
1212 s2 = 0;
1214 re_match_object = Qnil;
1216 while (n < 0)
1218 ptrdiff_t val;
1220 val = re_search_2 (bufp, (char *) p1, s1, (char *) p2, s2,
1221 pos_byte - BEGV_BYTE, lim_byte - pos_byte,
1222 (NILP (Vinhibit_changing_match_data)
1223 ? &search_regs : &search_regs_1),
1224 /* Don't allow match past current point */
1225 pos_byte - BEGV_BYTE);
1226 if (val == -2)
1228 matcher_overflow ();
1230 if (val >= 0)
1232 if (NILP (Vinhibit_changing_match_data))
1234 pos_byte = search_regs.start[0] + BEGV_BYTE;
1235 for (i = 0; i < search_regs.num_regs; i++)
1236 if (search_regs.start[i] >= 0)
1238 search_regs.start[i]
1239 = BYTE_TO_CHAR (search_regs.start[i] + BEGV_BYTE);
1240 search_regs.end[i]
1241 = BYTE_TO_CHAR (search_regs.end[i] + BEGV_BYTE);
1243 XSETBUFFER (last_thing_searched, current_buffer);
1244 /* Set pos to the new position. */
1245 pos = search_regs.start[0];
1247 else
1249 pos_byte = search_regs_1.start[0] + BEGV_BYTE;
1250 /* Set pos to the new position. */
1251 pos = BYTE_TO_CHAR (search_regs_1.start[0] + BEGV_BYTE);
1254 else
1256 immediate_quit = 0;
1257 return (n);
1259 n++;
1261 while (n > 0)
1263 ptrdiff_t val;
1265 val = re_search_2 (bufp, (char *) p1, s1, (char *) p2, s2,
1266 pos_byte - BEGV_BYTE, lim_byte - pos_byte,
1267 (NILP (Vinhibit_changing_match_data)
1268 ? &search_regs : &search_regs_1),
1269 lim_byte - BEGV_BYTE);
1270 if (val == -2)
1272 matcher_overflow ();
1274 if (val >= 0)
1276 if (NILP (Vinhibit_changing_match_data))
1278 pos_byte = search_regs.end[0] + BEGV_BYTE;
1279 for (i = 0; i < search_regs.num_regs; i++)
1280 if (search_regs.start[i] >= 0)
1282 search_regs.start[i]
1283 = BYTE_TO_CHAR (search_regs.start[i] + BEGV_BYTE);
1284 search_regs.end[i]
1285 = BYTE_TO_CHAR (search_regs.end[i] + BEGV_BYTE);
1287 XSETBUFFER (last_thing_searched, current_buffer);
1288 pos = search_regs.end[0];
1290 else
1292 pos_byte = search_regs_1.end[0] + BEGV_BYTE;
1293 pos = BYTE_TO_CHAR (search_regs_1.end[0] + BEGV_BYTE);
1296 else
1298 immediate_quit = 0;
1299 return (0 - n);
1301 n--;
1303 immediate_quit = 0;
1304 return (pos);
1306 else /* non-RE case */
1308 unsigned char *raw_pattern, *pat;
1309 ptrdiff_t raw_pattern_size;
1310 ptrdiff_t raw_pattern_size_byte;
1311 unsigned char *patbuf;
1312 bool multibyte = !NILP (BVAR (current_buffer, enable_multibyte_characters));
1313 unsigned char *base_pat;
1314 /* Set to positive if we find a non-ASCII char that need
1315 translation. Otherwise set to zero later. */
1316 int char_base = -1;
1317 bool boyer_moore_ok = 1;
1318 USE_SAFE_ALLOCA;
1320 /* MULTIBYTE says whether the text to be searched is multibyte.
1321 We must convert PATTERN to match that, or we will not really
1322 find things right. */
1324 if (multibyte == STRING_MULTIBYTE (string))
1326 raw_pattern = SDATA (string);
1327 raw_pattern_size = SCHARS (string);
1328 raw_pattern_size_byte = SBYTES (string);
1330 else if (multibyte)
1332 raw_pattern_size = SCHARS (string);
1333 raw_pattern_size_byte
1334 = count_size_as_multibyte (SDATA (string),
1335 raw_pattern_size);
1336 raw_pattern = SAFE_ALLOCA (raw_pattern_size_byte + 1);
1337 copy_text (SDATA (string), raw_pattern,
1338 SCHARS (string), 0, 1);
1340 else
1342 /* Converting multibyte to single-byte.
1344 ??? Perhaps this conversion should be done in a special way
1345 by subtracting nonascii-insert-offset from each non-ASCII char,
1346 so that only the multibyte chars which really correspond to
1347 the chosen single-byte character set can possibly match. */
1348 raw_pattern_size = SCHARS (string);
1349 raw_pattern_size_byte = SCHARS (string);
1350 raw_pattern = SAFE_ALLOCA (raw_pattern_size + 1);
1351 copy_text (SDATA (string), raw_pattern,
1352 SBYTES (string), 1, 0);
1355 /* Copy and optionally translate the pattern. */
1356 len = raw_pattern_size;
1357 len_byte = raw_pattern_size_byte;
1358 SAFE_NALLOCA (patbuf, MAX_MULTIBYTE_LENGTH, len);
1359 pat = patbuf;
1360 base_pat = raw_pattern;
1361 if (multibyte)
1363 /* Fill patbuf by translated characters in STRING while
1364 checking if we can use boyer-moore search. If TRT is
1365 non-nil, we can use boyer-moore search only if TRT can be
1366 represented by the byte array of 256 elements. For that,
1367 all non-ASCII case-equivalents of all case-sensitive
1368 characters in STRING must belong to the same character
1369 group (two characters belong to the same group iff their
1370 multibyte forms are the same except for the last byte;
1371 i.e. every 64 characters form a group; U+0000..U+003F,
1372 U+0040..U+007F, U+0080..U+00BF, ...). */
1374 while (--len >= 0)
1376 unsigned char str_base[MAX_MULTIBYTE_LENGTH], *str;
1377 int c, translated, inverse;
1378 int in_charlen, charlen;
1380 /* If we got here and the RE flag is set, it's because we're
1381 dealing with a regexp known to be trivial, so the backslash
1382 just quotes the next character. */
1383 if (RE && *base_pat == '\\')
1385 len--;
1386 raw_pattern_size--;
1387 len_byte--;
1388 base_pat++;
1391 c = STRING_CHAR_AND_LENGTH (base_pat, in_charlen);
1393 if (NILP (trt))
1395 str = base_pat;
1396 charlen = in_charlen;
1398 else
1400 /* Translate the character. */
1401 TRANSLATE (translated, trt, c);
1402 charlen = CHAR_STRING (translated, str_base);
1403 str = str_base;
1405 /* Check if C has any other case-equivalents. */
1406 TRANSLATE (inverse, inverse_trt, c);
1407 /* If so, check if we can use boyer-moore. */
1408 if (c != inverse && boyer_moore_ok)
1410 /* Check if all equivalents belong to the same
1411 group of characters. Note that the check of C
1412 itself is done by the last iteration. */
1413 int this_char_base = -1;
1415 while (boyer_moore_ok)
1417 if (ASCII_CHAR_P (inverse))
1419 if (this_char_base > 0)
1420 boyer_moore_ok = 0;
1421 else
1422 this_char_base = 0;
1424 else if (CHAR_BYTE8_P (inverse))
1425 /* Boyer-moore search can't handle a
1426 translation of an eight-bit
1427 character. */
1428 boyer_moore_ok = 0;
1429 else if (this_char_base < 0)
1431 this_char_base = inverse & ~0x3F;
1432 if (char_base < 0)
1433 char_base = this_char_base;
1434 else if (this_char_base != char_base)
1435 boyer_moore_ok = 0;
1437 else if ((inverse & ~0x3F) != this_char_base)
1438 boyer_moore_ok = 0;
1439 if (c == inverse)
1440 break;
1441 TRANSLATE (inverse, inverse_trt, inverse);
1446 /* Store this character into the translated pattern. */
1447 memcpy (pat, str, charlen);
1448 pat += charlen;
1449 base_pat += in_charlen;
1450 len_byte -= in_charlen;
1453 /* If char_base is still negative we didn't find any translated
1454 non-ASCII characters. */
1455 if (char_base < 0)
1456 char_base = 0;
1458 else
1460 /* Unibyte buffer. */
1461 char_base = 0;
1462 while (--len >= 0)
1464 int c, translated, inverse;
1466 /* If we got here and the RE flag is set, it's because we're
1467 dealing with a regexp known to be trivial, so the backslash
1468 just quotes the next character. */
1469 if (RE && *base_pat == '\\')
1471 len--;
1472 raw_pattern_size--;
1473 base_pat++;
1475 c = *base_pat++;
1476 TRANSLATE (translated, trt, c);
1477 *pat++ = translated;
1478 /* Check that none of C's equivalents violates the
1479 assumptions of boyer_moore. */
1480 TRANSLATE (inverse, inverse_trt, c);
1481 while (1)
1483 if (inverse >= 0200)
1485 boyer_moore_ok = 0;
1486 break;
1488 if (c == inverse)
1489 break;
1490 TRANSLATE (inverse, inverse_trt, inverse);
1495 len_byte = pat - patbuf;
1496 pat = base_pat = patbuf;
1498 EMACS_INT result
1499 = (boyer_moore_ok
1500 ? boyer_moore (n, pat, len_byte, trt, inverse_trt,
1501 pos_byte, lim_byte,
1502 char_base)
1503 : simple_search (n, pat, raw_pattern_size, len_byte, trt,
1504 pos, pos_byte, lim, lim_byte));
1505 SAFE_FREE ();
1506 return result;
1510 /* Do a simple string search N times for the string PAT,
1511 whose length is LEN/LEN_BYTE,
1512 from buffer position POS/POS_BYTE until LIM/LIM_BYTE.
1513 TRT is the translation table.
1515 Return the character position where the match is found.
1516 Otherwise, if M matches remained to be found, return -M.
1518 This kind of search works regardless of what is in PAT and
1519 regardless of what is in TRT. It is used in cases where
1520 boyer_moore cannot work. */
1522 static EMACS_INT
1523 simple_search (EMACS_INT n, unsigned char *pat,
1524 ptrdiff_t len, ptrdiff_t len_byte, Lisp_Object trt,
1525 ptrdiff_t pos, ptrdiff_t pos_byte,
1526 ptrdiff_t lim, ptrdiff_t lim_byte)
1528 bool multibyte = ! NILP (BVAR (current_buffer, enable_multibyte_characters));
1529 bool forward = n > 0;
1530 /* Number of buffer bytes matched. Note that this may be different
1531 from len_byte in a multibyte buffer. */
1532 ptrdiff_t match_byte = PTRDIFF_MIN;
1534 if (lim > pos && multibyte)
1535 while (n > 0)
1537 while (1)
1539 /* Try matching at position POS. */
1540 ptrdiff_t this_pos = pos;
1541 ptrdiff_t this_pos_byte = pos_byte;
1542 ptrdiff_t this_len = len;
1543 unsigned char *p = pat;
1544 if (pos + len > lim || pos_byte + len_byte > lim_byte)
1545 goto stop;
1547 while (this_len > 0)
1549 int charlen, buf_charlen;
1550 int pat_ch, buf_ch;
1552 pat_ch = STRING_CHAR_AND_LENGTH (p, charlen);
1553 buf_ch = STRING_CHAR_AND_LENGTH (BYTE_POS_ADDR (this_pos_byte),
1554 buf_charlen);
1555 TRANSLATE (buf_ch, trt, buf_ch);
1557 if (buf_ch != pat_ch)
1558 break;
1560 this_len--;
1561 p += charlen;
1563 this_pos_byte += buf_charlen;
1564 this_pos++;
1567 if (this_len == 0)
1569 match_byte = this_pos_byte - pos_byte;
1570 pos += len;
1571 pos_byte += match_byte;
1572 break;
1575 INC_BOTH (pos, pos_byte);
1578 n--;
1580 else if (lim > pos)
1581 while (n > 0)
1583 while (1)
1585 /* Try matching at position POS. */
1586 ptrdiff_t this_pos = pos;
1587 ptrdiff_t this_len = len;
1588 unsigned char *p = pat;
1590 if (pos + len > lim)
1591 goto stop;
1593 while (this_len > 0)
1595 int pat_ch = *p++;
1596 int buf_ch = FETCH_BYTE (this_pos);
1597 TRANSLATE (buf_ch, trt, buf_ch);
1599 if (buf_ch != pat_ch)
1600 break;
1602 this_len--;
1603 this_pos++;
1606 if (this_len == 0)
1608 match_byte = len;
1609 pos += len;
1610 break;
1613 pos++;
1616 n--;
1618 /* Backwards search. */
1619 else if (lim < pos && multibyte)
1620 while (n < 0)
1622 while (1)
1624 /* Try matching at position POS. */
1625 ptrdiff_t this_pos = pos;
1626 ptrdiff_t this_pos_byte = pos_byte;
1627 ptrdiff_t this_len = len;
1628 const unsigned char *p = pat + len_byte;
1630 if (this_pos - len < lim || (pos_byte - len_byte) < lim_byte)
1631 goto stop;
1633 while (this_len > 0)
1635 int pat_ch, buf_ch;
1637 DEC_BOTH (this_pos, this_pos_byte);
1638 PREV_CHAR_BOUNDARY (p, pat);
1639 pat_ch = STRING_CHAR (p);
1640 buf_ch = STRING_CHAR (BYTE_POS_ADDR (this_pos_byte));
1641 TRANSLATE (buf_ch, trt, buf_ch);
1643 if (buf_ch != pat_ch)
1644 break;
1646 this_len--;
1649 if (this_len == 0)
1651 match_byte = pos_byte - this_pos_byte;
1652 pos = this_pos;
1653 pos_byte = this_pos_byte;
1654 break;
1657 DEC_BOTH (pos, pos_byte);
1660 n++;
1662 else if (lim < pos)
1663 while (n < 0)
1665 while (1)
1667 /* Try matching at position POS. */
1668 ptrdiff_t this_pos = pos - len;
1669 ptrdiff_t this_len = len;
1670 unsigned char *p = pat;
1672 if (this_pos < lim)
1673 goto stop;
1675 while (this_len > 0)
1677 int pat_ch = *p++;
1678 int buf_ch = FETCH_BYTE (this_pos);
1679 TRANSLATE (buf_ch, trt, buf_ch);
1681 if (buf_ch != pat_ch)
1682 break;
1683 this_len--;
1684 this_pos++;
1687 if (this_len == 0)
1689 match_byte = len;
1690 pos -= len;
1691 break;
1694 pos--;
1697 n++;
1700 stop:
1701 if (n == 0)
1703 eassert (match_byte != PTRDIFF_MIN);
1704 if (forward)
1705 set_search_regs ((multibyte ? pos_byte : pos) - match_byte, match_byte);
1706 else
1707 set_search_regs (multibyte ? pos_byte : pos, match_byte);
1709 return pos;
1711 else if (n > 0)
1712 return -n;
1713 else
1714 return n;
1717 /* Do Boyer-Moore search N times for the string BASE_PAT,
1718 whose length is LEN_BYTE,
1719 from buffer position POS_BYTE until LIM_BYTE.
1720 DIRECTION says which direction we search in.
1721 TRT and INVERSE_TRT are translation tables.
1722 Characters in PAT are already translated by TRT.
1724 This kind of search works if all the characters in BASE_PAT that
1725 have nontrivial translation are the same aside from the last byte.
1726 This makes it possible to translate just the last byte of a
1727 character, and do so after just a simple test of the context.
1728 CHAR_BASE is nonzero if there is such a non-ASCII character.
1730 If that criterion is not satisfied, do not call this function. */
1732 static EMACS_INT
1733 boyer_moore (EMACS_INT n, unsigned char *base_pat,
1734 ptrdiff_t len_byte,
1735 Lisp_Object trt, Lisp_Object inverse_trt,
1736 ptrdiff_t pos_byte, ptrdiff_t lim_byte,
1737 int char_base)
1739 int direction = ((n > 0) ? 1 : -1);
1740 register ptrdiff_t dirlen;
1741 ptrdiff_t limit;
1742 int stride_for_teases = 0;
1743 int BM_tab[0400];
1744 register unsigned char *cursor, *p_limit;
1745 register ptrdiff_t i;
1746 register int j;
1747 unsigned char *pat, *pat_end;
1748 bool multibyte = ! NILP (BVAR (current_buffer, enable_multibyte_characters));
1750 unsigned char simple_translate[0400];
1751 /* These are set to the preceding bytes of a byte to be translated
1752 if char_base is nonzero. As the maximum byte length of a
1753 multibyte character is 5, we have to check at most four previous
1754 bytes. */
1755 int translate_prev_byte1 = 0;
1756 int translate_prev_byte2 = 0;
1757 int translate_prev_byte3 = 0;
1759 /* The general approach is that we are going to maintain that we know
1760 the first (closest to the present position, in whatever direction
1761 we're searching) character that could possibly be the last
1762 (furthest from present position) character of a valid match. We
1763 advance the state of our knowledge by looking at that character
1764 and seeing whether it indeed matches the last character of the
1765 pattern. If it does, we take a closer look. If it does not, we
1766 move our pointer (to putative last characters) as far as is
1767 logically possible. This amount of movement, which I call a
1768 stride, will be the length of the pattern if the actual character
1769 appears nowhere in the pattern, otherwise it will be the distance
1770 from the last occurrence of that character to the end of the
1771 pattern. If the amount is zero we have a possible match. */
1773 /* Here we make a "mickey mouse" BM table. The stride of the search
1774 is determined only by the last character of the putative match.
1775 If that character does not match, we will stride the proper
1776 distance to propose a match that superimposes it on the last
1777 instance of a character that matches it (per trt), or misses
1778 it entirely if there is none. */
1780 dirlen = len_byte * direction;
1782 /* Record position after the end of the pattern. */
1783 pat_end = base_pat + len_byte;
1784 /* BASE_PAT points to a character that we start scanning from.
1785 It is the first character in a forward search,
1786 the last character in a backward search. */
1787 if (direction < 0)
1788 base_pat = pat_end - 1;
1790 /* A character that does not appear in the pattern induces a
1791 stride equal to the pattern length. */
1792 for (i = 0; i < 0400; i++)
1793 BM_tab[i] = dirlen;
1795 /* We use this for translation, instead of TRT itself.
1796 We fill this in to handle the characters that actually
1797 occur in the pattern. Others don't matter anyway! */
1798 for (i = 0; i < 0400; i++)
1799 simple_translate[i] = i;
1801 if (char_base)
1803 /* Setup translate_prev_byte1/2/3/4 from CHAR_BASE. Only a
1804 byte following them are the target of translation. */
1805 unsigned char str[MAX_MULTIBYTE_LENGTH];
1806 int cblen = CHAR_STRING (char_base, str);
1808 translate_prev_byte1 = str[cblen - 2];
1809 if (cblen > 2)
1811 translate_prev_byte2 = str[cblen - 3];
1812 if (cblen > 3)
1813 translate_prev_byte3 = str[cblen - 4];
1817 i = 0;
1818 while (i != dirlen)
1820 unsigned char *ptr = base_pat + i;
1821 i += direction;
1822 if (! NILP (trt))
1824 /* If the byte currently looking at is the last of a
1825 character to check case-equivalents, set CH to that
1826 character. An ASCII character and a non-ASCII character
1827 matching with CHAR_BASE are to be checked. */
1828 int ch = -1;
1830 if (ASCII_CHAR_P (*ptr) || ! multibyte)
1831 ch = *ptr;
1832 else if (char_base
1833 && ((pat_end - ptr) == 1 || CHAR_HEAD_P (ptr[1])))
1835 unsigned char *charstart = ptr - 1;
1837 while (! (CHAR_HEAD_P (*charstart)))
1838 charstart--;
1839 ch = STRING_CHAR (charstart);
1840 if (char_base != (ch & ~0x3F))
1841 ch = -1;
1844 if (ch >= 0200 && multibyte)
1845 j = (ch & 0x3F) | 0200;
1846 else
1847 j = *ptr;
1849 if (i == dirlen)
1850 stride_for_teases = BM_tab[j];
1852 BM_tab[j] = dirlen - i;
1853 /* A translation table is accompanied by its inverse -- see
1854 comment following downcase_table for details. */
1855 if (ch >= 0)
1857 int starting_ch = ch;
1858 int starting_j = j;
1860 while (1)
1862 TRANSLATE (ch, inverse_trt, ch);
1863 if (ch >= 0200 && multibyte)
1864 j = (ch & 0x3F) | 0200;
1865 else
1866 j = ch;
1868 /* For all the characters that map into CH,
1869 set up simple_translate to map the last byte
1870 into STARTING_J. */
1871 simple_translate[j] = starting_j;
1872 if (ch == starting_ch)
1873 break;
1874 BM_tab[j] = dirlen - i;
1878 else
1880 j = *ptr;
1882 if (i == dirlen)
1883 stride_for_teases = BM_tab[j];
1884 BM_tab[j] = dirlen - i;
1886 /* stride_for_teases tells how much to stride if we get a
1887 match on the far character but are subsequently
1888 disappointed, by recording what the stride would have been
1889 for that character if the last character had been
1890 different. */
1892 pos_byte += dirlen - ((direction > 0) ? direction : 0);
1893 /* loop invariant - POS_BYTE points at where last char (first
1894 char if reverse) of pattern would align in a possible match. */
1895 while (n != 0)
1897 ptrdiff_t tail_end;
1898 unsigned char *tail_end_ptr;
1900 /* It's been reported that some (broken) compiler thinks that
1901 Boolean expressions in an arithmetic context are unsigned.
1902 Using an explicit ?1:0 prevents this. */
1903 if ((lim_byte - pos_byte - ((direction > 0) ? 1 : 0)) * direction
1904 < 0)
1905 return (n * (0 - direction));
1906 /* First we do the part we can by pointers (maybe nothing) */
1907 QUIT;
1908 pat = base_pat;
1909 limit = pos_byte - dirlen + direction;
1910 if (direction > 0)
1912 limit = BUFFER_CEILING_OF (limit);
1913 /* LIMIT is now the last (not beyond-last!) value POS_BYTE
1914 can take on without hitting edge of buffer or the gap. */
1915 limit = min (limit, pos_byte + 20000);
1916 limit = min (limit, lim_byte - 1);
1918 else
1920 limit = BUFFER_FLOOR_OF (limit);
1921 /* LIMIT is now the last (not beyond-last!) value POS_BYTE
1922 can take on without hitting edge of buffer or the gap. */
1923 limit = max (limit, pos_byte - 20000);
1924 limit = max (limit, lim_byte);
1926 tail_end = BUFFER_CEILING_OF (pos_byte) + 1;
1927 tail_end_ptr = BYTE_POS_ADDR (tail_end);
1929 if ((limit - pos_byte) * direction > 20)
1931 unsigned char *p2;
1933 p_limit = BYTE_POS_ADDR (limit);
1934 p2 = (cursor = BYTE_POS_ADDR (pos_byte));
1935 /* In this loop, pos + cursor - p2 is the surrogate for pos. */
1936 while (1) /* use one cursor setting as long as i can */
1938 if (direction > 0) /* worth duplicating */
1940 while (cursor <= p_limit)
1942 if (BM_tab[*cursor] == 0)
1943 goto hit;
1944 cursor += BM_tab[*cursor];
1947 else
1949 while (cursor >= p_limit)
1951 if (BM_tab[*cursor] == 0)
1952 goto hit;
1953 cursor += BM_tab[*cursor];
1956 /* If you are here, cursor is beyond the end of the
1957 searched region. You fail to match within the
1958 permitted region and would otherwise try a character
1959 beyond that region. */
1960 break;
1962 hit:
1963 i = dirlen - direction;
1964 if (! NILP (trt))
1966 while ((i -= direction) + direction != 0)
1968 int ch;
1969 cursor -= direction;
1970 /* Translate only the last byte of a character. */
1971 if (! multibyte
1972 || ((cursor == tail_end_ptr
1973 || CHAR_HEAD_P (cursor[1]))
1974 && (CHAR_HEAD_P (cursor[0])
1975 /* Check if this is the last byte of
1976 a translatable character. */
1977 || (translate_prev_byte1 == cursor[-1]
1978 && (CHAR_HEAD_P (translate_prev_byte1)
1979 || (translate_prev_byte2 == cursor[-2]
1980 && (CHAR_HEAD_P (translate_prev_byte2)
1981 || (translate_prev_byte3 == cursor[-3]))))))))
1982 ch = simple_translate[*cursor];
1983 else
1984 ch = *cursor;
1985 if (pat[i] != ch)
1986 break;
1989 else
1991 while ((i -= direction) + direction != 0)
1993 cursor -= direction;
1994 if (pat[i] != *cursor)
1995 break;
1998 cursor += dirlen - i - direction; /* fix cursor */
1999 if (i + direction == 0)
2001 ptrdiff_t position, start, end;
2003 cursor -= direction;
2005 position = pos_byte + cursor - p2 + ((direction > 0)
2006 ? 1 - len_byte : 0);
2007 set_search_regs (position, len_byte);
2009 if (NILP (Vinhibit_changing_match_data))
2011 start = search_regs.start[0];
2012 end = search_regs.end[0];
2014 else
2015 /* If Vinhibit_changing_match_data is non-nil,
2016 search_regs will not be changed. So let's
2017 compute start and end here. */
2019 start = BYTE_TO_CHAR (position);
2020 end = BYTE_TO_CHAR (position + len_byte);
2023 if ((n -= direction) != 0)
2024 cursor += dirlen; /* to resume search */
2025 else
2026 return direction > 0 ? end : start;
2028 else
2029 cursor += stride_for_teases; /* <sigh> we lose - */
2031 pos_byte += cursor - p2;
2033 else
2034 /* Now we'll pick up a clump that has to be done the hard
2035 way because it covers a discontinuity. */
2037 limit = ((direction > 0)
2038 ? BUFFER_CEILING_OF (pos_byte - dirlen + 1)
2039 : BUFFER_FLOOR_OF (pos_byte - dirlen - 1));
2040 limit = ((direction > 0)
2041 ? min (limit + len_byte, lim_byte - 1)
2042 : max (limit - len_byte, lim_byte));
2043 /* LIMIT is now the last value POS_BYTE can have
2044 and still be valid for a possible match. */
2045 while (1)
2047 /* This loop can be coded for space rather than
2048 speed because it will usually run only once.
2049 (the reach is at most len + 21, and typically
2050 does not exceed len). */
2051 while ((limit - pos_byte) * direction >= 0)
2053 int ch = FETCH_BYTE (pos_byte);
2054 if (BM_tab[ch] == 0)
2055 goto hit2;
2056 pos_byte += BM_tab[ch];
2058 break; /* ran off the end */
2060 hit2:
2061 /* Found what might be a match. */
2062 i = dirlen - direction;
2063 while ((i -= direction) + direction != 0)
2065 int ch;
2066 unsigned char *ptr;
2067 pos_byte -= direction;
2068 ptr = BYTE_POS_ADDR (pos_byte);
2069 /* Translate only the last byte of a character. */
2070 if (! multibyte
2071 || ((ptr == tail_end_ptr
2072 || CHAR_HEAD_P (ptr[1]))
2073 && (CHAR_HEAD_P (ptr[0])
2074 /* Check if this is the last byte of a
2075 translatable character. */
2076 || (translate_prev_byte1 == ptr[-1]
2077 && (CHAR_HEAD_P (translate_prev_byte1)
2078 || (translate_prev_byte2 == ptr[-2]
2079 && (CHAR_HEAD_P (translate_prev_byte2)
2080 || translate_prev_byte3 == ptr[-3])))))))
2081 ch = simple_translate[*ptr];
2082 else
2083 ch = *ptr;
2084 if (pat[i] != ch)
2085 break;
2087 /* Above loop has moved POS_BYTE part or all the way
2088 back to the first pos (last pos if reverse).
2089 Set it once again at the last (first if reverse) char. */
2090 pos_byte += dirlen - i - direction;
2091 if (i + direction == 0)
2093 ptrdiff_t position, start, end;
2094 pos_byte -= direction;
2096 position = pos_byte + ((direction > 0) ? 1 - len_byte : 0);
2097 set_search_regs (position, len_byte);
2099 if (NILP (Vinhibit_changing_match_data))
2101 start = search_regs.start[0];
2102 end = search_regs.end[0];
2104 else
2105 /* If Vinhibit_changing_match_data is non-nil,
2106 search_regs will not be changed. So let's
2107 compute start and end here. */
2109 start = BYTE_TO_CHAR (position);
2110 end = BYTE_TO_CHAR (position + len_byte);
2113 if ((n -= direction) != 0)
2114 pos_byte += dirlen; /* to resume search */
2115 else
2116 return direction > 0 ? end : start;
2118 else
2119 pos_byte += stride_for_teases;
2122 /* We have done one clump. Can we continue? */
2123 if ((lim_byte - pos_byte) * direction < 0)
2124 return ((0 - n) * direction);
2126 return BYTE_TO_CHAR (pos_byte);
2129 /* Record beginning BEG_BYTE and end BEG_BYTE + NBYTES
2130 for the overall match just found in the current buffer.
2131 Also clear out the match data for registers 1 and up. */
2133 static void
2134 set_search_regs (ptrdiff_t beg_byte, ptrdiff_t nbytes)
2136 ptrdiff_t i;
2138 if (!NILP (Vinhibit_changing_match_data))
2139 return;
2141 /* Make sure we have registers in which to store
2142 the match position. */
2143 if (search_regs.num_regs == 0)
2145 search_regs.start = xmalloc (2 * sizeof (regoff_t));
2146 search_regs.end = xmalloc (2 * sizeof (regoff_t));
2147 search_regs.num_regs = 2;
2150 /* Clear out the other registers. */
2151 for (i = 1; i < search_regs.num_regs; i++)
2153 search_regs.start[i] = -1;
2154 search_regs.end[i] = -1;
2157 search_regs.start[0] = BYTE_TO_CHAR (beg_byte);
2158 search_regs.end[0] = BYTE_TO_CHAR (beg_byte + nbytes);
2159 XSETBUFFER (last_thing_searched, current_buffer);
2162 DEFUN ("search-backward", Fsearch_backward, Ssearch_backward, 1, 4,
2163 "MSearch backward: ",
2164 doc: /* Search backward from point for STRING.
2165 Set point to the beginning of the occurrence found, and return point.
2166 An optional second argument bounds the search; it is a buffer position.
2167 The match found must not begin before that position. A value of nil
2168 means search to the beginning of the accessible portion of the buffer.
2169 Optional third argument, if t, means if fail just return nil (no error).
2170 If not nil and not t, position at limit of search and return nil.
2171 Optional fourth argument COUNT, if a positive number, means to search
2172 for COUNT successive occurrences. If COUNT is negative, search
2173 forward, instead of backward, for -COUNT occurrences. A value of
2174 nil means the same as 1.
2175 With COUNT positive, the match found is the COUNTth to last one (or
2176 last, if COUNT is 1 or nil) in the buffer located entirely before
2177 the origin of the search; correspondingly with COUNT negative.
2179 Search case-sensitivity is determined by the value of the variable
2180 `case-fold-search', which see.
2182 See also the functions `match-beginning', `match-end' and `replace-match'. */)
2183 (Lisp_Object string, Lisp_Object bound, Lisp_Object noerror, Lisp_Object count)
2185 return search_command (string, bound, noerror, count, -1, 0, 0);
2188 DEFUN ("search-forward", Fsearch_forward, Ssearch_forward, 1, 4, "MSearch: ",
2189 doc: /* Search forward from point for STRING.
2190 Set point to the end of the occurrence found, and return point.
2191 An optional second argument bounds the search; it is a buffer position.
2192 The match found must not end after that position. A value of nil
2193 means search to the end of the accessible portion of the buffer.
2194 Optional third argument, if t, means if fail just return nil (no error).
2195 If not nil and not t, move to limit of search and return nil.
2196 Optional fourth argument COUNT, if a positive number, means to search
2197 for COUNT successive occurrences. If COUNT is negative, search
2198 backward, instead of forward, for -COUNT occurrences. A value of
2199 nil means the same as 1.
2200 With COUNT positive, the match found is the COUNTth one (or first,
2201 if COUNT is 1 or nil) in the buffer located entirely after the
2202 origin of the search; correspondingly with COUNT negative.
2204 Search case-sensitivity is determined by the value of the variable
2205 `case-fold-search', which see.
2207 See also the functions `match-beginning', `match-end' and `replace-match'. */)
2208 (Lisp_Object string, Lisp_Object bound, Lisp_Object noerror, Lisp_Object count)
2210 return search_command (string, bound, noerror, count, 1, 0, 0);
2213 DEFUN ("re-search-backward", Fre_search_backward, Sre_search_backward, 1, 4,
2214 "sRE search backward: ",
2215 doc: /* Search backward from point for match for regular expression REGEXP.
2216 Set point to the beginning of the occurrence found, and return point.
2217 An optional second argument bounds the search; it is a buffer position.
2218 The match found must not begin before that position. A value of nil
2219 means search to the beginning of the accessible portion of the buffer.
2220 Optional third argument, if t, means if fail just return nil (no error).
2221 If not nil and not t, position at limit of search and return nil.
2222 Optional fourth argument COUNT, if a positive number, means to search
2223 for COUNT successive occurrences. If COUNT is negative, search
2224 forward, instead of backward, for -COUNT occurrences. A value of
2225 nil means the same as 1.
2226 With COUNT positive, the match found is the COUNTth to last one (or
2227 last, if COUNT is 1 or nil) in the buffer located entirely before
2228 the origin of the search; correspondingly with COUNT negative.
2230 Search case-sensitivity is determined by the value of the variable
2231 `case-fold-search', which see.
2233 See also the functions `match-beginning', `match-end', `match-string',
2234 and `replace-match'. */)
2235 (Lisp_Object regexp, Lisp_Object bound, Lisp_Object noerror, Lisp_Object count)
2237 return search_command (regexp, bound, noerror, count, -1, 1, 0);
2240 DEFUN ("re-search-forward", Fre_search_forward, Sre_search_forward, 1, 4,
2241 "sRE search: ",
2242 doc: /* Search forward from point for regular expression REGEXP.
2243 Set point to the end of the occurrence found, and return point.
2244 An optional second argument bounds the search; it is a buffer position.
2245 The match found must not end after that position. A value of nil
2246 means search to the end of the accessible portion of the buffer.
2247 Optional third argument, if t, means if fail just return nil (no error).
2248 If not nil and not t, move to limit of search and return nil.
2249 Optional fourth argument COUNT, if a positive number, means to search
2250 for COUNT successive occurrences. If COUNT is negative, search
2251 backward, instead of forward, for -COUNT occurrences. A value of
2252 nil means the same as 1.
2253 With COUNT positive, the match found is the COUNTth one (or first,
2254 if COUNT is 1 or nil) in the buffer located entirely after the
2255 origin of the search; correspondingly with COUNT negative.
2257 Search case-sensitivity is determined by the value of the variable
2258 `case-fold-search', which see.
2260 See also the functions `match-beginning', `match-end', `match-string',
2261 and `replace-match'. */)
2262 (Lisp_Object regexp, Lisp_Object bound, Lisp_Object noerror, Lisp_Object count)
2264 return search_command (regexp, bound, noerror, count, 1, 1, 0);
2267 DEFUN ("posix-search-backward", Fposix_search_backward, Sposix_search_backward, 1, 4,
2268 "sPosix search backward: ",
2269 doc: /* Search backward from point for match for regular expression REGEXP.
2270 Find the longest match in accord with Posix regular expression rules.
2271 Set point to the beginning of the occurrence found, and return point.
2272 An optional second argument bounds the search; it is a buffer position.
2273 The match found must not begin before that position. A value of nil
2274 means search to the beginning of the accessible portion of the buffer.
2275 Optional third argument, if t, means if fail just return nil (no error).
2276 If not nil and not t, position at limit of search and return nil.
2277 Optional fourth argument COUNT, if a positive number, means to search
2278 for COUNT successive occurrences. If COUNT is negative, search
2279 forward, instead of backward, for -COUNT occurrences. A value of
2280 nil means the same as 1.
2281 With COUNT positive, the match found is the COUNTth to last one (or
2282 last, if COUNT is 1 or nil) in the buffer located entirely before
2283 the origin of the search; correspondingly with COUNT negative.
2285 Search case-sensitivity is determined by the value of the variable
2286 `case-fold-search', which see.
2288 See also the functions `match-beginning', `match-end', `match-string',
2289 and `replace-match'. */)
2290 (Lisp_Object regexp, Lisp_Object bound, Lisp_Object noerror, Lisp_Object count)
2292 return search_command (regexp, bound, noerror, count, -1, 1, 1);
2295 DEFUN ("posix-search-forward", Fposix_search_forward, Sposix_search_forward, 1, 4,
2296 "sPosix search: ",
2297 doc: /* Search forward from point for regular expression REGEXP.
2298 Find the longest match in accord with Posix regular expression rules.
2299 Set point to the end of the occurrence found, and return point.
2300 An optional second argument bounds the search; it is a buffer position.
2301 The match found must not end after that position. A value of nil
2302 means search to the end of the accessible portion of the buffer.
2303 Optional third argument, if t, means if fail just return nil (no error).
2304 If not nil and not t, move to limit of search and return nil.
2305 Optional fourth argument COUNT, if a positive number, means to search
2306 for COUNT successive occurrences. If COUNT is negative, search
2307 backward, instead of forward, for -COUNT occurrences. A value of
2308 nil means the same as 1.
2309 With COUNT positive, the match found is the COUNTth one (or first,
2310 if COUNT is 1 or nil) in the buffer located entirely after the
2311 origin of the search; correspondingly with COUNT negative.
2313 Search case-sensitivity is determined by the value of the variable
2314 `case-fold-search', which see.
2316 See also the functions `match-beginning', `match-end', `match-string',
2317 and `replace-match'. */)
2318 (Lisp_Object regexp, Lisp_Object bound, Lisp_Object noerror, Lisp_Object count)
2320 return search_command (regexp, bound, noerror, count, 1, 1, 1);
2323 DEFUN ("replace-match", Freplace_match, Sreplace_match, 1, 5, 0,
2324 doc: /* Replace text matched by last search with NEWTEXT.
2325 Leave point at the end of the replacement text.
2327 If optional second arg FIXEDCASE is non-nil, do not alter the case of
2328 the replacement text. Otherwise, maybe capitalize the whole text, or
2329 maybe just word initials, based on the replaced text. If the replaced
2330 text has only capital letters and has at least one multiletter word,
2331 convert NEWTEXT to all caps. Otherwise if all words are capitalized
2332 in the replaced text, capitalize each word in NEWTEXT.
2334 If optional third arg LITERAL is non-nil, insert NEWTEXT literally.
2335 Otherwise treat `\\' as special:
2336 `\\&' in NEWTEXT means substitute original matched text.
2337 `\\N' means substitute what matched the Nth `\\(...\\)'.
2338 If Nth parens didn't match, substitute nothing.
2339 `\\\\' means insert one `\\'.
2340 `\\?' is treated literally
2341 (for compatibility with `query-replace-regexp').
2342 Any other character following `\\' signals an error.
2343 Case conversion does not apply to these substitutions.
2345 If optional fourth argument STRING is non-nil, it should be a string
2346 to act on; this should be the string on which the previous match was
2347 done via `string-match'. In this case, `replace-match' creates and
2348 returns a new string, made by copying STRING and replacing the part of
2349 STRING that was matched (the original STRING itself is not altered).
2351 The optional fifth argument SUBEXP specifies a subexpression;
2352 it says to replace just that subexpression with NEWTEXT,
2353 rather than replacing the entire matched text.
2354 This is, in a vague sense, the inverse of using `\\N' in NEWTEXT;
2355 `\\N' copies subexp N into NEWTEXT, but using N as SUBEXP puts
2356 NEWTEXT in place of subexp N.
2357 This is useful only after a regular expression search or match,
2358 since only regular expressions have distinguished subexpressions. */)
2359 (Lisp_Object newtext, Lisp_Object fixedcase, Lisp_Object literal, Lisp_Object string, Lisp_Object subexp)
2361 enum { nochange, all_caps, cap_initial } case_action;
2362 ptrdiff_t pos, pos_byte;
2363 bool some_multiletter_word;
2364 bool some_lowercase;
2365 bool some_uppercase;
2366 bool some_nonuppercase_initial;
2367 int c, prevc;
2368 ptrdiff_t sub;
2369 ptrdiff_t opoint, newpoint;
2371 CHECK_STRING (newtext);
2373 if (! NILP (string))
2374 CHECK_STRING (string);
2376 case_action = nochange; /* We tried an initialization */
2377 /* but some C compilers blew it */
2379 if (search_regs.num_regs <= 0)
2380 error ("`replace-match' called before any match found");
2382 if (NILP (subexp))
2383 sub = 0;
2384 else
2386 CHECK_NUMBER (subexp);
2387 if (! (0 <= XINT (subexp) && XINT (subexp) < search_regs.num_regs))
2388 args_out_of_range (subexp, make_number (search_regs.num_regs));
2389 sub = XINT (subexp);
2392 if (NILP (string))
2394 if (search_regs.start[sub] < BEGV
2395 || search_regs.start[sub] > search_regs.end[sub]
2396 || search_regs.end[sub] > ZV)
2397 args_out_of_range (make_number (search_regs.start[sub]),
2398 make_number (search_regs.end[sub]));
2400 else
2402 if (search_regs.start[sub] < 0
2403 || search_regs.start[sub] > search_regs.end[sub]
2404 || search_regs.end[sub] > SCHARS (string))
2405 args_out_of_range (make_number (search_regs.start[sub]),
2406 make_number (search_regs.end[sub]));
2409 if (NILP (fixedcase))
2411 /* Decide how to casify by examining the matched text. */
2412 ptrdiff_t last;
2414 pos = search_regs.start[sub];
2415 last = search_regs.end[sub];
2417 if (NILP (string))
2418 pos_byte = CHAR_TO_BYTE (pos);
2419 else
2420 pos_byte = string_char_to_byte (string, pos);
2422 prevc = '\n';
2423 case_action = all_caps;
2425 /* some_multiletter_word is set nonzero if any original word
2426 is more than one letter long. */
2427 some_multiletter_word = 0;
2428 some_lowercase = 0;
2429 some_nonuppercase_initial = 0;
2430 some_uppercase = 0;
2432 while (pos < last)
2434 if (NILP (string))
2436 c = FETCH_CHAR_AS_MULTIBYTE (pos_byte);
2437 INC_BOTH (pos, pos_byte);
2439 else
2440 FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE (c, string, pos, pos_byte);
2442 if (lowercasep (c))
2444 /* Cannot be all caps if any original char is lower case */
2446 some_lowercase = 1;
2447 if (SYNTAX (prevc) != Sword)
2448 some_nonuppercase_initial = 1;
2449 else
2450 some_multiletter_word = 1;
2452 else if (uppercasep (c))
2454 some_uppercase = 1;
2455 if (SYNTAX (prevc) != Sword)
2457 else
2458 some_multiletter_word = 1;
2460 else
2462 /* If the initial is a caseless word constituent,
2463 treat that like a lowercase initial. */
2464 if (SYNTAX (prevc) != Sword)
2465 some_nonuppercase_initial = 1;
2468 prevc = c;
2471 /* Convert to all caps if the old text is all caps
2472 and has at least one multiletter word. */
2473 if (! some_lowercase && some_multiletter_word)
2474 case_action = all_caps;
2475 /* Capitalize each word, if the old text has all capitalized words. */
2476 else if (!some_nonuppercase_initial && some_multiletter_word)
2477 case_action = cap_initial;
2478 else if (!some_nonuppercase_initial && some_uppercase)
2479 /* Should x -> yz, operating on X, give Yz or YZ?
2480 We'll assume the latter. */
2481 case_action = all_caps;
2482 else
2483 case_action = nochange;
2486 /* Do replacement in a string. */
2487 if (!NILP (string))
2489 Lisp_Object before, after;
2491 before = Fsubstring (string, make_number (0),
2492 make_number (search_regs.start[sub]));
2493 after = Fsubstring (string, make_number (search_regs.end[sub]), Qnil);
2495 /* Substitute parts of the match into NEWTEXT
2496 if desired. */
2497 if (NILP (literal))
2499 ptrdiff_t lastpos = 0;
2500 ptrdiff_t lastpos_byte = 0;
2501 /* We build up the substituted string in ACCUM. */
2502 Lisp_Object accum;
2503 Lisp_Object middle;
2504 ptrdiff_t length = SBYTES (newtext);
2506 accum = Qnil;
2508 for (pos_byte = 0, pos = 0; pos_byte < length;)
2510 ptrdiff_t substart = -1;
2511 ptrdiff_t subend = 0;
2512 bool delbackslash = 0;
2514 FETCH_STRING_CHAR_ADVANCE (c, newtext, pos, pos_byte);
2516 if (c == '\\')
2518 FETCH_STRING_CHAR_ADVANCE (c, newtext, pos, pos_byte);
2520 if (c == '&')
2522 substart = search_regs.start[sub];
2523 subend = search_regs.end[sub];
2525 else if (c >= '1' && c <= '9')
2527 if (c - '0' < search_regs.num_regs
2528 && search_regs.start[c - '0'] >= 0)
2530 substart = search_regs.start[c - '0'];
2531 subend = search_regs.end[c - '0'];
2533 else
2535 /* If that subexp did not match,
2536 replace \\N with nothing. */
2537 substart = 0;
2538 subend = 0;
2541 else if (c == '\\')
2542 delbackslash = 1;
2543 else if (c != '?')
2544 error ("Invalid use of `\\' in replacement text");
2546 if (substart >= 0)
2548 if (pos - 2 != lastpos)
2549 middle = substring_both (newtext, lastpos,
2550 lastpos_byte,
2551 pos - 2, pos_byte - 2);
2552 else
2553 middle = Qnil;
2554 accum = concat3 (accum, middle,
2555 Fsubstring (string,
2556 make_number (substart),
2557 make_number (subend)));
2558 lastpos = pos;
2559 lastpos_byte = pos_byte;
2561 else if (delbackslash)
2563 middle = substring_both (newtext, lastpos,
2564 lastpos_byte,
2565 pos - 1, pos_byte - 1);
2567 accum = concat2 (accum, middle);
2568 lastpos = pos;
2569 lastpos_byte = pos_byte;
2573 if (pos != lastpos)
2574 middle = substring_both (newtext, lastpos,
2575 lastpos_byte,
2576 pos, pos_byte);
2577 else
2578 middle = Qnil;
2580 newtext = concat2 (accum, middle);
2583 /* Do case substitution in NEWTEXT if desired. */
2584 if (case_action == all_caps)
2585 newtext = Fupcase (newtext);
2586 else if (case_action == cap_initial)
2587 newtext = Fupcase_initials (newtext);
2589 return concat3 (before, newtext, after);
2592 /* Record point, then move (quietly) to the start of the match. */
2593 if (PT >= search_regs.end[sub])
2594 opoint = PT - ZV;
2595 else if (PT > search_regs.start[sub])
2596 opoint = search_regs.end[sub] - ZV;
2597 else
2598 opoint = PT;
2600 /* If we want non-literal replacement,
2601 perform substitution on the replacement string. */
2602 if (NILP (literal))
2604 ptrdiff_t length = SBYTES (newtext);
2605 unsigned char *substed;
2606 ptrdiff_t substed_alloc_size, substed_len;
2607 bool buf_multibyte = !NILP (BVAR (current_buffer, enable_multibyte_characters));
2608 bool str_multibyte = STRING_MULTIBYTE (newtext);
2609 bool really_changed = 0;
2611 substed_alloc_size = (length <= (STRING_BYTES_BOUND - 100) / 2
2612 ? length * 2 + 100
2613 : STRING_BYTES_BOUND);
2614 substed = xmalloc (substed_alloc_size);
2615 substed_len = 0;
2617 /* Go thru NEWTEXT, producing the actual text to insert in
2618 SUBSTED while adjusting multibyteness to that of the current
2619 buffer. */
2621 for (pos_byte = 0, pos = 0; pos_byte < length;)
2623 unsigned char str[MAX_MULTIBYTE_LENGTH];
2624 const unsigned char *add_stuff = NULL;
2625 ptrdiff_t add_len = 0;
2626 ptrdiff_t idx = -1;
2628 if (str_multibyte)
2630 FETCH_STRING_CHAR_ADVANCE_NO_CHECK (c, newtext, pos, pos_byte);
2631 if (!buf_multibyte)
2632 c = CHAR_TO_BYTE8 (c);
2634 else
2636 /* Note that we don't have to increment POS. */
2637 c = SREF (newtext, pos_byte++);
2638 if (buf_multibyte)
2639 MAKE_CHAR_MULTIBYTE (c);
2642 /* Either set ADD_STUFF and ADD_LEN to the text to put in SUBSTED,
2643 or set IDX to a match index, which means put that part
2644 of the buffer text into SUBSTED. */
2646 if (c == '\\')
2648 really_changed = 1;
2650 if (str_multibyte)
2652 FETCH_STRING_CHAR_ADVANCE_NO_CHECK (c, newtext,
2653 pos, pos_byte);
2654 if (!buf_multibyte && !ASCII_CHAR_P (c))
2655 c = CHAR_TO_BYTE8 (c);
2657 else
2659 c = SREF (newtext, pos_byte++);
2660 if (buf_multibyte)
2661 MAKE_CHAR_MULTIBYTE (c);
2664 if (c == '&')
2665 idx = sub;
2666 else if (c >= '1' && c <= '9' && c - '0' < search_regs.num_regs)
2668 if (search_regs.start[c - '0'] >= 1)
2669 idx = c - '0';
2671 else if (c == '\\')
2672 add_len = 1, add_stuff = (unsigned char *) "\\";
2673 else
2675 xfree (substed);
2676 error ("Invalid use of `\\' in replacement text");
2679 else
2681 add_len = CHAR_STRING (c, str);
2682 add_stuff = str;
2685 /* If we want to copy part of a previous match,
2686 set up ADD_STUFF and ADD_LEN to point to it. */
2687 if (idx >= 0)
2689 ptrdiff_t begbyte = CHAR_TO_BYTE (search_regs.start[idx]);
2690 add_len = CHAR_TO_BYTE (search_regs.end[idx]) - begbyte;
2691 if (search_regs.start[idx] < GPT && GPT < search_regs.end[idx])
2692 move_gap_both (search_regs.start[idx], begbyte);
2693 add_stuff = BYTE_POS_ADDR (begbyte);
2696 /* Now the stuff we want to add to SUBSTED
2697 is invariably ADD_LEN bytes starting at ADD_STUFF. */
2699 /* Make sure SUBSTED is big enough. */
2700 if (substed_alloc_size - substed_len < add_len)
2701 substed =
2702 xpalloc (substed, &substed_alloc_size,
2703 add_len - (substed_alloc_size - substed_len),
2704 STRING_BYTES_BOUND, 1);
2706 /* Now add to the end of SUBSTED. */
2707 if (add_stuff)
2709 memcpy (substed + substed_len, add_stuff, add_len);
2710 substed_len += add_len;
2714 if (really_changed)
2715 newtext = make_specified_string ((const char *) substed, -1,
2716 substed_len, buf_multibyte);
2717 xfree (substed);
2720 /* The functions below modify the buffer, so they could trigger
2721 various modification hooks (see signal_before_change and
2722 signal_after_change). If these hooks clobber the match data we
2723 error out since otherwise this will result in confusing bugs. */
2724 ptrdiff_t sub_start = search_regs.start[sub];
2725 ptrdiff_t sub_end = search_regs.end[sub];
2726 unsigned num_regs = search_regs.num_regs;
2727 newpoint = search_regs.start[sub] + SCHARS (newtext);
2729 /* Replace the old text with the new in the cleanest possible way. */
2730 replace_range (search_regs.start[sub], search_regs.end[sub],
2731 newtext, 1, 0, 1, 1);
2732 /* Update saved data to match adjustment made by replace_range. */
2734 ptrdiff_t change = newpoint - sub_end;
2735 if (sub_start >= sub_end)
2736 sub_start += change;
2737 sub_end += change;
2740 if (case_action == all_caps)
2741 Fupcase_region (make_number (search_regs.start[sub]),
2742 make_number (newpoint));
2743 else if (case_action == cap_initial)
2744 Fupcase_initials_region (make_number (search_regs.start[sub]),
2745 make_number (newpoint));
2747 if (search_regs.start[sub] != sub_start
2748 || search_regs.end[sub] != sub_end
2749 || search_regs.num_regs != num_regs)
2750 error ("Match data clobbered by buffer modification hooks");
2752 /* Put point back where it was in the text. */
2753 if (opoint <= 0)
2754 TEMP_SET_PT (opoint + ZV);
2755 else
2756 TEMP_SET_PT (opoint);
2758 /* Now move point "officially" to the start of the inserted replacement. */
2759 move_if_not_intangible (newpoint);
2761 return Qnil;
2764 static Lisp_Object
2765 match_limit (Lisp_Object num, bool beginningp)
2767 EMACS_INT n;
2769 CHECK_NUMBER (num);
2770 n = XINT (num);
2771 if (n < 0)
2772 args_out_of_range (num, make_number (0));
2773 if (search_regs.num_regs <= 0)
2774 error ("No match data, because no search succeeded");
2775 if (n >= search_regs.num_regs
2776 || search_regs.start[n] < 0)
2777 return Qnil;
2778 return (make_number ((beginningp) ? search_regs.start[n]
2779 : search_regs.end[n]));
2782 DEFUN ("match-beginning", Fmatch_beginning, Smatch_beginning, 1, 1, 0,
2783 doc: /* Return position of start of text matched by last search.
2784 SUBEXP, a number, specifies which parenthesized expression in the last
2785 regexp.
2786 Value is nil if SUBEXPth pair didn't match, or there were less than
2787 SUBEXP pairs.
2788 Zero means the entire text matched by the whole regexp or whole string.
2790 Return value is undefined if the last search failed. */)
2791 (Lisp_Object subexp)
2793 return match_limit (subexp, 1);
2796 DEFUN ("match-end", Fmatch_end, Smatch_end, 1, 1, 0,
2797 doc: /* Return position of end of text matched by last search.
2798 SUBEXP, a number, specifies which parenthesized expression in the last
2799 regexp.
2800 Value is nil if SUBEXPth pair didn't match, or there were less than
2801 SUBEXP pairs.
2802 Zero means the entire text matched by the whole regexp or whole string.
2804 Return value is undefined if the last search failed. */)
2805 (Lisp_Object subexp)
2807 return match_limit (subexp, 0);
2810 DEFUN ("match-data", Fmatch_data, Smatch_data, 0, 3, 0,
2811 doc: /* Return a list describing what the last search matched.
2812 Element 2N is `(match-beginning N)'; element 2N + 1 is `(match-end N)'.
2813 All the elements are markers or nil (nil if the Nth pair didn't match)
2814 if the last match was on a buffer; integers or nil if a string was matched.
2815 Use `set-match-data' to reinstate the data in this list.
2817 If INTEGERS (the optional first argument) is non-nil, always use
2818 integers (rather than markers) to represent buffer positions. In
2819 this case, and if the last match was in a buffer, the buffer will get
2820 stored as one additional element at the end of the list.
2822 If REUSE is a list, reuse it as part of the value. If REUSE is long
2823 enough to hold all the values, and if INTEGERS is non-nil, no consing
2824 is done.
2826 If optional third arg RESEAT is non-nil, any previous markers on the
2827 REUSE list will be modified to point to nowhere.
2829 Return value is undefined if the last search failed. */)
2830 (Lisp_Object integers, Lisp_Object reuse, Lisp_Object reseat)
2832 Lisp_Object tail, prev;
2833 Lisp_Object *data;
2834 ptrdiff_t i, len;
2836 if (!NILP (reseat))
2837 for (tail = reuse; CONSP (tail); tail = XCDR (tail))
2838 if (MARKERP (XCAR (tail)))
2840 unchain_marker (XMARKER (XCAR (tail)));
2841 XSETCAR (tail, Qnil);
2844 if (NILP (last_thing_searched))
2845 return Qnil;
2847 prev = Qnil;
2849 USE_SAFE_ALLOCA;
2850 SAFE_NALLOCA (data, 1, 2 * search_regs.num_regs + 1);
2852 len = 0;
2853 for (i = 0; i < search_regs.num_regs; i++)
2855 ptrdiff_t start = search_regs.start[i];
2856 if (start >= 0)
2858 if (EQ (last_thing_searched, Qt)
2859 || ! NILP (integers))
2861 XSETFASTINT (data[2 * i], start);
2862 XSETFASTINT (data[2 * i + 1], search_regs.end[i]);
2864 else if (BUFFERP (last_thing_searched))
2866 data[2 * i] = Fmake_marker ();
2867 Fset_marker (data[2 * i],
2868 make_number (start),
2869 last_thing_searched);
2870 data[2 * i + 1] = Fmake_marker ();
2871 Fset_marker (data[2 * i + 1],
2872 make_number (search_regs.end[i]),
2873 last_thing_searched);
2875 else
2876 /* last_thing_searched must always be Qt, a buffer, or Qnil. */
2877 emacs_abort ();
2879 len = 2 * i + 2;
2881 else
2882 data[2 * i] = data[2 * i + 1] = Qnil;
2885 if (BUFFERP (last_thing_searched) && !NILP (integers))
2887 data[len] = last_thing_searched;
2888 len++;
2891 /* If REUSE is not usable, cons up the values and return them. */
2892 if (! CONSP (reuse))
2893 reuse = Flist (len, data);
2894 else
2896 /* If REUSE is a list, store as many value elements as will fit
2897 into the elements of REUSE. */
2898 for (i = 0, tail = reuse; CONSP (tail);
2899 i++, tail = XCDR (tail))
2901 if (i < len)
2902 XSETCAR (tail, data[i]);
2903 else
2904 XSETCAR (tail, Qnil);
2905 prev = tail;
2908 /* If we couldn't fit all value elements into REUSE,
2909 cons up the rest of them and add them to the end of REUSE. */
2910 if (i < len)
2911 XSETCDR (prev, Flist (len - i, data + i));
2914 SAFE_FREE ();
2915 return reuse;
2918 /* We used to have an internal use variant of `reseat' described as:
2920 If RESEAT is `evaporate', put the markers back on the free list
2921 immediately. No other references to the markers must exist in this
2922 case, so it is used only internally on the unwind stack and
2923 save-match-data from Lisp.
2925 But it was ill-conceived: those supposedly-internal markers get exposed via
2926 the undo-list, so freeing them here is unsafe. */
2928 DEFUN ("set-match-data", Fset_match_data, Sset_match_data, 1, 2, 0,
2929 doc: /* Set internal data on last search match from elements of LIST.
2930 LIST should have been created by calling `match-data' previously.
2932 If optional arg RESEAT is non-nil, make markers on LIST point nowhere. */)
2933 (register Lisp_Object list, Lisp_Object reseat)
2935 ptrdiff_t i;
2936 register Lisp_Object marker;
2938 if (running_asynch_code)
2939 save_search_regs ();
2941 CHECK_LIST (list);
2943 /* Unless we find a marker with a buffer or an explicit buffer
2944 in LIST, assume that this match data came from a string. */
2945 last_thing_searched = Qt;
2947 /* Allocate registers if they don't already exist. */
2949 EMACS_INT length = XFASTINT (Flength (list)) / 2;
2951 if (length > search_regs.num_regs)
2953 ptrdiff_t num_regs = search_regs.num_regs;
2954 if (PTRDIFF_MAX < length)
2955 memory_full (SIZE_MAX);
2956 search_regs.start =
2957 xpalloc (search_regs.start, &num_regs, length - num_regs,
2958 min (PTRDIFF_MAX, UINT_MAX), sizeof (regoff_t));
2959 search_regs.end =
2960 xrealloc (search_regs.end, num_regs * sizeof (regoff_t));
2962 for (i = search_regs.num_regs; i < num_regs; i++)
2963 search_regs.start[i] = -1;
2965 search_regs.num_regs = num_regs;
2968 for (i = 0; CONSP (list); i++)
2970 marker = XCAR (list);
2971 if (BUFFERP (marker))
2973 last_thing_searched = marker;
2974 break;
2976 if (i >= length)
2977 break;
2978 if (NILP (marker))
2980 search_regs.start[i] = -1;
2981 list = XCDR (list);
2983 else
2985 Lisp_Object from;
2986 Lisp_Object m;
2988 m = marker;
2989 if (MARKERP (marker))
2991 if (XMARKER (marker)->buffer == 0)
2992 XSETFASTINT (marker, 0);
2993 else
2994 XSETBUFFER (last_thing_searched, XMARKER (marker)->buffer);
2997 CHECK_NUMBER_COERCE_MARKER (marker);
2998 from = marker;
3000 if (!NILP (reseat) && MARKERP (m))
3002 unchain_marker (XMARKER (m));
3003 XSETCAR (list, Qnil);
3006 if ((list = XCDR (list), !CONSP (list)))
3007 break;
3009 m = marker = XCAR (list);
3011 if (MARKERP (marker) && XMARKER (marker)->buffer == 0)
3012 XSETFASTINT (marker, 0);
3014 CHECK_NUMBER_COERCE_MARKER (marker);
3015 if ((XINT (from) < 0
3016 ? TYPE_MINIMUM (regoff_t) <= XINT (from)
3017 : XINT (from) <= TYPE_MAXIMUM (regoff_t))
3018 && (XINT (marker) < 0
3019 ? TYPE_MINIMUM (regoff_t) <= XINT (marker)
3020 : XINT (marker) <= TYPE_MAXIMUM (regoff_t)))
3022 search_regs.start[i] = XINT (from);
3023 search_regs.end[i] = XINT (marker);
3025 else
3027 search_regs.start[i] = -1;
3030 if (!NILP (reseat) && MARKERP (m))
3032 unchain_marker (XMARKER (m));
3033 XSETCAR (list, Qnil);
3036 list = XCDR (list);
3039 for (; i < search_regs.num_regs; i++)
3040 search_regs.start[i] = -1;
3043 return Qnil;
3046 /* If true the match data have been saved in saved_search_regs
3047 during the execution of a sentinel or filter. */
3048 static bool search_regs_saved;
3049 static struct re_registers saved_search_regs;
3050 static Lisp_Object saved_last_thing_searched;
3052 /* Called from Flooking_at, Fstring_match, search_buffer, Fstore_match_data
3053 if asynchronous code (filter or sentinel) is running. */
3054 static void
3055 save_search_regs (void)
3057 if (!search_regs_saved)
3059 saved_search_regs.num_regs = search_regs.num_regs;
3060 saved_search_regs.start = search_regs.start;
3061 saved_search_regs.end = search_regs.end;
3062 saved_last_thing_searched = last_thing_searched;
3063 last_thing_searched = Qnil;
3064 search_regs.num_regs = 0;
3065 search_regs.start = 0;
3066 search_regs.end = 0;
3068 search_regs_saved = 1;
3072 /* Called upon exit from filters and sentinels. */
3073 void
3074 restore_search_regs (void)
3076 if (search_regs_saved)
3078 if (search_regs.num_regs > 0)
3080 xfree (search_regs.start);
3081 xfree (search_regs.end);
3083 search_regs.num_regs = saved_search_regs.num_regs;
3084 search_regs.start = saved_search_regs.start;
3085 search_regs.end = saved_search_regs.end;
3086 last_thing_searched = saved_last_thing_searched;
3087 saved_last_thing_searched = Qnil;
3088 search_regs_saved = 0;
3092 /* Called from replace-match via replace_range. */
3093 void
3094 update_search_regs (ptrdiff_t oldstart, ptrdiff_t oldend, ptrdiff_t newend)
3096 /* Adjust search data for this change. */
3097 ptrdiff_t change = newend - oldend;
3098 ptrdiff_t i;
3100 for (i = 0; i < search_regs.num_regs; i++)
3102 if (search_regs.start[i] >= oldend)
3103 search_regs.start[i] += change;
3104 else if (search_regs.start[i] > oldstart)
3105 search_regs.start[i] = oldstart;
3106 if (search_regs.end[i] >= oldend)
3107 search_regs.end[i] += change;
3108 else if (search_regs.end[i] > oldstart)
3109 search_regs.end[i] = oldstart;
3113 static void
3114 unwind_set_match_data (Lisp_Object list)
3116 /* It is NOT ALWAYS safe to free (evaporate) the markers immediately. */
3117 Fset_match_data (list, Qt);
3120 /* Called to unwind protect the match data. */
3121 void
3122 record_unwind_save_match_data (void)
3124 record_unwind_protect (unwind_set_match_data,
3125 Fmatch_data (Qnil, Qnil, Qnil));
3128 /* Quote a string to deactivate reg-expr chars */
3130 DEFUN ("regexp-quote", Fregexp_quote, Sregexp_quote, 1, 1, 0,
3131 doc: /* Return a regexp string which matches exactly STRING and nothing else. */)
3132 (Lisp_Object string)
3134 char *in, *out, *end;
3135 char *temp;
3136 ptrdiff_t backslashes_added = 0;
3138 CHECK_STRING (string);
3140 USE_SAFE_ALLOCA;
3141 SAFE_NALLOCA (temp, 2, SBYTES (string));
3143 /* Now copy the data into the new string, inserting escapes. */
3145 in = SSDATA (string);
3146 end = in + SBYTES (string);
3147 out = temp;
3149 for (; in != end; in++)
3151 if (*in == '['
3152 || *in == '*' || *in == '.' || *in == '\\'
3153 || *in == '?' || *in == '+'
3154 || *in == '^' || *in == '$')
3155 *out++ = '\\', backslashes_added++;
3156 *out++ = *in;
3159 Lisp_Object result
3160 = make_specified_string (temp,
3161 SCHARS (string) + backslashes_added,
3162 out - temp,
3163 STRING_MULTIBYTE (string));
3164 SAFE_FREE ();
3165 return result;
3168 /* Like find_newline, but doesn't use the cache, and only searches forward. */
3169 static ptrdiff_t
3170 find_newline1 (ptrdiff_t start, ptrdiff_t start_byte, ptrdiff_t end,
3171 ptrdiff_t end_byte, ptrdiff_t count, ptrdiff_t *shortage,
3172 ptrdiff_t *bytepos, bool allow_quit)
3174 if (count > 0)
3176 if (!end)
3177 end = ZV, end_byte = ZV_BYTE;
3179 else
3181 if (!end)
3182 end = BEGV, end_byte = BEGV_BYTE;
3184 if (end_byte == -1)
3185 end_byte = CHAR_TO_BYTE (end);
3187 if (shortage != 0)
3188 *shortage = 0;
3190 immediate_quit = allow_quit;
3192 if (count > 0)
3193 while (start != end)
3195 /* Our innermost scanning loop is very simple; it doesn't know
3196 about gaps, buffer ends, or the newline cache. ceiling is
3197 the position of the last character before the next such
3198 obstacle --- the last character the dumb search loop should
3199 examine. */
3200 ptrdiff_t tem, ceiling_byte = end_byte - 1;
3202 if (start_byte == -1)
3203 start_byte = CHAR_TO_BYTE (start);
3205 /* The dumb loop can only scan text stored in contiguous
3206 bytes. BUFFER_CEILING_OF returns the last character
3207 position that is contiguous, so the ceiling is the
3208 position after that. */
3209 tem = BUFFER_CEILING_OF (start_byte);
3210 ceiling_byte = min (tem, ceiling_byte);
3213 /* The termination address of the dumb loop. */
3214 unsigned char *lim_addr = BYTE_POS_ADDR (ceiling_byte) + 1;
3215 ptrdiff_t lim_byte = ceiling_byte + 1;
3217 /* Nonpositive offsets (relative to LIM_ADDR and LIM_BYTE)
3218 of the base, the cursor, and the next line. */
3219 ptrdiff_t base = start_byte - lim_byte;
3220 ptrdiff_t cursor, next;
3222 for (cursor = base; cursor < 0; cursor = next)
3224 /* The dumb loop. */
3225 unsigned char *nl = memchr (lim_addr + cursor, '\n', - cursor);
3226 next = nl ? nl - lim_addr : 0;
3228 if (! nl)
3229 break;
3230 next++;
3232 if (--count == 0)
3234 immediate_quit = 0;
3235 if (bytepos)
3236 *bytepos = lim_byte + next;
3237 return BYTE_TO_CHAR (lim_byte + next);
3241 start_byte = lim_byte;
3242 start = BYTE_TO_CHAR (start_byte);
3246 immediate_quit = 0;
3247 if (shortage)
3248 *shortage = count;
3249 if (bytepos)
3251 *bytepos = start_byte == -1 ? CHAR_TO_BYTE (start) : start_byte;
3252 eassert (*bytepos == CHAR_TO_BYTE (start));
3254 return start;
3257 DEFUN ("newline-cache-check", Fnewline_cache_check, Snewline_cache_check,
3258 0, 1, 0,
3259 doc: /* Check the newline cache of BUFFER against buffer contents.
3261 BUFFER defaults to the current buffer.
3263 Value is an array of 2 sub-arrays of buffer positions for newlines,
3264 the first based on the cache, the second based on actually scanning
3265 the buffer. If the buffer doesn't have a cache, the value is nil. */)
3266 (Lisp_Object buffer)
3268 struct buffer *buf, *old = NULL;
3269 ptrdiff_t shortage, nl_count_cache, nl_count_buf;
3270 Lisp_Object cache_newlines, buf_newlines, val;
3271 ptrdiff_t from, found, i;
3273 if (NILP (buffer))
3274 buf = current_buffer;
3275 else
3277 CHECK_BUFFER (buffer);
3278 buf = XBUFFER (buffer);
3279 old = current_buffer;
3281 if (buf->base_buffer)
3282 buf = buf->base_buffer;
3284 /* If the buffer doesn't have a newline cache, return nil. */
3285 if (NILP (BVAR (buf, cache_long_scans))
3286 || buf->newline_cache == NULL)
3287 return Qnil;
3289 /* find_newline can only work on the current buffer. */
3290 if (old != NULL)
3291 set_buffer_internal_1 (buf);
3293 /* How many newlines are there according to the cache? */
3294 find_newline (BEGV, BEGV_BYTE, ZV, ZV_BYTE,
3295 TYPE_MAXIMUM (ptrdiff_t), &shortage, NULL, true);
3296 nl_count_cache = TYPE_MAXIMUM (ptrdiff_t) - shortage;
3298 /* Create vector and populate it. */
3299 cache_newlines = make_uninit_vector (nl_count_cache);
3301 if (nl_count_cache)
3303 for (from = BEGV, found = from, i = 0; from < ZV; from = found, i++)
3305 ptrdiff_t from_byte = CHAR_TO_BYTE (from);
3307 found = find_newline (from, from_byte, 0, -1, 1, &shortage,
3308 NULL, true);
3309 if (shortage != 0 || i >= nl_count_cache)
3310 break;
3311 ASET (cache_newlines, i, make_number (found - 1));
3313 /* Fill the rest of slots with an invalid position. */
3314 for ( ; i < nl_count_cache; i++)
3315 ASET (cache_newlines, i, make_number (-1));
3318 /* Now do the same, but without using the cache. */
3319 find_newline1 (BEGV, BEGV_BYTE, ZV, ZV_BYTE,
3320 TYPE_MAXIMUM (ptrdiff_t), &shortage, NULL, true);
3321 nl_count_buf = TYPE_MAXIMUM (ptrdiff_t) - shortage;
3322 buf_newlines = make_uninit_vector (nl_count_buf);
3323 if (nl_count_buf)
3325 for (from = BEGV, found = from, i = 0; from < ZV; from = found, i++)
3327 ptrdiff_t from_byte = CHAR_TO_BYTE (from);
3329 found = find_newline1 (from, from_byte, 0, -1, 1, &shortage,
3330 NULL, true);
3331 if (shortage != 0 || i >= nl_count_buf)
3332 break;
3333 ASET (buf_newlines, i, make_number (found - 1));
3335 for ( ; i < nl_count_buf; i++)
3336 ASET (buf_newlines, i, make_number (-1));
3339 /* Construct the value and return it. */
3340 val = make_uninit_vector (2);
3341 ASET (val, 0, cache_newlines);
3342 ASET (val, 1, buf_newlines);
3344 if (old != NULL)
3345 set_buffer_internal_1 (old);
3346 return val;
3349 void
3350 syms_of_search (void)
3352 register int i;
3354 for (i = 0; i < REGEXP_CACHE_SIZE; ++i)
3356 searchbufs[i].buf.allocated = 100;
3357 searchbufs[i].buf.buffer = xmalloc (100);
3358 searchbufs[i].buf.fastmap = searchbufs[i].fastmap;
3359 searchbufs[i].regexp = Qnil;
3360 searchbufs[i].whitespace_regexp = Qnil;
3361 searchbufs[i].syntax_table = Qnil;
3362 staticpro (&searchbufs[i].regexp);
3363 staticpro (&searchbufs[i].whitespace_regexp);
3364 staticpro (&searchbufs[i].syntax_table);
3365 searchbufs[i].next = (i == REGEXP_CACHE_SIZE-1 ? 0 : &searchbufs[i+1]);
3367 searchbuf_head = &searchbufs[0];
3369 /* Error condition used for failing searches. */
3370 DEFSYM (Qsearch_failed, "search-failed");
3372 /* Error condition signaled when regexp compile_pattern fails. */
3373 DEFSYM (Qinvalid_regexp, "invalid-regexp");
3375 Fput (Qsearch_failed, Qerror_conditions,
3376 listn (CONSTYPE_PURE, 2, Qsearch_failed, Qerror));
3377 Fput (Qsearch_failed, Qerror_message,
3378 build_pure_c_string ("Search failed"));
3380 Fput (Qinvalid_regexp, Qerror_conditions,
3381 listn (CONSTYPE_PURE, 2, Qinvalid_regexp, Qerror));
3382 Fput (Qinvalid_regexp, Qerror_message,
3383 build_pure_c_string ("Invalid regexp"));
3385 last_thing_searched = Qnil;
3386 staticpro (&last_thing_searched);
3388 saved_last_thing_searched = Qnil;
3389 staticpro (&saved_last_thing_searched);
3391 DEFVAR_LISP ("search-spaces-regexp", Vsearch_spaces_regexp,
3392 doc: /* Regexp to substitute for bunches of spaces in regexp search.
3393 Some commands use this for user-specified regexps.
3394 Spaces that occur inside character classes or repetition operators
3395 or other such regexp constructs are not replaced with this.
3396 A value of nil (which is the normal value) means treat spaces literally. */);
3397 Vsearch_spaces_regexp = Qnil;
3399 DEFSYM (Qinhibit_changing_match_data, "inhibit-changing-match-data");
3400 DEFVAR_LISP ("inhibit-changing-match-data", Vinhibit_changing_match_data,
3401 doc: /* Internal use only.
3402 If non-nil, the primitive searching and matching functions
3403 such as `looking-at', `string-match', `re-search-forward', etc.,
3404 do not set the match data. The proper way to use this variable
3405 is to bind it with `let' around a small expression. */);
3406 Vinhibit_changing_match_data = Qnil;
3408 defsubr (&Slooking_at);
3409 defsubr (&Sposix_looking_at);
3410 defsubr (&Sstring_match);
3411 defsubr (&Sposix_string_match);
3412 defsubr (&Ssearch_forward);
3413 defsubr (&Ssearch_backward);
3414 defsubr (&Sre_search_forward);
3415 defsubr (&Sre_search_backward);
3416 defsubr (&Sposix_search_forward);
3417 defsubr (&Sposix_search_backward);
3418 defsubr (&Sreplace_match);
3419 defsubr (&Smatch_beginning);
3420 defsubr (&Smatch_end);
3421 defsubr (&Smatch_data);
3422 defsubr (&Sset_match_data);
3423 defsubr (&Sregexp_quote);
3424 defsubr (&Snewline_cache_check);