Simplify redefinition of 'abort' (Bug#12316).
[bpt/emacs.git] / src / search.c
CommitLineData
ca1d1d23 1/* String search routines for GNU Emacs.
4fb9a543
GM
2
3Copyright (C) 1985-1987, 1993-1994, 1997-1999, 2001-2012
4 Free Software Foundation, Inc.
ca1d1d23
JB
5
6This file is part of GNU Emacs.
7
9ec0b715 8GNU Emacs is free software: you can redistribute it and/or modify
ca1d1d23 9it under the terms of the GNU General Public License as published by
9ec0b715
GM
10the Free Software Foundation, either version 3 of the License, or
11(at your option) any later version.
ca1d1d23
JB
12
13GNU Emacs is distributed in the hope that it will be useful,
14but WITHOUT ANY WARRANTY; without even the implied warranty of
15MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16GNU General Public License for more details.
17
18You should have received a copy of the GNU General Public License
9ec0b715 19along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
ca1d1d23
JB
20
21
18160b98 22#include <config.h>
d7306fe6 23#include <setjmp.h>
ca1d1d23
JB
24#include "lisp.h"
25#include "syntax.h"
5679531d 26#include "category.h"
76eb0881 27#include "character.h"
e5560ff7 28#include "buffer.h"
89ad6492 29#include "charset.h"
9169c321 30#include "region-cache.h"
ca1d1d23 31#include "commands.h"
9ac0d9e0 32#include "blockinput.h"
bf1760bb 33#include "intervals.h"
4746118a 34
ca1d1d23
JB
35#include <sys/types.h>
36#include "regex.h"
37
1d288aef 38#define REGEXP_CACHE_SIZE 20
ca1d1d23 39
487282dc
KH
40/* If the regexp is non-nil, then the buffer contains the compiled form
41 of that regexp, suitable for searching. */
1d288aef
RS
42struct regexp_cache
43{
487282dc 44 struct regexp_cache *next;
ecdb561e 45 Lisp_Object regexp, whitespace_regexp;
b69e3c18 46 /* Syntax table for which the regexp applies. We need this because
58e95211
SM
47 of character classes. If this is t, then the compiled pattern is valid
48 for any syntax-table. */
b69e3c18 49 Lisp_Object syntax_table;
487282dc
KH
50 struct re_pattern_buffer buf;
51 char fastmap[0400];
b819a390
RS
52 /* Nonzero means regexp was compiled to do full POSIX backtracking. */
53 char posix;
487282dc 54};
ca1d1d23 55
487282dc 56/* The instances of that struct. */
989b29ad 57static struct regexp_cache searchbufs[REGEXP_CACHE_SIZE];
ca1d1d23 58
487282dc 59/* The head of the linked list; points to the most recently used buffer. */
989b29ad 60static struct regexp_cache *searchbuf_head;
ca1d1d23 61
ca1d1d23 62
4746118a
JB
63/* Every call to re_match, etc., must pass &search_regs as the regs
64 argument unless you can show it is unnecessary (i.e., if re_match
65 is certainly going to be called again before region-around-match
66 can be called).
67
68 Since the registers are now dynamically allocated, we need to make
69 sure not to refer to the Nth register before checking that it has
1113d9db
JB
70 been allocated by checking search_regs.num_regs.
71
72 The regex code keeps track of whether it has allocated the search
487282dc
KH
73 buffer using bits in the re_pattern_buffer. This means that whenever
74 you compile a new pattern, it completely forgets whether it has
1113d9db
JB
75 allocated any registers, and will allocate new registers the next
76 time you call a searching or matching function. Therefore, we need
77 to call re_set_registers after compiling a new pattern or after
78 setting the match registers, so that the regex functions will be
79 able to free or re-allocate it properly. */
ca1d1d23
JB
80static struct re_registers search_regs;
81
daa37602
JB
82/* The buffer in which the last search was performed, or
83 Qt if the last search was done in a string;
84 Qnil if no searching has been done yet. */
85static Lisp_Object last_thing_searched;
ca1d1d23 86
02b16839 87/* Error condition signaled when regexp compile_pattern fails. */
955cbe7b 88static Lisp_Object Qinvalid_regexp;
ca1d1d23 89
02b16839 90/* Error condition used for failing searches. */
955cbe7b 91static Lisp_Object Qsearch_failed;
06f77a8a 92
d311d28c 93static void set_search_regs (ptrdiff_t, ptrdiff_t);
f57e2426 94static void save_search_regs (void);
d311d28c
PE
95static EMACS_INT simple_search (EMACS_INT, unsigned char *, ptrdiff_t,
96 ptrdiff_t, Lisp_Object, ptrdiff_t, ptrdiff_t,
97 ptrdiff_t, ptrdiff_t);
98static EMACS_INT boyer_moore (EMACS_INT, unsigned char *, ptrdiff_t,
99 Lisp_Object, Lisp_Object, ptrdiff_t,
100 ptrdiff_t, int);
101static EMACS_INT search_buffer (Lisp_Object, ptrdiff_t, ptrdiff_t,
102 ptrdiff_t, ptrdiff_t, EMACS_INT, int,
f57e2426 103 Lisp_Object, Lisp_Object, int);
b819a390 104
845ca893 105static _Noreturn void
971de7fb 106matcher_overflow (void)
ca1d1d23
JB
107{
108 error ("Stack overflow in regexp matcher");
109}
110
b819a390
RS
111/* Compile a regexp and signal a Lisp error if anything goes wrong.
112 PATTERN is the pattern to compile.
113 CP is the place to put the result.
facdc750 114 TRANSLATE is a translation table for ignoring case, or nil for none.
b819a390 115 POSIX is nonzero if we want full backtracking (POSIX style)
5679531d 116 for this pattern. 0 means backtrack only enough to get a valid match.
bbc73b48
KH
117
118 The behavior also depends on Vsearch_spaces_regexp. */
ca1d1d23 119
487282dc 120static void
cfe0661d 121compile_pattern_1 (struct regexp_cache *cp, Lisp_Object pattern, Lisp_Object translate, int posix)
ca1d1d23 122{
d451e4db 123 char *val;
b819a390 124 reg_syntax_t old;
ca1d1d23 125
487282dc 126 cp->regexp = Qnil;
59fab369 127 cp->buf.translate = (! NILP (translate) ? translate : make_number (0));
b819a390 128 cp->posix = posix;
93daa011 129 cp->buf.multibyte = STRING_MULTIBYTE (pattern);
89ad6492 130 cp->buf.charset_unibyte = charset_unibyte;
d8c85250
CY
131 if (STRINGP (Vsearch_spaces_regexp))
132 cp->whitespace_regexp = Vsearch_spaces_regexp;
133 else
134 cp->whitespace_regexp = Qnil;
135
e7b2dd2e
RS
136 /* rms: I think BLOCK_INPUT is not needed here any more,
137 because regex.c defines malloc to call xmalloc.
138 Using BLOCK_INPUT here means the debugger won't run if an error occurs.
139 So let's turn it off. */
140 /* BLOCK_INPUT; */
fb4a568d 141 old = re_set_syntax (RE_SYNTAX_EMACS
b819a390 142 | (posix ? 0 : RE_NO_POSIX_BACKTRACKING));
d8c85250
CY
143
144 if (STRINGP (Vsearch_spaces_regexp))
42a5b22f 145 re_set_whitespace_regexp (SSDATA (Vsearch_spaces_regexp));
d8c85250
CY
146 else
147 re_set_whitespace_regexp (NULL);
bbc73b48 148
51b59d79 149 val = (char *) re_compile_pattern (SSDATA (pattern),
8f924df7 150 SBYTES (pattern), &cp->buf);
bbc73b48 151
58e95211
SM
152 /* If the compiled pattern hard codes some of the contents of the
153 syntax-table, it can only be reused with *this* syntax table. */
4b4deea2 154 cp->syntax_table = cp->buf.used_syntax ? BVAR (current_buffer, syntax_table) : Qt;
58e95211 155
bbc73b48
KH
156 re_set_whitespace_regexp (NULL);
157
b819a390 158 re_set_syntax (old);
e7b2dd2e 159 /* UNBLOCK_INPUT; */
ca1d1d23 160 if (val)
06f77a8a 161 xsignal1 (Qinvalid_regexp, build_string (val));
1113d9db 162
487282dc 163 cp->regexp = Fcopy_sequence (pattern);
487282dc
KH
164}
165
6efc7887
RS
166/* Shrink each compiled regexp buffer in the cache
167 to the size actually used right now.
168 This is called from garbage collection. */
169
170void
971de7fb 171shrink_regexp_cache (void)
6efc7887 172{
a968f437 173 struct regexp_cache *cp;
6efc7887
RS
174
175 for (cp = searchbuf_head; cp != 0; cp = cp->next)
176 {
177 cp->buf.allocated = cp->buf.used;
38182d90 178 cp->buf.buffer = xrealloc (cp->buf.buffer, cp->buf.used);
6efc7887
RS
179 }
180}
181
54dd3310
SM
182/* Clear the regexp cache w.r.t. a particular syntax table,
183 because it was changed.
e5b94d44
CY
184 There is no danger of memory leak here because re_compile_pattern
185 automagically manages the memory in each re_pattern_buffer struct,
186 based on its `allocated' and `buffer' values. */
187void
971de7fb 188clear_regexp_cache (void)
e5b94d44
CY
189{
190 int i;
191
192 for (i = 0; i < REGEXP_CACHE_SIZE; ++i)
920fd1fc
EZ
193 /* It's tempting to compare with the syntax-table we've actually changed,
194 but it's not sufficient because char-table inheritance means that
54dd3310
SM
195 modifying one syntax-table can change others at the same time. */
196 if (!EQ (searchbufs[i].syntax_table, Qt))
197 searchbufs[i].regexp = Qnil;
e5b94d44
CY
198}
199
487282dc 200/* Compile a regexp if necessary, but first check to see if there's one in
b819a390
RS
201 the cache.
202 PATTERN is the pattern to compile.
facdc750 203 TRANSLATE is a translation table for ignoring case, or nil for none.
b819a390
RS
204 REGP is the structure that says where to store the "register"
205 values that will result from matching this pattern.
206 If it is 0, we should compile the pattern not to record any
207 subexpression bounds.
208 POSIX is nonzero if we want full backtracking (POSIX style)
209 for this pattern. 0 means backtrack only enough to get a valid match. */
487282dc
KH
210
211struct re_pattern_buffer *
971de7fb 212compile_pattern (Lisp_Object pattern, struct re_registers *regp, Lisp_Object translate, int posix, int multibyte)
487282dc
KH
213{
214 struct regexp_cache *cp, **cpp;
215
216 for (cpp = &searchbuf_head; ; cpp = &cp->next)
217 {
218 cp = *cpp;
f1b9c7c1
KR
219 /* Entries are initialized to nil, and may be set to nil by
220 compile_pattern_1 if the pattern isn't valid. Don't apply
49a5f770
KR
221 string accessors in those cases. However, compile_pattern_1
222 is only applied to the cache entry we pick here to reuse. So
223 nil should never appear before a non-nil entry. */
7c752c80 224 if (NILP (cp->regexp))
f1b9c7c1 225 goto compile_it;
d5db4077 226 if (SCHARS (cp->regexp) == SCHARS (pattern)
cf69b13e 227 && STRING_MULTIBYTE (cp->regexp) == STRING_MULTIBYTE (pattern)
1d288aef 228 && !NILP (Fstring_equal (cp->regexp, pattern))
59fab369 229 && EQ (cp->buf.translate, (! NILP (translate) ? translate : make_number (0)))
5679531d 230 && cp->posix == posix
58e95211 231 && (EQ (cp->syntax_table, Qt)
4b4deea2 232 || EQ (cp->syntax_table, BVAR (current_buffer, syntax_table)))
89ad6492
KH
233 && !NILP (Fequal (cp->whitespace_regexp, Vsearch_spaces_regexp))
234 && cp->buf.charset_unibyte == charset_unibyte)
487282dc
KH
235 break;
236
f1b9c7c1
KR
237 /* If we're at the end of the cache, compile into the nil cell
238 we found, or the last (least recently used) cell with a
239 string value. */
487282dc
KH
240 if (cp->next == 0)
241 {
f1b9c7c1 242 compile_it:
cfe0661d 243 compile_pattern_1 (cp, pattern, translate, posix);
487282dc
KH
244 break;
245 }
246 }
247
248 /* When we get here, cp (aka *cpp) contains the compiled pattern,
249 either because we found it in the cache or because we just compiled it.
250 Move it to the front of the queue to mark it as most recently used. */
251 *cpp = cp->next;
252 cp->next = searchbuf_head;
253 searchbuf_head = cp;
1113d9db 254
6639708c
RS
255 /* Advise the searching functions about the space we have allocated
256 for register data. */
257 if (regp)
258 re_set_registers (&cp->buf, regp, regp->num_regs, regp->start, regp->end);
259
78edd3b7 260 /* The compiled pattern can be used both for multibyte and unibyte
89ad6492
KH
261 target. But, we have to tell which the pattern is used for. */
262 cp->buf.target_multibyte = multibyte;
263
487282dc 264 return &cp->buf;
ca1d1d23
JB
265}
266
ca1d1d23 267\f
b819a390 268static Lisp_Object
971de7fb 269looking_at_1 (Lisp_Object string, int posix)
ca1d1d23
JB
270{
271 Lisp_Object val;
272 unsigned char *p1, *p2;
d311d28c
PE
273 ptrdiff_t s1, s2;
274 register ptrdiff_t i;
487282dc 275 struct re_pattern_buffer *bufp;
ca1d1d23 276
7074fde6
FP
277 if (running_asynch_code)
278 save_search_regs ();
279
910c747a 280 /* This is so set_image_of_range_1 in regex.c can find the EQV table. */
34dabdb7 281 set_char_table_extras (BVAR (current_buffer, case_canon_table), 2,
a098c930 282 BVAR (current_buffer, case_eqv_table));
910c747a 283
b7826503 284 CHECK_STRING (string);
ef887810
RS
285 bufp = compile_pattern (string,
286 (NILP (Vinhibit_changing_match_data)
287 ? &search_regs : NULL),
4b4deea2
TT
288 (!NILP (BVAR (current_buffer, case_fold_search))
289 ? BVAR (current_buffer, case_canon_table) : Qnil),
0c8533c6 290 posix,
4b4deea2 291 !NILP (BVAR (current_buffer, enable_multibyte_characters)));
ca1d1d23
JB
292
293 immediate_quit = 1;
294 QUIT; /* Do a pending quit right away, to avoid paradoxical behavior */
295
296 /* Get pointers and sizes of the two strings
297 that make up the visible portion of the buffer. */
298
299 p1 = BEGV_ADDR;
fa8ed3e0 300 s1 = GPT_BYTE - BEGV_BYTE;
ca1d1d23 301 p2 = GAP_END_ADDR;
fa8ed3e0 302 s2 = ZV_BYTE - GPT_BYTE;
ca1d1d23
JB
303 if (s1 < 0)
304 {
305 p2 = p1;
fa8ed3e0 306 s2 = ZV_BYTE - BEGV_BYTE;
ca1d1d23
JB
307 s1 = 0;
308 }
309 if (s2 < 0)
310 {
fa8ed3e0 311 s1 = ZV_BYTE - BEGV_BYTE;
ca1d1d23
JB
312 s2 = 0;
313 }
8bb43c28
RS
314
315 re_match_object = Qnil;
177c0ea7 316
487282dc 317 i = re_match_2 (bufp, (char *) p1, s1, (char *) p2, s2,
ef887810
RS
318 PT_BYTE - BEGV_BYTE,
319 (NILP (Vinhibit_changing_match_data)
320 ? &search_regs : NULL),
fa8ed3e0 321 ZV_BYTE - BEGV_BYTE);
de182d70 322 immediate_quit = 0;
177c0ea7 323
ca1d1d23
JB
324 if (i == -2)
325 matcher_overflow ();
326
327 val = (0 <= i ? Qt : Qnil);
ef887810 328 if (NILP (Vinhibit_changing_match_data) && i >= 0)
fa8ed3e0
RS
329 for (i = 0; i < search_regs.num_regs; i++)
330 if (search_regs.start[i] >= 0)
331 {
332 search_regs.start[i]
333 = BYTE_TO_CHAR (search_regs.start[i] + BEGV_BYTE);
334 search_regs.end[i]
335 = BYTE_TO_CHAR (search_regs.end[i] + BEGV_BYTE);
336 }
ef887810
RS
337
338 /* Set last_thing_searched only when match data is changed. */
339 if (NILP (Vinhibit_changing_match_data))
340 XSETBUFFER (last_thing_searched, current_buffer);
341
ca1d1d23
JB
342 return val;
343}
344
b819a390 345DEFUN ("looking-at", Flooking_at, Slooking_at, 1, 1, 0,
8c1a1077
PJ
346 doc: /* Return t if text after point matches regular expression REGEXP.
347This function modifies the match data that `match-beginning',
348`match-end' and `match-data' access; save and restore the match
349data if you want to preserve them. */)
5842a27b 350 (Lisp_Object regexp)
b819a390 351{
94f94972 352 return looking_at_1 (regexp, 0);
b819a390
RS
353}
354
355DEFUN ("posix-looking-at", Fposix_looking_at, Sposix_looking_at, 1, 1, 0,
8c1a1077
PJ
356 doc: /* Return t if text after point matches regular expression REGEXP.
357Find the longest match, in accord with Posix regular expression rules.
358This function modifies the match data that `match-beginning',
359`match-end' and `match-data' access; save and restore the match
360data if you want to preserve them. */)
5842a27b 361 (Lisp_Object regexp)
b819a390 362{
94f94972 363 return looking_at_1 (regexp, 1);
b819a390
RS
364}
365\f
366static Lisp_Object
971de7fb 367string_match_1 (Lisp_Object regexp, Lisp_Object string, Lisp_Object start, int posix)
ca1d1d23 368{
d311d28c 369 ptrdiff_t val;
487282dc 370 struct re_pattern_buffer *bufp;
d311d28c
PE
371 EMACS_INT pos;
372 ptrdiff_t pos_byte, i;
ca1d1d23 373
7074fde6
FP
374 if (running_asynch_code)
375 save_search_regs ();
376
b7826503
PJ
377 CHECK_STRING (regexp);
378 CHECK_STRING (string);
ca1d1d23
JB
379
380 if (NILP (start))
0c8533c6 381 pos = 0, pos_byte = 0;
ca1d1d23
JB
382 else
383 {
d311d28c 384 ptrdiff_t len = SCHARS (string);
ca1d1d23 385
b7826503 386 CHECK_NUMBER (start);
0c8533c6
RS
387 pos = XINT (start);
388 if (pos < 0 && -pos <= len)
389 pos = len + pos;
390 else if (0 > pos || pos > len)
ca1d1d23 391 args_out_of_range (string, start);
0c8533c6 392 pos_byte = string_char_to_byte (string, pos);
ca1d1d23
JB
393 }
394
910c747a 395 /* This is so set_image_of_range_1 in regex.c can find the EQV table. */
34dabdb7 396 set_char_table_extras (BVAR (current_buffer, case_canon_table), 2,
a098c930 397 BVAR (current_buffer, case_eqv_table));
910c747a 398
ef887810
RS
399 bufp = compile_pattern (regexp,
400 (NILP (Vinhibit_changing_match_data)
401 ? &search_regs : NULL),
4b4deea2
TT
402 (!NILP (BVAR (current_buffer, case_fold_search))
403 ? BVAR (current_buffer, case_canon_table) : Qnil),
0c8533c6
RS
404 posix,
405 STRING_MULTIBYTE (string));
ca1d1d23 406 immediate_quit = 1;
8bb43c28 407 re_match_object = string;
177c0ea7 408
51b59d79 409 val = re_search (bufp, SSDATA (string),
d5db4077
KR
410 SBYTES (string), pos_byte,
411 SBYTES (string) - pos_byte,
ef887810
RS
412 (NILP (Vinhibit_changing_match_data)
413 ? &search_regs : NULL));
ca1d1d23 414 immediate_quit = 0;
ef887810
RS
415
416 /* Set last_thing_searched only when match data is changed. */
417 if (NILP (Vinhibit_changing_match_data))
418 last_thing_searched = Qt;
419
ca1d1d23
JB
420 if (val == -2)
421 matcher_overflow ();
422 if (val < 0) return Qnil;
0c8533c6 423
ef887810
RS
424 if (NILP (Vinhibit_changing_match_data))
425 for (i = 0; i < search_regs.num_regs; i++)
426 if (search_regs.start[i] >= 0)
427 {
428 search_regs.start[i]
429 = string_byte_to_char (string, search_regs.start[i]);
430 search_regs.end[i]
431 = string_byte_to_char (string, search_regs.end[i]);
432 }
0c8533c6
RS
433
434 return make_number (string_byte_to_char (string, val));
ca1d1d23 435}
e59a8453 436
a7ca3326 437DEFUN ("string-match", Fstring_match, Sstring_match, 2, 3, 0,
8c1a1077 438 doc: /* Return index of start of first match for REGEXP in STRING, or nil.
b85acc4b 439Matching ignores case if `case-fold-search' is non-nil.
8c1a1077
PJ
440If third arg START is non-nil, start search at that index in STRING.
441For index of first char beyond the match, do (match-end 0).
442`match-end' and `match-beginning' also give indices of substrings
2bd2f32d
RS
443matched by parenthesis constructs in the pattern.
444
445You can use the function `match-string' to extract the substrings
446matched by the parenthesis constructions in REGEXP. */)
5842a27b 447 (Lisp_Object regexp, Lisp_Object string, Lisp_Object start)
b819a390
RS
448{
449 return string_match_1 (regexp, string, start, 0);
450}
451
452DEFUN ("posix-string-match", Fposix_string_match, Sposix_string_match, 2, 3, 0,
8c1a1077
PJ
453 doc: /* Return index of start of first match for REGEXP in STRING, or nil.
454Find the longest match, in accord with Posix regular expression rules.
455Case is ignored if `case-fold-search' is non-nil in the current buffer.
456If third arg START is non-nil, start search at that index in STRING.
457For index of first char beyond the match, do (match-end 0).
458`match-end' and `match-beginning' also give indices of substrings
459matched by parenthesis constructs in the pattern. */)
5842a27b 460 (Lisp_Object regexp, Lisp_Object string, Lisp_Object start)
b819a390
RS
461{
462 return string_match_1 (regexp, string, start, 1);
463}
464
e59a8453
RS
465/* Match REGEXP against STRING, searching all of STRING,
466 and return the index of the match, or negative on failure.
467 This does not clobber the match data. */
468
d311d28c 469ptrdiff_t
971de7fb 470fast_string_match (Lisp_Object regexp, Lisp_Object string)
e59a8453 471{
d311d28c 472 ptrdiff_t val;
487282dc 473 struct re_pattern_buffer *bufp;
e59a8453 474
facdc750
RS
475 bufp = compile_pattern (regexp, 0, Qnil,
476 0, STRING_MULTIBYTE (string));
e59a8453 477 immediate_quit = 1;
8bb43c28 478 re_match_object = string;
177c0ea7 479
51b59d79 480 val = re_search (bufp, SSDATA (string),
d5db4077
KR
481 SBYTES (string), 0,
482 SBYTES (string), 0);
e59a8453
RS
483 immediate_quit = 0;
484 return val;
485}
5679531d
KH
486
487/* Match REGEXP against STRING, searching all of STRING ignoring case,
488 and return the index of the match, or negative on failure.
0c8533c6
RS
489 This does not clobber the match data.
490 We assume that STRING contains single-byte characters. */
5679531d 491
d311d28c 492ptrdiff_t
d923b542
DA
493fast_c_string_match_ignore_case (Lisp_Object regexp,
494 const char *string, ptrdiff_t len)
5679531d 495{
d311d28c 496 ptrdiff_t val;
5679531d 497 struct re_pattern_buffer *bufp;
5679531d 498
0c8533c6 499 regexp = string_make_unibyte (regexp);
b4577c63 500 re_match_object = Qt;
5679531d 501 bufp = compile_pattern (regexp, 0,
0190922f 502 Vascii_canon_table, 0,
f8bd51c4 503 0);
5679531d
KH
504 immediate_quit = 1;
505 val = re_search (bufp, string, len, 0, len, 0);
506 immediate_quit = 0;
507 return val;
508}
be5f4dfb
KH
509
510/* Like fast_string_match but ignore case. */
511
d311d28c 512ptrdiff_t
971de7fb 513fast_string_match_ignore_case (Lisp_Object regexp, Lisp_Object string)
be5f4dfb 514{
d311d28c 515 ptrdiff_t val;
be5f4dfb
KH
516 struct re_pattern_buffer *bufp;
517
0190922f 518 bufp = compile_pattern (regexp, 0, Vascii_canon_table,
be5f4dfb
KH
519 0, STRING_MULTIBYTE (string));
520 immediate_quit = 1;
521 re_match_object = string;
522
51b59d79 523 val = re_search (bufp, SSDATA (string),
be5f4dfb
KH
524 SBYTES (string), 0,
525 SBYTES (string), 0);
526 immediate_quit = 0;
527 return val;
528}
ca1d1d23 529\f
a80ce213 530/* Match REGEXP against the characters after POS to LIMIT, and return
8b13507a
KH
531 the number of matched characters. If STRING is non-nil, match
532 against the characters in it. In that case, POS and LIMIT are
533 indices into the string. This function doesn't modify the match
534 data. */
535
d311d28c
PE
536ptrdiff_t
537fast_looking_at (Lisp_Object regexp, ptrdiff_t pos, ptrdiff_t pos_byte, ptrdiff_t limit, ptrdiff_t limit_byte, Lisp_Object string)
8b13507a
KH
538{
539 int multibyte;
540 struct re_pattern_buffer *buf;
541 unsigned char *p1, *p2;
d311d28c
PE
542 ptrdiff_t s1, s2;
543 ptrdiff_t len;
78edd3b7 544
8b13507a
KH
545 if (STRINGP (string))
546 {
547 if (pos_byte < 0)
548 pos_byte = string_char_to_byte (string, pos);
549 if (limit_byte < 0)
550 limit_byte = string_char_to_byte (string, limit);
551 p1 = NULL;
552 s1 = 0;
553 p2 = SDATA (string);
554 s2 = SBYTES (string);
555 re_match_object = string;
556 multibyte = STRING_MULTIBYTE (string);
557 }
558 else
559 {
560 if (pos_byte < 0)
561 pos_byte = CHAR_TO_BYTE (pos);
562 if (limit_byte < 0)
563 limit_byte = CHAR_TO_BYTE (limit);
564 pos_byte -= BEGV_BYTE;
565 limit_byte -= BEGV_BYTE;
566 p1 = BEGV_ADDR;
567 s1 = GPT_BYTE - BEGV_BYTE;
568 p2 = GAP_END_ADDR;
569 s2 = ZV_BYTE - GPT_BYTE;
570 if (s1 < 0)
571 {
572 p2 = p1;
573 s2 = ZV_BYTE - BEGV_BYTE;
574 s1 = 0;
575 }
576 if (s2 < 0)
577 {
578 s1 = ZV_BYTE - BEGV_BYTE;
579 s2 = 0;
580 }
581 re_match_object = Qnil;
4b4deea2 582 multibyte = ! NILP (BVAR (current_buffer, enable_multibyte_characters));
8b13507a
KH
583 }
584
585 buf = compile_pattern (regexp, 0, Qnil, 0, multibyte);
586 immediate_quit = 1;
587 len = re_match_2 (buf, (char *) p1, s1, (char *) p2, s2,
588 pos_byte, NULL, limit_byte);
589 immediate_quit = 0;
590
591 return len;
592}
593
594\f
9169c321
JB
595/* The newline cache: remembering which sections of text have no newlines. */
596
597/* If the user has requested newline caching, make sure it's on.
598 Otherwise, make sure it's off.
599 This is our cheezy way of associating an action with the change of
600 state of a buffer-local variable. */
601static void
971de7fb 602newline_cache_on_off (struct buffer *buf)
9169c321 603{
4b4deea2 604 if (NILP (BVAR (buf, cache_long_line_scans)))
9169c321
JB
605 {
606 /* It should be off. */
607 if (buf->newline_cache)
608 {
609 free_region_cache (buf->newline_cache);
610 buf->newline_cache = 0;
611 }
612 }
613 else
614 {
615 /* It should be on. */
616 if (buf->newline_cache == 0)
617 buf->newline_cache = new_region_cache ();
618 }
619}
620
621\f
622/* Search for COUNT instances of the character TARGET between START and END.
623
624 If COUNT is positive, search forwards; END must be >= START.
625 If COUNT is negative, search backwards for the -COUNTth instance;
626 END must be <= START.
627 If COUNT is zero, do anything you please; run rogue, for all I care.
628
629 If END is zero, use BEGV or ZV instead, as appropriate for the
630 direction indicated by COUNT.
ffd56f97
JB
631
632 If we find COUNT instances, set *SHORTAGE to zero, and return the
a9f2a45f 633 position past the COUNTth match. Note that for reverse motion
5bfe95c9 634 this is not the same as the usual convention for Emacs motion commands.
ffd56f97 635
9169c321
JB
636 If we don't find COUNT instances before reaching END, set *SHORTAGE
637 to the number of TARGETs left unfound, and return END.
ffd56f97 638
087a5f81
RS
639 If ALLOW_QUIT is non-zero, set immediate_quit. That's good to do
640 except when inside redisplay. */
641
d311d28c
PE
642ptrdiff_t
643scan_buffer (register int target, ptrdiff_t start, ptrdiff_t end,
644 ptrdiff_t count, ptrdiff_t *shortage, int allow_quit)
ca1d1d23 645{
9169c321 646 struct region_cache *newline_cache;
177c0ea7 647 int direction;
ffd56f97 648
9169c321
JB
649 if (count > 0)
650 {
651 direction = 1;
652 if (! end) end = ZV;
653 }
654 else
655 {
656 direction = -1;
657 if (! end) end = BEGV;
658 }
ffd56f97 659
9169c321
JB
660 newline_cache_on_off (current_buffer);
661 newline_cache = current_buffer->newline_cache;
ca1d1d23
JB
662
663 if (shortage != 0)
664 *shortage = 0;
665
087a5f81 666 immediate_quit = allow_quit;
ca1d1d23 667
ffd56f97 668 if (count > 0)
9169c321 669 while (start != end)
ca1d1d23 670 {
9169c321
JB
671 /* Our innermost scanning loop is very simple; it doesn't know
672 about gaps, buffer ends, or the newline cache. ceiling is
673 the position of the last character before the next such
674 obstacle --- the last character the dumb search loop should
675 examine. */
d311d28c
PE
676 ptrdiff_t ceiling_byte = CHAR_TO_BYTE (end) - 1;
677 ptrdiff_t start_byte = CHAR_TO_BYTE (start);
678 ptrdiff_t tem;
9169c321
JB
679
680 /* If we're looking for a newline, consult the newline cache
681 to see where we can avoid some scanning. */
682 if (target == '\n' && newline_cache)
683 {
0065d054 684 ptrdiff_t next_change;
9169c321
JB
685 immediate_quit = 0;
686 while (region_cache_forward
fa8ed3e0
RS
687 (current_buffer, newline_cache, start_byte, &next_change))
688 start_byte = next_change;
cbe0db0d 689 immediate_quit = allow_quit;
9169c321 690
fa8ed3e0
RS
691 /* START should never be after END. */
692 if (start_byte > ceiling_byte)
693 start_byte = ceiling_byte;
9169c321
JB
694
695 /* Now the text after start is an unknown region, and
696 next_change is the position of the next known region. */
fa8ed3e0 697 ceiling_byte = min (next_change - 1, ceiling_byte);
9169c321
JB
698 }
699
700 /* The dumb loop can only scan text stored in contiguous
701 bytes. BUFFER_CEILING_OF returns the last character
702 position that is contiguous, so the ceiling is the
703 position after that. */
67ce527d
KH
704 tem = BUFFER_CEILING_OF (start_byte);
705 ceiling_byte = min (tem, ceiling_byte);
9169c321
JB
706
707 {
177c0ea7 708 /* The termination address of the dumb loop. */
fa8ed3e0
RS
709 register unsigned char *ceiling_addr
710 = BYTE_POS_ADDR (ceiling_byte) + 1;
711 register unsigned char *cursor
712 = BYTE_POS_ADDR (start_byte);
9169c321
JB
713 unsigned char *base = cursor;
714
715 while (cursor < ceiling_addr)
716 {
717 unsigned char *scan_start = cursor;
718
719 /* The dumb loop. */
720 while (*cursor != target && ++cursor < ceiling_addr)
721 ;
722
723 /* If we're looking for newlines, cache the fact that
724 the region from start to cursor is free of them. */
725 if (target == '\n' && newline_cache)
726 know_region_cache (current_buffer, newline_cache,
6c1bd3f3
EZ
727 BYTE_TO_CHAR (start_byte + scan_start - base),
728 BYTE_TO_CHAR (start_byte + cursor - base));
9169c321
JB
729
730 /* Did we find the target character? */
731 if (cursor < ceiling_addr)
732 {
733 if (--count == 0)
734 {
735 immediate_quit = 0;
fa8ed3e0 736 return BYTE_TO_CHAR (start_byte + cursor - base + 1);
9169c321
JB
737 }
738 cursor++;
739 }
740 }
741
fa8ed3e0 742 start = BYTE_TO_CHAR (start_byte + cursor - base);
9169c321 743 }
ca1d1d23
JB
744 }
745 else
9169c321
JB
746 while (start > end)
747 {
748 /* The last character to check before the next obstacle. */
d311d28c
PE
749 ptrdiff_t ceiling_byte = CHAR_TO_BYTE (end);
750 ptrdiff_t start_byte = CHAR_TO_BYTE (start);
751 ptrdiff_t tem;
9169c321
JB
752
753 /* Consult the newline cache, if appropriate. */
754 if (target == '\n' && newline_cache)
755 {
0065d054 756 ptrdiff_t next_change;
9169c321
JB
757 immediate_quit = 0;
758 while (region_cache_backward
fa8ed3e0
RS
759 (current_buffer, newline_cache, start_byte, &next_change))
760 start_byte = next_change;
cbe0db0d 761 immediate_quit = allow_quit;
9169c321
JB
762
763 /* Start should never be at or before end. */
fa8ed3e0
RS
764 if (start_byte <= ceiling_byte)
765 start_byte = ceiling_byte + 1;
9169c321
JB
766
767 /* Now the text before start is an unknown region, and
768 next_change is the position of the next known region. */
fa8ed3e0 769 ceiling_byte = max (next_change, ceiling_byte);
9169c321
JB
770 }
771
772 /* Stop scanning before the gap. */
67ce527d
KH
773 tem = BUFFER_FLOOR_OF (start_byte - 1);
774 ceiling_byte = max (tem, ceiling_byte);
9169c321
JB
775
776 {
777 /* The termination address of the dumb loop. */
fa8ed3e0
RS
778 register unsigned char *ceiling_addr = BYTE_POS_ADDR (ceiling_byte);
779 register unsigned char *cursor = BYTE_POS_ADDR (start_byte - 1);
9169c321
JB
780 unsigned char *base = cursor;
781
782 while (cursor >= ceiling_addr)
783 {
784 unsigned char *scan_start = cursor;
785
786 while (*cursor != target && --cursor >= ceiling_addr)
787 ;
788
789 /* If we're looking for newlines, cache the fact that
790 the region from after the cursor to start is free of them. */
791 if (target == '\n' && newline_cache)
792 know_region_cache (current_buffer, newline_cache,
6c1bd3f3
EZ
793 BYTE_TO_CHAR (start_byte + cursor - base),
794 BYTE_TO_CHAR (start_byte + scan_start - base));
9169c321
JB
795
796 /* Did we find the target character? */
797 if (cursor >= ceiling_addr)
798 {
799 if (++count >= 0)
800 {
801 immediate_quit = 0;
fa8ed3e0 802 return BYTE_TO_CHAR (start_byte + cursor - base);
9169c321
JB
803 }
804 cursor--;
805 }
806 }
807
fa8ed3e0 808 start = BYTE_TO_CHAR (start_byte + cursor - base);
9169c321
JB
809 }
810 }
811
ca1d1d23
JB
812 immediate_quit = 0;
813 if (shortage != 0)
ffd56f97 814 *shortage = count * direction;
9169c321 815 return start;
ca1d1d23 816}
fa8ed3e0
RS
817\f
818/* Search for COUNT instances of a line boundary, which means either a
819 newline or (if selective display enabled) a carriage return.
820 Start at START. If COUNT is negative, search backwards.
821
822 We report the resulting position by calling TEMP_SET_PT_BOTH.
823
824 If we find COUNT instances. we position after (always after,
825 even if scanning backwards) the COUNTth match, and return 0.
826
827 If we don't find COUNT instances before reaching the end of the
828 buffer (or the beginning, if scanning backwards), we return
829 the number of line boundaries left unfound, and position at
830 the limit we bumped up against.
831
832 If ALLOW_QUIT is non-zero, set immediate_quit. That's good to do
d5d57b92 833 except in special cases. */
ca1d1d23 834
c098fdb8 835EMACS_INT
d311d28c
PE
836scan_newline (ptrdiff_t start, ptrdiff_t start_byte,
837 ptrdiff_t limit, ptrdiff_t limit_byte,
c098fdb8 838 register EMACS_INT count, int allow_quit)
63fa018d 839{
fa8ed3e0
RS
840 int direction = ((count > 0) ? 1 : -1);
841
842 register unsigned char *cursor;
843 unsigned char *base;
844
d311d28c 845 ptrdiff_t ceiling;
fa8ed3e0
RS
846 register unsigned char *ceiling_addr;
847
d5d57b92
RS
848 int old_immediate_quit = immediate_quit;
849
fa8ed3e0
RS
850 /* The code that follows is like scan_buffer
851 but checks for either newline or carriage return. */
852
d5d57b92
RS
853 if (allow_quit)
854 immediate_quit++;
fa8ed3e0
RS
855
856 start_byte = CHAR_TO_BYTE (start);
857
858 if (count > 0)
859 {
860 while (start_byte < limit_byte)
861 {
862 ceiling = BUFFER_CEILING_OF (start_byte);
863 ceiling = min (limit_byte - 1, ceiling);
864 ceiling_addr = BYTE_POS_ADDR (ceiling) + 1;
865 base = (cursor = BYTE_POS_ADDR (start_byte));
866 while (1)
867 {
868 while (*cursor != '\n' && ++cursor != ceiling_addr)
869 ;
870
871 if (cursor != ceiling_addr)
872 {
873 if (--count == 0)
874 {
d5d57b92 875 immediate_quit = old_immediate_quit;
fa8ed3e0
RS
876 start_byte = start_byte + cursor - base + 1;
877 start = BYTE_TO_CHAR (start_byte);
878 TEMP_SET_PT_BOTH (start, start_byte);
879 return 0;
880 }
881 else
882 if (++cursor == ceiling_addr)
883 break;
884 }
885 else
886 break;
887 }
888 start_byte += cursor - base;
889 }
890 }
891 else
892 {
fa8ed3e0
RS
893 while (start_byte > limit_byte)
894 {
895 ceiling = BUFFER_FLOOR_OF (start_byte - 1);
896 ceiling = max (limit_byte, ceiling);
897 ceiling_addr = BYTE_POS_ADDR (ceiling) - 1;
898 base = (cursor = BYTE_POS_ADDR (start_byte - 1) + 1);
899 while (1)
900 {
901 while (--cursor != ceiling_addr && *cursor != '\n')
902 ;
903
904 if (cursor != ceiling_addr)
905 {
906 if (++count == 0)
907 {
d5d57b92 908 immediate_quit = old_immediate_quit;
fa8ed3e0
RS
909 /* Return the position AFTER the match we found. */
910 start_byte = start_byte + cursor - base + 1;
911 start = BYTE_TO_CHAR (start_byte);
912 TEMP_SET_PT_BOTH (start, start_byte);
913 return 0;
914 }
915 }
916 else
917 break;
918 }
919 /* Here we add 1 to compensate for the last decrement
920 of CURSOR, which took it past the valid range. */
921 start_byte += cursor - base + 1;
922 }
923 }
924
925 TEMP_SET_PT_BOTH (limit, limit_byte);
d5d57b92 926 immediate_quit = old_immediate_quit;
fa8ed3e0
RS
927
928 return count * direction;
63fa018d
RS
929}
930
d311d28c
PE
931ptrdiff_t
932find_next_newline_no_quit (ptrdiff_t from, ptrdiff_t cnt)
ca1d1d23 933{
d311d28c 934 return scan_buffer ('\n', from, 0, cnt, (ptrdiff_t *) 0, 0);
9169c321
JB
935}
936
9169c321
JB
937/* Like find_next_newline, but returns position before the newline,
938 not after, and only search up to TO. This isn't just
939 find_next_newline (...)-1, because you might hit TO. */
fa8ed3e0 940
d311d28c
PE
941ptrdiff_t
942find_before_next_newline (ptrdiff_t from, ptrdiff_t to, ptrdiff_t cnt)
9169c321 943{
d311d28c
PE
944 ptrdiff_t shortage;
945 ptrdiff_t pos = scan_buffer ('\n', from, to, cnt, &shortage, 1);
9169c321
JB
946
947 if (shortage == 0)
948 pos--;
177c0ea7 949
9169c321 950 return pos;
ca1d1d23
JB
951}
952\f
ca1d1d23
JB
953/* Subroutines of Lisp buffer search functions. */
954
955static Lisp_Object
c098fdb8
EZ
956search_command (Lisp_Object string, Lisp_Object bound, Lisp_Object noerror,
957 Lisp_Object count, int direction, int RE, int posix)
ca1d1d23 958{
a53e2e89 959 register EMACS_INT np;
d311d28c
PE
960 EMACS_INT lim;
961 ptrdiff_t lim_byte;
a53e2e89 962 EMACS_INT n = direction;
ca1d1d23
JB
963
964 if (!NILP (count))
965 {
b7826503 966 CHECK_NUMBER (count);
ca1d1d23
JB
967 n *= XINT (count);
968 }
969
b7826503 970 CHECK_STRING (string);
ca1d1d23 971 if (NILP (bound))
9f43ad85
RS
972 {
973 if (n > 0)
974 lim = ZV, lim_byte = ZV_BYTE;
975 else
976 lim = BEGV, lim_byte = BEGV_BYTE;
977 }
ca1d1d23
JB
978 else
979 {
b7826503 980 CHECK_NUMBER_COERCE_MARKER (bound);
ca1d1d23 981 lim = XINT (bound);
6ec8bbd2 982 if (n > 0 ? lim < PT : lim > PT)
ca1d1d23
JB
983 error ("Invalid search bound (wrong side of point)");
984 if (lim > ZV)
9f43ad85 985 lim = ZV, lim_byte = ZV_BYTE;
588d2fd5 986 else if (lim < BEGV)
9f43ad85 987 lim = BEGV, lim_byte = BEGV_BYTE;
588d2fd5
KH
988 else
989 lim_byte = CHAR_TO_BYTE (lim);
ca1d1d23
JB
990 }
991
910c747a 992 /* This is so set_image_of_range_1 in regex.c can find the EQV table. */
34dabdb7 993 set_char_table_extras (BVAR (current_buffer, case_canon_table), 2,
a098c930 994 BVAR (current_buffer, case_eqv_table));
910c747a 995
9f43ad85 996 np = search_buffer (string, PT, PT_BYTE, lim, lim_byte, n, RE,
4b4deea2
TT
997 (!NILP (BVAR (current_buffer, case_fold_search))
998 ? BVAR (current_buffer, case_canon_table)
3135e9fd 999 : Qnil),
4b4deea2
TT
1000 (!NILP (BVAR (current_buffer, case_fold_search))
1001 ? BVAR (current_buffer, case_eqv_table)
3135e9fd 1002 : Qnil),
b819a390 1003 posix);
ca1d1d23
JB
1004 if (np <= 0)
1005 {
1006 if (NILP (noerror))
06f77a8a
KS
1007 xsignal1 (Qsearch_failed, string);
1008
ca1d1d23
JB
1009 if (!EQ (noerror, Qt))
1010 {
1011 if (lim < BEGV || lim > ZV)
1088b922 1012 emacs_abort ();
9f43ad85 1013 SET_PT_BOTH (lim, lim_byte);
a5f217b8
RS
1014 return Qnil;
1015#if 0 /* This would be clean, but maybe programs depend on
1016 a value of nil here. */
481399bf 1017 np = lim;
a5f217b8 1018#endif
ca1d1d23 1019 }
481399bf
RS
1020 else
1021 return Qnil;
ca1d1d23
JB
1022 }
1023
1024 if (np < BEGV || np > ZV)
1088b922 1025 emacs_abort ();
ca1d1d23
JB
1026
1027 SET_PT (np);
1028
1029 return make_number (np);
1030}
1031\f
fa8ed3e0
RS
1032/* Return 1 if REGEXP it matches just one constant string. */
1033
b6d6a51c 1034static int
971de7fb 1035trivial_regexp_p (Lisp_Object regexp)
b6d6a51c 1036{
d311d28c 1037 ptrdiff_t len = SBYTES (regexp);
d5db4077 1038 unsigned char *s = SDATA (regexp);
b6d6a51c
KH
1039 while (--len >= 0)
1040 {
1041 switch (*s++)
1042 {
1043 case '.': case '*': case '+': case '?': case '[': case '^': case '$':
1044 return 0;
1045 case '\\':
1046 if (--len < 0)
1047 return 0;
1048 switch (*s++)
1049 {
1050 case '|': case '(': case ')': case '`': case '\'': case 'b':
1051 case 'B': case '<': case '>': case 'w': case 'W': case 's':
29f89fe7 1052 case 'S': case '=': case '{': case '}': case '_':
5679531d 1053 case 'c': case 'C': /* for categoryspec and notcategoryspec */
866f60fd 1054 case '1': case '2': case '3': case '4': case '5':
b6d6a51c
KH
1055 case '6': case '7': case '8': case '9':
1056 return 0;
1057 }
1058 }
1059 }
1060 return 1;
1061}
1062
ca325161 1063/* Search for the n'th occurrence of STRING in the current buffer,
ca1d1d23 1064 starting at position POS and stopping at position LIM,
b819a390 1065 treating STRING as a literal string if RE is false or as
ca1d1d23
JB
1066 a regular expression if RE is true.
1067
1068 If N is positive, searching is forward and LIM must be greater than POS.
1069 If N is negative, searching is backward and LIM must be less than POS.
1070
facdc750 1071 Returns -x if x occurrences remain to be found (x > 0),
ca1d1d23 1072 or else the position at the beginning of the Nth occurrence
b819a390
RS
1073 (if searching backward) or the end (if searching forward).
1074
1075 POSIX is nonzero if we want full backtracking (POSIX style)
1076 for this pattern. 0 means backtrack only enough to get a valid match. */
ca1d1d23 1077
aff2ce94
RS
1078#define TRANSLATE(out, trt, d) \
1079do \
1080 { \
1081 if (! NILP (trt)) \
1082 { \
1083 Lisp_Object temp; \
1084 temp = Faref (trt, make_number (d)); \
1085 if (INTEGERP (temp)) \
1086 out = XINT (temp); \
1087 else \
1088 out = d; \
1089 } \
1090 else \
1091 out = d; \
1092 } \
1093while (0)
facdc750 1094
ef887810
RS
1095/* Only used in search_buffer, to record the end position of the match
1096 when searching regexps and SEARCH_REGS should not be changed
1097 (i.e. Vinhibit_changing_match_data is non-nil). */
1098static struct re_registers search_regs_1;
1099
e7deaab0 1100static EMACS_INT
d311d28c
PE
1101search_buffer (Lisp_Object string, ptrdiff_t pos, ptrdiff_t pos_byte,
1102 ptrdiff_t lim, ptrdiff_t lim_byte, EMACS_INT n,
d5a3eaaf 1103 int RE, Lisp_Object trt, Lisp_Object inverse_trt, int posix)
ca1d1d23 1104{
d311d28c
PE
1105 ptrdiff_t len = SCHARS (string);
1106 ptrdiff_t len_byte = SBYTES (string);
1107 register ptrdiff_t i;
ca1d1d23 1108
7074fde6
FP
1109 if (running_asynch_code)
1110 save_search_regs ();
1111
a7e4cdde 1112 /* Searching 0 times means don't move. */
ca1d1d23 1113 /* Null string is found at starting position. */
a7e4cdde 1114 if (len == 0 || n == 0)
ca325161 1115 {
0353b28f 1116 set_search_regs (pos_byte, 0);
ca325161
RS
1117 return pos;
1118 }
3f57a499 1119
41a33295 1120 if (RE && !(trivial_regexp_p (string) && NILP (Vsearch_spaces_regexp)))
ca1d1d23 1121 {
facdc750 1122 unsigned char *p1, *p2;
d311d28c 1123 ptrdiff_t s1, s2;
487282dc
KH
1124 struct re_pattern_buffer *bufp;
1125
ef887810
RS
1126 bufp = compile_pattern (string,
1127 (NILP (Vinhibit_changing_match_data)
1128 ? &search_regs : &search_regs_1),
1129 trt, posix,
4b4deea2 1130 !NILP (BVAR (current_buffer, enable_multibyte_characters)));
ca1d1d23 1131
ca1d1d23
JB
1132 immediate_quit = 1; /* Quit immediately if user types ^G,
1133 because letting this function finish
1134 can take too long. */
1135 QUIT; /* Do a pending quit right away,
1136 to avoid paradoxical behavior */
1137 /* Get pointers and sizes of the two strings
1138 that make up the visible portion of the buffer. */
1139
1140 p1 = BEGV_ADDR;
fa8ed3e0 1141 s1 = GPT_BYTE - BEGV_BYTE;
ca1d1d23 1142 p2 = GAP_END_ADDR;
fa8ed3e0 1143 s2 = ZV_BYTE - GPT_BYTE;
ca1d1d23
JB
1144 if (s1 < 0)
1145 {
1146 p2 = p1;
fa8ed3e0 1147 s2 = ZV_BYTE - BEGV_BYTE;
ca1d1d23
JB
1148 s1 = 0;
1149 }
1150 if (s2 < 0)
1151 {
fa8ed3e0 1152 s1 = ZV_BYTE - BEGV_BYTE;
ca1d1d23
JB
1153 s2 = 0;
1154 }
8bb43c28 1155 re_match_object = Qnil;
177c0ea7 1156
ca1d1d23
JB
1157 while (n < 0)
1158 {
d311d28c 1159 ptrdiff_t val;
52c55cc7 1160
487282dc 1161 val = re_search_2 (bufp, (char *) p1, s1, (char *) p2, s2,
4996330b 1162 pos_byte - BEGV_BYTE, lim_byte - pos_byte,
ef887810
RS
1163 (NILP (Vinhibit_changing_match_data)
1164 ? &search_regs : &search_regs_1),
42db823b 1165 /* Don't allow match past current point */
4996330b 1166 pos_byte - BEGV_BYTE);
ca1d1d23 1167 if (val == -2)
b6d6a51c
KH
1168 {
1169 matcher_overflow ();
1170 }
ca1d1d23
JB
1171 if (val >= 0)
1172 {
ef887810
RS
1173 if (NILP (Vinhibit_changing_match_data))
1174 {
1175 pos_byte = search_regs.start[0] + BEGV_BYTE;
1176 for (i = 0; i < search_regs.num_regs; i++)
1177 if (search_regs.start[i] >= 0)
1178 {
1179 search_regs.start[i]
1180 = BYTE_TO_CHAR (search_regs.start[i] + BEGV_BYTE);
1181 search_regs.end[i]
1182 = BYTE_TO_CHAR (search_regs.end[i] + BEGV_BYTE);
1183 }
1184 XSETBUFFER (last_thing_searched, current_buffer);
1185 /* Set pos to the new position. */
1186 pos = search_regs.start[0];
1187 }
1188 else
1189 {
1190 pos_byte = search_regs_1.start[0] + BEGV_BYTE;
1191 /* Set pos to the new position. */
1192 pos = BYTE_TO_CHAR (search_regs_1.start[0] + BEGV_BYTE);
1193 }
ca1d1d23
JB
1194 }
1195 else
1196 {
1197 immediate_quit = 0;
1198 return (n);
1199 }
1200 n++;
1201 }
1202 while (n > 0)
1203 {
d311d28c 1204 ptrdiff_t val;
52c55cc7 1205
487282dc 1206 val = re_search_2 (bufp, (char *) p1, s1, (char *) p2, s2,
4996330b 1207 pos_byte - BEGV_BYTE, lim_byte - pos_byte,
ef887810
RS
1208 (NILP (Vinhibit_changing_match_data)
1209 ? &search_regs : &search_regs_1),
4996330b 1210 lim_byte - BEGV_BYTE);
ca1d1d23 1211 if (val == -2)
b6d6a51c
KH
1212 {
1213 matcher_overflow ();
1214 }
ca1d1d23
JB
1215 if (val >= 0)
1216 {
ef887810
RS
1217 if (NILP (Vinhibit_changing_match_data))
1218 {
1219 pos_byte = search_regs.end[0] + BEGV_BYTE;
1220 for (i = 0; i < search_regs.num_regs; i++)
1221 if (search_regs.start[i] >= 0)
1222 {
1223 search_regs.start[i]
1224 = BYTE_TO_CHAR (search_regs.start[i] + BEGV_BYTE);
1225 search_regs.end[i]
1226 = BYTE_TO_CHAR (search_regs.end[i] + BEGV_BYTE);
1227 }
1228 XSETBUFFER (last_thing_searched, current_buffer);
1229 pos = search_regs.end[0];
1230 }
1231 else
1232 {
1233 pos_byte = search_regs_1.end[0] + BEGV_BYTE;
1234 pos = BYTE_TO_CHAR (search_regs_1.end[0] + BEGV_BYTE);
1235 }
ca1d1d23
JB
1236 }
1237 else
1238 {
1239 immediate_quit = 0;
1240 return (0 - n);
1241 }
1242 n--;
1243 }
1244 immediate_quit = 0;
1245 return (pos);
1246 }
1247 else /* non-RE case */
1248 {
facdc750 1249 unsigned char *raw_pattern, *pat;
d311d28c
PE
1250 ptrdiff_t raw_pattern_size;
1251 ptrdiff_t raw_pattern_size_byte;
facdc750 1252 unsigned char *patbuf;
4b4deea2 1253 int multibyte = !NILP (BVAR (current_buffer, enable_multibyte_characters));
a967ed62 1254 unsigned char *base_pat;
49e44e81
KH
1255 /* Set to positive if we find a non-ASCII char that need
1256 translation. Otherwise set to zero later. */
1257 int char_base = -1;
040272ce 1258 int boyer_moore_ok = 1;
facdc750
RS
1259
1260 /* MULTIBYTE says whether the text to be searched is multibyte.
1261 We must convert PATTERN to match that, or we will not really
1262 find things right. */
1263
1264 if (multibyte == STRING_MULTIBYTE (string))
1265 {
51b59d79 1266 raw_pattern = SDATA (string);
d5db4077
KR
1267 raw_pattern_size = SCHARS (string);
1268 raw_pattern_size_byte = SBYTES (string);
facdc750
RS
1269 }
1270 else if (multibyte)
1271 {
d5db4077 1272 raw_pattern_size = SCHARS (string);
facdc750 1273 raw_pattern_size_byte
d5db4077 1274 = count_size_as_multibyte (SDATA (string),
facdc750 1275 raw_pattern_size);
38182d90 1276 raw_pattern = alloca (raw_pattern_size_byte + 1);
d5db4077
KR
1277 copy_text (SDATA (string), raw_pattern,
1278 SCHARS (string), 0, 1);
facdc750
RS
1279 }
1280 else
1281 {
1282 /* Converting multibyte to single-byte.
1283
1284 ??? Perhaps this conversion should be done in a special way
1285 by subtracting nonascii-insert-offset from each non-ASCII char,
1286 so that only the multibyte chars which really correspond to
1287 the chosen single-byte character set can possibly match. */
d5db4077
KR
1288 raw_pattern_size = SCHARS (string);
1289 raw_pattern_size_byte = SCHARS (string);
38182d90 1290 raw_pattern = alloca (raw_pattern_size + 1);
d5db4077
KR
1291 copy_text (SDATA (string), raw_pattern,
1292 SBYTES (string), 1, 0);
facdc750
RS
1293 }
1294
1295 /* Copy and optionally translate the pattern. */
1296 len = raw_pattern_size;
1297 len_byte = raw_pattern_size_byte;
38182d90 1298 patbuf = alloca (len * MAX_MULTIBYTE_LENGTH);
facdc750
RS
1299 pat = patbuf;
1300 base_pat = raw_pattern;
1301 if (multibyte)
1302 {
a17ae96a
KH
1303 /* Fill patbuf by translated characters in STRING while
1304 checking if we can use boyer-moore search. If TRT is
1305 non-nil, we can use boyer-moore search only if TRT can be
1306 represented by the byte array of 256 elements. For that,
9858f6c3 1307 all non-ASCII case-equivalents of all case-sensitive
a17ae96a
KH
1308 characters in STRING must belong to the same charset and
1309 row. */
1310
facdc750
RS
1311 while (--len >= 0)
1312 {
a17ae96a 1313 unsigned char str_base[MAX_MULTIBYTE_LENGTH], *str;
aff2ce94 1314 int c, translated, inverse;
a17ae96a 1315 int in_charlen, charlen;
facdc750
RS
1316
1317 /* If we got here and the RE flag is set, it's because we're
1318 dealing with a regexp known to be trivial, so the backslash
1319 just quotes the next character. */
1320 if (RE && *base_pat == '\\')
1321 {
1322 len--;
62221f22 1323 raw_pattern_size--;
facdc750
RS
1324 len_byte--;
1325 base_pat++;
1326 }
1327
62a6e103 1328 c = STRING_CHAR_AND_LENGTH (base_pat, in_charlen);
040272ce 1329
a17ae96a 1330 if (NILP (trt))
facdc750 1331 {
a17ae96a
KH
1332 str = base_pat;
1333 charlen = in_charlen;
1334 }
1335 else
1336 {
1337 /* Translate the character. */
1338 TRANSLATE (translated, trt, c);
1339 charlen = CHAR_STRING (translated, str_base);
1340 str = str_base;
1341
1342 /* Check if C has any other case-equivalents. */
1343 TRANSLATE (inverse, inverse_trt, c);
1344 /* If so, check if we can use boyer-moore. */
1345 if (c != inverse && boyer_moore_ok)
1346 {
1347 /* Check if all equivalents belong to the same
1348 group of characters. Note that the check of C
49e44e81
KH
1349 itself is done by the last iteration. */
1350 int this_char_base = -1;
1351
1352 while (boyer_moore_ok)
a17ae96a 1353 {
49e44e81 1354 if (ASCII_BYTE_P (inverse))
a17ae96a 1355 {
49e44e81
KH
1356 if (this_char_base > 0)
1357 boyer_moore_ok = 0;
1358 else
dafaabd1 1359 this_char_base = 0;
a17ae96a 1360 }
49e44e81
KH
1361 else if (CHAR_BYTE8_P (inverse))
1362 /* Boyer-moore search can't handle a
1363 translation of an eight-bit
1364 character. */
1365 boyer_moore_ok = 0;
1366 else if (this_char_base < 0)
1367 {
1368 this_char_base = inverse & ~0x3F;
1369 if (char_base < 0)
1370 char_base = this_char_base;
dafaabd1 1371 else if (this_char_base != char_base)
49e44e81
KH
1372 boyer_moore_ok = 0;
1373 }
1374 else if ((inverse & ~0x3F) != this_char_base)
1375 boyer_moore_ok = 0;
a17ae96a
KH
1376 if (c == inverse)
1377 break;
1378 TRANSLATE (inverse, inverse_trt, inverse);
1379 }
1380 }
aff2ce94 1381 }
facdc750
RS
1382
1383 /* Store this character into the translated pattern. */
72af86bd 1384 memcpy (pat, str, charlen);
a17ae96a 1385 pat += charlen;
facdc750
RS
1386 base_pat += in_charlen;
1387 len_byte -= in_charlen;
1388 }
dafaabd1
AS
1389
1390 /* If char_base is still negative we didn't find any translated
1391 non-ASCII characters. */
1392 if (char_base < 0)
1393 char_base = 0;
facdc750
RS
1394 }
1395 else
1396 {
040272ce 1397 /* Unibyte buffer. */
a17ae96a 1398 char_base = 0;
facdc750
RS
1399 while (--len >= 0)
1400 {
040272ce 1401 int c, translated;
facdc750
RS
1402
1403 /* If we got here and the RE flag is set, it's because we're
1404 dealing with a regexp known to be trivial, so the backslash
1405 just quotes the next character. */
1406 if (RE && *base_pat == '\\')
1407 {
1408 len--;
0190922f 1409 raw_pattern_size--;
facdc750
RS
1410 base_pat++;
1411 }
1412 c = *base_pat++;
aff2ce94 1413 TRANSLATE (translated, trt, c);
facdc750
RS
1414 *pat++ = translated;
1415 }
1416 }
1417
1418 len_byte = pat - patbuf;
facdc750
RS
1419 pat = base_pat = patbuf;
1420
040272ce 1421 if (boyer_moore_ok)
1db5b1ad
JB
1422 return boyer_moore (n, pat, len_byte, trt, inverse_trt,
1423 pos_byte, lim_byte,
a17ae96a 1424 char_base);
facdc750 1425 else
1db5b1ad 1426 return simple_search (n, pat, raw_pattern_size, len_byte, trt,
facdc750
RS
1427 pos, pos_byte, lim, lim_byte);
1428 }
1429}
1430\f
1431/* Do a simple string search N times for the string PAT,
1432 whose length is LEN/LEN_BYTE,
1433 from buffer position POS/POS_BYTE until LIM/LIM_BYTE.
1434 TRT is the translation table.
f8bd51c4 1435
facdc750
RS
1436 Return the character position where the match is found.
1437 Otherwise, if M matches remained to be found, return -M.
f8bd51c4 1438
facdc750
RS
1439 This kind of search works regardless of what is in PAT and
1440 regardless of what is in TRT. It is used in cases where
1441 boyer_moore cannot work. */
1442
e7deaab0 1443static EMACS_INT
c098fdb8 1444simple_search (EMACS_INT n, unsigned char *pat,
d311d28c
PE
1445 ptrdiff_t len, ptrdiff_t len_byte, Lisp_Object trt,
1446 ptrdiff_t pos, ptrdiff_t pos_byte,
1447 ptrdiff_t lim, ptrdiff_t lim_byte)
facdc750 1448{
4b4deea2 1449 int multibyte = ! NILP (BVAR (current_buffer, enable_multibyte_characters));
ab228c24 1450 int forward = n > 0;
49e44e81
KH
1451 /* Number of buffer bytes matched. Note that this may be different
1452 from len_byte in a multibyte buffer. */
8ce70ed2 1453 ptrdiff_t match_byte = PTRDIFF_MIN;
facdc750
RS
1454
1455 if (lim > pos && multibyte)
1456 while (n > 0)
1457 {
1458 while (1)
f8bd51c4 1459 {
facdc750 1460 /* Try matching at position POS. */
d311d28c
PE
1461 ptrdiff_t this_pos = pos;
1462 ptrdiff_t this_pos_byte = pos_byte;
1463 ptrdiff_t this_len = len;
facdc750 1464 unsigned char *p = pat;
a9469498 1465 if (pos + len > lim || pos_byte + len_byte > lim_byte)
facdc750
RS
1466 goto stop;
1467
1468 while (this_len > 0)
1469 {
1470 int charlen, buf_charlen;
ab228c24 1471 int pat_ch, buf_ch;
facdc750 1472
62a6e103 1473 pat_ch = STRING_CHAR_AND_LENGTH (p, charlen);
facdc750 1474 buf_ch = STRING_CHAR_AND_LENGTH (BYTE_POS_ADDR (this_pos_byte),
facdc750 1475 buf_charlen);
aff2ce94 1476 TRANSLATE (buf_ch, trt, buf_ch);
facdc750
RS
1477
1478 if (buf_ch != pat_ch)
1479 break;
ab228c24 1480
ab228c24
RS
1481 this_len--;
1482 p += charlen;
1483
1484 this_pos_byte += buf_charlen;
1485 this_pos++;
facdc750
RS
1486 }
1487
1488 if (this_len == 0)
1489 {
49e44e81 1490 match_byte = this_pos_byte - pos_byte;
facdc750 1491 pos += len;
49e44e81 1492 pos_byte += match_byte;
facdc750
RS
1493 break;
1494 }
1495
1496 INC_BOTH (pos, pos_byte);
f8bd51c4 1497 }
facdc750
RS
1498
1499 n--;
1500 }
1501 else if (lim > pos)
1502 while (n > 0)
1503 {
1504 while (1)
f8bd51c4 1505 {
facdc750 1506 /* Try matching at position POS. */
d311d28c
PE
1507 ptrdiff_t this_pos = pos;
1508 ptrdiff_t this_len = len;
facdc750
RS
1509 unsigned char *p = pat;
1510
1511 if (pos + len > lim)
1512 goto stop;
1513
1514 while (this_len > 0)
1515 {
1516 int pat_ch = *p++;
1517 int buf_ch = FETCH_BYTE (this_pos);
aff2ce94 1518 TRANSLATE (buf_ch, trt, buf_ch);
facdc750
RS
1519
1520 if (buf_ch != pat_ch)
1521 break;
ab228c24
RS
1522
1523 this_len--;
1524 this_pos++;
facdc750
RS
1525 }
1526
1527 if (this_len == 0)
1528 {
49e44e81 1529 match_byte = len;
facdc750
RS
1530 pos += len;
1531 break;
1532 }
1533
1534 pos++;
f8bd51c4 1535 }
facdc750
RS
1536
1537 n--;
1538 }
1539 /* Backwards search. */
1540 else if (lim < pos && multibyte)
1541 while (n < 0)
1542 {
1543 while (1)
f8bd51c4 1544 {
facdc750 1545 /* Try matching at position POS. */
d311d28c
PE
1546 ptrdiff_t this_pos = pos;
1547 ptrdiff_t this_pos_byte = pos_byte;
1548 ptrdiff_t this_len = len;
c525b3f2 1549 const unsigned char *p = pat + len_byte;
facdc750 1550
8b264ecb 1551 if (this_pos - len < lim || (pos_byte - len_byte) < lim_byte)
facdc750
RS
1552 goto stop;
1553
1554 while (this_len > 0)
1555 {
ab228c24 1556 int pat_ch, buf_ch;
facdc750 1557
8b264ecb
AS
1558 DEC_BOTH (this_pos, this_pos_byte);
1559 PREV_CHAR_BOUNDARY (p, pat);
1560 pat_ch = STRING_CHAR (p);
1561 buf_ch = STRING_CHAR (BYTE_POS_ADDR (this_pos_byte));
aff2ce94 1562 TRANSLATE (buf_ch, trt, buf_ch);
facdc750
RS
1563
1564 if (buf_ch != pat_ch)
1565 break;
ab228c24 1566
ab228c24 1567 this_len--;
facdc750
RS
1568 }
1569
1570 if (this_len == 0)
1571 {
8b264ecb
AS
1572 match_byte = pos_byte - this_pos_byte;
1573 pos = this_pos;
1574 pos_byte = this_pos_byte;
facdc750
RS
1575 break;
1576 }
1577
1578 DEC_BOTH (pos, pos_byte);
f8bd51c4
KH
1579 }
1580
facdc750
RS
1581 n++;
1582 }
1583 else if (lim < pos)
1584 while (n < 0)
1585 {
1586 while (1)
b6d6a51c 1587 {
facdc750 1588 /* Try matching at position POS. */
d311d28c
PE
1589 ptrdiff_t this_pos = pos - len;
1590 ptrdiff_t this_len = len;
facdc750
RS
1591 unsigned char *p = pat;
1592
a9469498 1593 if (this_pos < lim)
facdc750
RS
1594 goto stop;
1595
1596 while (this_len > 0)
1597 {
1598 int pat_ch = *p++;
1599 int buf_ch = FETCH_BYTE (this_pos);
aff2ce94 1600 TRANSLATE (buf_ch, trt, buf_ch);
facdc750
RS
1601
1602 if (buf_ch != pat_ch)
1603 break;
ab228c24
RS
1604 this_len--;
1605 this_pos++;
facdc750
RS
1606 }
1607
1608 if (this_len == 0)
b6d6a51c 1609 {
49e44e81 1610 match_byte = len;
facdc750
RS
1611 pos -= len;
1612 break;
b6d6a51c 1613 }
facdc750
RS
1614
1615 pos--;
b6d6a51c 1616 }
facdc750
RS
1617
1618 n++;
b6d6a51c 1619 }
facdc750
RS
1620
1621 stop:
1622 if (n == 0)
aff2ce94 1623 {
8ce70ed2 1624 eassert (match_byte != PTRDIFF_MIN);
ab228c24 1625 if (forward)
49e44e81 1626 set_search_regs ((multibyte ? pos_byte : pos) - match_byte, match_byte);
ab228c24 1627 else
49e44e81 1628 set_search_regs (multibyte ? pos_byte : pos, match_byte);
aff2ce94
RS
1629
1630 return pos;
1631 }
facdc750
RS
1632 else if (n > 0)
1633 return -n;
1634 else
1635 return n;
1636}
1637\f
0190922f 1638/* Do Boyer-Moore search N times for the string BASE_PAT,
1db5b1ad
JB
1639 whose length is LEN_BYTE,
1640 from buffer position POS_BYTE until LIM_BYTE.
facdc750
RS
1641 DIRECTION says which direction we search in.
1642 TRT and INVERSE_TRT are translation tables.
0190922f 1643 Characters in PAT are already translated by TRT.
facdc750 1644
0190922f
KH
1645 This kind of search works if all the characters in BASE_PAT that
1646 have nontrivial translation are the same aside from the last byte.
1647 This makes it possible to translate just the last byte of a
1648 character, and do so after just a simple test of the context.
b2e6b10f 1649 CHAR_BASE is nonzero if there is such a non-ASCII character.
facdc750
RS
1650
1651 If that criterion is not satisfied, do not call this function. */
1652
e7deaab0 1653static EMACS_INT
c098fdb8 1654boyer_moore (EMACS_INT n, unsigned char *base_pat,
d311d28c 1655 ptrdiff_t len_byte,
d5a3eaaf 1656 Lisp_Object trt, Lisp_Object inverse_trt,
d311d28c 1657 ptrdiff_t pos_byte, ptrdiff_t lim_byte,
1db5b1ad 1658 int char_base)
facdc750
RS
1659{
1660 int direction = ((n > 0) ? 1 : -1);
d311d28c
PE
1661 register ptrdiff_t dirlen;
1662 ptrdiff_t limit;
e7deaab0 1663 int stride_for_teases = 0;
f4646fff 1664 int BM_tab[0400];
177c0ea7 1665 register unsigned char *cursor, *p_limit;
d311d28c 1666 register ptrdiff_t i;
c098fdb8 1667 register int j;
cb6792d2 1668 unsigned char *pat, *pat_end;
4b4deea2 1669 int multibyte = ! NILP (BVAR (current_buffer, enable_multibyte_characters));
facdc750
RS
1670
1671 unsigned char simple_translate[0400];
0190922f 1672 /* These are set to the preceding bytes of a byte to be translated
49e44e81 1673 if char_base is nonzero. As the maximum byte length of a
a17ae96a 1674 multibyte character is 5, we have to check at most four previous
0190922f
KH
1675 bytes. */
1676 int translate_prev_byte1 = 0;
1677 int translate_prev_byte2 = 0;
1678 int translate_prev_byte3 = 0;
facdc750 1679
f4646fff
AS
1680 /* The general approach is that we are going to maintain that we know
1681 the first (closest to the present position, in whatever direction
1682 we're searching) character that could possibly be the last
1683 (furthest from present position) character of a valid match. We
1684 advance the state of our knowledge by looking at that character
1685 and seeing whether it indeed matches the last character of the
1686 pattern. If it does, we take a closer look. If it does not, we
1687 move our pointer (to putative last characters) as far as is
1688 logically possible. This amount of movement, which I call a
1689 stride, will be the length of the pattern if the actual character
1690 appears nowhere in the pattern, otherwise it will be the distance
1691 from the last occurrence of that character to the end of the
1692 pattern. If the amount is zero we have a possible match. */
1693
1694 /* Here we make a "mickey mouse" BM table. The stride of the search
1695 is determined only by the last character of the putative match.
1696 If that character does not match, we will stride the proper
1697 distance to propose a match that superimposes it on the last
1698 instance of a character that matches it (per trt), or misses
1699 it entirely if there is none. */
facdc750
RS
1700
1701 dirlen = len_byte * direction;
cb6792d2
RS
1702
1703 /* Record position after the end of the pattern. */
1704 pat_end = base_pat + len_byte;
1705 /* BASE_PAT points to a character that we start scanning from.
1706 It is the first character in a forward search,
1707 the last character in a backward search. */
facdc750 1708 if (direction < 0)
cb6792d2
RS
1709 base_pat = pat_end - 1;
1710
f4646fff
AS
1711 /* A character that does not appear in the pattern induces a
1712 stride equal to the pattern length. */
1713 for (i = 0; i < 0400; i++)
1714 BM_tab[i] = dirlen;
facdc750
RS
1715
1716 /* We use this for translation, instead of TRT itself.
1717 We fill this in to handle the characters that actually
1718 occur in the pattern. Others don't matter anyway! */
facdc750
RS
1719 for (i = 0; i < 0400; i++)
1720 simple_translate[i] = i;
1721
a17ae96a 1722 if (char_base)
0190922f 1723 {
a17ae96a 1724 /* Setup translate_prev_byte1/2/3/4 from CHAR_BASE. Only a
0190922f 1725 byte following them are the target of translation. */
0190922f 1726 unsigned char str[MAX_MULTIBYTE_LENGTH];
1f3561e4 1727 int cblen = CHAR_STRING (char_base, str);
0190922f 1728
1f3561e4
PE
1729 translate_prev_byte1 = str[cblen - 2];
1730 if (cblen > 2)
0190922f 1731 {
1f3561e4
PE
1732 translate_prev_byte2 = str[cblen - 3];
1733 if (cblen > 3)
1f1d9321 1734 translate_prev_byte3 = str[cblen - 4];
0190922f
KH
1735 }
1736 }
1737
facdc750 1738 i = 0;
f4646fff 1739 while (i != dirlen)
facdc750 1740 {
cb6792d2 1741 unsigned char *ptr = base_pat + i;
facdc750 1742 i += direction;
facdc750 1743 if (! NILP (trt))
ca1d1d23 1744 {
49e44e81
KH
1745 /* If the byte currently looking at is the last of a
1746 character to check case-equivalents, set CH to that
1747 character. An ASCII character and a non-ASCII character
1748 matching with CHAR_BASE are to be checked. */
a17ae96a
KH
1749 int ch = -1;
1750
1751 if (ASCII_BYTE_P (*ptr) || ! multibyte)
1752 ch = *ptr;
49e44e81 1753 else if (char_base
86dc6ccb 1754 && ((pat_end - ptr) == 1 || CHAR_HEAD_P (ptr[1])))
ca1d1d23 1755 {
49e44e81
KH
1756 unsigned char *charstart = ptr - 1;
1757
1758 while (! (CHAR_HEAD_P (*charstart)))
1759 charstart--;
62a6e103 1760 ch = STRING_CHAR (charstart);
a17ae96a
KH
1761 if (char_base != (ch & ~0x3F))
1762 ch = -1;
ca1d1d23 1763 }
facdc750 1764
edb7b4dc 1765 if (ch >= 0200 && multibyte)
49e44e81
KH
1766 j = (ch & 0x3F) | 0200;
1767 else
1768 j = *ptr;
1769
f4646fff 1770 if (i == dirlen)
facdc750 1771 stride_for_teases = BM_tab[j];
ab228c24 1772
facdc750 1773 BM_tab[j] = dirlen - i;
1db5b1ad
JB
1774 /* A translation table is accompanied by its inverse -- see
1775 comment following downcase_table for details. */
a17ae96a 1776 if (ch >= 0)
ab228c24
RS
1777 {
1778 int starting_ch = ch;
49e44e81 1779 int starting_j = j;
a17ae96a 1780
ab228c24
RS
1781 while (1)
1782 {
1783 TRANSLATE (ch, inverse_trt, ch);
edb7b4dc 1784 if (ch >= 0200 && multibyte)
49e44e81 1785 j = (ch & 0x3F) | 0200;
ab228c24 1786 else
a17ae96a 1787 j = ch;
ab228c24
RS
1788
1789 /* For all the characters that map into CH,
1790 set up simple_translate to map the last byte
1791 into STARTING_J. */
1792 simple_translate[j] = starting_j;
1793 if (ch == starting_ch)
1794 break;
1795 BM_tab[j] = dirlen - i;
1796 }
1797 }
facdc750
RS
1798 }
1799 else
1800 {
1801 j = *ptr;
1802
f4646fff 1803 if (i == dirlen)
facdc750
RS
1804 stride_for_teases = BM_tab[j];
1805 BM_tab[j] = dirlen - i;
ca1d1d23 1806 }
f4646fff
AS
1807 /* stride_for_teases tells how much to stride if we get a
1808 match on the far character but are subsequently
1809 disappointed, by recording what the stride would have been
1810 for that character if the last character had been
1811 different. */
facdc750 1812 }
facdc750
RS
1813 pos_byte += dirlen - ((direction > 0) ? direction : 0);
1814 /* loop invariant - POS_BYTE points at where last char (first
1815 char if reverse) of pattern would align in a possible match. */
1816 while (n != 0)
1817 {
d311d28c 1818 ptrdiff_t tail_end;
facdc750
RS
1819 unsigned char *tail_end_ptr;
1820
1821 /* It's been reported that some (broken) compiler thinks that
1822 Boolean expressions in an arithmetic context are unsigned.
1823 Using an explicit ?1:0 prevents this. */
1824 if ((lim_byte - pos_byte - ((direction > 0) ? 1 : 0)) * direction
1825 < 0)
1826 return (n * (0 - direction));
1827 /* First we do the part we can by pointers (maybe nothing) */
1828 QUIT;
1829 pat = base_pat;
1830 limit = pos_byte - dirlen + direction;
67ce527d
KH
1831 if (direction > 0)
1832 {
1833 limit = BUFFER_CEILING_OF (limit);
1834 /* LIMIT is now the last (not beyond-last!) value POS_BYTE
1835 can take on without hitting edge of buffer or the gap. */
1836 limit = min (limit, pos_byte + 20000);
1837 limit = min (limit, lim_byte - 1);
1838 }
1839 else
1840 {
1841 limit = BUFFER_FLOOR_OF (limit);
1842 /* LIMIT is now the last (not beyond-last!) value POS_BYTE
1843 can take on without hitting edge of buffer or the gap. */
1844 limit = max (limit, pos_byte - 20000);
1845 limit = max (limit, lim_byte);
1846 }
facdc750
RS
1847 tail_end = BUFFER_CEILING_OF (pos_byte) + 1;
1848 tail_end_ptr = BYTE_POS_ADDR (tail_end);
1849
1850 if ((limit - pos_byte) * direction > 20)
ca1d1d23 1851 {
facdc750
RS
1852 unsigned char *p2;
1853
1854 p_limit = BYTE_POS_ADDR (limit);
1855 p2 = (cursor = BYTE_POS_ADDR (pos_byte));
f4646fff 1856 /* In this loop, pos + cursor - p2 is the surrogate for pos. */
facdc750 1857 while (1) /* use one cursor setting as long as i can */
ca1d1d23 1858 {
facdc750 1859 if (direction > 0) /* worth duplicating */
ca1d1d23 1860 {
f4646fff
AS
1861 while (cursor <= p_limit)
1862 {
1863 if (BM_tab[*cursor] == 0)
1864 goto hit;
facdc750 1865 cursor += BM_tab[*cursor];
f4646fff 1866 }
facdc750
RS
1867 }
1868 else
1869 {
f4646fff
AS
1870 while (cursor >= p_limit)
1871 {
1872 if (BM_tab[*cursor] == 0)
1873 goto hit;
facdc750 1874 cursor += BM_tab[*cursor];
f4646fff 1875 }
facdc750 1876 }
f4646fff
AS
1877 /* If you are here, cursor is beyond the end of the
1878 searched region. You fail to match within the
1879 permitted region and would otherwise try a character
1880 beyond that region. */
1881 break;
1882
1883 hit:
facdc750
RS
1884 i = dirlen - direction;
1885 if (! NILP (trt))
1886 {
1887 while ((i -= direction) + direction != 0)
ca1d1d23 1888 {
facdc750
RS
1889 int ch;
1890 cursor -= direction;
1891 /* Translate only the last byte of a character. */
1892 if (! multibyte
1893 || ((cursor == tail_end_ptr
1894 || CHAR_HEAD_P (cursor[1]))
1895 && (CHAR_HEAD_P (cursor[0])
0190922f 1896 /* Check if this is the last byte of
cd1181db 1897 a translatable character. */
0190922f
KH
1898 || (translate_prev_byte1 == cursor[-1]
1899 && (CHAR_HEAD_P (translate_prev_byte1)
1900 || (translate_prev_byte2 == cursor[-2]
1901 && (CHAR_HEAD_P (translate_prev_byte2)
1902 || (translate_prev_byte3 == cursor[-3]))))))))
facdc750
RS
1903 ch = simple_translate[*cursor];
1904 else
1905 ch = *cursor;
1906 if (pat[i] != ch)
1907 break;
ca1d1d23 1908 }
facdc750
RS
1909 }
1910 else
1911 {
1912 while ((i -= direction) + direction != 0)
ca1d1d23 1913 {
facdc750
RS
1914 cursor -= direction;
1915 if (pat[i] != *cursor)
1916 break;
ca1d1d23 1917 }
facdc750
RS
1918 }
1919 cursor += dirlen - i - direction; /* fix cursor */
1920 if (i + direction == 0)
1921 {
d311d28c 1922 ptrdiff_t position, start, end;
0c8533c6 1923
facdc750 1924 cursor -= direction;
1113d9db 1925
facdc750
RS
1926 position = pos_byte + cursor - p2 + ((direction > 0)
1927 ? 1 - len_byte : 0);
1928 set_search_regs (position, len_byte);
ca325161 1929
ef887810
RS
1930 if (NILP (Vinhibit_changing_match_data))
1931 {
1932 start = search_regs.start[0];
1933 end = search_regs.end[0];
1934 }
1935 else
1936 /* If Vinhibit_changing_match_data is non-nil,
1937 search_regs will not be changed. So let's
1938 compute start and end here. */
1939 {
1940 start = BYTE_TO_CHAR (position);
1941 end = BYTE_TO_CHAR (position + len_byte);
1942 }
1943
facdc750
RS
1944 if ((n -= direction) != 0)
1945 cursor += dirlen; /* to resume search */
ca1d1d23 1946 else
ef887810 1947 return direction > 0 ? end : start;
ca1d1d23 1948 }
facdc750
RS
1949 else
1950 cursor += stride_for_teases; /* <sigh> we lose - */
ca1d1d23 1951 }
facdc750
RS
1952 pos_byte += cursor - p2;
1953 }
1954 else
f4646fff
AS
1955 /* Now we'll pick up a clump that has to be done the hard
1956 way because it covers a discontinuity. */
facdc750
RS
1957 {
1958 limit = ((direction > 0)
1959 ? BUFFER_CEILING_OF (pos_byte - dirlen + 1)
1960 : BUFFER_FLOOR_OF (pos_byte - dirlen - 1));
1961 limit = ((direction > 0)
1962 ? min (limit + len_byte, lim_byte - 1)
1963 : max (limit - len_byte, lim_byte));
1964 /* LIMIT is now the last value POS_BYTE can have
1965 and still be valid for a possible match. */
1966 while (1)
ca1d1d23 1967 {
f4646fff
AS
1968 /* This loop can be coded for space rather than
1969 speed because it will usually run only once.
1970 (the reach is at most len + 21, and typically
1971 does not exceed len). */
facdc750 1972 while ((limit - pos_byte) * direction >= 0)
f4646fff
AS
1973 {
1974 int ch = FETCH_BYTE (pos_byte);
1975 if (BM_tab[ch] == 0)
1976 goto hit2;
1977 pos_byte += BM_tab[ch];
1978 }
1979 break; /* ran off the end */
1980
1981 hit2:
1982 /* Found what might be a match. */
facdc750
RS
1983 i = dirlen - direction;
1984 while ((i -= direction) + direction != 0)
ca1d1d23 1985 {
facdc750
RS
1986 int ch;
1987 unsigned char *ptr;
1988 pos_byte -= direction;
1989 ptr = BYTE_POS_ADDR (pos_byte);
1990 /* Translate only the last byte of a character. */
1991 if (! multibyte
1992 || ((ptr == tail_end_ptr
1993 || CHAR_HEAD_P (ptr[1]))
1994 && (CHAR_HEAD_P (ptr[0])
0190922f 1995 /* Check if this is the last byte of a
cd1181db 1996 translatable character. */
0190922f
KH
1997 || (translate_prev_byte1 == ptr[-1]
1998 && (CHAR_HEAD_P (translate_prev_byte1)
1999 || (translate_prev_byte2 == ptr[-2]
2000 && (CHAR_HEAD_P (translate_prev_byte2)
2001 || translate_prev_byte3 == ptr[-3])))))))
facdc750
RS
2002 ch = simple_translate[*ptr];
2003 else
2004 ch = *ptr;
2005 if (pat[i] != ch)
2006 break;
2007 }
2008 /* Above loop has moved POS_BYTE part or all the way
2009 back to the first pos (last pos if reverse).
2010 Set it once again at the last (first if reverse) char. */
f4646fff 2011 pos_byte += dirlen - i - direction;
facdc750
RS
2012 if (i + direction == 0)
2013 {
d311d28c 2014 ptrdiff_t position, start, end;
facdc750 2015 pos_byte -= direction;
1113d9db 2016
facdc750 2017 position = pos_byte + ((direction > 0) ? 1 - len_byte : 0);
facdc750 2018 set_search_regs (position, len_byte);
ca325161 2019
ef887810
RS
2020 if (NILP (Vinhibit_changing_match_data))
2021 {
2022 start = search_regs.start[0];
2023 end = search_regs.end[0];
2024 }
2025 else
2026 /* If Vinhibit_changing_match_data is non-nil,
2027 search_regs will not be changed. So let's
2028 compute start and end here. */
2029 {
2030 start = BYTE_TO_CHAR (position);
2031 end = BYTE_TO_CHAR (position + len_byte);
2032 }
2033
facdc750
RS
2034 if ((n -= direction) != 0)
2035 pos_byte += dirlen; /* to resume search */
ca1d1d23 2036 else
ef887810 2037 return direction > 0 ? end : start;
ca1d1d23 2038 }
facdc750
RS
2039 else
2040 pos_byte += stride_for_teases;
2041 }
2042 }
2043 /* We have done one clump. Can we continue? */
2044 if ((lim_byte - pos_byte) * direction < 0)
2045 return ((0 - n) * direction);
ca1d1d23 2046 }
facdc750 2047 return BYTE_TO_CHAR (pos_byte);
ca1d1d23 2048}
ca325161 2049
fa8ed3e0 2050/* Record beginning BEG_BYTE and end BEG_BYTE + NBYTES
a7e4cdde
RS
2051 for the overall match just found in the current buffer.
2052 Also clear out the match data for registers 1 and up. */
ca325161
RS
2053
2054static void
d311d28c 2055set_search_regs (ptrdiff_t beg_byte, ptrdiff_t nbytes)
ca325161 2056{
d311d28c 2057 ptrdiff_t i;
a7e4cdde 2058
ef887810
RS
2059 if (!NILP (Vinhibit_changing_match_data))
2060 return;
2061
ca325161
RS
2062 /* Make sure we have registers in which to store
2063 the match position. */
2064 if (search_regs.num_regs == 0)
2065 {
23f86fce
DA
2066 search_regs.start = xmalloc (2 * sizeof (regoff_t));
2067 search_regs.end = xmalloc (2 * sizeof (regoff_t));
487282dc 2068 search_regs.num_regs = 2;
ca325161
RS
2069 }
2070
a7e4cdde
RS
2071 /* Clear out the other registers. */
2072 for (i = 1; i < search_regs.num_regs; i++)
2073 {
2074 search_regs.start[i] = -1;
2075 search_regs.end[i] = -1;
2076 }
2077
fa8ed3e0
RS
2078 search_regs.start[0] = BYTE_TO_CHAR (beg_byte);
2079 search_regs.end[0] = BYTE_TO_CHAR (beg_byte + nbytes);
a3668d92 2080 XSETBUFFER (last_thing_searched, current_buffer);
ca325161 2081}
ca1d1d23 2082\f
ca1d1d23 2083DEFUN ("search-backward", Fsearch_backward, Ssearch_backward, 1, 4,
8c1a1077
PJ
2084 "MSearch backward: ",
2085 doc: /* Search backward from point for STRING.
2086Set point to the beginning of the occurrence found, and return point.
2087An optional second argument bounds the search; it is a buffer position.
2088The match found must not extend before that position.
2089Optional third argument, if t, means if fail just return nil (no error).
2090 If not nil and not t, position at limit of search and return nil.
acc28cb9
CY
2091Optional fourth argument COUNT, if non-nil, means to search for COUNT
2092 successive occurrences. If COUNT is negative, search forward,
2093 instead of backward, for -COUNT occurrences.
8c1a1077
PJ
2094
2095Search case-sensitivity is determined by the value of the variable
2096`case-fold-search', which see.
2097
2098See also the functions `match-beginning', `match-end' and `replace-match'. */)
5842a27b 2099 (Lisp_Object string, Lisp_Object bound, Lisp_Object noerror, Lisp_Object count)
ca1d1d23 2100{
b819a390 2101 return search_command (string, bound, noerror, count, -1, 0, 0);
ca1d1d23
JB
2102}
2103
6af43974 2104DEFUN ("search-forward", Fsearch_forward, Ssearch_forward, 1, 4, "MSearch: ",
8c1a1077
PJ
2105 doc: /* Search forward from point for STRING.
2106Set point to the end of the occurrence found, and return point.
2107An optional second argument bounds the search; it is a buffer position.
d6aacdcd 2108The match found must not extend after that position. A value of nil is
48740f01 2109 equivalent to (point-max).
8c1a1077
PJ
2110Optional third argument, if t, means if fail just return nil (no error).
2111 If not nil and not t, move to limit of search and return nil.
acc28cb9
CY
2112Optional fourth argument COUNT, if non-nil, means to search for COUNT
2113 successive occurrences. If COUNT is negative, search backward,
2114 instead of forward, for -COUNT occurrences.
8c1a1077
PJ
2115
2116Search case-sensitivity is determined by the value of the variable
2117`case-fold-search', which see.
2118
2119See also the functions `match-beginning', `match-end' and `replace-match'. */)
5842a27b 2120 (Lisp_Object string, Lisp_Object bound, Lisp_Object noerror, Lisp_Object count)
ca1d1d23 2121{
b819a390 2122 return search_command (string, bound, noerror, count, 1, 0, 0);
ca1d1d23
JB
2123}
2124
ca1d1d23 2125DEFUN ("re-search-backward", Fre_search_backward, Sre_search_backward, 1, 4,
8c1a1077
PJ
2126 "sRE search backward: ",
2127 doc: /* Search backward from point for match for regular expression REGEXP.
2128Set point to the beginning of the match, and return point.
2129The match found is the one starting last in the buffer
2130and yet ending before the origin of the search.
2131An optional second argument bounds the search; it is a buffer position.
2132The match found must start at or after that position.
2133Optional third argument, if t, means if fail just return nil (no error).
2134 If not nil and not t, move to limit of search and return nil.
2135Optional fourth argument is repeat count--search for successive occurrences.
49080b10
LMI
2136
2137Search case-sensitivity is determined by the value of the variable
2138`case-fold-search', which see.
2139
8c1a1077
PJ
2140See also the functions `match-beginning', `match-end', `match-string',
2141and `replace-match'. */)
5842a27b 2142 (Lisp_Object regexp, Lisp_Object bound, Lisp_Object noerror, Lisp_Object count)
ca1d1d23 2143{
b819a390 2144 return search_command (regexp, bound, noerror, count, -1, 1, 0);
ca1d1d23
JB
2145}
2146
2147DEFUN ("re-search-forward", Fre_search_forward, Sre_search_forward, 1, 4,
8c1a1077
PJ
2148 "sRE search: ",
2149 doc: /* Search forward from point for regular expression REGEXP.
2150Set point to the end of the occurrence found, and return point.
2151An optional second argument bounds the search; it is a buffer position.
2152The match found must not extend after that position.
2153Optional third argument, if t, means if fail just return nil (no error).
2154 If not nil and not t, move to limit of search and return nil.
2155Optional fourth argument is repeat count--search for successive occurrences.
49080b10
LMI
2156
2157Search case-sensitivity is determined by the value of the variable
2158`case-fold-search', which see.
2159
8c1a1077
PJ
2160See also the functions `match-beginning', `match-end', `match-string',
2161and `replace-match'. */)
5842a27b 2162 (Lisp_Object regexp, Lisp_Object bound, Lisp_Object noerror, Lisp_Object count)
ca1d1d23 2163{
b819a390
RS
2164 return search_command (regexp, bound, noerror, count, 1, 1, 0);
2165}
2166
2167DEFUN ("posix-search-backward", Fposix_search_backward, Sposix_search_backward, 1, 4,
8c1a1077
PJ
2168 "sPosix search backward: ",
2169 doc: /* Search backward from point for match for regular expression REGEXP.
2170Find the longest match in accord with Posix regular expression rules.
2171Set point to the beginning of the match, and return point.
2172The match found is the one starting last in the buffer
2173and yet ending before the origin of the search.
2174An optional second argument bounds the search; it is a buffer position.
2175The match found must start at or after that position.
2176Optional third argument, if t, means if fail just return nil (no error).
2177 If not nil and not t, move to limit of search and return nil.
2178Optional fourth argument is repeat count--search for successive occurrences.
49080b10
LMI
2179
2180Search case-sensitivity is determined by the value of the variable
2181`case-fold-search', which see.
2182
8c1a1077
PJ
2183See also the functions `match-beginning', `match-end', `match-string',
2184and `replace-match'. */)
5842a27b 2185 (Lisp_Object regexp, Lisp_Object bound, Lisp_Object noerror, Lisp_Object count)
b819a390
RS
2186{
2187 return search_command (regexp, bound, noerror, count, -1, 1, 1);
2188}
2189
2190DEFUN ("posix-search-forward", Fposix_search_forward, Sposix_search_forward, 1, 4,
8c1a1077
PJ
2191 "sPosix search: ",
2192 doc: /* Search forward from point for regular expression REGEXP.
2193Find the longest match in accord with Posix regular expression rules.
2194Set point to the end of the occurrence found, and return point.
2195An optional second argument bounds the search; it is a buffer position.
2196The match found must not extend after that position.
2197Optional third argument, if t, means if fail just return nil (no error).
2198 If not nil and not t, move to limit of search and return nil.
2199Optional fourth argument is repeat count--search for successive occurrences.
49080b10
LMI
2200
2201Search case-sensitivity is determined by the value of the variable
2202`case-fold-search', which see.
2203
8c1a1077
PJ
2204See also the functions `match-beginning', `match-end', `match-string',
2205and `replace-match'. */)
5842a27b 2206 (Lisp_Object regexp, Lisp_Object bound, Lisp_Object noerror, Lisp_Object count)
b819a390
RS
2207{
2208 return search_command (regexp, bound, noerror, count, 1, 1, 1);
ca1d1d23
JB
2209}
2210\f
d7a5ad5f 2211DEFUN ("replace-match", Freplace_match, Sreplace_match, 1, 5, 0,
8c1a1077 2212 doc: /* Replace text matched by last search with NEWTEXT.
4dd0c271
RS
2213Leave point at the end of the replacement text.
2214
8c1a1077
PJ
2215If second arg FIXEDCASE is non-nil, do not alter case of replacement text.
2216Otherwise maybe capitalize the whole text, or maybe just word initials,
2217based on the replaced text.
2218If the replaced text has only capital letters
2219and has at least one multiletter word, convert NEWTEXT to all caps.
4dd0c271
RS
2220Otherwise if all words are capitalized in the replaced text,
2221capitalize each word in NEWTEXT.
8c1a1077
PJ
2222
2223If third arg LITERAL is non-nil, insert NEWTEXT literally.
2224Otherwise treat `\\' as special:
2225 `\\&' in NEWTEXT means substitute original matched text.
2226 `\\N' means substitute what matched the Nth `\\(...\\)'.
2227 If Nth parens didn't match, substitute nothing.
2228 `\\\\' means insert one `\\'.
d32e47af
LM
2229 `\\?' is treated literally
2230 (for compatibility with `query-replace-regexp').
2231 Any other character following `\\' signals an error.
4dd0c271
RS
2232Case conversion does not apply to these substitutions.
2233
8c1a1077 2234FIXEDCASE and LITERAL are optional arguments.
8c1a1077
PJ
2235
2236The optional fourth argument STRING can be a string to modify.
2237This is meaningful when the previous match was done against STRING,
2238using `string-match'. When used this way, `replace-match'
2239creates and returns a new string made by copying STRING and replacing
2240the part of STRING that was matched.
2241
2242The optional fifth argument SUBEXP specifies a subexpression;
2243it says to replace just that subexpression with NEWTEXT,
2244rather than replacing the entire matched text.
2245This is, in a vague sense, the inverse of using `\\N' in NEWTEXT;
2246`\\N' copies subexp N into NEWTEXT, but using N as SUBEXP puts
2247NEWTEXT in place of subexp N.
2248This is useful only after a regular expression search or match,
2249since only regular expressions have distinguished subexpressions. */)
5842a27b 2250 (Lisp_Object newtext, Lisp_Object fixedcase, Lisp_Object literal, Lisp_Object string, Lisp_Object subexp)
ca1d1d23
JB
2251{
2252 enum { nochange, all_caps, cap_initial } case_action;
d311d28c 2253 register ptrdiff_t pos, pos_byte;
ca1d1d23 2254 int some_multiletter_word;
97832bd0 2255 int some_lowercase;
73dc8771 2256 int some_uppercase;
208767c3 2257 int some_nonuppercase_initial;
ca1d1d23 2258 register int c, prevc;
a0efffc8 2259 ptrdiff_t sub;
d311d28c 2260 ptrdiff_t opoint, newpoint;
ca1d1d23 2261
b7826503 2262 CHECK_STRING (newtext);
ca1d1d23 2263
080c45fd 2264 if (! NILP (string))
b7826503 2265 CHECK_STRING (string);
080c45fd 2266
ca1d1d23
JB
2267 case_action = nochange; /* We tried an initialization */
2268 /* but some C compilers blew it */
4746118a
JB
2269
2270 if (search_regs.num_regs <= 0)
d72cdbfc 2271 error ("`replace-match' called before any match found");
4746118a 2272
d7a5ad5f
RS
2273 if (NILP (subexp))
2274 sub = 0;
2275 else
2276 {
b7826503 2277 CHECK_NUMBER (subexp);
a0efffc8 2278 if (! (0 <= XINT (subexp) && XINT (subexp) < search_regs.num_regs))
d7a5ad5f 2279 args_out_of_range (subexp, make_number (search_regs.num_regs));
a0efffc8 2280 sub = XINT (subexp);
d7a5ad5f
RS
2281 }
2282
080c45fd
RS
2283 if (NILP (string))
2284 {
d7a5ad5f
RS
2285 if (search_regs.start[sub] < BEGV
2286 || search_regs.start[sub] > search_regs.end[sub]
2287 || search_regs.end[sub] > ZV)
2288 args_out_of_range (make_number (search_regs.start[sub]),
2289 make_number (search_regs.end[sub]));
080c45fd
RS
2290 }
2291 else
2292 {
d7a5ad5f
RS
2293 if (search_regs.start[sub] < 0
2294 || search_regs.start[sub] > search_regs.end[sub]
d5db4077 2295 || search_regs.end[sub] > SCHARS (string))
d7a5ad5f
RS
2296 args_out_of_range (make_number (search_regs.start[sub]),
2297 make_number (search_regs.end[sub]));
080c45fd 2298 }
ca1d1d23
JB
2299
2300 if (NILP (fixedcase))
2301 {
2302 /* Decide how to casify by examining the matched text. */
d311d28c 2303 ptrdiff_t last;
ca1d1d23 2304
ac3b28b1
KH
2305 pos = search_regs.start[sub];
2306 last = search_regs.end[sub];
fa8ed3e0
RS
2307
2308 if (NILP (string))
ac3b28b1 2309 pos_byte = CHAR_TO_BYTE (pos);
fa8ed3e0 2310 else
ac3b28b1 2311 pos_byte = string_char_to_byte (string, pos);
fa8ed3e0 2312
ca1d1d23
JB
2313 prevc = '\n';
2314 case_action = all_caps;
2315
2316 /* some_multiletter_word is set nonzero if any original word
2317 is more than one letter long. */
2318 some_multiletter_word = 0;
97832bd0 2319 some_lowercase = 0;
208767c3 2320 some_nonuppercase_initial = 0;
73dc8771 2321 some_uppercase = 0;
ca1d1d23 2322
ac3b28b1 2323 while (pos < last)
ca1d1d23 2324 {
080c45fd 2325 if (NILP (string))
ac3b28b1 2326 {
93daa011 2327 c = FETCH_CHAR_AS_MULTIBYTE (pos_byte);
ac3b28b1
KH
2328 INC_BOTH (pos, pos_byte);
2329 }
080c45fd 2330 else
93daa011 2331 FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE (c, string, pos, pos_byte);
080c45fd 2332
5da9919f 2333 if (lowercasep (c))
ca1d1d23
JB
2334 {
2335 /* Cannot be all caps if any original char is lower case */
2336
97832bd0 2337 some_lowercase = 1;
ca1d1d23 2338 if (SYNTAX (prevc) != Sword)
208767c3 2339 some_nonuppercase_initial = 1;
ca1d1d23
JB
2340 else
2341 some_multiletter_word = 1;
2342 }
5da9919f 2343 else if (uppercasep (c))
ca1d1d23 2344 {
73dc8771 2345 some_uppercase = 1;
97832bd0 2346 if (SYNTAX (prevc) != Sword)
c4d460ce 2347 ;
97832bd0 2348 else
ca1d1d23
JB
2349 some_multiletter_word = 1;
2350 }
208767c3
RS
2351 else
2352 {
2353 /* If the initial is a caseless word constituent,
2354 treat that like a lowercase initial. */
2355 if (SYNTAX (prevc) != Sword)
2356 some_nonuppercase_initial = 1;
2357 }
ca1d1d23
JB
2358
2359 prevc = c;
2360 }
2361
97832bd0
RS
2362 /* Convert to all caps if the old text is all caps
2363 and has at least one multiletter word. */
2364 if (! some_lowercase && some_multiletter_word)
2365 case_action = all_caps;
c4d460ce 2366 /* Capitalize each word, if the old text has all capitalized words. */
208767c3 2367 else if (!some_nonuppercase_initial && some_multiletter_word)
ca1d1d23 2368 case_action = cap_initial;
208767c3 2369 else if (!some_nonuppercase_initial && some_uppercase)
73dc8771
KH
2370 /* Should x -> yz, operating on X, give Yz or YZ?
2371 We'll assume the latter. */
2372 case_action = all_caps;
97832bd0
RS
2373 else
2374 case_action = nochange;
ca1d1d23
JB
2375 }
2376
080c45fd
RS
2377 /* Do replacement in a string. */
2378 if (!NILP (string))
2379 {
2380 Lisp_Object before, after;
2381
2382 before = Fsubstring (string, make_number (0),
d7a5ad5f
RS
2383 make_number (search_regs.start[sub]));
2384 after = Fsubstring (string, make_number (search_regs.end[sub]), Qnil);
080c45fd 2385
636a5e28
RS
2386 /* Substitute parts of the match into NEWTEXT
2387 if desired. */
080c45fd
RS
2388 if (NILP (literal))
2389 {
d311d28c
PE
2390 ptrdiff_t lastpos = 0;
2391 ptrdiff_t lastpos_byte = 0;
080c45fd
RS
2392 /* We build up the substituted string in ACCUM. */
2393 Lisp_Object accum;
2394 Lisp_Object middle;
d311d28c 2395 ptrdiff_t length = SBYTES (newtext);
080c45fd
RS
2396
2397 accum = Qnil;
2398
ac3b28b1 2399 for (pos_byte = 0, pos = 0; pos_byte < length;)
080c45fd 2400 {
d311d28c
PE
2401 ptrdiff_t substart = -1;
2402 ptrdiff_t subend = 0;
1e79ec24 2403 int delbackslash = 0;
080c45fd 2404
0c8533c6
RS
2405 FETCH_STRING_CHAR_ADVANCE (c, newtext, pos, pos_byte);
2406
080c45fd
RS
2407 if (c == '\\')
2408 {
0c8533c6 2409 FETCH_STRING_CHAR_ADVANCE (c, newtext, pos, pos_byte);
177c0ea7 2410
080c45fd
RS
2411 if (c == '&')
2412 {
d7a5ad5f
RS
2413 substart = search_regs.start[sub];
2414 subend = search_regs.end[sub];
080c45fd 2415 }
76fc1ea2 2416 else if (c >= '1' && c <= '9')
080c45fd 2417 {
d311d28c
PE
2418 if (c - '0' < search_regs.num_regs
2419 && 0 <= search_regs.start[c - '0'])
080c45fd
RS
2420 {
2421 substart = search_regs.start[c - '0'];
2422 subend = search_regs.end[c - '0'];
2423 }
76fc1ea2
KH
2424 else
2425 {
2426 /* If that subexp did not match,
2427 replace \\N with nothing. */
2428 substart = 0;
2429 subend = 0;
2430 }
080c45fd 2431 }
1e79ec24
KH
2432 else if (c == '\\')
2433 delbackslash = 1;
d32e47af 2434 else if (c != '?')
636a5e28 2435 error ("Invalid use of `\\' in replacement text");
080c45fd
RS
2436 }
2437 if (substart >= 0)
2438 {
d131e79c
RS
2439 if (pos - 2 != lastpos)
2440 middle = substring_both (newtext, lastpos,
2441 lastpos_byte,
2442 pos - 2, pos_byte - 2);
080c45fd
RS
2443 else
2444 middle = Qnil;
2445 accum = concat3 (accum, middle,
0c8533c6
RS
2446 Fsubstring (string,
2447 make_number (substart),
080c45fd
RS
2448 make_number (subend)));
2449 lastpos = pos;
0c8533c6 2450 lastpos_byte = pos_byte;
080c45fd 2451 }
1e79ec24
KH
2452 else if (delbackslash)
2453 {
d131e79c
RS
2454 middle = substring_both (newtext, lastpos,
2455 lastpos_byte,
2456 pos - 1, pos_byte - 1);
0c8533c6 2457
1e79ec24
KH
2458 accum = concat2 (accum, middle);
2459 lastpos = pos;
0c8533c6 2460 lastpos_byte = pos_byte;
1e79ec24 2461 }
080c45fd
RS
2462 }
2463
d131e79c
RS
2464 if (pos != lastpos)
2465 middle = substring_both (newtext, lastpos,
2466 lastpos_byte,
0c8533c6 2467 pos, pos_byte);
080c45fd
RS
2468 else
2469 middle = Qnil;
2470
2471 newtext = concat2 (accum, middle);
2472 }
2473
636a5e28 2474 /* Do case substitution in NEWTEXT if desired. */
080c45fd
RS
2475 if (case_action == all_caps)
2476 newtext = Fupcase (newtext);
2477 else if (case_action == cap_initial)
2b2eead9 2478 newtext = Fupcase_initials (newtext);
080c45fd
RS
2479
2480 return concat3 (before, newtext, after);
2481 }
2482
09c4719e 2483 /* Record point, then move (quietly) to the start of the match. */
9160906f 2484 if (PT >= search_regs.end[sub])
b0eba991 2485 opoint = PT - ZV;
9160906f
RS
2486 else if (PT > search_regs.start[sub])
2487 opoint = search_regs.end[sub] - ZV;
b0eba991
RS
2488 else
2489 opoint = PT;
2490
886ed6ec
RS
2491 /* If we want non-literal replacement,
2492 perform substitution on the replacement string. */
2493 if (NILP (literal))
ca1d1d23 2494 {
0065d054 2495 ptrdiff_t length = SBYTES (newtext);
68e69fbd 2496 unsigned char *substed;
0065d054 2497 ptrdiff_t substed_alloc_size, substed_len;
4b4deea2 2498 int buf_multibyte = !NILP (BVAR (current_buffer, enable_multibyte_characters));
3bc25e52 2499 int str_multibyte = STRING_MULTIBYTE (newtext);
886ed6ec 2500 int really_changed = 0;
3bc25e52 2501
0065d054
PE
2502 substed_alloc_size = ((STRING_BYTES_BOUND - 100) / 2 < length
2503 ? STRING_BYTES_BOUND
2504 : length * 2 + 100);
23f86fce 2505 substed = xmalloc (substed_alloc_size);
68e69fbd
RS
2506 substed_len = 0;
2507
3bc25e52
KH
2508 /* Go thru NEWTEXT, producing the actual text to insert in
2509 SUBSTED while adjusting multibyteness to that of the current
2510 buffer. */
ca1d1d23 2511
ac3b28b1 2512 for (pos_byte = 0, pos = 0; pos_byte < length;)
ca1d1d23 2513 {
68e69fbd 2514 unsigned char str[MAX_MULTIBYTE_LENGTH];
8ea90aa3 2515 const unsigned char *add_stuff = NULL;
0065d054 2516 ptrdiff_t add_len = 0;
a0efffc8 2517 ptrdiff_t idx = -1;
9a76659d 2518
3bc25e52
KH
2519 if (str_multibyte)
2520 {
eb99a8dd 2521 FETCH_STRING_CHAR_ADVANCE_NO_CHECK (c, newtext, pos, pos_byte);
3bc25e52 2522 if (!buf_multibyte)
461c2ab9 2523 c = multibyte_char_to_unibyte (c);
3bc25e52
KH
2524 }
2525 else
2526 {
2527 /* Note that we don't have to increment POS. */
5d69fe10 2528 c = SREF (newtext, pos_byte++);
3bc25e52 2529 if (buf_multibyte)
4c0354d7 2530 MAKE_CHAR_MULTIBYTE (c);
3bc25e52 2531 }
ac3b28b1 2532
68e69fbd
RS
2533 /* Either set ADD_STUFF and ADD_LEN to the text to put in SUBSTED,
2534 or set IDX to a match index, which means put that part
2535 of the buffer text into SUBSTED. */
2536
ca1d1d23
JB
2537 if (c == '\\')
2538 {
886ed6ec
RS
2539 really_changed = 1;
2540
3bc25e52
KH
2541 if (str_multibyte)
2542 {
eb99a8dd
KH
2543 FETCH_STRING_CHAR_ADVANCE_NO_CHECK (c, newtext,
2544 pos, pos_byte);
071ce769 2545 if (!buf_multibyte && !ASCII_CHAR_P (c))
461c2ab9 2546 c = multibyte_char_to_unibyte (c);
3bc25e52
KH
2547 }
2548 else
2549 {
d5db4077 2550 c = SREF (newtext, pos_byte++);
3bc25e52 2551 if (buf_multibyte)
4c0354d7 2552 MAKE_CHAR_MULTIBYTE (c);
3bc25e52
KH
2553 }
2554
ca1d1d23 2555 if (c == '&')
68e69fbd 2556 idx = sub;
d311d28c 2557 else if (c >= '1' && c <= '9' && c - '0' < search_regs.num_regs)
ca1d1d23
JB
2558 {
2559 if (search_regs.start[c - '0'] >= 1)
68e69fbd 2560 idx = c - '0';
ca1d1d23 2561 }
636a5e28 2562 else if (c == '\\')
a7e979a4 2563 add_len = 1, add_stuff = (unsigned char *) "\\";
636a5e28 2564 else
3bc25e52
KH
2565 {
2566 xfree (substed);
2567 error ("Invalid use of `\\' in replacement text");
2568 }
ca1d1d23
JB
2569 }
2570 else
68e69fbd
RS
2571 {
2572 add_len = CHAR_STRING (c, str);
2573 add_stuff = str;
2574 }
2575
2576 /* If we want to copy part of a previous match,
2577 set up ADD_STUFF and ADD_LEN to point to it. */
2578 if (idx >= 0)
2579 {
0065d054 2580 ptrdiff_t begbyte = CHAR_TO_BYTE (search_regs.start[idx]);
68e69fbd
RS
2581 add_len = CHAR_TO_BYTE (search_regs.end[idx]) - begbyte;
2582 if (search_regs.start[idx] < GPT && GPT < search_regs.end[idx])
2583 move_gap (search_regs.start[idx]);
2584 add_stuff = BYTE_POS_ADDR (begbyte);
2585 }
2586
2587 /* Now the stuff we want to add to SUBSTED
2588 is invariably ADD_LEN bytes starting at ADD_STUFF. */
2589
2590 /* Make sure SUBSTED is big enough. */
0065d054
PE
2591 if (substed_alloc_size - substed_len < add_len)
2592 substed =
2593 xpalloc (substed, &substed_alloc_size,
2594 add_len - (substed_alloc_size - substed_len),
2595 STRING_BYTES_BOUND, 1);
68e69fbd
RS
2596
2597 /* Now add to the end of SUBSTED. */
f8ce8a0d
GM
2598 if (add_stuff)
2599 {
72af86bd 2600 memcpy (substed + substed_len, add_stuff, add_len);
f8ce8a0d
GM
2601 substed_len += add_len;
2602 }
ca1d1d23 2603 }
68e69fbd 2604
886ed6ec 2605 if (really_changed)
76fc1ea2
KH
2606 {
2607 if (buf_multibyte)
2608 {
d311d28c 2609 ptrdiff_t nchars =
c098fdb8 2610 multibyte_chars_in_text (substed, substed_len);
68e69fbd 2611
a7e979a4
PE
2612 newtext = make_multibyte_string ((char *) substed, nchars,
2613 substed_len);
76fc1ea2
KH
2614 }
2615 else
a7e979a4 2616 newtext = make_unibyte_string ((char *) substed, substed_len);
76fc1ea2 2617 }
68e69fbd 2618 xfree (substed);
ca1d1d23
JB
2619 }
2620
886ed6ec
RS
2621 /* Replace the old text with the new in the cleanest possible way. */
2622 replace_range (search_regs.start[sub], search_regs.end[sub],
2623 newtext, 1, 0, 1);
d5db4077 2624 newpoint = search_regs.start[sub] + SCHARS (newtext);
ca1d1d23
JB
2625
2626 if (case_action == all_caps)
886ed6ec
RS
2627 Fupcase_region (make_number (search_regs.start[sub]),
2628 make_number (newpoint));
ca1d1d23 2629 else if (case_action == cap_initial)
886ed6ec
RS
2630 Fupcase_initials_region (make_number (search_regs.start[sub]),
2631 make_number (newpoint));
3e18eecf 2632
98e942e0
RS
2633 /* Adjust search data for this change. */
2634 {
d311d28c
PE
2635 ptrdiff_t oldend = search_regs.end[sub];
2636 ptrdiff_t oldstart = search_regs.start[sub];
2637 ptrdiff_t change = newpoint - search_regs.end[sub];
2638 ptrdiff_t i;
98e942e0
RS
2639
2640 for (i = 0; i < search_regs.num_regs; i++)
2641 {
41c01205 2642 if (search_regs.start[i] >= oldend)
98e942e0 2643 search_regs.start[i] += change;
41c01205
DK
2644 else if (search_regs.start[i] > oldstart)
2645 search_regs.start[i] = oldstart;
2646 if (search_regs.end[i] >= oldend)
98e942e0 2647 search_regs.end[i] += change;
41c01205
DK
2648 else if (search_regs.end[i] > oldstart)
2649 search_regs.end[i] = oldstart;
98e942e0
RS
2650 }
2651 }
2652
b0eba991 2653 /* Put point back where it was in the text. */
8d808a65 2654 if (opoint <= 0)
fa8ed3e0 2655 TEMP_SET_PT (opoint + ZV);
b0eba991 2656 else
fa8ed3e0 2657 TEMP_SET_PT (opoint);
b0eba991
RS
2658
2659 /* Now move point "officially" to the start of the inserted replacement. */
3e18eecf 2660 move_if_not_intangible (newpoint);
177c0ea7 2661
ca1d1d23
JB
2662 return Qnil;
2663}
2664\f
2665static Lisp_Object
971de7fb 2666match_limit (Lisp_Object num, int beginningp)
ca1d1d23 2667{
a0efffc8 2668 EMACS_INT n;
ca1d1d23 2669
b7826503 2670 CHECK_NUMBER (num);
ca1d1d23 2671 n = XINT (num);
f90a5bf5 2672 if (n < 0)
bd2cbd56 2673 args_out_of_range (num, make_number (0));
f90a5bf5
RS
2674 if (search_regs.num_regs <= 0)
2675 error ("No match data, because no search succeeded");
9b9ceb61 2676 if (n >= search_regs.num_regs
4746118a 2677 || search_regs.start[n] < 0)
ca1d1d23
JB
2678 return Qnil;
2679 return (make_number ((beginningp) ? search_regs.start[n]
2680 : search_regs.end[n]));
2681}
2682
a7ca3326 2683DEFUN ("match-beginning", Fmatch_beginning, Smatch_beginning, 1, 1, 0,
8c1a1077
PJ
2684 doc: /* Return position of start of text matched by last search.
2685SUBEXP, a number, specifies which parenthesized expression in the last
2686 regexp.
2687Value is nil if SUBEXPth pair didn't match, or there were less than
2688 SUBEXP pairs.
2689Zero means the entire text matched by the whole regexp or whole string. */)
5842a27b 2690 (Lisp_Object subexp)
ca1d1d23 2691{
5806161b 2692 return match_limit (subexp, 1);
ca1d1d23
JB
2693}
2694
a7ca3326 2695DEFUN ("match-end", Fmatch_end, Smatch_end, 1, 1, 0,
8c1a1077
PJ
2696 doc: /* Return position of end of text matched by last search.
2697SUBEXP, a number, specifies which parenthesized expression in the last
2698 regexp.
2699Value is nil if SUBEXPth pair didn't match, or there were less than
2700 SUBEXP pairs.
2701Zero means the entire text matched by the whole regexp or whole string. */)
5842a27b 2702 (Lisp_Object subexp)
ca1d1d23 2703{
5806161b 2704 return match_limit (subexp, 0);
177c0ea7 2705}
ca1d1d23 2706
a7ca3326 2707DEFUN ("match-data", Fmatch_data, Smatch_data, 0, 3, 0,
8c1a1077
PJ
2708 doc: /* Return a list containing all info on what the last search matched.
2709Element 2N is `(match-beginning N)'; element 2N + 1 is `(match-end N)'.
2710All the elements are markers or nil (nil if the Nth pair didn't match)
2711if the last match was on a buffer; integers or nil if a string was matched.
febb8aba 2712Use `set-match-data' to reinstate the data in this list.
8c1a1077 2713
41c01205
DK
2714If INTEGERS (the optional first argument) is non-nil, always use
2715integers \(rather than markers) to represent buffer positions. In
2716this case, and if the last match was in a buffer, the buffer will get
2717stored as one additional element at the end of the list.
2718
abd0071c
KS
2719If REUSE is a list, reuse it as part of the value. If REUSE is long
2720enough to hold all the values, and if INTEGERS is non-nil, no consing
2721is done.
2722
2723If optional third arg RESEAT is non-nil, any previous markers on the
2724REUSE list will be modified to point to nowhere.
2725
140a6b7e 2726Return value is undefined if the last search failed. */)
5842a27b 2727 (Lisp_Object integers, Lisp_Object reuse, Lisp_Object reseat)
ca1d1d23 2728{
56256c2a 2729 Lisp_Object tail, prev;
4746118a 2730 Lisp_Object *data;
d311d28c 2731 ptrdiff_t i, len;
ca1d1d23 2732
abd0071c
KS
2733 if (!NILP (reseat))
2734 for (tail = reuse; CONSP (tail); tail = XCDR (tail))
2735 if (MARKERP (XCAR (tail)))
2736 {
51f10faa 2737 unchain_marker (XMARKER (XCAR (tail)));
abd0071c
KS
2738 XSETCAR (tail, Qnil);
2739 }
2740
daa37602 2741 if (NILP (last_thing_searched))
c36bcf1b 2742 return Qnil;
daa37602 2743
6bbd7a29
GM
2744 prev = Qnil;
2745
38182d90 2746 data = alloca ((2 * search_regs.num_regs + 1) * sizeof *data);
4746118a 2747
41c01205 2748 len = 0;
4746118a 2749 for (i = 0; i < search_regs.num_regs; i++)
ca1d1d23 2750 {
d311d28c 2751 ptrdiff_t start = search_regs.start[i];
ca1d1d23
JB
2752 if (start >= 0)
2753 {
56256c2a
RS
2754 if (EQ (last_thing_searched, Qt)
2755 || ! NILP (integers))
ca1d1d23 2756 {
c235cce7
KH
2757 XSETFASTINT (data[2 * i], start);
2758 XSETFASTINT (data[2 * i + 1], search_regs.end[i]);
ca1d1d23 2759 }
0ed62dc7 2760 else if (BUFFERP (last_thing_searched))
ca1d1d23
JB
2761 {
2762 data[2 * i] = Fmake_marker ();
daa37602
JB
2763 Fset_marker (data[2 * i],
2764 make_number (start),
2765 last_thing_searched);
ca1d1d23
JB
2766 data[2 * i + 1] = Fmake_marker ();
2767 Fset_marker (data[2 * i + 1],
177c0ea7 2768 make_number (search_regs.end[i]),
daa37602 2769 last_thing_searched);
ca1d1d23 2770 }
daa37602
JB
2771 else
2772 /* last_thing_searched must always be Qt, a buffer, or Qnil. */
1088b922 2773 emacs_abort ();
daa37602 2774
abd0071c 2775 len = 2 * i + 2;
ca1d1d23
JB
2776 }
2777 else
abd0071c 2778 data[2 * i] = data[2 * i + 1] = Qnil;
ca1d1d23 2779 }
56256c2a 2780
bd2cbd56 2781 if (BUFFERP (last_thing_searched) && !NILP (integers))
41c01205 2782 {
bd2cbd56 2783 data[len] = last_thing_searched;
41c01205
DK
2784 len++;
2785 }
2786
56256c2a
RS
2787 /* If REUSE is not usable, cons up the values and return them. */
2788 if (! CONSP (reuse))
41c01205 2789 return Flist (len, data);
56256c2a
RS
2790
2791 /* If REUSE is a list, store as many value elements as will fit
2792 into the elements of REUSE. */
2793 for (i = 0, tail = reuse; CONSP (tail);
c1d497be 2794 i++, tail = XCDR (tail))
56256c2a 2795 {
41c01205 2796 if (i < len)
f3fbd155 2797 XSETCAR (tail, data[i]);
56256c2a 2798 else
f3fbd155 2799 XSETCAR (tail, Qnil);
56256c2a
RS
2800 prev = tail;
2801 }
2802
2803 /* If we couldn't fit all value elements into REUSE,
2804 cons up the rest of them and add them to the end of REUSE. */
41c01205
DK
2805 if (i < len)
2806 XSETCDR (prev, Flist (len - i, data + i));
56256c2a
RS
2807
2808 return reuse;
ca1d1d23
JB
2809}
2810
b51d6c92
SM
2811/* We used to have an internal use variant of `reseat' described as:
2812
2813 If RESEAT is `evaporate', put the markers back on the free list
2814 immediately. No other references to the markers must exist in this
2815 case, so it is used only internally on the unwind stack and
2816 save-match-data from Lisp.
2817
2818 But it was ill-conceived: those supposedly-internal markers get exposed via
2819 the undo-list, so freeing them here is unsafe. */
ca1d1d23 2820
a7ca3326 2821DEFUN ("set-match-data", Fset_match_data, Sset_match_data, 1, 2, 0,
8c1a1077 2822 doc: /* Set internal data on last search match from elements of LIST.
abd0071c
KS
2823LIST should have been created by calling `match-data' previously.
2824
51f10faa 2825If optional arg RESEAT is non-nil, make markers on LIST point nowhere. */)
5842a27b 2826 (register Lisp_Object list, Lisp_Object reseat)
ca1d1d23 2827{
5f2ab479 2828 ptrdiff_t i;
ca1d1d23
JB
2829 register Lisp_Object marker;
2830
7074fde6
FP
2831 if (running_asynch_code)
2832 save_search_regs ();
2833
29100cea 2834 CHECK_LIST (list);
ca1d1d23 2835
41c01205
DK
2836 /* Unless we find a marker with a buffer or an explicit buffer
2837 in LIST, assume that this match data came from a string. */
daa37602
JB
2838 last_thing_searched = Qt;
2839
4746118a
JB
2840 /* Allocate registers if they don't already exist. */
2841 {
d311d28c 2842 EMACS_INT length = XFASTINT (Flength (list)) / 2;
4746118a
JB
2843
2844 if (length > search_regs.num_regs)
2845 {
0065d054 2846 ptrdiff_t num_regs = search_regs.num_regs;
d311d28c
PE
2847 if (PTRDIFF_MAX < length)
2848 memory_full (SIZE_MAX);
0065d054
PE
2849 search_regs.start =
2850 xpalloc (search_regs.start, &num_regs, length - num_regs,
2851 min (PTRDIFF_MAX, UINT_MAX), sizeof (regoff_t));
2852 search_regs.end =
2853 xrealloc (search_regs.end, num_regs * sizeof (regoff_t));
2854
2855 for (i = search_regs.num_regs; i < num_regs; i++)
e62371e9
KH
2856 search_regs.start[i] = -1;
2857
0065d054 2858 search_regs.num_regs = num_regs;
4746118a 2859 }
ca1d1d23 2860
abd0071c 2861 for (i = 0; CONSP (list); i++)
41c01205 2862 {
abd0071c 2863 marker = XCAR (list);
bd2cbd56 2864 if (BUFFERP (marker))
c3762cbd 2865 {
bd2cbd56 2866 last_thing_searched = marker;
c3762cbd
DK
2867 break;
2868 }
2869 if (i >= length)
2870 break;
41c01205
DK
2871 if (NILP (marker))
2872 {
2873 search_regs.start[i] = -1;
abd0071c 2874 list = XCDR (list);
41c01205
DK
2875 }
2876 else
2877 {
d311d28c 2878 Lisp_Object from;
abd0071c 2879 Lisp_Object m;
e2811828 2880
abd0071c 2881 m = marker;
41c01205
DK
2882 if (MARKERP (marker))
2883 {
2884 if (XMARKER (marker)->buffer == 0)
2885 XSETFASTINT (marker, 0);
2886 else
2887 XSETBUFFER (last_thing_searched, XMARKER (marker)->buffer);
2888 }
e2811828 2889
41c01205 2890 CHECK_NUMBER_COERCE_MARKER (marker);
d311d28c 2891 from = marker;
e2811828 2892
abd0071c
KS
2893 if (!NILP (reseat) && MARKERP (m))
2894 {
b51d6c92 2895 unchain_marker (XMARKER (m));
9ad54a7e 2896 XSETCAR (list, Qnil);
abd0071c
KS
2897 }
2898
2899 if ((list = XCDR (list), !CONSP (list)))
2900 break;
2901
2902 m = marker = XCAR (list);
2903
41c01205
DK
2904 if (MARKERP (marker) && XMARKER (marker)->buffer == 0)
2905 XSETFASTINT (marker, 0);
e2811828 2906
41c01205 2907 CHECK_NUMBER_COERCE_MARKER (marker);
0b1fccc4
PE
2908 if ((XINT (from) < 0
2909 ? TYPE_MINIMUM (regoff_t) <= XINT (from)
2910 : XINT (from) <= TYPE_MAXIMUM (regoff_t))
2911 && (XINT (marker) < 0
2912 ? TYPE_MINIMUM (regoff_t) <= XINT (marker)
2913 : XINT (marker) <= TYPE_MAXIMUM (regoff_t)))
d311d28c
PE
2914 {
2915 search_regs.start[i] = XINT (from);
2916 search_regs.end[i] = XINT (marker);
2917 }
2918 else
2919 {
2920 search_regs.start[i] = -1;
2921 }
abd0071c
KS
2922
2923 if (!NILP (reseat) && MARKERP (m))
2924 {
b51d6c92 2925 unchain_marker (XMARKER (m));
9ad54a7e 2926 XSETCAR (list, Qnil);
abd0071c 2927 }
41c01205 2928 }
abd0071c 2929 list = XCDR (list);
41c01205 2930 }
ca1d1d23 2931
41c01205
DK
2932 for (; i < search_regs.num_regs; i++)
2933 search_regs.start[i] = -1;
2934 }
ca1d1d23 2935
177c0ea7 2936 return Qnil;
ca1d1d23
JB
2937}
2938
7074fde6
FP
2939/* If non-zero the match data have been saved in saved_search_regs
2940 during the execution of a sentinel or filter. */
75ebf74b 2941static int search_regs_saved;
7074fde6 2942static struct re_registers saved_search_regs;
41c01205 2943static Lisp_Object saved_last_thing_searched;
7074fde6
FP
2944
2945/* Called from Flooking_at, Fstring_match, search_buffer, Fstore_match_data
2946 if asynchronous code (filter or sentinel) is running. */
2947static void
971de7fb 2948save_search_regs (void)
7074fde6
FP
2949{
2950 if (!search_regs_saved)
2951 {
2952 saved_search_regs.num_regs = search_regs.num_regs;
2953 saved_search_regs.start = search_regs.start;
2954 saved_search_regs.end = search_regs.end;
41c01205
DK
2955 saved_last_thing_searched = last_thing_searched;
2956 last_thing_searched = Qnil;
7074fde6 2957 search_regs.num_regs = 0;
2d4a771a
RS
2958 search_regs.start = 0;
2959 search_regs.end = 0;
7074fde6
FP
2960
2961 search_regs_saved = 1;
2962 }
2963}
2964
2965/* Called upon exit from filters and sentinels. */
2966void
971de7fb 2967restore_search_regs (void)
7074fde6
FP
2968{
2969 if (search_regs_saved)
2970 {
2971 if (search_regs.num_regs > 0)
2972 {
2973 xfree (search_regs.start);
2974 xfree (search_regs.end);
2975 }
2976 search_regs.num_regs = saved_search_regs.num_regs;
2977 search_regs.start = saved_search_regs.start;
2978 search_regs.end = saved_search_regs.end;
41c01205
DK
2979 last_thing_searched = saved_last_thing_searched;
2980 saved_last_thing_searched = Qnil;
7074fde6
FP
2981 search_regs_saved = 0;
2982 }
2983}
2984
abd0071c 2985static Lisp_Object
971de7fb 2986unwind_set_match_data (Lisp_Object list)
abd0071c 2987{
b51d6c92
SM
2988 /* It is NOT ALWAYS safe to free (evaporate) the markers immediately. */
2989 return Fset_match_data (list, Qt);
abd0071c
KS
2990}
2991
2992/* Called to unwind protect the match data. */
2993void
971de7fb 2994record_unwind_save_match_data (void)
abd0071c
KS
2995{
2996 record_unwind_protect (unwind_set_match_data,
2997 Fmatch_data (Qnil, Qnil, Qnil));
2998}
2999
e9a452d9 3000/* Quote a string to deactivate reg-expr chars */
ca1d1d23
JB
3001
3002DEFUN ("regexp-quote", Fregexp_quote, Sregexp_quote, 1, 1, 0,
8c1a1077 3003 doc: /* Return a regexp string which matches exactly STRING and nothing else. */)
5842a27b 3004 (Lisp_Object string)
ca1d1d23 3005{
a7e979a4
PE
3006 register char *in, *out, *end;
3007 register char *temp;
0c8533c6 3008 int backslashes_added = 0;
ca1d1d23 3009
b7826503 3010 CHECK_STRING (string);
ca1d1d23 3011
38182d90 3012 temp = alloca (SBYTES (string) * 2);
ca1d1d23
JB
3013
3014 /* Now copy the data into the new string, inserting escapes. */
3015
a7e979a4 3016 in = SSDATA (string);
d5db4077 3017 end = in + SBYTES (string);
177c0ea7 3018 out = temp;
ca1d1d23
JB
3019
3020 for (; in != end; in++)
3021 {
66bc6082 3022 if (*in == '['
ca1d1d23
JB
3023 || *in == '*' || *in == '.' || *in == '\\'
3024 || *in == '?' || *in == '+'
3025 || *in == '^' || *in == '$')
0c8533c6 3026 *out++ = '\\', backslashes_added++;
ca1d1d23
JB
3027 *out++ = *in;
3028 }
3029
3f8100f1 3030 return make_specified_string (temp,
d5db4077 3031 SCHARS (string) + backslashes_added,
3f8100f1
RS
3032 out - temp,
3033 STRING_MULTIBYTE (string));
ca1d1d23 3034}
177c0ea7 3035\f
dfcf069d 3036void
971de7fb 3037syms_of_search (void)
ca1d1d23
JB
3038{
3039 register int i;
3040
487282dc
KH
3041 for (i = 0; i < REGEXP_CACHE_SIZE; ++i)
3042 {
3043 searchbufs[i].buf.allocated = 100;
23f86fce 3044 searchbufs[i].buf.buffer = xmalloc (100);
487282dc
KH
3045 searchbufs[i].buf.fastmap = searchbufs[i].fastmap;
3046 searchbufs[i].regexp = Qnil;
ecdb561e 3047 searchbufs[i].whitespace_regexp = Qnil;
b69e3c18 3048 searchbufs[i].syntax_table = Qnil;
487282dc 3049 staticpro (&searchbufs[i].regexp);
aa77b5ce 3050 staticpro (&searchbufs[i].whitespace_regexp);
b69e3c18 3051 staticpro (&searchbufs[i].syntax_table);
487282dc
KH
3052 searchbufs[i].next = (i == REGEXP_CACHE_SIZE-1 ? 0 : &searchbufs[i+1]);
3053 }
3054 searchbuf_head = &searchbufs[0];
ca1d1d23 3055
cd3520a4
JB
3056 DEFSYM (Qsearch_failed, "search-failed");
3057 DEFSYM (Qinvalid_regexp, "invalid-regexp");
ca1d1d23
JB
3058
3059 Fput (Qsearch_failed, Qerror_conditions,
3438fe21 3060 listn (CONSTYPE_PURE, 2, Qsearch_failed, Qerror));
ca1d1d23 3061 Fput (Qsearch_failed, Qerror_message,
2a0213a6 3062 build_pure_c_string ("Search failed"));
ca1d1d23
JB
3063
3064 Fput (Qinvalid_regexp, Qerror_conditions,
3438fe21 3065 listn (CONSTYPE_PURE, 2, Qinvalid_regexp, Qerror));
ca1d1d23 3066 Fput (Qinvalid_regexp, Qerror_message,
2a0213a6 3067 build_pure_c_string ("Invalid regexp"));
ca1d1d23 3068
daa37602
JB
3069 last_thing_searched = Qnil;
3070 staticpro (&last_thing_searched);
3071
0f6af254
DK
3072 saved_last_thing_searched = Qnil;
3073 staticpro (&saved_last_thing_searched);
3074
29208e82 3075 DEFVAR_LISP ("search-spaces-regexp", Vsearch_spaces_regexp,
e2811828 3076 doc: /* Regexp to substitute for bunches of spaces in regexp search.
f31a9a68
RS
3077Some commands use this for user-specified regexps.
3078Spaces that occur inside character classes or repetition operators
3079or other such regexp constructs are not replaced with this.
3080A value of nil (which is the normal value) means treat spaces literally. */);
41a33295 3081 Vsearch_spaces_regexp = Qnil;
f31a9a68 3082
29208e82 3083 DEFVAR_LISP ("inhibit-changing-match-data", Vinhibit_changing_match_data,
ef887810 3084 doc: /* Internal use only.
39d0bf74
RS
3085If non-nil, the primitive searching and matching functions
3086such as `looking-at', `string-match', `re-search-forward', etc.,
3087do not set the match data. The proper way to use this variable
3088is to bind it with `let' around a small expression. */);
ef887810
RS
3089 Vinhibit_changing_match_data = Qnil;
3090
ca1d1d23 3091 defsubr (&Slooking_at);
b819a390
RS
3092 defsubr (&Sposix_looking_at);
3093 defsubr (&Sstring_match);
3094 defsubr (&Sposix_string_match);
ca1d1d23
JB
3095 defsubr (&Ssearch_forward);
3096 defsubr (&Ssearch_backward);
ca1d1d23
JB
3097 defsubr (&Sre_search_forward);
3098 defsubr (&Sre_search_backward);
b819a390
RS
3099 defsubr (&Sposix_search_forward);
3100 defsubr (&Sposix_search_backward);
ca1d1d23
JB
3101 defsubr (&Sreplace_match);
3102 defsubr (&Smatch_beginning);
3103 defsubr (&Smatch_end);
3104 defsubr (&Smatch_data);
3f1c005b 3105 defsubr (&Sset_match_data);
ca1d1d23
JB
3106 defsubr (&Sregexp_quote);
3107}