Mercurial > emacs
annotate src/regex.c @ 33766:3488141db749
(x_tool_bar_item, w32_handle_tool_bar_click)
(note_tool_bar_highlight): Change references to mambers deleted
from struct frame to use the new ones.
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Wed, 22 Nov 2000 16:33:16 +0000 |
parents | c782e22760e0 |
children | 95c2eedea354 |
rev | line source |
---|---|
16010 | 1 /* Extended regular expression matching and search library, version |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
2 0.12. (Implements POSIX draft P1003.2/D11.2, except for some of the |
1155 | 3 internationalization features.) |
4 | |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
5 Copyright (C) 1993,94,95,96,97,98,99,2000 Free Software Foundation, Inc. |
1155 | 6 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
7 This program is free software; you can redistribute it and/or modify |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
8 it under the terms of the GNU General Public License as published by |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
9 the Free Software Foundation; either version 2, or (at your option) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
10 any later version. |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
11 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
12 This program is distributed in the hope that it will be useful, |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
13 but WITHOUT ANY WARRANTY; without even the implied warranty of |
18262 | 14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
15 GNU General Public License for more details. |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
16 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
17 You should have received a copy of the GNU General Public License |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
18 along with this program; if not, write to the Free Software |
14414 | 19 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
18262 | 20 USA. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
21 |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
22 /* TODO: |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
23 - structure the opcode space into opcode+flag. |
31172
0ee53ec2081a
(PUSH_FAILURE_COUNT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30752
diff
changeset
|
24 - merge with glibc's regex.[ch]. |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
25 - replace (succeed_n + jump_n + set_number_at) with something that doesn't |
32954
f77e6c51dd07
(POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32891
diff
changeset
|
26 need to modify the compiled regexp so that re_match can be reentrant. |
f77e6c51dd07
(POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32891
diff
changeset
|
27 - get rid of on_failure_jump_smart by doing the optimization in re_comp |
f77e6c51dd07
(POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32891
diff
changeset
|
28 rather than at run-time, so that re_match can be reentrant. |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
29 */ |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
30 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
31 /* AIX requires this to be the first thing in the file. */ |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
32 #if defined _AIX && !defined REGEX_MALLOC |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
33 #pragma alloca |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
34 #endif |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
35 |
13517
e50cebfd1d7a
(NUM_FAILURE_ITEMS, POP_FAILURE_POINT, PUSH_FAILURE_POINT):
Richard M. Stallman <rms@gnu.org>
parents:
13323
diff
changeset
|
36 #undef _GNU_SOURCE |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
37 #define _GNU_SOURCE |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
38 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
39 #ifdef HAVE_CONFIG_H |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
40 # include <config.h> |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
41 #endif |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
42 |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
43 #if defined STDC_HEADERS && !defined emacs |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
44 # include <stddef.h> |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
45 #else |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
46 /* We need this for `regex.h', and perhaps for the Emacs include files. */ |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
47 # include <sys/types.h> |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
48 #endif |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
49 |
31360
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
50 /* Whether to use ISO C Amendment 1 wide char functions. |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
51 Those should not be used for Emacs since it uses its own. */ |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
52 #define WIDE_CHAR_SUPPORT \ |
32499
3a5e6f70d313
(WIDE_CHAR_SUPPORT): Define if _LIBC as well.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31729
diff
changeset
|
53 (defined _LIBC || HAVE_WCTYPE_H && HAVE_WCHAR_H && HAVE_BTOWC && !emacs) |
31360
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
54 |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
55 /* For platform which support the ISO C amendement 1 functionality we |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
56 support user defined character classes. */ |
32499
3a5e6f70d313
(WIDE_CHAR_SUPPORT): Define if _LIBC as well.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31729
diff
changeset
|
57 #if WIDE_CHAR_SUPPORT |
31360
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
58 /* Solaris 2.5 has a bug: <wchar.h> must be included before <wctype.h>. */ |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
59 # include <wchar.h> |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
60 # include <wctype.h> |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
61 #endif |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
62 |
31312
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
63 #ifdef _LIBC |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
64 /* We have to keep the namespace clean. */ |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
65 # define regfree(preg) __regfree (preg) |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
66 # define regexec(pr, st, nm, pm, ef) __regexec (pr, st, nm, pm, ef) |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
67 # define regcomp(preg, pattern, cflags) __regcomp (preg, pattern, cflags) |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
68 # define regerror(errcode, preg, errbuf, errbuf_size) \ |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
69 __regerror(errcode, preg, errbuf, errbuf_size) |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
70 # define re_set_registers(bu, re, nu, st, en) \ |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
71 __re_set_registers (bu, re, nu, st, en) |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
72 # define re_match_2(bufp, string1, size1, string2, size2, pos, regs, stop) \ |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
73 __re_match_2 (bufp, string1, size1, string2, size2, pos, regs, stop) |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
74 # define re_match(bufp, string, size, pos, regs) \ |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
75 __re_match (bufp, string, size, pos, regs) |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
76 # define re_search(bufp, string, size, startpos, range, regs) \ |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
77 __re_search (bufp, string, size, startpos, range, regs) |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
78 # define re_compile_pattern(pattern, length, bufp) \ |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
79 __re_compile_pattern (pattern, length, bufp) |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
80 # define re_set_syntax(syntax) __re_set_syntax (syntax) |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
81 # define re_search_2(bufp, st1, s1, st2, s2, startpos, range, regs, stop) \ |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
82 __re_search_2 (bufp, st1, s1, st2, s2, startpos, range, regs, stop) |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
83 # define re_compile_fastmap(bufp) __re_compile_fastmap (bufp) |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
84 |
31360
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
85 /* Make sure we call libc's function even if the user overrides them. */ |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
86 # define btowc __btowc |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
87 # define iswctype __iswctype |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
88 # define wctype __wctype |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
89 |
31312
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
90 # define WEAK_ALIAS(a,b) weak_alias (a, b) |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
91 |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
92 /* We are also using some library internals. */ |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
93 # include <locale/localeinfo.h> |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
94 # include <locale/elem-hash.h> |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
95 # include <langinfo.h> |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
96 #else |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
97 # define WEAK_ALIAS(a,b) |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
98 #endif |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
99 |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
100 /* This is for other GNU distributions with internationalized messages. */ |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
101 #if HAVE_LIBINTL_H || defined _LIBC |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
102 # include <libintl.h> |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
103 #else |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
104 # define gettext(msgid) (msgid) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
105 #endif |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
106 |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
107 #ifndef gettext_noop |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
108 /* This define is so xgettext can find the internationalizable |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
109 strings. */ |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
110 # define gettext_noop(String) String |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
111 #endif |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
112 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
113 /* The `emacs' switch turns on certain matching commands |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
114 that make sense only in Emacs. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
115 #ifdef emacs |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
116 |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
117 # include "lisp.h" |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
118 # include "buffer.h" |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
119 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
120 /* Make syntax table lookup grant data in gl_state. */ |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
121 # define SYNTAX_ENTRY_VIA_PROPERTY |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
122 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
123 # include "syntax.h" |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
124 # include "charset.h" |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
125 # include "category.h" |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
126 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
127 # define malloc xmalloc |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
128 # define realloc xrealloc |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
129 # define free xfree |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
130 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
131 /* Converts the pointer to the char to BEG-based offset from the start. */ |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
132 # define PTR_TO_OFFSET(d) POS_AS_IN_BUFFER (POINTER_TO_OFFSET (d)) |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
133 # define POS_AS_IN_BUFFER(p) ((p) + (NILP (re_match_object) || BUFFERP (re_match_object))) |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
134 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
135 # define RE_MULTIBYTE_P(bufp) ((bufp)->multibyte) |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
136 # define RE_STRING_CHAR(p, s) \ |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
137 (multibyte ? (STRING_CHAR (p, s)) : (*(p))) |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
138 # define RE_STRING_CHAR_AND_LENGTH(p, s, len) \ |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
139 (multibyte ? (STRING_CHAR_AND_LENGTH (p, s, len)) : ((len) = 1, *(p))) |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
140 |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
141 /* Set C a (possibly multibyte) character before P. P points into a |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
142 string which is the virtual concatenation of STR1 (which ends at |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
143 END1) or STR2 (which ends at END2). */ |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
144 # define GET_CHAR_BEFORE_2(c, p, str1, end1, str2, end2) \ |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
145 do { \ |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
146 if (multibyte) \ |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
147 { \ |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
148 re_char *dtemp = (p) == (str2) ? (end1) : (p); \ |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
149 re_char *dlimit = ((p) > (str2) && (p) <= (end2)) ? (str2) : (str1); \ |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
150 while (dtemp-- > dlimit && !CHAR_HEAD_P (*dtemp)); \ |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
151 c = STRING_CHAR (dtemp, (p) - dtemp); \ |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
152 } \ |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
153 else \ |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
154 (c = ((p) == (str2) ? (end1) : (p))[-1]); \ |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
155 } while (0) |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
156 |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
157 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
158 #else /* not emacs */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
159 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
160 /* If we are not linking with Emacs proper, |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
161 we can't use the relocating allocator |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
162 even if config.h says that we can. */ |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
163 # undef REL_ALLOC |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
164 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
165 # if defined STDC_HEADERS || defined _LIBC |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
166 # include <stdlib.h> |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
167 # else |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
168 char *malloc (); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
169 char *realloc (); |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
170 # endif |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
171 |
12065
094636c759bf
Undefined INHIBIT_STRING_HEADER when we have no
Karl Heuer <kwzh@gnu.org>
parents:
11974
diff
changeset
|
172 /* When used in Emacs's lib-src, we need to get bzero and bcopy somehow. |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
173 If nothing else has been done, use the method below. */ |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
174 # ifdef INHIBIT_STRING_HEADER |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
175 # if !(defined HAVE_BZERO && defined HAVE_BCOPY) |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
176 # if !defined bzero && !defined bcopy |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
177 # undef INHIBIT_STRING_HEADER |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
178 # endif |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
179 # endif |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
180 # endif |
12065
094636c759bf
Undefined INHIBIT_STRING_HEADER when we have no
Karl Heuer <kwzh@gnu.org>
parents:
11974
diff
changeset
|
181 |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
182 /* This is the normal way of making sure we have memcpy, memcmp and bzero. |
12065
094636c759bf
Undefined INHIBIT_STRING_HEADER when we have no
Karl Heuer <kwzh@gnu.org>
parents:
11974
diff
changeset
|
183 This is used in most programs--a few other programs avoid this |
094636c759bf
Undefined INHIBIT_STRING_HEADER when we have no
Karl Heuer <kwzh@gnu.org>
parents:
11974
diff
changeset
|
184 by defining INHIBIT_STRING_HEADER. */ |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
185 # ifndef INHIBIT_STRING_HEADER |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
186 # if defined HAVE_STRING_H || defined STDC_HEADERS || defined _LIBC |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
187 # include <string.h> |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
188 # ifndef bzero |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
189 # ifndef _LIBC |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
190 # define bzero(s, n) (memset (s, '\0', n), (s)) |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
191 # else |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
192 # define bzero(s, n) __bzero (s, n) |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
193 # endif |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
194 # endif |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
195 # else |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
196 # include <strings.h> |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
197 # ifndef memcmp |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
198 # define memcmp(s1, s2, n) bcmp (s1, s2, n) |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
199 # endif |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
200 # ifndef memcpy |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
201 # define memcpy(d, s, n) (bcopy (s, d, n), (d)) |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
202 # endif |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
203 # endif |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
204 # endif |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
205 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
206 /* Define the syntax stuff for \<, \>, etc. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
207 |
28279
24a23e27dac6
(enum syntaxcode): Provide default for non-Emacs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28268
diff
changeset
|
208 /* Sword must be nonzero for the wordchar pattern commands in re_match_2. */ |
24a23e27dac6
(enum syntaxcode): Provide default for non-Emacs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28268
diff
changeset
|
209 enum syntaxcode { Swhitespace = 0, Sword = 1 }; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
210 |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
211 # ifdef SWITCH_ENUM_BUG |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
212 # define SWITCH_ENUM_CAST(x) ((int)(x)) |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
213 # else |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
214 # define SWITCH_ENUM_CAST(x) (x) |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
215 # endif |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
216 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
217 /* Dummy macros for non-Emacs environments. */ |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
218 # define BASE_LEADING_CODE_P(c) (0) |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
219 # define CHAR_CHARSET(c) 0 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
220 # define CHARSET_LEADING_CODE_BASE(c) 0 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
221 # define MAX_MULTIBYTE_LENGTH 1 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
222 # define RE_MULTIBYTE_P(x) 0 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
223 # define WORD_BOUNDARY_P(c1, c2) (0) |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
224 # define CHAR_HEAD_P(p) (1) |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
225 # define SINGLE_BYTE_CHAR_P(c) (1) |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
226 # define SAME_CHARSET_P(c1, c2) (1) |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
227 # define MULTIBYTE_FORM_LENGTH(p, s) (1) |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
228 # define STRING_CHAR(p, s) (*(p)) |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
229 # define RE_STRING_CHAR STRING_CHAR |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
230 # define CHAR_STRING(c, s) (*(s) = (c), 1) |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
231 # define STRING_CHAR_AND_LENGTH(p, s, actual_len) ((actual_len) = 1, *(p)) |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
232 # define RE_STRING_CHAR_AND_LENGTH STRING_CHAR_AND_LENGTH |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
233 # define GET_CHAR_BEFORE_2(c, p, str1, end1, str2, end2) \ |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
234 (c = ((p) == (str2) ? *((end1) - 1) : *((p) - 1))) |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
235 # define MAKE_CHAR(charset, c1, c2) (c1) |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
236 #endif /* not emacs */ |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
237 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
238 #ifndef RE_TRANSLATE |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
239 # define RE_TRANSLATE(TBL, C) ((unsigned char)(TBL)[C]) |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
240 # define RE_TRANSLATE_P(TBL) (TBL) |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
241 #endif |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
242 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
243 /* Get the interface, including the syntax bits. */ |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
244 #include "regex.h" |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
245 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
246 /* isalpha etc. are used for the character classes. */ |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
247 #include <ctype.h> |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
248 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
249 #ifdef emacs |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
250 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
251 /* 1 if C is an ASCII character. */ |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
252 # define IS_REAL_ASCII(c) ((c) < 0200) |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
253 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
254 /* 1 if C is a unibyte character. */ |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
255 # define ISUNIBYTE(c) (SINGLE_BYTE_CHAR_P ((c))) |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
256 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
257 /* The Emacs definitions should not be directly affected by locales. */ |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
258 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
259 /* In Emacs, these are only used for single-byte characters. */ |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
260 # define ISDIGIT(c) ((c) >= '0' && (c) <= '9') |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
261 # define ISCNTRL(c) ((c) < ' ') |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
262 # define ISXDIGIT(c) (((c) >= '0' && (c) <= '9') \ |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
263 || ((c) >= 'a' && (c) <= 'f') \ |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
264 || ((c) >= 'A' && (c) <= 'F')) |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
265 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
266 /* This is only used for single-byte characters. */ |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
267 # define ISBLANK(c) ((c) == ' ' || (c) == '\t') |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
268 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
269 /* The rest must handle multibyte characters. */ |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
270 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
271 # define ISGRAPH(c) (SINGLE_BYTE_CHAR_P (c) \ |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
272 ? (c) > ' ' && !((c) >= 0177 && (c) <= 0237) \ |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
273 : 1) |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
274 |
31360
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
275 # define ISPRINT(c) (SINGLE_BYTE_CHAR_P (c) \ |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
276 ? (c) >= ' ' && !((c) >= 0177 && (c) <= 0237) \ |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
277 : 1) |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
278 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
279 # define ISALNUM(c) (IS_REAL_ASCII (c) \ |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
280 ? (((c) >= 'a' && (c) <= 'z') \ |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
281 || ((c) >= 'A' && (c) <= 'Z') \ |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
282 || ((c) >= '0' && (c) <= '9')) \ |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
283 : SYNTAX (c) == Sword) |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
284 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
285 # define ISALPHA(c) (IS_REAL_ASCII (c) \ |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
286 ? (((c) >= 'a' && (c) <= 'z') \ |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
287 || ((c) >= 'A' && (c) <= 'Z')) \ |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
288 : SYNTAX (c) == Sword) |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
289 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
290 # define ISLOWER(c) (LOWERCASEP (c)) |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
291 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
292 # define ISPUNCT(c) (IS_REAL_ASCII (c) \ |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
293 ? ((c) > ' ' && (c) < 0177 \ |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
294 && !(((c) >= 'a' && (c) <= 'z') \ |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
295 || ((c) >= 'A' && (c) <= 'Z') \ |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
296 || ((c) >= '0' && (c) <= '9'))) \ |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
297 : SYNTAX (c) != Sword) |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
298 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
299 # define ISSPACE(c) (SYNTAX (c) == Swhitespace) |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
300 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
301 # define ISUPPER(c) (UPPERCASEP (c)) |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
302 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
303 # define ISWORD(c) (SYNTAX (c) == Sword) |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
304 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
305 #else /* not emacs */ |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
306 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
307 /* Jim Meyering writes: |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
308 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
309 "... Some ctype macros are valid only for character codes that |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
310 isascii says are ASCII (SGI's IRIX-4.0.5 is one such system --when |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
311 using /bin/cc or gcc but without giving an ansi option). So, all |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
312 ctype uses should be through macros like ISPRINT... If |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
313 STDC_HEADERS is defined, then autoconf has verified that the ctype |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
314 macros don't need to be guarded with references to isascii. ... |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
315 Defining isascii to 1 should let any compiler worth its salt |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
316 eliminate the && through constant folding." |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
317 Solaris defines some of these symbols so we must undefine them first. */ |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
318 |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
319 # undef ISASCII |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
320 # if defined STDC_HEADERS || (!defined isascii && !defined HAVE_ISASCII) |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
321 # define ISASCII(c) 1 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
322 # else |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
323 # define ISASCII(c) isascii(c) |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
324 # endif |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
325 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
326 /* 1 if C is an ASCII character. */ |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
327 # define IS_REAL_ASCII(c) ((c) < 0200) |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
328 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
329 /* This distinction is not meaningful, except in Emacs. */ |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
330 # define ISUNIBYTE(c) 1 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
331 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
332 # ifdef isblank |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
333 # define ISBLANK(c) (ISASCII (c) && isblank (c)) |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
334 # else |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
335 # define ISBLANK(c) ((c) == ' ' || (c) == '\t') |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
336 # endif |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
337 # ifdef isgraph |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
338 # define ISGRAPH(c) (ISASCII (c) && isgraph (c)) |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
339 # else |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
340 # define ISGRAPH(c) (ISASCII (c) && isprint (c) && !isspace (c)) |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
341 # endif |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
342 |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
343 # undef ISPRINT |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
344 # define ISPRINT(c) (ISASCII (c) && isprint (c)) |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
345 # define ISDIGIT(c) (ISASCII (c) && isdigit (c)) |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
346 # define ISALNUM(c) (ISASCII (c) && isalnum (c)) |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
347 # define ISALPHA(c) (ISASCII (c) && isalpha (c)) |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
348 # define ISCNTRL(c) (ISASCII (c) && iscntrl (c)) |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
349 # define ISLOWER(c) (ISASCII (c) && islower (c)) |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
350 # define ISPUNCT(c) (ISASCII (c) && ispunct (c)) |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
351 # define ISSPACE(c) (ISASCII (c) && isspace (c)) |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
352 # define ISUPPER(c) (ISASCII (c) && isupper (c)) |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
353 # define ISXDIGIT(c) (ISASCII (c) && isxdigit (c)) |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
354 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
355 # define ISWORD(c) ISALPHA(c) |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
356 |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
357 # ifdef _tolower |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
358 # define TOLOWER(c) _tolower(c) |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
359 # else |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
360 # define TOLOWER(c) tolower(c) |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
361 # endif |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
362 |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
363 /* How many characters in the character set. */ |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
364 # define CHAR_SET_SIZE 256 |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
365 |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
366 # ifdef SYNTAX_TABLE |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
367 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
368 extern char *re_syntax_table; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
369 |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
370 # else /* not SYNTAX_TABLE */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
371 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
372 static char re_syntax_table[CHAR_SET_SIZE]; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
373 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
374 static void |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
375 init_syntax_once () |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
376 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
377 register int c; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
378 static int done = 0; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
379 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
380 if (done) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
381 return; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
382 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
383 bzero (re_syntax_table, sizeof re_syntax_table); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
384 |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
385 for (c = 0; c < CHAR_SET_SIZE; ++c) |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
386 if (ISALNUM (c)) |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
387 re_syntax_table[c] = Sword; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
388 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
389 re_syntax_table['_'] = Sword; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
390 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
391 done = 1; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
392 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
393 |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
394 # endif /* not SYNTAX_TABLE */ |
25440
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
395 |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
396 # define SYNTAX(c) re_syntax_table[(c)] |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
397 |
25440
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
398 #endif /* not emacs */ |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
399 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
400 #ifndef NULL |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
401 # define NULL (void *)0 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
402 #endif |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
403 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
404 /* We remove any previous definition of `SIGN_EXTEND_CHAR', |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
405 since ours (we hope) works properly with all combinations of |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
406 machines, compilers, `char' and `unsigned char' argument types. |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
407 (Per Bothner suggested the basic approach.) */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
408 #undef SIGN_EXTEND_CHAR |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
409 #if __STDC__ |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
410 # define SIGN_EXTEND_CHAR(c) ((signed char) (c)) |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
411 #else /* not __STDC__ */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
412 /* As in Harbison and Steele. */ |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
413 # define SIGN_EXTEND_CHAR(c) ((((unsigned char) (c)) ^ 128) - 128) |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
414 #endif |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
415 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
416 /* Should we use malloc or alloca? If REGEX_MALLOC is not defined, we |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
417 use `alloca' instead of `malloc'. This is because using malloc in |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
418 re_search* or re_match* could cause memory leaks when C-g is used in |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
419 Emacs; also, malloc is slower and causes storage fragmentation. On |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
420 the other hand, malloc is more portable, and easier to debug. |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
421 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
422 Because we sometimes use alloca, some routines have to be macros, |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
423 not functions -- `alloca'-allocated space disappears at the end of the |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
424 function it is called in. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
425 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
426 #ifdef REGEX_MALLOC |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
427 |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
428 # define REGEX_ALLOCATE malloc |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
429 # define REGEX_REALLOCATE(source, osize, nsize) realloc (source, nsize) |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
430 # define REGEX_FREE free |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
431 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
432 #else /* not REGEX_MALLOC */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
433 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
434 /* Emacs already defines alloca, sometimes. */ |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
435 # ifndef alloca |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
436 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
437 /* Make alloca work the best possible way. */ |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
438 # ifdef __GNUC__ |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
439 # define alloca __builtin_alloca |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
440 # else /* not __GNUC__ */ |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
441 # if HAVE_ALLOCA_H |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
442 # include <alloca.h> |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
443 # endif /* HAVE_ALLOCA_H */ |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
444 # endif /* not __GNUC__ */ |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
445 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
446 # endif /* not alloca */ |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
447 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
448 # define REGEX_ALLOCATE alloca |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
449 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
450 /* Assumes a `char *destination' variable. */ |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
451 # define REGEX_REALLOCATE(source, osize, nsize) \ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
452 (destination = (char *) alloca (nsize), \ |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
453 memcpy (destination, source, osize)) |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
454 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
455 /* No need to do anything to free, after alloca. */ |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
456 # define REGEX_FREE(arg) ((void)0) /* Do nothing! But inhibit gcc warning. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
457 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
458 #endif /* not REGEX_MALLOC */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
459 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
460 /* Define how to allocate the failure stack. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
461 |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
462 #if defined REL_ALLOC && defined REGEX_MALLOC |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
463 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
464 # define REGEX_ALLOCATE_STACK(size) \ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
465 r_alloc (&failure_stack_ptr, (size)) |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
466 # define REGEX_REALLOCATE_STACK(source, osize, nsize) \ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
467 r_re_alloc (&failure_stack_ptr, (nsize)) |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
468 # define REGEX_FREE_STACK(ptr) \ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
469 r_alloc_free (&failure_stack_ptr) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
470 |
12478
533b6d02cf04
Don't use relocatable allocator.
Richard M. Stallman <rms@gnu.org>
parents:
12331
diff
changeset
|
471 #else /* not using relocating allocator */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
472 |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
473 # ifdef REGEX_MALLOC |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
474 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
475 # define REGEX_ALLOCATE_STACK malloc |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
476 # define REGEX_REALLOCATE_STACK(source, osize, nsize) realloc (source, nsize) |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
477 # define REGEX_FREE_STACK free |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
478 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
479 # else /* not REGEX_MALLOC */ |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
480 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
481 # define REGEX_ALLOCATE_STACK alloca |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
482 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
483 # define REGEX_REALLOCATE_STACK(source, osize, nsize) \ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
484 REGEX_REALLOCATE (source, osize, nsize) |
18262 | 485 /* No need to explicitly free anything. */ |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
486 # define REGEX_FREE_STACK(arg) ((void)0) |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
487 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
488 # endif /* not REGEX_MALLOC */ |
12478
533b6d02cf04
Don't use relocatable allocator.
Richard M. Stallman <rms@gnu.org>
parents:
12331
diff
changeset
|
489 #endif /* not using relocating allocator */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
490 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
491 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
492 /* True if `size1' is non-NULL and PTR is pointing anywhere inside |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
493 `string1' or just past its end. This works if PTR is NULL, which is |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
494 a good thing. */ |
18262 | 495 #define FIRST_STRING_P(ptr) \ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
496 (size1 && string1 <= (ptr) && (ptr) <= string1 + size1) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
497 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
498 /* (Re)Allocate N items of type T using malloc, or fail. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
499 #define TALLOC(n, t) ((t *) malloc ((n) * sizeof (t))) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
500 #define RETALLOC(addr, n, t) ((addr) = (t *) realloc (addr, (n) * sizeof (t))) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
501 #define RETALLOC_IF(addr, n, t) \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
502 if (addr) RETALLOC((addr), (n), t); else (addr) = TALLOC ((n), t) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
503 #define REGEX_TALLOC(n, t) ((t *) REGEX_ALLOCATE ((n) * sizeof (t))) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
504 |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
505 #define BYTEWIDTH 8 /* In bits. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
506 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
507 #define STREQ(s1, s2) ((strcmp (s1, s2) == 0)) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
508 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
509 #undef MAX |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
510 #undef MIN |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
511 #define MAX(a, b) ((a) > (b) ? (a) : (b)) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
512 #define MIN(a, b) ((a) < (b) ? (a) : (b)) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
513 |
28138
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28062
diff
changeset
|
514 /* Type of source-pattern and string chars. */ |
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28062
diff
changeset
|
515 typedef const unsigned char re_char; |
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28062
diff
changeset
|
516 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
517 typedef char boolean; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
518 #define false 0 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
519 #define true 1 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
520 |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
521 static int re_match_2_internal _RE_ARGS ((struct re_pattern_buffer *bufp, |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
522 re_char *string1, int size1, |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
523 re_char *string2, int size2, |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
524 int pos, |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
525 struct re_registers *regs, |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
526 int stop)); |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
527 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
528 /* These are the command codes that appear in compiled regular |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
529 expressions. Some opcodes are followed by argument bytes. A |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
530 command code can specify any interpretation whatsoever for its |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
531 arguments. Zero bytes may appear in the compiled regular expression. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
532 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
533 typedef enum |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
534 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
535 no_op = 0, |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
536 |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
537 /* Succeed right away--no more backtracking. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
538 succeed, |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
539 |
18262 | 540 /* Followed by one byte giving n, then by n literal bytes. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
541 exactn, |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
542 |
18262 | 543 /* Matches any (more or less) character. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
544 anychar, |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
545 |
18262 | 546 /* Matches any one char belonging to specified set. First |
547 following byte is number of bitmap bytes. Then come bytes | |
548 for a bitmap saying which chars are in. Bits in each byte | |
549 are ordered low-bit-first. A character is in the set if its | |
550 bit is 1. A character too large to have a bit in the map is | |
25440
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
551 automatically not in the set. |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
552 |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
553 If the length byte has the 0x80 bit set, then that stuff |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
554 is followed by a range table: |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
555 2 bytes of flags for character sets (low 8 bits, high 8 bits) |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
556 See RANGE_TABLE_WORK_BITS below. |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
557 2 bytes, the number of pairs that follow (upto 32767) |
25440
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
558 pairs, each 2 multibyte characters, |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
559 each multibyte character represented as 3 bytes. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
560 charset, |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
561 |
18262 | 562 /* Same parameters as charset, but match any character that is |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
563 not one of those specified. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
564 charset_not, |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
565 |
18262 | 566 /* Start remembering the text that is matched, for storing in a |
567 register. Followed by one byte with the register number, in | |
568 the range 0 to one less than the pattern buffer's re_nsub | |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
569 field. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
570 start_memory, |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
571 |
18262 | 572 /* Stop remembering the text that is matched and store it in a |
573 memory register. Followed by one byte with the register | |
574 number, in the range 0 to one less than `re_nsub' in the | |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
575 pattern buffer. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
576 stop_memory, |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
577 |
18262 | 578 /* Match a duplicate of something remembered. Followed by one |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
579 byte containing the register number. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
580 duplicate, |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
581 |
18262 | 582 /* Fail unless at beginning of line. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
583 begline, |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
584 |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
585 /* Fail unless at end of line. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
586 endline, |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
587 |
18262 | 588 /* Succeeds if at beginning of buffer (if emacs) or at beginning |
589 of string to be matched (if not). */ | |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
590 begbuf, |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
591 |
18262 | 592 /* Analogously, for end of buffer/string. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
593 endbuf, |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
594 |
18262 | 595 /* Followed by two byte relative address to which to jump. */ |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
596 jump, |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
597 |
18262 | 598 /* Followed by two-byte relative address of place to resume at |
599 in case of failure. */ | |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
600 on_failure_jump, |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
601 |
18262 | 602 /* Like on_failure_jump, but pushes a placeholder instead of the |
603 current string position when executed. */ | |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
604 on_failure_keep_string_jump, |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
605 |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
606 /* Just like `on_failure_jump', except that it checks that we |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
607 don't get stuck in an infinite loop (matching an empty string |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
608 indefinitely). */ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
609 on_failure_jump_loop, |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
610 |
28342
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
611 /* Just like `on_failure_jump_loop', except that it checks for |
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
612 a different kind of loop (the kind that shows up with non-greedy |
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
613 operators). This operation has to be immediately preceded |
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
614 by a `no_op'. */ |
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
615 on_failure_jump_nastyloop, |
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
616 |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
617 /* A smart `on_failure_jump' used for greedy * and + operators. |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
618 It analyses the loop before which it is put and if the |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
619 loop does not require backtracking, it changes itself to |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
620 `on_failure_keep_string_jump' and short-circuits the loop, |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
621 else it just defaults to changing itself into `on_failure_jump'. |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
622 It assumes that it is pointing to just past a `jump'. */ |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
623 on_failure_jump_smart, |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
624 |
18262 | 625 /* Followed by two-byte relative address and two-byte number n. |
28372
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
626 After matching N times, jump to the address upon failure. |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
627 Does not work if N starts at 0: use on_failure_jump_loop |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
628 instead. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
629 succeed_n, |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
630 |
18262 | 631 /* Followed by two-byte relative address, and two-byte number n. |
632 Jump to the address N times, then fail. */ | |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
633 jump_n, |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
634 |
18262 | 635 /* Set the following two-byte relative address to the |
636 subsequent two-byte number. The address *includes* the two | |
637 bytes of number. */ | |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
638 set_number_at, |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
639 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
640 wordbeg, /* Succeeds if at word beginning. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
641 wordend, /* Succeeds if at word end. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
642 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
643 wordbound, /* Succeeds if at a word boundary. */ |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
644 notwordbound, /* Succeeds if not at a word boundary. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
645 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
646 /* Matches any character whose syntax is specified. Followed by |
18262 | 647 a byte which contains a syntax code, e.g., Sword. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
648 syntaxspec, |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
649 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
650 /* Matches any character whose syntax is not that specified. */ |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
651 notsyntaxspec |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
652 |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
653 #ifdef emacs |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
654 ,before_dot, /* Succeeds if before point. */ |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
655 at_dot, /* Succeeds if at point. */ |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
656 after_dot, /* Succeeds if after point. */ |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
657 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
658 /* Matches any character whose category-set contains the specified |
18262 | 659 category. The operator is followed by a byte which contains a |
660 category code (mnemonic ASCII character). */ | |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
661 categoryspec, |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
662 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
663 /* Matches any character whose category-set does not contain the |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
664 specified category. The operator is followed by a byte which |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
665 contains the category code (mnemonic ASCII character). */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
666 notcategoryspec |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
667 #endif /* emacs */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
668 } re_opcode_t; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
669 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
670 /* Common operations on the compiled pattern. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
671 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
672 /* Store NUMBER in two contiguous bytes starting at DESTINATION. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
673 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
674 #define STORE_NUMBER(destination, number) \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
675 do { \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
676 (destination)[0] = (number) & 0377; \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
677 (destination)[1] = (number) >> 8; \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
678 } while (0) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
679 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
680 /* Same as STORE_NUMBER, except increment DESTINATION to |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
681 the byte after where the number is stored. Therefore, DESTINATION |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
682 must be an lvalue. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
683 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
684 #define STORE_NUMBER_AND_INCR(destination, number) \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
685 do { \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
686 STORE_NUMBER (destination, number); \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
687 (destination) += 2; \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
688 } while (0) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
689 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
690 /* Put into DESTINATION a number stored in two contiguous bytes starting |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
691 at SOURCE. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
692 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
693 #define EXTRACT_NUMBER(destination, source) \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
694 do { \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
695 (destination) = *(source) & 0377; \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
696 (destination) += SIGN_EXTEND_CHAR (*((source) + 1)) << 8; \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
697 } while (0) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
698 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
699 #ifdef DEBUG |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
700 static void extract_number _RE_ARGS ((int *dest, re_char *source)); |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
701 static void |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
702 extract_number (dest, source) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
703 int *dest; |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
704 re_char *source; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
705 { |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
706 int temp = SIGN_EXTEND_CHAR (*(source + 1)); |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
707 *dest = *source & 0377; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
708 *dest += temp << 8; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
709 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
710 |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
711 # ifndef EXTRACT_MACROS /* To debug the macros. */ |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
712 # undef EXTRACT_NUMBER |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
713 # define EXTRACT_NUMBER(dest, src) extract_number (&dest, src) |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
714 # endif /* not EXTRACT_MACROS */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
715 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
716 #endif /* DEBUG */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
717 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
718 /* Same as EXTRACT_NUMBER, except increment SOURCE to after the number. |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
719 SOURCE must be an lvalue. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
720 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
721 #define EXTRACT_NUMBER_AND_INCR(destination, source) \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
722 do { \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
723 EXTRACT_NUMBER (destination, source); \ |
18262 | 724 (source) += 2; \ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
725 } while (0) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
726 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
727 #ifdef DEBUG |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
728 static void extract_number_and_incr _RE_ARGS ((int *destination, |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
729 re_char **source)); |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
730 static void |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
731 extract_number_and_incr (destination, source) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
732 int *destination; |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
733 re_char **source; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
734 { |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
735 extract_number (destination, *source); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
736 *source += 2; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
737 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
738 |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
739 # ifndef EXTRACT_MACROS |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
740 # undef EXTRACT_NUMBER_AND_INCR |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
741 # define EXTRACT_NUMBER_AND_INCR(dest, src) \ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
742 extract_number_and_incr (&dest, &src) |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
743 # endif /* not EXTRACT_MACROS */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
744 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
745 #endif /* DEBUG */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
746 |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
747 /* Store a multibyte character in three contiguous bytes starting |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
748 DESTINATION, and increment DESTINATION to the byte after where the |
18262 | 749 character is stored. Therefore, DESTINATION must be an lvalue. */ |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
750 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
751 #define STORE_CHARACTER_AND_INCR(destination, character) \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
752 do { \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
753 (destination)[0] = (character) & 0377; \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
754 (destination)[1] = ((character) >> 8) & 0377; \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
755 (destination)[2] = (character) >> 16; \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
756 (destination) += 3; \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
757 } while (0) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
758 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
759 /* Put into DESTINATION a character stored in three contiguous bytes |
18262 | 760 starting at SOURCE. */ |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
761 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
762 #define EXTRACT_CHARACTER(destination, source) \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
763 do { \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
764 (destination) = ((source)[0] \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
765 | ((source)[1] << 8) \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
766 | ((source)[2] << 16)); \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
767 } while (0) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
768 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
769 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
770 /* Macros for charset. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
771 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
772 /* Size of bitmap of charset P in bytes. P is a start of charset, |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
773 i.e. *P is (re_opcode_t) charset or (re_opcode_t) charset_not. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
774 #define CHARSET_BITMAP_SIZE(p) ((p)[1] & 0x7F) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
775 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
776 /* Nonzero if charset P has range table. */ |
18262 | 777 #define CHARSET_RANGE_TABLE_EXISTS_P(p) ((p)[1] & 0x80) |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
778 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
779 /* Return the address of range table of charset P. But not the start |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
780 of table itself, but the before where the number of ranges is |
25440
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
781 stored. `2 +' means to skip re_opcode_t and size of bitmap, |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
782 and the 2 bytes of flags at the start of the range table. */ |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
783 #define CHARSET_RANGE_TABLE(p) (&(p)[4 + CHARSET_BITMAP_SIZE (p)]) |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
784 |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
785 /* Extract the bit flags that start a range table. */ |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
786 #define CHARSET_RANGE_TABLE_BITS(p) \ |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
787 ((p)[2 + CHARSET_BITMAP_SIZE (p)] \ |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
788 + (p)[3 + CHARSET_BITMAP_SIZE (p)] * 0x100) |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
789 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
790 /* Test if C is listed in the bitmap of charset P. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
791 #define CHARSET_LOOKUP_BITMAP(p, c) \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
792 ((c) < CHARSET_BITMAP_SIZE (p) * BYTEWIDTH \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
793 && (p)[2 + (c) / BYTEWIDTH] & (1 << ((c) % BYTEWIDTH))) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
794 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
795 /* Return the address of end of RANGE_TABLE. COUNT is number of |
18262 | 796 ranges (which is a pair of (start, end)) in the RANGE_TABLE. `* 2' |
797 is start of range and end of range. `* 3' is size of each start | |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
798 and end. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
799 #define CHARSET_RANGE_TABLE_END(range_table, count) \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
800 ((range_table) + (count) * 2 * 3) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
801 |
18262 | 802 /* Test if C is in RANGE_TABLE. A flag NOT is negated if C is in. |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
803 COUNT is number of ranges in RANGE_TABLE. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
804 #define CHARSET_LOOKUP_RANGE_TABLE_RAW(not, c, range_table, count) \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
805 do \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
806 { \ |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
807 re_wchar_t range_start, range_end; \ |
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
808 re_char *p; \ |
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
809 re_char *range_table_end \ |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
810 = CHARSET_RANGE_TABLE_END ((range_table), (count)); \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
811 \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
812 for (p = (range_table); p < range_table_end; p += 2 * 3) \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
813 { \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
814 EXTRACT_CHARACTER (range_start, p); \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
815 EXTRACT_CHARACTER (range_end, p + 3); \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
816 \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
817 if (range_start <= (c) && (c) <= range_end) \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
818 { \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
819 (not) = !(not); \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
820 break; \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
821 } \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
822 } \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
823 } \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
824 while (0) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
825 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
826 /* Test if C is in range table of CHARSET. The flag NOT is negated if |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
827 C is listed in it. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
828 #define CHARSET_LOOKUP_RANGE_TABLE(not, c, charset) \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
829 do \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
830 { \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
831 /* Number of ranges in range table. */ \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
832 int count; \ |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
833 re_char *range_table = CHARSET_RANGE_TABLE (charset); \ |
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
834 \ |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
835 EXTRACT_NUMBER_AND_INCR (count, range_table); \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
836 CHARSET_LOOKUP_RANGE_TABLE_RAW ((not), (c), range_table, count); \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
837 } \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
838 while (0) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
839 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
840 /* If DEBUG is defined, Regex prints many voluminous messages about what |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
841 it is doing (if the variable `debug' is nonzero). If linked with the |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
842 main program in `iregex.c', you can enter patterns and strings |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
843 interactively. And if linked with the main program in `main.c' and |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
844 the other test files, you can run the already-written tests. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
845 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
846 #ifdef DEBUG |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
847 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
848 /* We use standard I/O for debugging. */ |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
849 # include <stdio.h> |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
850 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
851 /* It is useful to test things that ``must'' be true when debugging. */ |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
852 # include <assert.h> |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
853 |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
854 static int debug = -100000; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
855 |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
856 # define DEBUG_STATEMENT(e) e |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
857 # define DEBUG_PRINT1(x) if (debug > 0) printf (x) |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
858 # define DEBUG_PRINT2(x1, x2) if (debug > 0) printf (x1, x2) |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
859 # define DEBUG_PRINT3(x1, x2, x3) if (debug > 0) printf (x1, x2, x3) |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
860 # define DEBUG_PRINT4(x1, x2, x3, x4) if (debug > 0) printf (x1, x2, x3, x4) |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
861 # define DEBUG_PRINT_COMPILED_PATTERN(p, s, e) \ |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
862 if (debug > 0) print_partial_compiled_pattern (s, e) |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
863 # define DEBUG_PRINT_DOUBLE_STRING(w, s1, sz1, s2, sz2) \ |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
864 if (debug > 0) print_double_string (w, s1, sz1, s2, sz2) |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
865 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
866 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
867 /* Print the fastmap in human-readable form. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
868 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
869 void |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
870 print_fastmap (fastmap) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
871 char *fastmap; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
872 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
873 unsigned was_a_range = 0; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
874 unsigned i = 0; |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
875 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
876 while (i < (1 << BYTEWIDTH)) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
877 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
878 if (fastmap[i++]) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
879 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
880 was_a_range = 0; |
18262 | 881 putchar (i - 1); |
882 while (i < (1 << BYTEWIDTH) && fastmap[i]) | |
883 { | |
884 was_a_range = 1; | |
885 i++; | |
886 } | |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
887 if (was_a_range) |
18262 | 888 { |
889 printf ("-"); | |
890 putchar (i - 1); | |
891 } | |
892 } | |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
893 } |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
894 putchar ('\n'); |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
895 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
896 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
897 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
898 /* Print a compiled pattern string in human-readable form, starting at |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
899 the START pointer into it and ending just before the pointer END. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
900 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
901 void |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
902 print_partial_compiled_pattern (start, end) |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
903 re_char *start; |
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
904 re_char *end; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
905 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
906 int mcnt, mcnt2; |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
907 re_char *p = start; |
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
908 re_char *pend = end; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
909 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
910 if (start == NULL) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
911 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
912 printf ("(null)\n"); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
913 return; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
914 } |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
915 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
916 /* Loop over pattern commands. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
917 while (p < pend) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
918 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
919 printf ("%d:\t", p - start); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
920 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
921 switch ((re_opcode_t) *p++) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
922 { |
18262 | 923 case no_op: |
924 printf ("/no_op"); | |
925 break; | |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
926 |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
927 case succeed: |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
928 printf ("/succeed"); |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
929 break; |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
930 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
931 case exactn: |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
932 mcnt = *p++; |
18262 | 933 printf ("/exactn/%d", mcnt); |
934 do | |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
935 { |
18262 | 936 putchar ('/'); |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
937 putchar (*p++); |
18262 | 938 } |
939 while (--mcnt); | |
940 break; | |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
941 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
942 case start_memory: |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
943 printf ("/start_memory/%d", *p++); |
18262 | 944 break; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
945 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
946 case stop_memory: |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
947 printf ("/stop_memory/%d", *p++); |
18262 | 948 break; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
949 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
950 case duplicate: |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
951 printf ("/duplicate/%d", *p++); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
952 break; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
953 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
954 case anychar: |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
955 printf ("/anychar"); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
956 break; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
957 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
958 case charset: |
18262 | 959 case charset_not: |
960 { | |
961 register int c, last = -100; | |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
962 register int in_range = 0; |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
963 int length = CHARSET_BITMAP_SIZE (p - 1); |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
964 int has_range_table = CHARSET_RANGE_TABLE_EXISTS_P (p - 1); |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
965 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
966 printf ("/charset [%s", |
18262 | 967 (re_opcode_t) *(p - 1) == charset_not ? "^" : ""); |
968 | |
969 assert (p + *p < pend); | |
970 | |
971 for (c = 0; c < 256; c++) | |
25440
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
972 if (c / 8 < length |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
973 && (p[1 + (c/8)] & (1 << (c % 8)))) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
974 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
975 /* Are we starting a range? */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
976 if (last + 1 == c && ! in_range) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
977 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
978 putchar ('-'); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
979 in_range = 1; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
980 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
981 /* Have we broken a range? */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
982 else if (last + 1 != c && in_range) |
25440
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
983 { |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
984 putchar (last); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
985 in_range = 0; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
986 } |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
987 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
988 if (! in_range) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
989 putchar (c); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
990 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
991 last = c; |
18262 | 992 } |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
993 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
994 if (in_range) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
995 putchar (last); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
996 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
997 putchar (']'); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
998 |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
999 p += 1 + length; |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
1000 |
25440
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
1001 if (has_range_table) |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
1002 { |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
1003 int count; |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
1004 printf ("has-range-table"); |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
1005 |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
1006 /* ??? Should print the range table; for now, just skip it. */ |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
1007 p += 2; /* skip range table bits */ |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
1008 EXTRACT_NUMBER_AND_INCR (count, p); |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
1009 p = CHARSET_RANGE_TABLE_END (p, count); |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
1010 } |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1011 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1012 break; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1013 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1014 case begline: |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1015 printf ("/begline"); |
18262 | 1016 break; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1017 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1018 case endline: |
18262 | 1019 printf ("/endline"); |
1020 break; | |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1021 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1022 case on_failure_jump: |
18262 | 1023 extract_number_and_incr (&mcnt, &p); |
1024 printf ("/on_failure_jump to %d", p + mcnt - start); | |
1025 break; | |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1026 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1027 case on_failure_keep_string_jump: |
18262 | 1028 extract_number_and_incr (&mcnt, &p); |
1029 printf ("/on_failure_keep_string_jump to %d", p + mcnt - start); | |
1030 break; | |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1031 |
28342
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
1032 case on_failure_jump_nastyloop: |
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
1033 extract_number_and_incr (&mcnt, &p); |
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
1034 printf ("/on_failure_jump_nastyloop to %d", p + mcnt - start); |
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
1035 break; |
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
1036 |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1037 case on_failure_jump_loop: |
18262 | 1038 extract_number_and_incr (&mcnt, &p); |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1039 printf ("/on_failure_jump_loop to %d", p + mcnt - start); |
18262 | 1040 break; |
1041 | |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1042 case on_failure_jump_smart: |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1043 extract_number_and_incr (&mcnt, &p); |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1044 printf ("/on_failure_jump_smart to %d", p + mcnt - start); |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1045 break; |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1046 |
18262 | 1047 case jump: |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1048 extract_number_and_incr (&mcnt, &p); |
18262 | 1049 printf ("/jump to %d", p + mcnt - start); |
16010 | 1050 break; |
1051 | |
18262 | 1052 case succeed_n: |
1053 extract_number_and_incr (&mcnt, &p); | |
1054 extract_number_and_incr (&mcnt2, &p); | |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
1055 printf ("/succeed_n to %d, %d times", p - 2 + mcnt - start, mcnt2); |
18262 | 1056 break; |
1057 | |
1058 case jump_n: | |
1059 extract_number_and_incr (&mcnt, &p); | |
1060 extract_number_and_incr (&mcnt2, &p); | |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
1061 printf ("/jump_n to %d, %d times", p - 2 + mcnt - start, mcnt2); |
18262 | 1062 break; |
1063 | |
1064 case set_number_at: | |
1065 extract_number_and_incr (&mcnt, &p); | |
1066 extract_number_and_incr (&mcnt2, &p); | |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
1067 printf ("/set_number_at location %d to %d", p - 2 + mcnt - start, mcnt2); |
18262 | 1068 break; |
1069 | |
1070 case wordbound: | |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1071 printf ("/wordbound"); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1072 break; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1073 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1074 case notwordbound: |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1075 printf ("/notwordbound"); |
18262 | 1076 break; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1077 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1078 case wordbeg: |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1079 printf ("/wordbeg"); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1080 break; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1081 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1082 case wordend: |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1083 printf ("/wordend"); |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1084 |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
1085 case syntaxspec: |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
1086 printf ("/syntaxspec"); |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
1087 mcnt = *p++; |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
1088 printf ("/%d", mcnt); |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
1089 break; |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
1090 |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
1091 case notsyntaxspec: |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
1092 printf ("/notsyntaxspec"); |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
1093 mcnt = *p++; |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
1094 printf ("/%d", mcnt); |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
1095 break; |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
1096 |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
1097 # ifdef emacs |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1098 case before_dot: |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1099 printf ("/before_dot"); |
18262 | 1100 break; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1101 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1102 case at_dot: |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1103 printf ("/at_dot"); |
18262 | 1104 break; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1105 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1106 case after_dot: |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1107 printf ("/after_dot"); |
18262 | 1108 break; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1109 |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
1110 case categoryspec: |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
1111 printf ("/categoryspec"); |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1112 mcnt = *p++; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1113 printf ("/%d", mcnt); |
18262 | 1114 break; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1115 |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
1116 case notcategoryspec: |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
1117 printf ("/notcategoryspec"); |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1118 mcnt = *p++; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1119 printf ("/%d", mcnt); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1120 break; |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
1121 # endif /* emacs */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1122 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1123 case begbuf: |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1124 printf ("/begbuf"); |
18262 | 1125 break; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1126 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1127 case endbuf: |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1128 printf ("/endbuf"); |
18262 | 1129 break; |
1130 | |
1131 default: | |
1132 printf ("?%d", *(p-1)); | |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1133 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1134 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1135 putchar ('\n'); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1136 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1137 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1138 printf ("%d:\tend of pattern.\n", p - start); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1139 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1140 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1141 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1142 void |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1143 print_compiled_pattern (bufp) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1144 struct re_pattern_buffer *bufp; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1145 { |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
1146 re_char *buffer = bufp->buffer; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1147 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1148 print_partial_compiled_pattern (buffer, buffer + bufp->used); |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1149 printf ("%ld bytes used/%ld bytes allocated.\n", |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1150 bufp->used, bufp->allocated); |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1151 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1152 if (bufp->fastmap_accurate && bufp->fastmap) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1153 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1154 printf ("fastmap: "); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1155 print_fastmap (bufp->fastmap); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1156 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1157 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1158 printf ("re_nsub: %d\t", bufp->re_nsub); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1159 printf ("regs_alloc: %d\t", bufp->regs_allocated); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1160 printf ("can_be_null: %d\t", bufp->can_be_null); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1161 printf ("no_sub: %d\t", bufp->no_sub); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1162 printf ("not_bol: %d\t", bufp->not_bol); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1163 printf ("not_eol: %d\t", bufp->not_eol); |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1164 printf ("syntax: %lx\n", bufp->syntax); |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1165 fflush (stdout); |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1166 /* Perhaps we should print the translate table? */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1167 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1168 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1169 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1170 void |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1171 print_double_string (where, string1, size1, string2, size2) |
28138
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28062
diff
changeset
|
1172 re_char *where; |
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28062
diff
changeset
|
1173 re_char *string1; |
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28062
diff
changeset
|
1174 re_char *string2; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1175 int size1; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1176 int size2; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1177 { |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1178 int this_char; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1179 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1180 if (where == NULL) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1181 printf ("(null)"); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1182 else |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1183 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1184 if (FIRST_STRING_P (where)) |
18262 | 1185 { |
1186 for (this_char = where - string1; this_char < size1; this_char++) | |
1187 putchar (string1[this_char]); | |
1188 | |
1189 where = string2; | |
1190 } | |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1191 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1192 for (this_char = where - string2; this_char < size2; this_char++) |
18262 | 1193 putchar (string2[this_char]); |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1194 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1195 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1196 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1197 #else /* not DEBUG */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1198 |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
1199 # undef assert |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
1200 # define assert(e) |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
1201 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
1202 # define DEBUG_STATEMENT(e) |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
1203 # define DEBUG_PRINT1(x) |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
1204 # define DEBUG_PRINT2(x1, x2) |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
1205 # define DEBUG_PRINT3(x1, x2, x3) |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
1206 # define DEBUG_PRINT4(x1, x2, x3, x4) |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
1207 # define DEBUG_PRINT_COMPILED_PATTERN(p, s, e) |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
1208 # define DEBUG_PRINT_DOUBLE_STRING(w, s1, sz1, s2, sz2) |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1209 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1210 #endif /* not DEBUG */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1211 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1212 /* Set by `re_set_syntax' to the current regexp syntax to recognize. Can |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1213 also be assigned to arbitrarily: each pattern buffer stores its own |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1214 syntax, so it can be changed between regex compilations. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1215 /* This has no initializer because initialized variables in Emacs |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1216 become read-only after dumping. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1217 reg_syntax_t re_syntax_options; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1218 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1219 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1220 /* Specify the precise syntax of regexps for compilation. This provides |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1221 for compatibility for various utilities which historically have |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1222 different, incompatible syntaxes. |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1223 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1224 The argument SYNTAX is a bit mask comprised of the various bits |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1225 defined in regex.h. We return the old syntax. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1226 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1227 reg_syntax_t |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1228 re_set_syntax (syntax) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1229 reg_syntax_t syntax; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1230 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1231 reg_syntax_t ret = re_syntax_options; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1232 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1233 re_syntax_options = syntax; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1234 return ret; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1235 } |
31312
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
1236 WEAK_ALIAS (__re_set_syntax, re_set_syntax) |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1237 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1238 /* This table gives an error message for each of the error codes listed |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1239 in regex.h. Obviously the order here has to be same as there. |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1240 POSIX doesn't require that we do anything for REG_NOERROR, |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1241 but why not be nice? */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1242 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1243 static const char *re_error_msgid[] = |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1244 { |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1245 gettext_noop ("Success"), /* REG_NOERROR */ |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1246 gettext_noop ("No match"), /* REG_NOMATCH */ |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1247 gettext_noop ("Invalid regular expression"), /* REG_BADPAT */ |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1248 gettext_noop ("Invalid collation character"), /* REG_ECOLLATE */ |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1249 gettext_noop ("Invalid character class name"), /* REG_ECTYPE */ |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1250 gettext_noop ("Trailing backslash"), /* REG_EESCAPE */ |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1251 gettext_noop ("Invalid back reference"), /* REG_ESUBREG */ |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1252 gettext_noop ("Unmatched [ or [^"), /* REG_EBRACK */ |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1253 gettext_noop ("Unmatched ( or \\("), /* REG_EPAREN */ |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1254 gettext_noop ("Unmatched \\{"), /* REG_EBRACE */ |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1255 gettext_noop ("Invalid content of \\{\\}"), /* REG_BADBR */ |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1256 gettext_noop ("Invalid range end"), /* REG_ERANGE */ |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1257 gettext_noop ("Memory exhausted"), /* REG_ESPACE */ |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1258 gettext_noop ("Invalid preceding regular expression"), /* REG_BADRPT */ |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1259 gettext_noop ("Premature end of regular expression"), /* REG_EEND */ |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1260 gettext_noop ("Regular expression too big"), /* REG_ESIZE */ |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1261 gettext_noop ("Unmatched ) or \\)"), /* REG_ERPAREN */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1262 }; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1263 |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1264 /* Avoiding alloca during matching, to placate r_alloc. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1265 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1266 /* Define MATCH_MAY_ALLOCATE unless we need to make sure that the |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1267 searching and matching functions should not call alloca. On some |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1268 systems, alloca is implemented in terms of malloc, and if we're |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1269 using the relocating allocator routines, then malloc could cause a |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1270 relocation, which might (if the strings being searched are in the |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1271 ralloc heap) shift the data out from underneath the regexp |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1272 routines. |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1273 |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1274 Here's another reason to avoid allocation: Emacs |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1275 processes input from X in a signal handler; processing X input may |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1276 call malloc; if input arrives while a matching routine is calling |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1277 malloc, then we're scrod. But Emacs can't just block input while |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1278 calling matching routines; then we don't notice interrupts when |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1279 they come in. So, Emacs blocks input around all regexp calls |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1280 except the matching calls, which it leaves unprotected, in the |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1281 faith that they will not malloc. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1282 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1283 /* Normally, this is fine. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1284 #define MATCH_MAY_ALLOCATE |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1285 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1286 /* When using GNU C, we are not REALLY using the C alloca, no matter |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1287 what config.h may say. So don't take precautions for it. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1288 #ifdef __GNUC__ |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
1289 # undef C_ALLOCA |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1290 #endif |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1291 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1292 /* The match routines may not allocate if (1) they would do it with malloc |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1293 and (2) it's not safe for them to use malloc. |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1294 Note that if REL_ALLOC is defined, matching would not use malloc for the |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1295 failure stack, but we would still use it for the register vectors; |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1296 so REL_ALLOC should not affect this. */ |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
1297 #if (defined C_ALLOCA || defined REGEX_MALLOC) && defined emacs |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
1298 # undef MATCH_MAY_ALLOCATE |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1299 #endif |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1300 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1301 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1302 /* Failure stack declarations and macros; both re_compile_fastmap and |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1303 re_match_2 use a failure stack. These have to be macros because of |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1304 REGEX_ALLOCATE_STACK. */ |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1305 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1306 |
20449
fc965930c738
(TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents:
19184
diff
changeset
|
1307 /* Approximate number of failure points for which to initially allocate space |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1308 when matching. If this number is exceeded, we allocate more |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1309 space, so it is not a hard limit. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1310 #ifndef INIT_FAILURE_ALLOC |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
1311 # define INIT_FAILURE_ALLOC 20 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1312 #endif |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1313 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1314 /* Roughly the maximum number of failure points on the stack. Would be |
20449
fc965930c738
(TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents:
19184
diff
changeset
|
1315 exactly that if always used TYPICAL_FAILURE_SIZE items each time we failed. |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1316 This is a variable only so users of regex can assign to it; we never |
31312
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
1317 change it ourselves. */ |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
1318 # if defined MATCH_MAY_ALLOCATE |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
1319 /* Note that 4400 was enough to cause a crash on Alpha OSF/1, |
20449
fc965930c738
(TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents:
19184
diff
changeset
|
1320 whose default stack limit is 2mb. In order for a larger |
fc965930c738
(TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents:
19184
diff
changeset
|
1321 value to work reliably, you have to try to make it accord |
fc965930c738
(TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents:
19184
diff
changeset
|
1322 with the process stack limit. */ |
31312
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
1323 size_t re_max_failures = 40000; |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
1324 # else |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
1325 size_t re_max_failures = 4000; |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
1326 # endif |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1327 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1328 union fail_stack_elt |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1329 { |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
1330 re_char *pointer; |
31312
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
1331 /* This should be the biggest `int' that's no bigger than a pointer. */ |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
1332 long integer; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1333 }; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1334 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1335 typedef union fail_stack_elt fail_stack_elt_t; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1336 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1337 typedef struct |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1338 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1339 fail_stack_elt_t *stack; |
31312
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
1340 size_t size; |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
1341 size_t avail; /* Offset of next open position. */ |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
1342 size_t frame; /* Offset of the cur constructed frame. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1343 } fail_stack_type; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1344 |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1345 #define FAIL_STACK_EMPTY() (fail_stack.frame == 0) |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1346 #define FAIL_STACK_FULL() (fail_stack.avail == fail_stack.size) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1347 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1348 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1349 /* Define macros to initialize and free the failure stack. |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1350 Do `return -2' if the alloc fails. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1351 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1352 #ifdef MATCH_MAY_ALLOCATE |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
1353 # define INIT_FAIL_STACK() \ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1354 do { \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1355 fail_stack.stack = (fail_stack_elt_t *) \ |
20449
fc965930c738
(TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents:
19184
diff
changeset
|
1356 REGEX_ALLOCATE_STACK (INIT_FAILURE_ALLOC * TYPICAL_FAILURE_SIZE \ |
fc965930c738
(TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents:
19184
diff
changeset
|
1357 * sizeof (fail_stack_elt_t)); \ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1358 \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1359 if (fail_stack.stack == NULL) \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1360 return -2; \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1361 \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1362 fail_stack.size = INIT_FAILURE_ALLOC; \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1363 fail_stack.avail = 0; \ |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1364 fail_stack.frame = 0; \ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1365 } while (0) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1366 |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
1367 # define RESET_FAIL_STACK() REGEX_FREE_STACK (fail_stack.stack) |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1368 #else |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
1369 # define INIT_FAIL_STACK() \ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1370 do { \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1371 fail_stack.avail = 0; \ |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1372 fail_stack.frame = 0; \ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1373 } while (0) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1374 |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
1375 # define RESET_FAIL_STACK() ((void)0) |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1376 #endif |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1377 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1378 |
20449
fc965930c738
(TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents:
19184
diff
changeset
|
1379 /* Double the size of FAIL_STACK, up to a limit |
fc965930c738
(TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents:
19184
diff
changeset
|
1380 which allows approximately `re_max_failures' items. |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1381 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1382 Return 1 if succeeds, and 0 if either ran out of memory |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1383 allocating space for it or it was already too large. |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1384 |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1385 REGEX_REALLOCATE_STACK requires `destination' be declared. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1386 |
20449
fc965930c738
(TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents:
19184
diff
changeset
|
1387 /* Factor to increase the failure stack size by |
fc965930c738
(TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents:
19184
diff
changeset
|
1388 when we increase it. |
fc965930c738
(TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents:
19184
diff
changeset
|
1389 This used to be 2, but 2 was too wasteful |
fc965930c738
(TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents:
19184
diff
changeset
|
1390 because the old discarded stacks added up to as much space |
fc965930c738
(TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents:
19184
diff
changeset
|
1391 were as ultimate, maximum-size stack. */ |
fc965930c738
(TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents:
19184
diff
changeset
|
1392 #define FAIL_STACK_GROWTH_FACTOR 4 |
fc965930c738
(TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents:
19184
diff
changeset
|
1393 |
fc965930c738
(TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents:
19184
diff
changeset
|
1394 #define GROW_FAIL_STACK(fail_stack) \ |
20455
aff2a2638ef4
(GROW_FAIL_STACK): Fix test for stack size at max.
Karl Heuer <kwzh@gnu.org>
parents:
20450
diff
changeset
|
1395 (((fail_stack).size * sizeof (fail_stack_elt_t) \ |
aff2a2638ef4
(GROW_FAIL_STACK): Fix test for stack size at max.
Karl Heuer <kwzh@gnu.org>
parents:
20450
diff
changeset
|
1396 >= re_max_failures * TYPICAL_FAILURE_SIZE) \ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1397 ? 0 \ |
20449
fc965930c738
(TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents:
19184
diff
changeset
|
1398 : ((fail_stack).stack \ |
fc965930c738
(TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents:
19184
diff
changeset
|
1399 = (fail_stack_elt_t *) \ |
18262 | 1400 REGEX_REALLOCATE_STACK ((fail_stack).stack, \ |
1401 (fail_stack).size * sizeof (fail_stack_elt_t), \ | |
20449
fc965930c738
(TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents:
19184
diff
changeset
|
1402 MIN (re_max_failures * TYPICAL_FAILURE_SIZE, \ |
fc965930c738
(TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents:
19184
diff
changeset
|
1403 ((fail_stack).size * sizeof (fail_stack_elt_t) \ |
fc965930c738
(TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents:
19184
diff
changeset
|
1404 * FAIL_STACK_GROWTH_FACTOR))), \ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1405 \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1406 (fail_stack).stack == NULL \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1407 ? 0 \ |
20450
8f05356e9dc3
(GROW_FAIL_STACK): Fix previous change:
Karl Heuer <kwzh@gnu.org>
parents:
20449
diff
changeset
|
1408 : ((fail_stack).size \ |
8f05356e9dc3
(GROW_FAIL_STACK): Fix previous change:
Karl Heuer <kwzh@gnu.org>
parents:
20449
diff
changeset
|
1409 = (MIN (re_max_failures * TYPICAL_FAILURE_SIZE, \ |
8f05356e9dc3
(GROW_FAIL_STACK): Fix previous change:
Karl Heuer <kwzh@gnu.org>
parents:
20449
diff
changeset
|
1410 ((fail_stack).size * sizeof (fail_stack_elt_t) \ |
8f05356e9dc3
(GROW_FAIL_STACK): Fix previous change:
Karl Heuer <kwzh@gnu.org>
parents:
20449
diff
changeset
|
1411 * FAIL_STACK_GROWTH_FACTOR)) \ |
8f05356e9dc3
(GROW_FAIL_STACK): Fix previous change:
Karl Heuer <kwzh@gnu.org>
parents:
20449
diff
changeset
|
1412 / sizeof (fail_stack_elt_t)), \ |
18262 | 1413 1))) |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1414 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1415 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1416 /* Push a pointer value onto the failure stack. |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1417 Assumes the variable `fail_stack'. Probably should only |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1418 be called from within `PUSH_FAILURE_POINT'. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1419 #define PUSH_FAILURE_POINTER(item) \ |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
1420 fail_stack.stack[fail_stack.avail++].pointer = (item) |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1421 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1422 /* This pushes an integer-valued item onto the failure stack. |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1423 Assumes the variable `fail_stack'. Probably should only |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1424 be called from within `PUSH_FAILURE_POINT'. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1425 #define PUSH_FAILURE_INT(item) \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1426 fail_stack.stack[fail_stack.avail++].integer = (item) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1427 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1428 /* Push a fail_stack_elt_t value onto the failure stack. |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1429 Assumes the variable `fail_stack'. Probably should only |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1430 be called from within `PUSH_FAILURE_POINT'. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1431 #define PUSH_FAILURE_ELT(item) \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1432 fail_stack.stack[fail_stack.avail++] = (item) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1433 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1434 /* These three POP... operations complement the three PUSH... operations. |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1435 All assume that `fail_stack' is nonempty. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1436 #define POP_FAILURE_POINTER() fail_stack.stack[--fail_stack.avail].pointer |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1437 #define POP_FAILURE_INT() fail_stack.stack[--fail_stack.avail].integer |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1438 #define POP_FAILURE_ELT() fail_stack.stack[--fail_stack.avail] |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1439 |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1440 /* Individual items aside from the registers. */ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1441 #define NUM_NONREG_ITEMS 3 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1442 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1443 /* Used to examine the stack (to detect infinite loops). */ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1444 #define FAILURE_PAT(h) fail_stack.stack[(h) - 1].pointer |
28138
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28062
diff
changeset
|
1445 #define FAILURE_STR(h) (fail_stack.stack[(h) - 2].pointer) |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1446 #define NEXT_FAILURE_HANDLE(h) fail_stack.stack[(h) - 3].integer |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1447 #define TOP_FAILURE_HANDLE() fail_stack.frame |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1448 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1449 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1450 #define ENSURE_FAIL_STACK(space) \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1451 while (REMAINING_AVAIL_SLOTS <= space) { \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1452 if (!GROW_FAIL_STACK (fail_stack)) \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1453 return -2; \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1454 DEBUG_PRINT2 ("\n Doubled stack; size now: %d\n", (fail_stack).size);\ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1455 DEBUG_PRINT2 (" slots available: %d\n", REMAINING_AVAIL_SLOTS);\ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1456 } |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1457 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1458 /* Push register NUM onto the stack. */ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1459 #define PUSH_FAILURE_REG(num) \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1460 do { \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1461 char *destination; \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1462 ENSURE_FAIL_STACK(3); \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1463 DEBUG_PRINT4 (" Push reg %d (spanning %p -> %p)\n", \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1464 num, regstart[num], regend[num]); \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1465 PUSH_FAILURE_POINTER (regstart[num]); \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1466 PUSH_FAILURE_POINTER (regend[num]); \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1467 PUSH_FAILURE_INT (num); \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1468 } while (0) |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1469 |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
1470 /* Change the counter's value to VAL, but make sure that it will |
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
1471 be reset when backtracking. */ |
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
1472 #define PUSH_NUMBER(ptr,val) \ |
31172
0ee53ec2081a
(PUSH_FAILURE_COUNT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30752
diff
changeset
|
1473 do { \ |
0ee53ec2081a
(PUSH_FAILURE_COUNT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30752
diff
changeset
|
1474 char *destination; \ |
0ee53ec2081a
(PUSH_FAILURE_COUNT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30752
diff
changeset
|
1475 int c; \ |
0ee53ec2081a
(PUSH_FAILURE_COUNT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30752
diff
changeset
|
1476 ENSURE_FAIL_STACK(3); \ |
0ee53ec2081a
(PUSH_FAILURE_COUNT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30752
diff
changeset
|
1477 EXTRACT_NUMBER (c, ptr); \ |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
1478 DEBUG_PRINT4 (" Push number %p = %d -> %d\n", ptr, c, val); \ |
31172
0ee53ec2081a
(PUSH_FAILURE_COUNT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30752
diff
changeset
|
1479 PUSH_FAILURE_INT (c); \ |
0ee53ec2081a
(PUSH_FAILURE_COUNT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30752
diff
changeset
|
1480 PUSH_FAILURE_POINTER (ptr); \ |
0ee53ec2081a
(PUSH_FAILURE_COUNT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30752
diff
changeset
|
1481 PUSH_FAILURE_INT (-1); \ |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
1482 STORE_NUMBER (ptr, val); \ |
31172
0ee53ec2081a
(PUSH_FAILURE_COUNT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30752
diff
changeset
|
1483 } while (0) |
0ee53ec2081a
(PUSH_FAILURE_COUNT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30752
diff
changeset
|
1484 |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1485 /* Pop a saved register off the stack. */ |
31172
0ee53ec2081a
(PUSH_FAILURE_COUNT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30752
diff
changeset
|
1486 #define POP_FAILURE_REG_OR_COUNT() \ |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1487 do { \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1488 int reg = POP_FAILURE_INT (); \ |
31172
0ee53ec2081a
(PUSH_FAILURE_COUNT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30752
diff
changeset
|
1489 if (reg == -1) \ |
0ee53ec2081a
(PUSH_FAILURE_COUNT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30752
diff
changeset
|
1490 { \ |
0ee53ec2081a
(PUSH_FAILURE_COUNT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30752
diff
changeset
|
1491 /* It's a counter. */ \ |
32954
f77e6c51dd07
(POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32891
diff
changeset
|
1492 /* Here, we discard `const', making re_match non-reentrant. */ \ |
f77e6c51dd07
(POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32891
diff
changeset
|
1493 unsigned char *ptr = (unsigned char*) POP_FAILURE_POINTER (); \ |
31172
0ee53ec2081a
(PUSH_FAILURE_COUNT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30752
diff
changeset
|
1494 reg = POP_FAILURE_INT (); \ |
0ee53ec2081a
(PUSH_FAILURE_COUNT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30752
diff
changeset
|
1495 STORE_NUMBER (ptr, reg); \ |
0ee53ec2081a
(PUSH_FAILURE_COUNT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30752
diff
changeset
|
1496 DEBUG_PRINT3 (" Pop counter %p = %d\n", ptr, reg); \ |
0ee53ec2081a
(PUSH_FAILURE_COUNT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30752
diff
changeset
|
1497 } \ |
0ee53ec2081a
(PUSH_FAILURE_COUNT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30752
diff
changeset
|
1498 else \ |
0ee53ec2081a
(PUSH_FAILURE_COUNT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30752
diff
changeset
|
1499 { \ |
0ee53ec2081a
(PUSH_FAILURE_COUNT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30752
diff
changeset
|
1500 regend[reg] = POP_FAILURE_POINTER (); \ |
0ee53ec2081a
(PUSH_FAILURE_COUNT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30752
diff
changeset
|
1501 regstart[reg] = POP_FAILURE_POINTER (); \ |
0ee53ec2081a
(PUSH_FAILURE_COUNT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30752
diff
changeset
|
1502 DEBUG_PRINT4 (" Pop reg %d (spanning %p -> %p)\n", \ |
0ee53ec2081a
(PUSH_FAILURE_COUNT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30752
diff
changeset
|
1503 reg, regstart[reg], regend[reg]); \ |
0ee53ec2081a
(PUSH_FAILURE_COUNT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30752
diff
changeset
|
1504 } \ |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1505 } while (0) |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1506 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1507 /* Check that we are not stuck in an infinite loop. */ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1508 #define CHECK_INFINITE_LOOP(pat_cur, string_place) \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1509 do { \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1510 int failure = TOP_FAILURE_HANDLE(); \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1511 /* Check for infinite matching loops */ \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1512 while (failure > 0 && \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1513 (FAILURE_STR (failure) == string_place \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1514 || FAILURE_STR (failure) == NULL)) \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1515 { \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1516 assert (FAILURE_PAT (failure) >= bufp->buffer \ |
28138
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28062
diff
changeset
|
1517 && FAILURE_PAT (failure) <= bufp->buffer + bufp->used); \ |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1518 if (FAILURE_PAT (failure) == pat_cur) \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1519 goto fail; \ |
28138
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28062
diff
changeset
|
1520 DEBUG_PRINT2 (" Other pattern: %p\n", FAILURE_PAT (failure)); \ |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1521 failure = NEXT_FAILURE_HANDLE(failure); \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1522 } \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1523 DEBUG_PRINT2 (" Other string: %p\n", FAILURE_STR (failure)); \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1524 } while (0) |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1525 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1526 /* Push the information about the state we will need |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1527 if we ever fail back to it. |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1528 |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1529 Requires variables fail_stack, regstart, regend and |
20449
fc965930c738
(TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents:
19184
diff
changeset
|
1530 num_regs be declared. GROW_FAIL_STACK requires `destination' be |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1531 declared. |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1532 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1533 Does `return FAILURE_CODE' if runs out of memory. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1534 |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1535 #define PUSH_FAILURE_POINT(pattern, string_place) \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1536 do { \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1537 char *destination; \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1538 /* Must be int, so when we don't save any registers, the arithmetic \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1539 of 0 + -1 isn't done as unsigned. */ \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1540 \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1541 DEBUG_STATEMENT (nfailure_points_pushed++); \ |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1542 DEBUG_PRINT1 ("\nPUSH_FAILURE_POINT:\n"); \ |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1543 DEBUG_PRINT2 (" Before push, next avail: %d\n", (fail_stack).avail); \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1544 DEBUG_PRINT2 (" size: %d\n", (fail_stack).size);\ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1545 \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1546 ENSURE_FAIL_STACK (NUM_NONREG_ITEMS); \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1547 \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1548 DEBUG_PRINT1 ("\n"); \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1549 \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1550 DEBUG_PRINT2 (" Push frame index: %d\n", fail_stack.frame); \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1551 PUSH_FAILURE_INT (fail_stack.frame); \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1552 \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1553 DEBUG_PRINT2 (" Push string %p: `", string_place); \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1554 DEBUG_PRINT_DOUBLE_STRING (string_place, string1, size1, string2, size2);\ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1555 DEBUG_PRINT1 ("'\n"); \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1556 PUSH_FAILURE_POINTER (string_place); \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1557 \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1558 DEBUG_PRINT2 (" Push pattern %p: ", pattern); \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1559 DEBUG_PRINT_COMPILED_PATTERN (bufp, pattern, pend); \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1560 PUSH_FAILURE_POINTER (pattern); \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1561 \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1562 /* Close the frame by moving the frame pointer past it. */ \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1563 fail_stack.frame = fail_stack.avail; \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1564 } while (0) |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1565 |
20449
fc965930c738
(TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents:
19184
diff
changeset
|
1566 /* Estimate the size of data pushed by a typical failure stack entry. |
fc965930c738
(TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents:
19184
diff
changeset
|
1567 An estimate is all we need, because all we use this for |
fc965930c738
(TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents:
19184
diff
changeset
|
1568 is to choose a limit for how big to make the failure stack. */ |
fc965930c738
(TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents:
19184
diff
changeset
|
1569 |
fc965930c738
(TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents:
19184
diff
changeset
|
1570 #define TYPICAL_FAILURE_SIZE 20 |
fc965930c738
(TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents:
19184
diff
changeset
|
1571 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1572 /* How many items can still be added to the stack without overflowing it. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1573 #define REMAINING_AVAIL_SLOTS ((fail_stack).size - (fail_stack).avail) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1574 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1575 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1576 /* Pops what PUSH_FAIL_STACK pushes. |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1577 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1578 We restore into the parameters, all of which should be lvalues: |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1579 STR -- the saved data position. |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1580 PAT -- the saved pattern position. |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1581 REGSTART, REGEND -- arrays of string positions. |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1582 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1583 Also assumes the variables `fail_stack' and (if debugging), `bufp', |
18262 | 1584 `pend', `string1', `size1', `string2', and `size2'. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1585 |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1586 #define POP_FAILURE_POINT(str, pat) \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1587 do { \ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1588 assert (!FAIL_STACK_EMPTY ()); \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1589 \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1590 /* Remove failure points and point to how many regs pushed. */ \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1591 DEBUG_PRINT1 ("POP_FAILURE_POINT:\n"); \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1592 DEBUG_PRINT2 (" Before pop, next avail: %d\n", fail_stack.avail); \ |
18262 | 1593 DEBUG_PRINT2 (" size: %d\n", fail_stack.size); \ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1594 \ |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1595 /* Pop the saved registers. */ \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1596 while (fail_stack.frame < fail_stack.avail) \ |
31172
0ee53ec2081a
(PUSH_FAILURE_COUNT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30752
diff
changeset
|
1597 POP_FAILURE_REG_OR_COUNT (); \ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1598 \ |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
1599 pat = POP_FAILURE_POINTER (); \ |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1600 DEBUG_PRINT2 (" Popping pattern %p: ", pat); \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1601 DEBUG_PRINT_COMPILED_PATTERN (bufp, pat, pend); \ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1602 \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1603 /* If the saved string location is NULL, it came from an \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1604 on_failure_keep_string_jump opcode, and we want to throw away the \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1605 saved NULL, thus retaining our current position in the string. */ \ |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
1606 str = POP_FAILURE_POINTER (); \ |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1607 DEBUG_PRINT2 (" Popping string %p: `", str); \ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1608 DEBUG_PRINT_DOUBLE_STRING (str, string1, size1, string2, size2); \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1609 DEBUG_PRINT1 ("'\n"); \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1610 \ |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1611 fail_stack.frame = POP_FAILURE_INT (); \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1612 DEBUG_PRINT2 (" Popping frame index: %d\n", fail_stack.frame); \ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1613 \ |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1614 assert (fail_stack.avail >= 0); \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1615 assert (fail_stack.frame <= fail_stack.avail); \ |
12931
30dad6bfce63
(PUSH_FAILURE_POINT, POP_FAILURE_POINT): Don't push or pop
Richard M. Stallman <rms@gnu.org>
parents:
12570
diff
changeset
|
1616 \ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1617 DEBUG_STATEMENT (nfailure_points_popped++); \ |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1618 } while (0) /* POP_FAILURE_POINT */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1619 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1620 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1621 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1622 /* Registers are set to a sentinel when they haven't yet matched. */ |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1623 #define REG_UNSET(e) ((e) == NULL) |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1624 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1625 /* Subroutine declarations and macros for regex_compile. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1626 |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1627 static reg_errcode_t regex_compile _RE_ARGS ((re_char *pattern, size_t size, |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1628 reg_syntax_t syntax, |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1629 struct re_pattern_buffer *bufp)); |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1630 static void store_op1 _RE_ARGS ((re_opcode_t op, unsigned char *loc, int arg)); |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1631 static void store_op2 _RE_ARGS ((re_opcode_t op, unsigned char *loc, |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1632 int arg1, int arg2)); |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1633 static void insert_op1 _RE_ARGS ((re_opcode_t op, unsigned char *loc, |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1634 int arg, unsigned char *end)); |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1635 static void insert_op2 _RE_ARGS ((re_opcode_t op, unsigned char *loc, |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1636 int arg1, int arg2, unsigned char *end)); |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
1637 static boolean at_begline_loc_p _RE_ARGS ((re_char *pattern, |
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
1638 re_char *p, |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1639 reg_syntax_t syntax)); |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
1640 static boolean at_endline_loc_p _RE_ARGS ((re_char *p, |
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
1641 re_char *pend, |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1642 reg_syntax_t syntax)); |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
1643 static re_char *skip_one_char _RE_ARGS ((re_char *p)); |
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
1644 static int analyse_first _RE_ARGS ((re_char *p, re_char *pend, |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1645 char *fastmap, const int multibyte)); |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1646 |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1647 /* Fetch the next character in the uncompiled pattern---translating it |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
1648 if necessary. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1649 #define PATFETCH(c) \ |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
1650 do { \ |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
1651 PATFETCH_RAW (c); \ |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
1652 c = TRANSLATE (c); \ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1653 } while (0) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1654 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1655 /* Fetch the next character in the uncompiled pattern, with no |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1656 translation. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1657 #define PATFETCH_RAW(c) \ |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
1658 do { \ |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
1659 int len; \ |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
1660 if (p == pend) return REG_EEND; \ |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
1661 c = RE_STRING_CHAR_AND_LENGTH (p, pend - p, len); \ |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
1662 p += len; \ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1663 } while (0) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1664 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1665 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1666 /* If `translate' is non-null, return translate[D], else just D. We |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1667 cast the subscript to translate because some data is declared as |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1668 `char *', to avoid warnings when a string constant is passed. But |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1669 when we use a character as a subscript we must make it unsigned. */ |
13250
52e053f46f76
(TRANSLATE, PATFETCH): Cast elt of `translate'.
Richard M. Stallman <rms@gnu.org>
parents:
13100
diff
changeset
|
1670 #ifndef TRANSLATE |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
1671 # define TRANSLATE(d) \ |
28138
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28062
diff
changeset
|
1672 (RE_TRANSLATE_P (translate) ? RE_TRANSLATE (translate, (d)) : (d)) |
13250
52e053f46f76
(TRANSLATE, PATFETCH): Cast elt of `translate'.
Richard M. Stallman <rms@gnu.org>
parents:
13100
diff
changeset
|
1673 #endif |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1674 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1675 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1676 /* Macros for outputting the compiled pattern into `buffer'. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1677 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1678 /* If the buffer isn't allocated when it comes in, use this. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1679 #define INIT_BUF_SIZE 32 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1680 |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1681 /* Make sure we have at least N more bytes of space in buffer. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1682 #define GET_BUFFER_SPACE(n) \ |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
1683 while ((size_t) (b - bufp->buffer + (n)) > bufp->allocated) \ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1684 EXTEND_BUFFER () |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1685 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1686 /* Make sure we have one more byte of buffer space and then add C to it. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1687 #define BUF_PUSH(c) \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1688 do { \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1689 GET_BUFFER_SPACE (1); \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1690 *b++ = (unsigned char) (c); \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1691 } while (0) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1692 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1693 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1694 /* Ensure we have two more bytes of buffer space and then append C1 and C2. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1695 #define BUF_PUSH_2(c1, c2) \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1696 do { \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1697 GET_BUFFER_SPACE (2); \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1698 *b++ = (unsigned char) (c1); \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1699 *b++ = (unsigned char) (c2); \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1700 } while (0) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1701 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1702 |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1703 /* As with BUF_PUSH_2, except for three bytes. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1704 #define BUF_PUSH_3(c1, c2, c3) \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1705 do { \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1706 GET_BUFFER_SPACE (3); \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1707 *b++ = (unsigned char) (c1); \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1708 *b++ = (unsigned char) (c2); \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1709 *b++ = (unsigned char) (c3); \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1710 } while (0) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1711 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1712 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1713 /* Store a jump with opcode OP at LOC to location TO. We store a |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1714 relative address offset by the three bytes the jump itself occupies. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1715 #define STORE_JUMP(op, loc, to) \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1716 store_op1 (op, loc, (to) - (loc) - 3) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1717 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1718 /* Likewise, for a two-argument jump. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1719 #define STORE_JUMP2(op, loc, to, arg) \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1720 store_op2 (op, loc, (to) - (loc) - 3, arg) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1721 |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1722 /* Like `STORE_JUMP', but for inserting. Assume `b' is the buffer end. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1723 #define INSERT_JUMP(op, loc, to) \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1724 insert_op1 (op, loc, (to) - (loc) - 3, b) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1725 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1726 /* Like `STORE_JUMP2', but for inserting. Assume `b' is the buffer end. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1727 #define INSERT_JUMP2(op, loc, to, arg) \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1728 insert_op2 (op, loc, (to) - (loc) - 3, arg, b) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1729 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1730 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1731 /* This is not an arbitrary limit: the arguments which represent offsets |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1732 into the pattern are two bytes long. So if 2^16 bytes turns out to |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1733 be too small, many things would have to change. */ |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1734 /* Any other compiler which, like MSC, has allocation limit below 2^16 |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1735 bytes will have to use approach similar to what was done below for |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1736 MSC and drop MAX_BUF_SIZE a bit. Otherwise you may end up |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1737 reallocating to 0 bytes. Such thing is not going to work too well. |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1738 You have been warned!! */ |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1739 #if defined _MSC_VER && !defined WIN32 |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1740 /* Microsoft C 16-bit versions limit malloc to approx 65512 bytes. */ |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1741 # define MAX_BUF_SIZE 65500L |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1742 #else |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1743 # define MAX_BUF_SIZE (1L << 16) |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1744 #endif |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1745 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1746 /* Extend the buffer by twice its current size via realloc and |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1747 reset the pointers that pointed into the old block to point to the |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1748 correct places in the new one. If extending the buffer results in it |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1749 being larger than MAX_BUF_SIZE, then flag memory exhausted. */ |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1750 #if __BOUNDED_POINTERS__ |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1751 # define SET_HIGH_BOUND(P) (__ptrhigh (P) = __ptrlow (P) + bufp->allocated) |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1752 # define MOVE_BUFFER_POINTER(P) \ |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1753 (__ptrlow (P) += incr, SET_HIGH_BOUND (P), __ptrvalue (P) += incr) |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1754 # define ELSE_EXTEND_BUFFER_HIGH_BOUND \ |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1755 else \ |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1756 { \ |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1757 SET_HIGH_BOUND (b); \ |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1758 SET_HIGH_BOUND (begalt); \ |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1759 if (fixup_alt_jump) \ |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1760 SET_HIGH_BOUND (fixup_alt_jump); \ |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1761 if (laststart) \ |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1762 SET_HIGH_BOUND (laststart); \ |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1763 if (pending_exact) \ |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1764 SET_HIGH_BOUND (pending_exact); \ |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1765 } |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1766 #else |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1767 # define MOVE_BUFFER_POINTER(P) (P) += incr |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1768 # define ELSE_EXTEND_BUFFER_HIGH_BOUND |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1769 #endif |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1770 #define EXTEND_BUFFER() \ |
18262 | 1771 do { \ |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
1772 re_char *old_buffer = bufp->buffer; \ |
18262 | 1773 if (bufp->allocated == MAX_BUF_SIZE) \ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1774 return REG_ESIZE; \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1775 bufp->allocated <<= 1; \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1776 if (bufp->allocated > MAX_BUF_SIZE) \ |
18262 | 1777 bufp->allocated = MAX_BUF_SIZE; \ |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
1778 RETALLOC (bufp->buffer, bufp->allocated, unsigned char); \ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1779 if (bufp->buffer == NULL) \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1780 return REG_ESPACE; \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1781 /* If the buffer moved, move all the pointers into it. */ \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1782 if (old_buffer != bufp->buffer) \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1783 { \ |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1784 int incr = bufp->buffer - old_buffer; \ |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1785 MOVE_BUFFER_POINTER (b); \ |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1786 MOVE_BUFFER_POINTER (begalt); \ |
18262 | 1787 if (fixup_alt_jump) \ |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1788 MOVE_BUFFER_POINTER (fixup_alt_jump); \ |
18262 | 1789 if (laststart) \ |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1790 MOVE_BUFFER_POINTER (laststart); \ |
18262 | 1791 if (pending_exact) \ |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1792 MOVE_BUFFER_POINTER (pending_exact); \ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1793 } \ |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1794 ELSE_EXTEND_BUFFER_HIGH_BOUND \ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1795 } while (0) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1796 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1797 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1798 /* Since we have one byte reserved for the register number argument to |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1799 {start,stop}_memory, the maximum number of groups we can report |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1800 things about is what fits in that byte. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1801 #define MAX_REGNUM 255 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1802 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1803 /* But patterns can have more than `MAX_REGNUM' registers. We just |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1804 ignore the excess. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1805 typedef unsigned regnum_t; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1806 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1807 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1808 /* Macros for the compile stack. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1809 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1810 /* Since offsets can go either forwards or backwards, this type needs to |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1811 be able to hold values from -(MAX_BUF_SIZE - 1) to MAX_BUF_SIZE - 1. */ |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1812 /* int may be not enough when sizeof(int) == 2. */ |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1813 typedef long pattern_offset_t; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1814 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1815 typedef struct |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1816 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1817 pattern_offset_t begalt_offset; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1818 pattern_offset_t fixup_alt_jump; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1819 pattern_offset_t laststart_offset; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1820 regnum_t regnum; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1821 } compile_stack_elt_t; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1822 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1823 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1824 typedef struct |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1825 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1826 compile_stack_elt_t *stack; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1827 unsigned size; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1828 unsigned avail; /* Offset of next open position. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1829 } compile_stack_type; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1830 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1831 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1832 #define INIT_COMPILE_STACK_SIZE 32 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1833 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1834 #define COMPILE_STACK_EMPTY (compile_stack.avail == 0) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1835 #define COMPILE_STACK_FULL (compile_stack.avail == compile_stack.size) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1836 |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1837 /* The next available element. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1838 #define COMPILE_STACK_TOP (compile_stack.stack[compile_stack.avail]) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1839 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1840 |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1841 /* Structure to manage work area for range table. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1842 struct range_table_work_area |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1843 { |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1844 int *table; /* actual work area. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1845 int allocated; /* allocated size for work area in bytes. */ |
18262 | 1846 int used; /* actually used size in words. */ |
25440
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
1847 int bits; /* flag to record character classes */ |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1848 }; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1849 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1850 /* Make sure that WORK_AREA can hold more N multibyte characters. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1851 #define EXTEND_RANGE_TABLE_WORK_AREA(work_area, n) \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1852 do { \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1853 if (((work_area).used + (n)) * sizeof (int) > (work_area).allocated) \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1854 { \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1855 (work_area).allocated += 16 * sizeof (int); \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1856 if ((work_area).table) \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1857 (work_area).table \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1858 = (int *) realloc ((work_area).table, (work_area).allocated); \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1859 else \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1860 (work_area).table \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1861 = (int *) malloc ((work_area).allocated); \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1862 if ((work_area).table == 0) \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1863 FREE_STACK_RETURN (REG_ESPACE); \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1864 } \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1865 } while (0) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1866 |
25440
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
1867 #define SET_RANGE_TABLE_WORK_AREA_BIT(work_area, bit) \ |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
1868 (work_area).bits |= (bit) |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
1869 |
31360
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1870 /* Bits used to implement the multibyte-part of the various character classes |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1871 such as [:alnum:] in a charset's range table. */ |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1872 #define BIT_WORD 0x1 |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1873 #define BIT_LOWER 0x2 |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1874 #define BIT_PUNCT 0x4 |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1875 #define BIT_SPACE 0x8 |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1876 #define BIT_UPPER 0x10 |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1877 #define BIT_MULTIBYTE 0x20 |
25440
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
1878 |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1879 /* Set a range (RANGE_START, RANGE_END) to WORK_AREA. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1880 #define SET_RANGE_TABLE_WORK_AREA(work_area, range_start, range_end) \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1881 do { \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1882 EXTEND_RANGE_TABLE_WORK_AREA ((work_area), 2); \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1883 (work_area).table[(work_area).used++] = (range_start); \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1884 (work_area).table[(work_area).used++] = (range_end); \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1885 } while (0) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1886 |
18262 | 1887 /* Free allocated memory for WORK_AREA. */ |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1888 #define FREE_RANGE_TABLE_WORK_AREA(work_area) \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1889 do { \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1890 if ((work_area).table) \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1891 free ((work_area).table); \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1892 } while (0) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1893 |
25440
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
1894 #define CLEAR_RANGE_TABLE_WORK_USED(work_area) ((work_area).used = 0, (work_area).bits = 0) |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1895 #define RANGE_TABLE_WORK_USED(work_area) ((work_area).used) |
25440
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
1896 #define RANGE_TABLE_WORK_BITS(work_area) ((work_area).bits) |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1897 #define RANGE_TABLE_WORK_ELT(work_area, i) ((work_area).table[i]) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1898 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1899 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1900 /* Set the bit for character C in a list. */ |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
1901 #define SET_LIST_BIT(c) (b[((c)) / BYTEWIDTH] |= 1 << ((c) % BYTEWIDTH)) |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1902 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1903 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1904 /* Get the next unsigned number in the uncompiled pattern. */ |
18262 | 1905 #define GET_UNSIGNED_NUMBER(num) \ |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
1906 do { if (p != pend) \ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1907 { \ |
18262 | 1908 PATFETCH (c); \ |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1909 while ('0' <= c && c <= '9') \ |
18262 | 1910 { \ |
1911 if (num < 0) \ | |
1912 num = 0; \ | |
1913 num = num * 10 + c - '0'; \ | |
1914 if (p == pend) \ | |
1915 break; \ | |
1916 PATFETCH (c); \ | |
1917 } \ | |
1918 } \ | |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
1919 } while (0) |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1920 |
32499
3a5e6f70d313
(WIDE_CHAR_SUPPORT): Define if _LIBC as well.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31729
diff
changeset
|
1921 #if WIDE_CHAR_SUPPORT |
31360
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1922 /* The GNU C library provides support for user-defined character classes |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1923 and the functions from ISO C amendement 1. */ |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1924 # ifdef CHARCLASS_NAME_MAX |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1925 # define CHAR_CLASS_MAX_LENGTH CHARCLASS_NAME_MAX |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1926 # else |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1927 /* This shouldn't happen but some implementation might still have this |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1928 problem. Use a reasonable default value. */ |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1929 # define CHAR_CLASS_MAX_LENGTH 256 |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1930 # endif |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1931 typedef wctype_t re_wctype_t; |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
1932 typedef wchar_t re_wchar_t; |
31360
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1933 # define re_wctype wctype |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1934 # define re_iswctype iswctype |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1935 # define re_wctype_to_bit(cc) 0 |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1936 #else |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1937 # define CHAR_CLASS_MAX_LENGTH 9 /* Namely, `multibyte'. */ |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1938 # define btowc(c) c |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1939 |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
1940 /* Character classes. */ |
31360
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1941 typedef enum { RECC_ERROR = 0, |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1942 RECC_ALNUM, RECC_ALPHA, RECC_WORD, |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1943 RECC_GRAPH, RECC_PRINT, |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1944 RECC_LOWER, RECC_UPPER, |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1945 RECC_PUNCT, RECC_CNTRL, |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1946 RECC_DIGIT, RECC_XDIGIT, |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1947 RECC_BLANK, RECC_SPACE, |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1948 RECC_MULTIBYTE, RECC_NONASCII, |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1949 RECC_ASCII, RECC_UNIBYTE |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1950 } re_wctype_t; |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1951 |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
1952 typedef int re_wchar_t; |
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
1953 |
31360
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1954 /* Map a string to the char class it names (if any). */ |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1955 static re_wctype_t |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1956 re_wctype (string) |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
1957 re_char *string; |
31360
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1958 { |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1959 if (STREQ (string, "alnum")) return RECC_ALNUM; |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1960 else if (STREQ (string, "alpha")) return RECC_ALPHA; |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1961 else if (STREQ (string, "word")) return RECC_WORD; |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1962 else if (STREQ (string, "ascii")) return RECC_ASCII; |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1963 else if (STREQ (string, "nonascii")) return RECC_NONASCII; |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1964 else if (STREQ (string, "graph")) return RECC_GRAPH; |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1965 else if (STREQ (string, "lower")) return RECC_LOWER; |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1966 else if (STREQ (string, "print")) return RECC_PRINT; |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1967 else if (STREQ (string, "punct")) return RECC_PUNCT; |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1968 else if (STREQ (string, "space")) return RECC_SPACE; |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1969 else if (STREQ (string, "upper")) return RECC_UPPER; |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1970 else if (STREQ (string, "unibyte")) return RECC_UNIBYTE; |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1971 else if (STREQ (string, "multibyte")) return RECC_MULTIBYTE; |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1972 else if (STREQ (string, "digit")) return RECC_DIGIT; |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1973 else if (STREQ (string, "xdigit")) return RECC_XDIGIT; |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1974 else if (STREQ (string, "cntrl")) return RECC_CNTRL; |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1975 else if (STREQ (string, "blank")) return RECC_BLANK; |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1976 else return 0; |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1977 } |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1978 |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1979 /* True iff CH is in the char class CC. */ |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1980 static boolean |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1981 re_iswctype (ch, cc) |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1982 int ch; |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1983 re_wctype_t cc; |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1984 { |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1985 switch (cc) |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1986 { |
33066
c782e22760e0
(re_iswctype, re_wctype_to_bit): Fix braino.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32954
diff
changeset
|
1987 case RECC_ALNUM: return ISALNUM (ch); |
c782e22760e0
(re_iswctype, re_wctype_to_bit): Fix braino.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32954
diff
changeset
|
1988 case RECC_ALPHA: return ISALPHA (ch); |
c782e22760e0
(re_iswctype, re_wctype_to_bit): Fix braino.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32954
diff
changeset
|
1989 case RECC_BLANK: return ISBLANK (ch); |
c782e22760e0
(re_iswctype, re_wctype_to_bit): Fix braino.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32954
diff
changeset
|
1990 case RECC_CNTRL: return ISCNTRL (ch); |
c782e22760e0
(re_iswctype, re_wctype_to_bit): Fix braino.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32954
diff
changeset
|
1991 case RECC_DIGIT: return ISDIGIT (ch); |
c782e22760e0
(re_iswctype, re_wctype_to_bit): Fix braino.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32954
diff
changeset
|
1992 case RECC_GRAPH: return ISGRAPH (ch); |
c782e22760e0
(re_iswctype, re_wctype_to_bit): Fix braino.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32954
diff
changeset
|
1993 case RECC_LOWER: return ISLOWER (ch); |
c782e22760e0
(re_iswctype, re_wctype_to_bit): Fix braino.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32954
diff
changeset
|
1994 case RECC_PRINT: return ISPRINT (ch); |
c782e22760e0
(re_iswctype, re_wctype_to_bit): Fix braino.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32954
diff
changeset
|
1995 case RECC_PUNCT: return ISPUNCT (ch); |
c782e22760e0
(re_iswctype, re_wctype_to_bit): Fix braino.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32954
diff
changeset
|
1996 case RECC_SPACE: return ISSPACE (ch); |
c782e22760e0
(re_iswctype, re_wctype_to_bit): Fix braino.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32954
diff
changeset
|
1997 case RECC_UPPER: return ISUPPER (ch); |
c782e22760e0
(re_iswctype, re_wctype_to_bit): Fix braino.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32954
diff
changeset
|
1998 case RECC_XDIGIT: return ISXDIGIT (ch); |
c782e22760e0
(re_iswctype, re_wctype_to_bit): Fix braino.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32954
diff
changeset
|
1999 case RECC_ASCII: return IS_REAL_ASCII (ch); |
c782e22760e0
(re_iswctype, re_wctype_to_bit): Fix braino.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32954
diff
changeset
|
2000 case RECC_NONASCII: return !IS_REAL_ASCII (ch); |
c782e22760e0
(re_iswctype, re_wctype_to_bit): Fix braino.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32954
diff
changeset
|
2001 case RECC_UNIBYTE: return ISUNIBYTE (ch); |
c782e22760e0
(re_iswctype, re_wctype_to_bit): Fix braino.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32954
diff
changeset
|
2002 case RECC_MULTIBYTE: return !ISUNIBYTE (ch); |
c782e22760e0
(re_iswctype, re_wctype_to_bit): Fix braino.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32954
diff
changeset
|
2003 case RECC_WORD: return ISWORD (ch); |
c782e22760e0
(re_iswctype, re_wctype_to_bit): Fix braino.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32954
diff
changeset
|
2004 case RECC_ERROR: return false; |
c782e22760e0
(re_iswctype, re_wctype_to_bit): Fix braino.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32954
diff
changeset
|
2005 default: |
c782e22760e0
(re_iswctype, re_wctype_to_bit): Fix braino.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32954
diff
changeset
|
2006 abort(); |
31360
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2007 } |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2008 } |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2009 |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2010 /* Return a bit-pattern to use in the range-table bits to match multibyte |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2011 chars of class CC. */ |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2012 static int |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2013 re_wctype_to_bit (cc) |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2014 re_wctype_t cc; |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2015 { |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2016 switch (cc) |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2017 { |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2018 case RECC_NONASCII: case RECC_PRINT: case RECC_GRAPH: |
33066
c782e22760e0
(re_iswctype, re_wctype_to_bit): Fix braino.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32954
diff
changeset
|
2019 case RECC_MULTIBYTE: return BIT_MULTIBYTE; |
c782e22760e0
(re_iswctype, re_wctype_to_bit): Fix braino.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32954
diff
changeset
|
2020 case RECC_ALPHA: case RECC_ALNUM: case RECC_WORD: return BIT_WORD; |
c782e22760e0
(re_iswctype, re_wctype_to_bit): Fix braino.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32954
diff
changeset
|
2021 case RECC_LOWER: return BIT_LOWER; |
c782e22760e0
(re_iswctype, re_wctype_to_bit): Fix braino.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32954
diff
changeset
|
2022 case RECC_UPPER: return BIT_UPPER; |
c782e22760e0
(re_iswctype, re_wctype_to_bit): Fix braino.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32954
diff
changeset
|
2023 case RECC_PUNCT: return BIT_PUNCT; |
c782e22760e0
(re_iswctype, re_wctype_to_bit): Fix braino.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32954
diff
changeset
|
2024 case RECC_SPACE: return BIT_SPACE; |
31360
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2025 case RECC_ASCII: case RECC_DIGIT: case RECC_XDIGIT: case RECC_CNTRL: |
33066
c782e22760e0
(re_iswctype, re_wctype_to_bit): Fix braino.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32954
diff
changeset
|
2026 case RECC_BLANK: case RECC_UNIBYTE: case RECC_ERROR: return 0; |
c782e22760e0
(re_iswctype, re_wctype_to_bit): Fix braino.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32954
diff
changeset
|
2027 default: |
c782e22760e0
(re_iswctype, re_wctype_to_bit): Fix braino.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32954
diff
changeset
|
2028 abort(); |
31360
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2029 } |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2030 } |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2031 #endif |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2032 |
32823
2a7f61d7ae12
(IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
Andrew Innes <andrewi@gnu.org>
parents:
32805
diff
changeset
|
2033 /* Explicit quit checking is only used on NTemacs. */ |
2a7f61d7ae12
(IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
Andrew Innes <andrewi@gnu.org>
parents:
32805
diff
changeset
|
2034 #if defined WINDOWSNT && defined emacs && defined QUIT |
2a7f61d7ae12
(IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
Andrew Innes <andrewi@gnu.org>
parents:
32805
diff
changeset
|
2035 extern int immediate_quit; |
2a7f61d7ae12
(IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
Andrew Innes <andrewi@gnu.org>
parents:
32805
diff
changeset
|
2036 # define IMMEDIATE_QUIT_CHECK \ |
2a7f61d7ae12
(IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
Andrew Innes <andrewi@gnu.org>
parents:
32805
diff
changeset
|
2037 do { \ |
2a7f61d7ae12
(IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
Andrew Innes <andrewi@gnu.org>
parents:
32805
diff
changeset
|
2038 if (immediate_quit) QUIT; \ |
2a7f61d7ae12
(IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
Andrew Innes <andrewi@gnu.org>
parents:
32805
diff
changeset
|
2039 } while (0) |
2a7f61d7ae12
(IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
Andrew Innes <andrewi@gnu.org>
parents:
32805
diff
changeset
|
2040 #else |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
2041 # define IMMEDIATE_QUIT_CHECK ((void)0) |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2042 #endif |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2043 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2044 #ifndef MATCH_MAY_ALLOCATE |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2045 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2046 /* If we cannot allocate large objects within re_match_2_internal, |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2047 we make the fail stack and register vectors global. |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2048 The fail stack, we grow to the maximum size when a regexp |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2049 is compiled. |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2050 The register vectors, we adjust in size each time we |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2051 compile a regexp, according to the number of registers it needs. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2052 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2053 static fail_stack_type fail_stack; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2054 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2055 /* Size with which the following vectors are currently allocated. |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2056 That is so we can make them bigger as needed, |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
2057 but never make them smaller. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2058 static int regs_allocated_size; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2059 |
28138
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28062
diff
changeset
|
2060 static re_char ** regstart, ** regend; |
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28062
diff
changeset
|
2061 static re_char **best_regstart, **best_regend; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2062 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2063 /* Make the register vectors big enough for NUM_REGS registers, |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
2064 but don't make them smaller. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2065 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2066 static |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2067 regex_grow_registers (num_regs) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2068 int num_regs; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2069 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2070 if (num_regs > regs_allocated_size) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2071 { |
28138
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28062
diff
changeset
|
2072 RETALLOC_IF (regstart, num_regs, re_char *); |
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28062
diff
changeset
|
2073 RETALLOC_IF (regend, num_regs, re_char *); |
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28062
diff
changeset
|
2074 RETALLOC_IF (best_regstart, num_regs, re_char *); |
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28062
diff
changeset
|
2075 RETALLOC_IF (best_regend, num_regs, re_char *); |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2076 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2077 regs_allocated_size = num_regs; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2078 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2079 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2080 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2081 #endif /* not MATCH_MAY_ALLOCATE */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2082 |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2083 static boolean group_in_compile_stack _RE_ARGS ((compile_stack_type |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2084 compile_stack, |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2085 regnum_t regnum)); |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2086 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2087 /* `regex_compile' compiles PATTERN (of length SIZE) according to SYNTAX. |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2088 Returns one of error codes defined in `regex.h', or zero for success. |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2089 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2090 Assumes the `allocated' (and perhaps `buffer') and `translate' |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2091 fields are set in BUFP on entry. |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2092 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2093 If it succeeds, results are put in BUFP (if it returns an error, the |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2094 contents of BUFP are undefined): |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2095 `buffer' is the compiled pattern; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2096 `syntax' is set to SYNTAX; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2097 `used' is set to the length of the compiled pattern; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2098 `fastmap_accurate' is zero; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2099 `re_nsub' is the number of subexpressions in PATTERN; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2100 `not_bol' and `not_eol' are zero; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
2101 |
31312
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
2102 The `fastmap' field is neither examined nor set. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2103 |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2104 /* Insert the `jump' from the end of last alternative to "here". |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2105 The space for the jump has already been allocated. */ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2106 #define FIXUP_ALT_JUMP() \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2107 do { \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2108 if (fixup_alt_jump) \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2109 STORE_JUMP (jump, fixup_alt_jump, b); \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2110 } while (0) |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2111 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2112 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2113 /* Return, freeing storage we allocated. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2114 #define FREE_STACK_RETURN(value) \ |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2115 do { \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2116 FREE_RANGE_TABLE_WORK_AREA (range_table_work); \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2117 free (compile_stack.stack); \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2118 return value; \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2119 } while (0) |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2120 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2121 static reg_errcode_t |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2122 regex_compile (pattern, size, syntax, bufp) |
28138
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28062
diff
changeset
|
2123 re_char *pattern; |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
2124 size_t size; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2125 reg_syntax_t syntax; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2126 struct re_pattern_buffer *bufp; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2127 { |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
2128 /* We fetch characters from PATTERN here. */ |
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
2129 register re_wchar_t c, c1; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
2130 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2131 /* A random temporary spot in PATTERN. */ |
28138
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28062
diff
changeset
|
2132 re_char *p1; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2133 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2134 /* Points to the end of the buffer, where we should append. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2135 register unsigned char *b; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
2136 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2137 /* Keeps track of unclosed groups. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2138 compile_stack_type compile_stack; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2139 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2140 /* Points to the current (ending) position in the pattern. */ |
22821
dc8ce74d8633
(regex_compile): Declare p with non-const type on AIX.
Richard M. Stallman <rms@gnu.org>
parents:
22411
diff
changeset
|
2141 #ifdef AIX |
dc8ce74d8633
(regex_compile): Declare p with non-const type on AIX.
Richard M. Stallman <rms@gnu.org>
parents:
22411
diff
changeset
|
2142 /* `const' makes AIX compiler fail. */ |
28138
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28062
diff
changeset
|
2143 unsigned char *p = pattern; |
22821
dc8ce74d8633
(regex_compile): Declare p with non-const type on AIX.
Richard M. Stallman <rms@gnu.org>
parents:
22411
diff
changeset
|
2144 #else |
28138
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28062
diff
changeset
|
2145 re_char *p = pattern; |
22821
dc8ce74d8633
(regex_compile): Declare p with non-const type on AIX.
Richard M. Stallman <rms@gnu.org>
parents:
22411
diff
changeset
|
2146 #endif |
28138
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28062
diff
changeset
|
2147 re_char *pend = pattern + size; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
2148 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2149 /* How to translate the characters in the pattern. */ |
13250
52e053f46f76
(TRANSLATE, PATFETCH): Cast elt of `translate'.
Richard M. Stallman <rms@gnu.org>
parents:
13100
diff
changeset
|
2150 RE_TRANSLATE_TYPE translate = bufp->translate; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2151 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2152 /* Address of the count-byte of the most recently inserted `exactn' |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2153 command. This makes it possible to tell if a new exact-match |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2154 character can be added to that command or if the character requires |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2155 a new `exactn' command. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2156 unsigned char *pending_exact = 0; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2157 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2158 /* Address of start of the most recently finished expression. |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2159 This tells, e.g., postfix * where to find the start of its |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2160 operand. Reset at the beginning of groups and alternatives. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2161 unsigned char *laststart = 0; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2162 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2163 /* Address of beginning of regexp, or inside of last group. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2164 unsigned char *begalt; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2165 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2166 /* Place in the uncompiled pattern (i.e., the {) to |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2167 which to go back if the interval is invalid. */ |
28138
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28062
diff
changeset
|
2168 re_char *beg_interval; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
2169 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2170 /* Address of the place where a forward jump should go to the end of |
18262 | 2171 the containing expression. Each alternative of an `or' -- except the |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2172 last -- ends with a forward jump of this sort. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2173 unsigned char *fixup_alt_jump = 0; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2174 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2175 /* Counts open-groups as they are encountered. Remembered for the |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2176 matching close-group on the compile stack, so the same register |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2177 number is put in the stop_memory as the start_memory. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2178 regnum_t regnum = 0; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2179 |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2180 /* Work area for range table of charset. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2181 struct range_table_work_area range_table_work; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2182 |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
2183 /* If the object matched can contain multibyte characters. */ |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
2184 const boolean multibyte = RE_MULTIBYTE_P (bufp); |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
2185 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2186 #ifdef DEBUG |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2187 debug++; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2188 DEBUG_PRINT1 ("\nCompiling pattern: "); |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2189 if (debug > 0) |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2190 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2191 unsigned debug_count; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
2192 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2193 for (debug_count = 0; debug_count < size; debug_count++) |
18262 | 2194 putchar (pattern[debug_count]); |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2195 putchar ('\n'); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2196 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2197 #endif /* DEBUG */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2198 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2199 /* Initialize the compile stack. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2200 compile_stack.stack = TALLOC (INIT_COMPILE_STACK_SIZE, compile_stack_elt_t); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2201 if (compile_stack.stack == NULL) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2202 return REG_ESPACE; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2203 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2204 compile_stack.size = INIT_COMPILE_STACK_SIZE; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2205 compile_stack.avail = 0; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2206 |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2207 range_table_work.table = 0; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2208 range_table_work.allocated = 0; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2209 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2210 /* Initialize the pattern buffer. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2211 bufp->syntax = syntax; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2212 bufp->fastmap_accurate = 0; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2213 bufp->not_bol = bufp->not_eol = 0; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2214 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2215 /* Set `used' to zero, so that if we return an error, the pattern |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2216 printer (for debugging) will think there's no pattern. We reset it |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2217 at the end. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2218 bufp->used = 0; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
2219 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2220 /* Always count groups, whether or not bufp->no_sub is set. */ |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
2221 bufp->re_nsub = 0; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2222 |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
2223 #if !defined emacs && !defined SYNTAX_TABLE |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2224 /* Initialize the syntax table. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2225 init_syntax_once (); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2226 #endif |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2227 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2228 if (bufp->allocated == 0) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2229 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2230 if (bufp->buffer) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2231 { /* If zero allocated, but buffer is non-null, try to realloc |
18262 | 2232 enough space. This loses if buffer's address is bogus, but |
2233 that is the user's responsibility. */ | |
2234 RETALLOC (bufp->buffer, INIT_BUF_SIZE, unsigned char); | |
2235 } | |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2236 else |
18262 | 2237 { /* Caller did not allocate a buffer. Do it for them. */ |
2238 bufp->buffer = TALLOC (INIT_BUF_SIZE, unsigned char); | |
2239 } | |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2240 if (!bufp->buffer) FREE_STACK_RETURN (REG_ESPACE); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2241 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2242 bufp->allocated = INIT_BUF_SIZE; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2243 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2244 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2245 begalt = b = bufp->buffer; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2246 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2247 /* Loop through the uncompiled pattern until we're at the end. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2248 while (p != pend) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2249 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2250 PATFETCH (c); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2251 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2252 switch (c) |
18262 | 2253 { |
2254 case '^': | |
2255 { | |
2256 if ( /* If at start of pattern, it's an operator. */ | |
2257 p == pattern + 1 | |
2258 /* If context independent, it's an operator. */ | |
2259 || syntax & RE_CONTEXT_INDEP_ANCHORS | |
2260 /* Otherwise, depends on what's come before. */ | |
2261 || at_begline_loc_p (pattern, p, syntax)) | |
31312
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
2262 BUF_PUSH ((syntax & RE_NO_NEWLINE_ANCHOR) ? begbuf : begline); |
18262 | 2263 else |
2264 goto normal_char; | |
2265 } | |
2266 break; | |
2267 | |
2268 | |
2269 case '$': | |
2270 { | |
2271 if ( /* If at end of pattern, it's an operator. */ | |
2272 p == pend | |
2273 /* If context independent, it's an operator. */ | |
2274 || syntax & RE_CONTEXT_INDEP_ANCHORS | |
2275 /* Otherwise, depends on what's next. */ | |
2276 || at_endline_loc_p (p, pend, syntax)) | |
31312
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
2277 BUF_PUSH ((syntax & RE_NO_NEWLINE_ANCHOR) ? endbuf : endline); |
18262 | 2278 else |
2279 goto normal_char; | |
2280 } | |
2281 break; | |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2282 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2283 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2284 case '+': |
18262 | 2285 case '?': |
2286 if ((syntax & RE_BK_PLUS_QM) | |
2287 || (syntax & RE_LIMITED_OPS)) | |
2288 goto normal_char; | |
2289 handle_plus: | |
2290 case '*': | |
2291 /* If there is no previous pattern... */ | |
2292 if (!laststart) | |
2293 { | |
2294 if (syntax & RE_CONTEXT_INVALID_OPS) | |
2295 FREE_STACK_RETURN (REG_BADRPT); | |
2296 else if (!(syntax & RE_CONTEXT_INDEP_OPS)) | |
2297 goto normal_char; | |
2298 } | |
2299 | |
2300 { | |
2301 /* 1 means zero (many) matches is allowed. */ | |
28138
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28062
diff
changeset
|
2302 boolean zero_times_ok = 0, many_times_ok = 0; |
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28062
diff
changeset
|
2303 boolean greedy = 1; |
18262 | 2304 |
2305 /* If there is a sequence of repetition chars, collapse it | |
2306 down to just one (the right one). We can't combine | |
2307 interval operators with these because of, e.g., `a{2}*', | |
2308 which should only match an even number of `a's. */ | |
2309 | |
2310 for (;;) | |
2311 { | |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
2312 if ((syntax & RE_FRUGAL) |
26906
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2313 && c == '?' && (zero_times_ok || many_times_ok)) |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2314 greedy = 0; |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2315 else |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2316 { |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2317 zero_times_ok |= c != '+'; |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2318 many_times_ok |= c != '?'; |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2319 } |
18262 | 2320 |
2321 if (p == pend) | |
2322 break; | |
28372
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2323 else if (*p == '*' |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2324 || (!(syntax & RE_BK_PLUS_QM) |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2325 && (*p == '+' || *p == '?'))) |
18262 | 2326 ; |
28372
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2327 else if (syntax & RE_BK_PLUS_QM && *p == '\\') |
18262 | 2328 { |
28372
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2329 if (p+1 == pend) |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2330 FREE_STACK_RETURN (REG_EESCAPE); |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2331 if (p[1] == '+' || p[1] == '?') |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2332 PATFETCH (c); /* Gobble up the backslash. */ |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2333 else |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2334 break; |
18262 | 2335 } |
2336 else | |
28372
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2337 break; |
18262 | 2338 /* If we get here, we found another repeat character. */ |
28372
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2339 PATFETCH (c); |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2340 } |
18262 | 2341 |
2342 /* Star, etc. applied to an empty pattern is equivalent | |
2343 to an empty pattern. */ | |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2344 if (!laststart || laststart == b) |
18262 | 2345 break; |
2346 | |
2347 /* Now we know whether or not zero matches is allowed | |
2348 and also whether or not two or more matches is allowed. */ | |
26906
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2349 if (greedy) |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2350 { |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2351 if (many_times_ok) |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2352 { |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2353 boolean simple = skip_one_char (laststart) == b; |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2354 unsigned int startoffset = 0; |
28380
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
2355 re_opcode_t ofj = |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
2356 /* Check if the loop can match the empty string. */ |
28380
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
2357 (simple || !analyse_first (laststart, b, NULL, 0)) ? |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
2358 on_failure_jump : on_failure_jump_loop; |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2359 assert (skip_one_char (laststart) <= b); |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2360 |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2361 if (!zero_times_ok && simple) |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2362 { /* Since simple * loops can be made faster by using |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2363 on_failure_keep_string_jump, we turn simple P+ |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2364 into PP* if P is simple. */ |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2365 unsigned char *p1, *p2; |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2366 startoffset = b - laststart; |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2367 GET_BUFFER_SPACE (startoffset); |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2368 p1 = b; p2 = laststart; |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2369 while (p2 < p1) |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2370 *b++ = *p2++; |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2371 zero_times_ok = 1; |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2372 } |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2373 |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2374 GET_BUFFER_SPACE (6); |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2375 if (!zero_times_ok) |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2376 /* A + loop. */ |
28380
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
2377 STORE_JUMP (ofj, b, b + 6); |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2378 else |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2379 /* Simple * loops can use on_failure_keep_string_jump |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2380 depending on what follows. But since we don't know |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2381 that yet, we leave the decision up to |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2382 on_failure_jump_smart. */ |
28380
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
2383 INSERT_JUMP (simple ? on_failure_jump_smart : ofj, |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2384 laststart + startoffset, b + 6); |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2385 b += 3; |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2386 STORE_JUMP (jump, b, laststart + startoffset); |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2387 b += 3; |
18262 | 2388 } |
2389 else | |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2390 { |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2391 /* A simple ? pattern. */ |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2392 assert (zero_times_ok); |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2393 GET_BUFFER_SPACE (3); |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2394 INSERT_JUMP (on_failure_jump, laststart, b + 3); |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2395 b += 3; |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2396 } |
26906
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2397 } |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2398 else /* not greedy */ |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2399 { /* I wish the greedy and non-greedy cases could be merged. */ |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2400 |
28342
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
2401 GET_BUFFER_SPACE (7); /* We might use less. */ |
26906
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2402 if (many_times_ok) |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2403 { |
28380
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
2404 boolean emptyp = analyse_first (laststart, b, NULL, 0); |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
2405 |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2406 /* The non-greedy multiple match looks like a repeat..until: |
26906
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2407 we only need a conditional jump at the end of the loop */ |
28380
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
2408 if (emptyp) BUF_PUSH (no_op); |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
2409 STORE_JUMP (emptyp ? on_failure_jump_nastyloop |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
2410 : on_failure_jump, b, laststart); |
26906
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2411 b += 3; |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2412 if (zero_times_ok) |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2413 { |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2414 /* The repeat...until naturally matches one or more. |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2415 To also match zero times, we need to first jump to |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2416 the end of the loop (its conditional jump). */ |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2417 INSERT_JUMP (jump, laststart, b); |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2418 b += 3; |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2419 } |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2420 } |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2421 else |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2422 { |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2423 /* non-greedy a?? */ |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2424 INSERT_JUMP (jump, laststart, b + 3); |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2425 b += 3; |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2426 INSERT_JUMP (on_failure_jump, laststart, laststart + 6); |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2427 b += 3; |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2428 } |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2429 } |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2430 } |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2431 pending_exact = 0; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2432 break; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2433 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2434 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2435 case '.': |
18262 | 2436 laststart = b; |
2437 BUF_PUSH (anychar); | |
2438 break; | |
2439 | |
2440 | |
2441 case '[': | |
2442 { | |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2443 CLEAR_RANGE_TABLE_WORK_USED (range_table_work); |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2444 |
18262 | 2445 if (p == pend) FREE_STACK_RETURN (REG_EBRACK); |
2446 | |
2447 /* Ensure that we have enough space to push a charset: the | |
2448 opcode, the length count, and the bitset; 34 bytes in all. */ | |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2449 GET_BUFFER_SPACE (34); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2450 |
18262 | 2451 laststart = b; |
2452 | |
2453 /* We test `*p == '^' twice, instead of using an if | |
2454 statement, so we only need one BUF_PUSH. */ | |
2455 BUF_PUSH (*p == '^' ? charset_not : charset); | |
2456 if (*p == '^') | |
2457 p++; | |
2458 | |
2459 /* Remember the first position in the bracket expression. */ | |
2460 p1 = p; | |
2461 | |
2462 /* Push the number of bytes in the bitmap. */ | |
2463 BUF_PUSH ((1 << BYTEWIDTH) / BYTEWIDTH); | |
2464 | |
2465 /* Clear the whole map. */ | |
2466 bzero (b, (1 << BYTEWIDTH) / BYTEWIDTH); | |
2467 | |
2468 /* charset_not matches newline according to a syntax bit. */ | |
2469 if ((re_opcode_t) b[-2] == charset_not | |
2470 && (syntax & RE_HAT_LISTS_NOT_NEWLINE)) | |
2471 SET_LIST_BIT ('\n'); | |
2472 | |
2473 /* Read in characters and ranges, setting map bits. */ | |
2474 for (;;) | |
2475 { | |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2476 boolean escaped_char = false; |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
2477 const unsigned char *p2 = p; |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2478 |
18262 | 2479 if (p == pend) FREE_STACK_RETURN (REG_EBRACK); |
2480 | |
2481 PATFETCH (c); | |
2482 | |
2483 /* \ might escape characters inside [...] and [^...]. */ | |
2484 if ((syntax & RE_BACKSLASH_ESCAPE_IN_LISTS) && c == '\\') | |
2485 { | |
2486 if (p == pend) FREE_STACK_RETURN (REG_EESCAPE); | |
16010 | 2487 |
2488 PATFETCH (c); | |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2489 escaped_char = true; |
18262 | 2490 } |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2491 else |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2492 { |
19184 | 2493 /* Could be the end of the bracket expression. If it's |
2494 not (i.e., when the bracket expression is `[]' so | |
2495 far), the ']' character bit gets set way below. */ | |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
2496 if (c == ']' && p2 != p1) |
19184 | 2497 break; |
18262 | 2498 } |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2499 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2500 /* What should we do for the character which is |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2501 greater than 0x7F, but not BASE_LEADING_CODE_P? |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2502 XXX */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2503 |
18262 | 2504 /* See if we're at the beginning of a possible character |
2505 class. */ | |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2506 |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
2507 if (!escaped_char && |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
2508 syntax & RE_CHAR_CLASSES && c == '[' && *p == ':') |
19184 | 2509 { |
2510 /* Leave room for the null. */ | |
31360
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2511 unsigned char str[CHAR_CLASS_MAX_LENGTH + 1]; |
28372
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2512 const unsigned char *class_beg; |
18262 | 2513 |
2514 PATFETCH (c); | |
2515 c1 = 0; | |
28372
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2516 class_beg = p; |
18262 | 2517 |
2518 /* If pattern is `[[:'. */ | |
2519 if (p == pend) FREE_STACK_RETURN (REG_EBRACK); | |
2520 | |
2521 for (;;) | |
2522 { | |
31360
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2523 PATFETCH (c); |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2524 if ((c == ':' && *p == ']') || p == pend) |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2525 break; |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2526 if (c1 < CHAR_CLASS_MAX_LENGTH) |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2527 str[c1++] = c; |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2528 else |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2529 /* This is in any case an invalid class name. */ |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2530 str[0] = '\0'; |
18262 | 2531 } |
2532 str[c1] = '\0'; | |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2533 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2534 /* If isn't a word bracketed by `[:' and `:]': |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2535 undo the ending character, the letters, and |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2536 leave the leading `:' and `[' (but set bits for |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2537 them). */ |
18262 | 2538 if (c == ':' && *p == ']') |
2539 { | |
2540 int ch; | |
31360
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2541 re_wctype_t cc; |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2542 |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2543 cc = re_wctype (str); |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2544 |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2545 if (cc == 0) |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2546 FREE_STACK_RETURN (REG_ECTYPE); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2547 |
31360
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2548 /* Throw away the ] at the end of the character |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2549 class. */ |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2550 PATFETCH (c); |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2551 |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2552 if (p == pend) FREE_STACK_RETURN (REG_EBRACK); |
18262 | 2553 |
25440
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
2554 /* Most character classes in a multibyte match |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
2555 just set a flag. Exceptions are is_blank, |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
2556 is_digit, is_cntrl, and is_xdigit, since |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
2557 they can only match ASCII characters. We |
31360
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2558 don't need to handle them for multibyte. |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2559 They are distinguished by a negative wctype. */ |
25440
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
2560 |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
2561 if (multibyte) |
31360
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2562 SET_RANGE_TABLE_WORK_AREA_BIT (range_table_work, |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2563 re_wctype_to_bit (cc)); |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2564 |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2565 for (ch = 0; ch < 1 << BYTEWIDTH; ++ch) |
18262 | 2566 { |
16239
c196d1ded35c
(regex_compile): Use TRANSLATE before calling SET_LIST_BIT.
Richard M. Stallman <rms@gnu.org>
parents:
16034
diff
changeset
|
2567 int translated = TRANSLATE (ch); |
31360
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2568 if (re_iswctype (btowc (ch), cc)) |
25440
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
2569 SET_LIST_BIT (translated); |
18262 | 2570 } |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2571 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2572 /* Repeat the loop. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2573 continue; |
18262 | 2574 } |
2575 else | |
2576 { | |
28372
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2577 /* Go back to right after the "[:". */ |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2578 p = class_beg; |
18262 | 2579 SET_LIST_BIT ('['); |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2580 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2581 /* Because the `:' may starts the range, we |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2582 can't simply set bit and repeat the loop. |
18262 | 2583 Instead, just set it to C and handle below. */ |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2584 c = ':'; |
18262 | 2585 } |
2586 } | |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2587 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2588 if (p < pend && p[0] == '-' && p[1] != ']') |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2589 { |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2590 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2591 /* Discard the `-'. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2592 PATFETCH (c1); |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2593 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2594 /* Fetch the character which ends the range. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2595 PATFETCH (c1); |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2596 |
29546
fbe764633971
(MAKE_CHAR) [!emacs]: Dummy macro for non-Emacs env.
Kenichi Handa <handa@m17n.org>
parents:
29296
diff
changeset
|
2597 if (SINGLE_BYTE_CHAR_P (c)) |
21348
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
2598 { |
29546
fbe764633971
(MAKE_CHAR) [!emacs]: Dummy macro for non-Emacs env.
Kenichi Handa <handa@m17n.org>
parents:
29296
diff
changeset
|
2599 if (! SINGLE_BYTE_CHAR_P (c1)) |
fbe764633971
(MAKE_CHAR) [!emacs]: Dummy macro for non-Emacs env.
Kenichi Handa <handa@m17n.org>
parents:
29296
diff
changeset
|
2600 { |
32804
45c2b9e0aa68
(regex_compile): Change the way of handling a range from a char less
Kenichi Handa <handa@m17n.org>
parents:
32565
diff
changeset
|
2601 /* Handle a range starting with a |
45c2b9e0aa68
(regex_compile): Change the way of handling a range from a char less
Kenichi Handa <handa@m17n.org>
parents:
32565
diff
changeset
|
2602 character of less than 256, and ending |
45c2b9e0aa68
(regex_compile): Change the way of handling a range from a char less
Kenichi Handa <handa@m17n.org>
parents:
32565
diff
changeset
|
2603 with a character of not less than 256. |
45c2b9e0aa68
(regex_compile): Change the way of handling a range from a char less
Kenichi Handa <handa@m17n.org>
parents:
32565
diff
changeset
|
2604 Split that into two ranges, the low one |
45c2b9e0aa68
(regex_compile): Change the way of handling a range from a char less
Kenichi Handa <handa@m17n.org>
parents:
32565
diff
changeset
|
2605 ending at 0377, and the high one |
45c2b9e0aa68
(regex_compile): Change the way of handling a range from a char less
Kenichi Handa <handa@m17n.org>
parents:
32565
diff
changeset
|
2606 starting at the smallest character in |
45c2b9e0aa68
(regex_compile): Change the way of handling a range from a char less
Kenichi Handa <handa@m17n.org>
parents:
32565
diff
changeset
|
2607 the charset of C1 and ending at C1. */ |
29546
fbe764633971
(MAKE_CHAR) [!emacs]: Dummy macro for non-Emacs env.
Kenichi Handa <handa@m17n.org>
parents:
29296
diff
changeset
|
2608 int charset = CHAR_CHARSET (c1); |
fbe764633971
(MAKE_CHAR) [!emacs]: Dummy macro for non-Emacs env.
Kenichi Handa <handa@m17n.org>
parents:
29296
diff
changeset
|
2609 int c2 = MAKE_CHAR (charset, 0, 0); |
fbe764633971
(MAKE_CHAR) [!emacs]: Dummy macro for non-Emacs env.
Kenichi Handa <handa@m17n.org>
parents:
29296
diff
changeset
|
2610 |
fbe764633971
(MAKE_CHAR) [!emacs]: Dummy macro for non-Emacs env.
Kenichi Handa <handa@m17n.org>
parents:
29296
diff
changeset
|
2611 SET_RANGE_TABLE_WORK_AREA (range_table_work, |
fbe764633971
(MAKE_CHAR) [!emacs]: Dummy macro for non-Emacs env.
Kenichi Handa <handa@m17n.org>
parents:
29296
diff
changeset
|
2612 c2, c1); |
32805
112b31ea0526
(regex_compile): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
32804
diff
changeset
|
2613 c1 = 0377; |
29546
fbe764633971
(MAKE_CHAR) [!emacs]: Dummy macro for non-Emacs env.
Kenichi Handa <handa@m17n.org>
parents:
29296
diff
changeset
|
2614 } |
21348
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
2615 } |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
2616 else if (!SAME_CHARSET_P (c, c1)) |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2617 FREE_STACK_RETURN (REG_ERANGE); |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2618 } |
18262 | 2619 else |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2620 /* Range from C to C. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2621 c1 = c; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2622 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2623 /* Set the range ... */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2624 if (SINGLE_BYTE_CHAR_P (c)) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2625 /* ... into bitmap. */ |
18262 | 2626 { |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
2627 re_wchar_t this_char; |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2628 int range_start = c, range_end = c1; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2629 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2630 /* If the start is after the end, the range is empty. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2631 if (range_start > range_end) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2632 { |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2633 if (syntax & RE_NO_EMPTY_RANGES) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2634 FREE_STACK_RETURN (REG_ERANGE); |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2635 /* Else, repeat the loop. */ |
16010 | 2636 } |
2637 else | |
2638 { | |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2639 for (this_char = range_start; this_char <= range_end; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2640 this_char++) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2641 SET_LIST_BIT (TRANSLATE (this_char)); |
21348
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
2642 } |
18262 | 2643 } |
16010 | 2644 else |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2645 /* ... into range table. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2646 SET_RANGE_TABLE_WORK_AREA (range_table_work, c, c1); |
16010 | 2647 } |
2648 | |
18262 | 2649 /* Discard any (non)matching list bytes that are all 0 at the |
2650 end of the map. Decrease the map-length byte too. */ | |
2651 while ((int) b[-1] > 0 && b[b[-1] - 1] == 0) | |
2652 b[-1]--; | |
2653 b += b[-1]; | |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2654 |
25440
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
2655 /* Build real range table from work area. */ |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
2656 if (RANGE_TABLE_WORK_USED (range_table_work) |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
2657 || RANGE_TABLE_WORK_BITS (range_table_work)) |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2658 { |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2659 int i; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2660 int used = RANGE_TABLE_WORK_USED (range_table_work); |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2661 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2662 /* Allocate space for COUNT + RANGE_TABLE. Needs two |
25440
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
2663 bytes for flags, two for COUNT, and three bytes for |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
2664 each character. */ |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
2665 GET_BUFFER_SPACE (4 + used * 3); |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2666 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2667 /* Indicate the existence of range table. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2668 laststart[1] |= 0x80; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2669 |
25440
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
2670 /* Store the character class flag bits into the range table. |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
2671 If not in emacs, these flag bits are always 0. */ |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
2672 *b++ = RANGE_TABLE_WORK_BITS (range_table_work) & 0xff; |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
2673 *b++ = RANGE_TABLE_WORK_BITS (range_table_work) >> 8; |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
2674 |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2675 STORE_NUMBER_AND_INCR (b, used / 2); |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2676 for (i = 0; i < used; i++) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2677 STORE_CHARACTER_AND_INCR |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2678 (b, RANGE_TABLE_WORK_ELT (range_table_work, i)); |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2679 } |
18262 | 2680 } |
2681 break; | |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2682 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2683 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2684 case '(': |
18262 | 2685 if (syntax & RE_NO_BK_PARENS) |
2686 goto handle_open; | |
2687 else | |
2688 goto normal_char; | |
2689 | |
2690 | |
2691 case ')': | |
2692 if (syntax & RE_NO_BK_PARENS) | |
2693 goto handle_close; | |
2694 else | |
2695 goto normal_char; | |
2696 | |
2697 | |
2698 case '\n': | |
2699 if (syntax & RE_NEWLINE_ALT) | |
2700 goto handle_alt; | |
2701 else | |
2702 goto normal_char; | |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2703 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2704 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2705 case '|': |
18262 | 2706 if (syntax & RE_NO_BK_VBAR) |
2707 goto handle_alt; | |
2708 else | |
2709 goto normal_char; | |
2710 | |
2711 | |
2712 case '{': | |
2713 if (syntax & RE_INTERVALS && syntax & RE_NO_BK_BRACES) | |
2714 goto handle_interval; | |
2715 else | |
2716 goto normal_char; | |
2717 | |
2718 | |
2719 case '\\': | |
2720 if (p == pend) FREE_STACK_RETURN (REG_EESCAPE); | |
2721 | |
2722 /* Do not translate the character after the \, so that we can | |
2723 distinguish, e.g., \B from \b, even if we normally would | |
2724 translate, e.g., B to b. */ | |
2725 PATFETCH_RAW (c); | |
2726 | |
2727 switch (c) | |
2728 { | |
2729 case '(': | |
2730 if (syntax & RE_NO_BK_PARENS) | |
2731 goto normal_backslash; | |
2732 | |
2733 handle_open: | |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2734 { |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2735 int shy = 0; |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2736 if (p+1 < pend) |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2737 { |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2738 /* Look for a special (?...) construct */ |
28372
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2739 if ((syntax & RE_SHY_GROUPS) && *p == '?') |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2740 { |
28372
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2741 PATFETCH (c); /* Gobble up the '?'. */ |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2742 PATFETCH (c); |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2743 switch (c) |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2744 { |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2745 case ':': shy = 1; break; |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2746 default: |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2747 /* Only (?:...) is supported right now. */ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2748 FREE_STACK_RETURN (REG_BADPAT); |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2749 } |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2750 } |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2751 } |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2752 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2753 if (!shy) |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2754 { |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2755 bufp->re_nsub++; |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2756 regnum++; |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2757 } |
18262 | 2758 |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2759 if (COMPILE_STACK_FULL) |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2760 { |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2761 RETALLOC (compile_stack.stack, compile_stack.size << 1, |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2762 compile_stack_elt_t); |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2763 if (compile_stack.stack == NULL) return REG_ESPACE; |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2764 |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2765 compile_stack.size <<= 1; |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2766 } |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2767 |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2768 /* These are the values to restore when we hit end of this |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2769 group. They are all relative offsets, so that if the |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2770 whole pattern moves because of realloc, they will still |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2771 be valid. */ |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2772 COMPILE_STACK_TOP.begalt_offset = begalt - bufp->buffer; |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2773 COMPILE_STACK_TOP.fixup_alt_jump |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2774 = fixup_alt_jump ? fixup_alt_jump - bufp->buffer + 1 : 0; |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2775 COMPILE_STACK_TOP.laststart_offset = b - bufp->buffer; |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2776 COMPILE_STACK_TOP.regnum = shy ? -regnum : regnum; |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2777 |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2778 /* Do not push a |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2779 start_memory for groups beyond the last one we can |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2780 represent in the compiled pattern. */ |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2781 if (regnum <= MAX_REGNUM && !shy) |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2782 BUF_PUSH_2 (start_memory, regnum); |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2783 |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2784 compile_stack.avail++; |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2785 |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2786 fixup_alt_jump = 0; |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2787 laststart = 0; |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2788 begalt = b; |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2789 /* If we've reached MAX_REGNUM groups, then this open |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2790 won't actually generate any code, so we'll have to |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2791 clear pending_exact explicitly. */ |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2792 pending_exact = 0; |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2793 break; |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2794 } |
18262 | 2795 |
2796 case ')': | |
2797 if (syntax & RE_NO_BK_PARENS) goto normal_backslash; | |
2798 | |
2799 if (COMPILE_STACK_EMPTY) | |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2800 { |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2801 if (syntax & RE_UNMATCHED_RIGHT_PAREN_ORD) |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2802 goto normal_backslash; |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2803 else |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2804 FREE_STACK_RETURN (REG_ERPAREN); |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2805 } |
18262 | 2806 |
2807 handle_close: | |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2808 FIXUP_ALT_JUMP (); |
18262 | 2809 |
2810 /* See similar code for backslashed left paren above. */ | |
2811 if (COMPILE_STACK_EMPTY) | |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2812 { |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2813 if (syntax & RE_UNMATCHED_RIGHT_PAREN_ORD) |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2814 goto normal_char; |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2815 else |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2816 FREE_STACK_RETURN (REG_ERPAREN); |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2817 } |
18262 | 2818 |
2819 /* Since we just checked for an empty stack above, this | |
2820 ``can't happen''. */ | |
2821 assert (compile_stack.avail != 0); | |
2822 { | |
2823 /* We don't just want to restore into `regnum', because | |
2824 later groups should continue to be numbered higher, | |
2825 as in `(ab)c(de)' -- the second group is #2. */ | |
2826 regnum_t this_group_regnum; | |
2827 | |
2828 compile_stack.avail--; | |
2829 begalt = bufp->buffer + COMPILE_STACK_TOP.begalt_offset; | |
2830 fixup_alt_jump | |
2831 = COMPILE_STACK_TOP.fixup_alt_jump | |
2832 ? bufp->buffer + COMPILE_STACK_TOP.fixup_alt_jump - 1 | |
2833 : 0; | |
2834 laststart = bufp->buffer + COMPILE_STACK_TOP.laststart_offset; | |
2835 this_group_regnum = COMPILE_STACK_TOP.regnum; | |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2836 /* If we've reached MAX_REGNUM groups, then this open |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2837 won't actually generate any code, so we'll have to |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2838 clear pending_exact explicitly. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2839 pending_exact = 0; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2840 |
18262 | 2841 /* We're at the end of the group, so now we know how many |
2842 groups were inside this one. */ | |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2843 if (this_group_regnum <= MAX_REGNUM && this_group_regnum > 0) |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2844 BUF_PUSH_2 (stop_memory, this_group_regnum); |
18262 | 2845 } |
2846 break; | |
2847 | |
2848 | |
2849 case '|': /* `\|'. */ | |
2850 if (syntax & RE_LIMITED_OPS || syntax & RE_NO_BK_VBAR) | |
2851 goto normal_backslash; | |
2852 handle_alt: | |
2853 if (syntax & RE_LIMITED_OPS) | |
2854 goto normal_char; | |
2855 | |
2856 /* Insert before the previous alternative a jump which | |
2857 jumps to this alternative if the former fails. */ | |
2858 GET_BUFFER_SPACE (3); | |
2859 INSERT_JUMP (on_failure_jump, begalt, b + 6); | |
2860 pending_exact = 0; | |
2861 b += 3; | |
2862 | |
2863 /* The alternative before this one has a jump after it | |
2864 which gets executed if it gets matched. Adjust that | |
2865 jump so it will jump to this alternative's analogous | |
2866 jump (put in below, which in turn will jump to the next | |
2867 (if any) alternative's such jump, etc.). The last such | |
2868 jump jumps to the correct final destination. A picture: | |
2869 _____ _____ | |
2870 | | | | | |
2871 | v | v | |
2872 a | b | c | |
2873 | |
2874 If we are at `b', then fixup_alt_jump right now points to a | |
2875 three-byte space after `a'. We'll put in the jump, set | |
2876 fixup_alt_jump to right after `b', and leave behind three | |
2877 bytes which we'll fill in when we get to after `c'. */ | |
2878 | |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2879 FIXUP_ALT_JUMP (); |
18262 | 2880 |
2881 /* Mark and leave space for a jump after this alternative, | |
2882 to be filled in later either by next alternative or | |
2883 when know we're at the end of a series of alternatives. */ | |
2884 fixup_alt_jump = b; | |
2885 GET_BUFFER_SPACE (3); | |
2886 b += 3; | |
2887 | |
2888 laststart = 0; | |
2889 begalt = b; | |
2890 break; | |
2891 | |
2892 | |
2893 case '{': | |
2894 /* If \{ is a literal. */ | |
2895 if (!(syntax & RE_INTERVALS) | |
2896 /* If we're at `\{' and it's not the open-interval | |
2897 operator. */ | |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
2898 || (syntax & RE_NO_BK_BRACES)) |
18262 | 2899 goto normal_backslash; |
2900 | |
2901 handle_interval: | |
2902 { | |
2903 /* If got here, then the syntax allows intervals. */ | |
2904 | |
2905 /* At least (most) this many matches must be made. */ | |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2906 int lower_bound = 0, upper_bound = -1; |
18262 | 2907 |
28372
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2908 beg_interval = p; |
18262 | 2909 |
2910 if (p == pend) | |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
2911 FREE_STACK_RETURN (REG_EBRACE); |
18262 | 2912 |
2913 GET_UNSIGNED_NUMBER (lower_bound); | |
2914 | |
2915 if (c == ',') | |
28372
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2916 GET_UNSIGNED_NUMBER (upper_bound); |
18262 | 2917 else |
2918 /* Interval such as `{1}' => match exactly once. */ | |
2919 upper_bound = lower_bound; | |
2920 | |
2921 if (lower_bound < 0 || upper_bound > RE_DUP_MAX | |
28372
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2922 || (upper_bound >= 0 && lower_bound > upper_bound)) |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
2923 FREE_STACK_RETURN (REG_BADBR); |
18262 | 2924 |
2925 if (!(syntax & RE_NO_BK_BRACES)) | |
2926 { | |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
2927 if (c != '\\') |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
2928 FREE_STACK_RETURN (REG_BADBR); |
18262 | 2929 |
2930 PATFETCH (c); | |
2931 } | |
2932 | |
2933 if (c != '}') | |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
2934 FREE_STACK_RETURN (REG_BADBR); |
18262 | 2935 |
2936 /* We just parsed a valid interval. */ | |
2937 | |
2938 /* If it's invalid to have no preceding re. */ | |
2939 if (!laststart) | |
2940 { | |
2941 if (syntax & RE_CONTEXT_INVALID_OPS) | |
2942 FREE_STACK_RETURN (REG_BADRPT); | |
2943 else if (syntax & RE_CONTEXT_INDEP_OPS) | |
2944 laststart = b; | |
2945 else | |
2946 goto unfetch_interval; | |
2947 } | |
2948 | |
2949 if (upper_bound == 0) | |
28372
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2950 /* If the upper bound is zero, just drop the sub pattern |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2951 altogether. */ |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2952 b = laststart; |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2953 else if (lower_bound == 1 && upper_bound == 1) |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2954 /* Just match it once: nothing to do here. */ |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2955 ; |
18262 | 2956 |
2957 /* Otherwise, we have a nontrivial interval. When | |
2958 we're all done, the pattern will look like: | |
2959 set_number_at <jump count> <upper bound> | |
2960 set_number_at <succeed_n count> <lower bound> | |
2961 succeed_n <after jump addr> <succeed_n count> | |
2962 <body of loop> | |
2963 jump_n <succeed_n addr> <jump count> | |
2964 (The upper bound and `jump_n' are omitted if | |
2965 `upper_bound' is 1, though.) */ | |
2966 else | |
2967 { /* If the upper bound is > 1, we need to insert | |
2968 more at the end of the loop. */ | |
28372
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2969 unsigned int nbytes = (upper_bound < 0 ? 3 |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2970 : upper_bound > 1 ? 5 : 0); |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2971 unsigned int startoffset = 0; |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2972 |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2973 GET_BUFFER_SPACE (20); /* We might use less. */ |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2974 |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2975 if (lower_bound == 0) |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2976 { |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2977 /* A succeed_n that starts with 0 is really a |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2978 a simple on_failure_jump_loop. */ |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2979 INSERT_JUMP (on_failure_jump_loop, laststart, |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2980 b + 3 + nbytes); |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2981 b += 3; |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2982 } |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2983 else |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2984 { |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2985 /* Initialize lower bound of the `succeed_n', even |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2986 though it will be set during matching by its |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2987 attendant `set_number_at' (inserted next), |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2988 because `re_compile_fastmap' needs to know. |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2989 Jump to the `jump_n' we might insert below. */ |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2990 INSERT_JUMP2 (succeed_n, laststart, |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2991 b + 5 + nbytes, |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2992 lower_bound); |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2993 b += 5; |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2994 |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2995 /* Code to initialize the lower bound. Insert |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2996 before the `succeed_n'. The `5' is the last two |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2997 bytes of this `set_number_at', plus 3 bytes of |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2998 the following `succeed_n'. */ |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2999 insert_op2 (set_number_at, laststart, 5, lower_bound, b); |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
3000 b += 5; |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
3001 startoffset += 5; |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
3002 } |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
3003 |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
3004 if (upper_bound < 0) |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
3005 { |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
3006 /* A negative upper bound stands for infinity, |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
3007 in which case it degenerates to a plain jump. */ |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
3008 STORE_JUMP (jump, b, laststart + startoffset); |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
3009 b += 3; |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
3010 } |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
3011 else if (upper_bound > 1) |
18262 | 3012 { /* More than one repetition is allowed, so |
3013 append a backward jump to the `succeed_n' | |
3014 that starts this interval. | |
3015 | |
3016 When we've reached this during matching, | |
3017 we'll have matched the interval once, so | |
3018 jump back only `upper_bound - 1' times. */ | |
28372
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
3019 STORE_JUMP2 (jump_n, b, laststart + startoffset, |
18262 | 3020 upper_bound - 1); |
3021 b += 5; | |
3022 | |
3023 /* The location we want to set is the second | |
3024 parameter of the `jump_n'; that is `b-2' as | |
3025 an absolute address. `laststart' will be | |
3026 the `set_number_at' we're about to insert; | |
3027 `laststart+3' the number to set, the source | |
3028 for the relative address. But we are | |
3029 inserting into the middle of the pattern -- | |
3030 so everything is getting moved up by 5. | |
3031 Conclusion: (b - 2) - (laststart + 3) + 5, | |
3032 i.e., b - laststart. | |
3033 | |
3034 We insert this at the beginning of the loop | |
3035 so that if we fail during matching, we'll | |
3036 reinitialize the bounds. */ | |
3037 insert_op2 (set_number_at, laststart, b - laststart, | |
3038 upper_bound - 1, b); | |
3039 b += 5; | |
3040 } | |
3041 } | |
3042 pending_exact = 0; | |
3043 beg_interval = NULL; | |
3044 } | |
3045 break; | |
3046 | |
3047 unfetch_interval: | |
3048 /* If an invalid interval, match the characters as literals. */ | |
3049 assert (beg_interval); | |
3050 p = beg_interval; | |
3051 beg_interval = NULL; | |
3052 | |
3053 /* normal_char and normal_backslash need `c'. */ | |
28372
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
3054 c = '{'; |
18262 | 3055 |
3056 if (!(syntax & RE_NO_BK_BRACES)) | |
3057 { | |
28372
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
3058 assert (p > pattern && p[-1] == '\\'); |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
3059 goto normal_backslash; |
18262 | 3060 } |
28372
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
3061 else |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
3062 goto normal_char; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3063 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3064 #ifdef emacs |
18262 | 3065 /* There is no way to specify the before_dot and after_dot |
3066 operators. rms says this is ok. --karl */ | |
3067 case '=': | |
3068 BUF_PUSH (at_dot); | |
3069 break; | |
3070 | |
3071 case 's': | |
3072 laststart = b; | |
3073 PATFETCH (c); | |
3074 BUF_PUSH_2 (syntaxspec, syntax_spec_code[c]); | |
3075 break; | |
3076 | |
3077 case 'S': | |
3078 laststart = b; | |
3079 PATFETCH (c); | |
3080 BUF_PUSH_2 (notsyntaxspec, syntax_spec_code[c]); | |
3081 break; | |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3082 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3083 case 'c': |
16010 | 3084 laststart = b; |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3085 PATFETCH_RAW (c); |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3086 BUF_PUSH_2 (categoryspec, c); |
16010 | 3087 break; |
3088 | |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3089 case 'C': |
16010 | 3090 laststart = b; |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3091 PATFETCH_RAW (c); |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3092 BUF_PUSH_2 (notcategoryspec, c); |
16010 | 3093 break; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3094 #endif /* emacs */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3095 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3096 |
18262 | 3097 case 'w': |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
3098 if (syntax & RE_NO_GNU_OPS) |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
3099 goto normal_char; |
18262 | 3100 laststart = b; |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3101 BUF_PUSH_2 (syntaxspec, Sword); |
18262 | 3102 break; |
3103 | |
3104 | |
3105 case 'W': | |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
3106 if (syntax & RE_NO_GNU_OPS) |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
3107 goto normal_char; |
18262 | 3108 laststart = b; |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3109 BUF_PUSH_2 (notsyntaxspec, Sword); |
18262 | 3110 break; |
3111 | |
3112 | |
3113 case '<': | |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
3114 if (syntax & RE_NO_GNU_OPS) |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
3115 goto normal_char; |
18262 | 3116 BUF_PUSH (wordbeg); |
3117 break; | |
3118 | |
3119 case '>': | |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
3120 if (syntax & RE_NO_GNU_OPS) |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
3121 goto normal_char; |
18262 | 3122 BUF_PUSH (wordend); |
3123 break; | |
3124 | |
3125 case 'b': | |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
3126 if (syntax & RE_NO_GNU_OPS) |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
3127 goto normal_char; |
18262 | 3128 BUF_PUSH (wordbound); |
3129 break; | |
3130 | |
3131 case 'B': | |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
3132 if (syntax & RE_NO_GNU_OPS) |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
3133 goto normal_char; |
18262 | 3134 BUF_PUSH (notwordbound); |
3135 break; | |
3136 | |
3137 case '`': | |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
3138 if (syntax & RE_NO_GNU_OPS) |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
3139 goto normal_char; |
18262 | 3140 BUF_PUSH (begbuf); |
3141 break; | |
3142 | |
3143 case '\'': | |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
3144 if (syntax & RE_NO_GNU_OPS) |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
3145 goto normal_char; |
18262 | 3146 BUF_PUSH (endbuf); |
3147 break; | |
3148 | |
3149 case '1': case '2': case '3': case '4': case '5': | |
3150 case '6': case '7': case '8': case '9': | |
33066
c782e22760e0
(re_iswctype, re_wctype_to_bit): Fix braino.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32954
diff
changeset
|
3151 { |
c782e22760e0
(re_iswctype, re_wctype_to_bit): Fix braino.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32954
diff
changeset
|
3152 regnum_t reg; |
c782e22760e0
(re_iswctype, re_wctype_to_bit): Fix braino.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32954
diff
changeset
|
3153 |
c782e22760e0
(re_iswctype, re_wctype_to_bit): Fix braino.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32954
diff
changeset
|
3154 if (syntax & RE_NO_BK_REFS) |
c782e22760e0
(re_iswctype, re_wctype_to_bit): Fix braino.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32954
diff
changeset
|
3155 goto normal_backslash; |
c782e22760e0
(re_iswctype, re_wctype_to_bit): Fix braino.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32954
diff
changeset
|
3156 |
c782e22760e0
(re_iswctype, re_wctype_to_bit): Fix braino.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32954
diff
changeset
|
3157 reg = c - '0'; |
c782e22760e0
(re_iswctype, re_wctype_to_bit): Fix braino.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32954
diff
changeset
|
3158 |
c782e22760e0
(re_iswctype, re_wctype_to_bit): Fix braino.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32954
diff
changeset
|
3159 /* Can't back reference to a subexpression before its end. */ |
c782e22760e0
(re_iswctype, re_wctype_to_bit): Fix braino.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32954
diff
changeset
|
3160 if (reg > regnum || group_in_compile_stack (compile_stack, reg)) |
c782e22760e0
(re_iswctype, re_wctype_to_bit): Fix braino.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32954
diff
changeset
|
3161 FREE_STACK_RETURN (REG_ESUBREG); |
c782e22760e0
(re_iswctype, re_wctype_to_bit): Fix braino.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32954
diff
changeset
|
3162 |
c782e22760e0
(re_iswctype, re_wctype_to_bit): Fix braino.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32954
diff
changeset
|
3163 laststart = b; |
c782e22760e0
(re_iswctype, re_wctype_to_bit): Fix braino.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32954
diff
changeset
|
3164 BUF_PUSH_2 (duplicate, reg); |
c782e22760e0
(re_iswctype, re_wctype_to_bit): Fix braino.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32954
diff
changeset
|
3165 } |
18262 | 3166 break; |
3167 | |
3168 | |
3169 case '+': | |
3170 case '?': | |
3171 if (syntax & RE_BK_PLUS_QM) | |
3172 goto handle_plus; | |
3173 else | |
3174 goto normal_backslash; | |
3175 | |
3176 default: | |
3177 normal_backslash: | |
3178 /* You might think it would be useful for \ to mean | |
3179 not to translate; but if we don't translate it | |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
3180 it will never match anything. */ |
18262 | 3181 c = TRANSLATE (c); |
3182 goto normal_char; | |
3183 } | |
3184 break; | |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3185 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3186 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3187 default: |
18262 | 3188 /* Expects the character in `c'. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3189 normal_char: |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3190 /* If no exactn currently being built. */ |
18262 | 3191 if (!pending_exact |
3192 | |
3193 /* If last exactn not at current position. */ | |
3194 || pending_exact + *pending_exact + 1 != b | |
3195 | |
3196 /* We have only one byte following the exactn for the count. */ | |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
3197 || *pending_exact >= (1 << BYTEWIDTH) - MAX_MULTIBYTE_LENGTH |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3198 |
18262 | 3199 /* If followed by a repetition operator. */ |
21963
b717a61747c5
(regex_compile): When checking after exactn
Richard M. Stallman <rms@gnu.org>
parents:
21838
diff
changeset
|
3200 || (p != pend && (*p == '*' || *p == '^')) |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3201 || ((syntax & RE_BK_PLUS_QM) |
21963
b717a61747c5
(regex_compile): When checking after exactn
Richard M. Stallman <rms@gnu.org>
parents:
21838
diff
changeset
|
3202 ? p + 1 < pend && *p == '\\' && (p[1] == '+' || p[1] == '?') |
b717a61747c5
(regex_compile): When checking after exactn
Richard M. Stallman <rms@gnu.org>
parents:
21838
diff
changeset
|
3203 : p != pend && (*p == '+' || *p == '?')) |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3204 || ((syntax & RE_INTERVALS) |
18262 | 3205 && ((syntax & RE_NO_BK_BRACES) |
21963
b717a61747c5
(regex_compile): When checking after exactn
Richard M. Stallman <rms@gnu.org>
parents:
21838
diff
changeset
|
3206 ? p != pend && *p == '{' |
b717a61747c5
(regex_compile): When checking after exactn
Richard M. Stallman <rms@gnu.org>
parents:
21838
diff
changeset
|
3207 : p + 1 < pend && p[0] == '\\' && p[1] == '{'))) |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3208 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3209 /* Start building a new exactn. */ |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
3210 |
18262 | 3211 laststart = b; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3212 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3213 BUF_PUSH_2 (exactn, 0); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3214 pending_exact = b - 1; |
18262 | 3215 } |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3216 |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
3217 GET_BUFFER_SPACE (MAX_MULTIBYTE_LENGTH); |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
3218 { |
30752
db737e34fc36
(regex_compile) <normal_char>: Pay attention to multibyteness.
Kenichi Handa <handa@m17n.org>
parents:
29801
diff
changeset
|
3219 int len; |
db737e34fc36
(regex_compile) <normal_char>: Pay attention to multibyteness.
Kenichi Handa <handa@m17n.org>
parents:
29801
diff
changeset
|
3220 |
db737e34fc36
(regex_compile) <normal_char>: Pay attention to multibyteness.
Kenichi Handa <handa@m17n.org>
parents:
29801
diff
changeset
|
3221 if (multibyte) |
db737e34fc36
(regex_compile) <normal_char>: Pay attention to multibyteness.
Kenichi Handa <handa@m17n.org>
parents:
29801
diff
changeset
|
3222 len = CHAR_STRING (c, b); |
db737e34fc36
(regex_compile) <normal_char>: Pay attention to multibyteness.
Kenichi Handa <handa@m17n.org>
parents:
29801
diff
changeset
|
3223 else |
db737e34fc36
(regex_compile) <normal_char>: Pay attention to multibyteness.
Kenichi Handa <handa@m17n.org>
parents:
29801
diff
changeset
|
3224 *b = c, len = 1; |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
3225 b += len; |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
3226 (*pending_exact) += len; |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
3227 } |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
3228 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3229 break; |
18262 | 3230 } /* switch (c) */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3231 } /* while p != pend */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3232 |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
3233 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3234 /* Through the pattern now. */ |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
3235 |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3236 FIXUP_ALT_JUMP (); |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3237 |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
3238 if (!COMPILE_STACK_EMPTY) |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3239 FREE_STACK_RETURN (REG_EPAREN); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3240 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3241 /* If we don't want backtracking, force success |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3242 the first time we reach the end of the compiled pattern. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3243 if (syntax & RE_NO_POSIX_BACKTRACKING) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3244 BUF_PUSH (succeed); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3245 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3246 free (compile_stack.stack); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3247 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3248 /* We have succeeded; set the length of the buffer. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3249 bufp->used = b - bufp->buffer; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3250 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3251 #ifdef DEBUG |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
3252 if (debug > 0) |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3253 { |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3254 re_compile_fastmap (bufp); |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3255 DEBUG_PRINT1 ("\nCompiled pattern: \n"); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3256 print_compiled_pattern (bufp); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3257 } |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
3258 debug--; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3259 #endif /* DEBUG */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3260 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3261 #ifndef MATCH_MAY_ALLOCATE |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3262 /* Initialize the failure stack to the largest possible stack. This |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3263 isn't necessary unless we're trying to avoid calling alloca in |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3264 the search and match routines. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3265 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3266 int num_regs = bufp->re_nsub + 1; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3267 |
20449
fc965930c738
(TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents:
19184
diff
changeset
|
3268 if (fail_stack.size < re_max_failures * TYPICAL_FAILURE_SIZE) |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3269 { |
21352
b9275822b6f5
(regex_compile) [!MATCH_MAY_ALLOCATE]: Fix paren error.
Richard M. Stallman <rms@gnu.org>
parents:
21348
diff
changeset
|
3270 fail_stack.size = re_max_failures * TYPICAL_FAILURE_SIZE; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3271 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3272 if (! fail_stack.stack) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3273 fail_stack.stack |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
3274 = (fail_stack_elt_t *) malloc (fail_stack.size |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3275 * sizeof (fail_stack_elt_t)); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3276 else |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3277 fail_stack.stack |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3278 = (fail_stack_elt_t *) realloc (fail_stack.stack, |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3279 (fail_stack.size |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3280 * sizeof (fail_stack_elt_t))); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3281 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3282 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3283 regex_grow_registers (num_regs); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3284 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3285 #endif /* not MATCH_MAY_ALLOCATE */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3286 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3287 return REG_NOERROR; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3288 } /* regex_compile */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3289 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3290 /* Subroutines for `regex_compile'. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3291 |
18262 | 3292 /* Store OP at LOC followed by two-byte integer parameter ARG. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3293 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3294 static void |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3295 store_op1 (op, loc, arg) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3296 re_opcode_t op; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3297 unsigned char *loc; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3298 int arg; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3299 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3300 *loc = (unsigned char) op; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3301 STORE_NUMBER (loc + 1, arg); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3302 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3303 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3304 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3305 /* Like `store_op1', but for two two-byte parameters ARG1 and ARG2. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3306 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3307 static void |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3308 store_op2 (op, loc, arg1, arg2) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3309 re_opcode_t op; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3310 unsigned char *loc; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3311 int arg1, arg2; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3312 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3313 *loc = (unsigned char) op; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3314 STORE_NUMBER (loc + 1, arg1); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3315 STORE_NUMBER (loc + 3, arg2); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3316 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3317 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3318 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3319 /* Copy the bytes from LOC to END to open up three bytes of space at LOC |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3320 for OP followed by two-byte integer parameter ARG. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3321 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3322 static void |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3323 insert_op1 (op, loc, arg, end) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3324 re_opcode_t op; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3325 unsigned char *loc; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3326 int arg; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
3327 unsigned char *end; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3328 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3329 register unsigned char *pfrom = end; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3330 register unsigned char *pto = end + 3; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3331 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3332 while (pfrom != loc) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3333 *--pto = *--pfrom; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
3334 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3335 store_op1 (op, loc, arg); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3336 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3337 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3338 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3339 /* Like `insert_op1', but for two two-byte parameters ARG1 and ARG2. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3340 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3341 static void |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3342 insert_op2 (op, loc, arg1, arg2, end) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3343 re_opcode_t op; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3344 unsigned char *loc; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3345 int arg1, arg2; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
3346 unsigned char *end; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3347 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3348 register unsigned char *pfrom = end; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3349 register unsigned char *pto = end + 5; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3350 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3351 while (pfrom != loc) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3352 *--pto = *--pfrom; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
3353 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3354 store_op2 (op, loc, arg1, arg2); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3355 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3356 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3357 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3358 /* P points to just after a ^ in PATTERN. Return true if that ^ comes |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3359 after an alternative or a begin-subexpression. We assume there is at |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3360 least one character before the ^. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3361 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3362 static boolean |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3363 at_begline_loc_p (pattern, p, syntax) |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
3364 re_char *pattern, *p; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3365 reg_syntax_t syntax; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3366 { |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
3367 re_char *prev = p - 2; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3368 boolean prev_prev_backslash = prev > pattern && prev[-1] == '\\'; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
3369 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3370 return |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3371 /* After a subexpression? */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3372 (*prev == '(' && (syntax & RE_NO_BK_PARENS || prev_prev_backslash)) |
18262 | 3373 /* After an alternative? */ |
29194
fe06affca294
(at_begline_loc_p): Also recognize the \\(?:^ case
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28662
diff
changeset
|
3374 || (*prev == '|' && (syntax & RE_NO_BK_VBAR || prev_prev_backslash)) |
fe06affca294
(at_begline_loc_p): Also recognize the \\(?:^ case
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28662
diff
changeset
|
3375 /* After a shy subexpression? */ |
fe06affca294
(at_begline_loc_p): Also recognize the \\(?:^ case
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28662
diff
changeset
|
3376 || ((syntax & RE_SHY_GROUPS) && prev - 2 >= pattern |
fe06affca294
(at_begline_loc_p): Also recognize the \\(?:^ case
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28662
diff
changeset
|
3377 && prev[-1] == '?' && prev[-2] == '(' |
fe06affca294
(at_begline_loc_p): Also recognize the \\(?:^ case
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28662
diff
changeset
|
3378 && (syntax & RE_NO_BK_PARENS |
fe06affca294
(at_begline_loc_p): Also recognize the \\(?:^ case
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28662
diff
changeset
|
3379 || (prev - 3 >= pattern && prev[-3] == '\\'))); |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3380 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3381 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3382 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3383 /* The dual of at_begline_loc_p. This one is for $. We assume there is |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3384 at least one character after the $, i.e., `P < PEND'. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3385 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3386 static boolean |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3387 at_endline_loc_p (p, pend, syntax) |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
3388 re_char *p, *pend; |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
3389 reg_syntax_t syntax; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3390 { |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
3391 re_char *next = p; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3392 boolean next_backslash = *next == '\\'; |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
3393 re_char *next_next = p + 1 < pend ? p + 1 : 0; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
3394 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3395 return |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3396 /* Before a subexpression? */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3397 (syntax & RE_NO_BK_PARENS ? *next == ')' |
18262 | 3398 : next_backslash && next_next && *next_next == ')') |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3399 /* Before an alternative? */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3400 || (syntax & RE_NO_BK_VBAR ? *next == '|' |
18262 | 3401 : next_backslash && next_next && *next_next == '|'); |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3402 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3403 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3404 |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
3405 /* Returns true if REGNUM is in one of COMPILE_STACK's elements and |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3406 false if it's not. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3407 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3408 static boolean |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3409 group_in_compile_stack (compile_stack, regnum) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3410 compile_stack_type compile_stack; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3411 regnum_t regnum; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3412 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3413 int this_element; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3414 |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
3415 for (this_element = compile_stack.avail - 1; |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
3416 this_element >= 0; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3417 this_element--) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3418 if (compile_stack.stack[this_element].regnum == regnum) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3419 return true; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3420 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3421 return false; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3422 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3423 |
28380
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3424 /* analyse_first. |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3425 If fastmap is non-NULL, go through the pattern and fill fastmap |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3426 with all the possible leading chars. If fastmap is NULL, don't |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3427 bother filling it up (obviously) and only return whether the |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3428 pattern could potentially match the empty string. |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3429 |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3430 Return 1 if p..pend might match the empty string. |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3431 Return 0 if p..pend matches at least one char. |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
3432 Return -1 if fastmap was not updated accurately. */ |
28380
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3433 |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3434 static int |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3435 analyse_first (p, pend, fastmap, multibyte) |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
3436 re_char *p, *pend; |
28380
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3437 char *fastmap; |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3438 const int multibyte; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3439 { |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3440 int j, k; |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3441 boolean not; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3442 |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3443 /* If all elements for base leading-codes in fastmap is set, this |
18262 | 3444 flag is set true. */ |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3445 boolean match_any_multibyte_characters = false; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3446 |
28380
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3447 assert (p); |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
3448 |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3449 /* The loop below works as follows: |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3450 - It has a working-list kept in the PATTERN_STACK and which basically |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3451 starts by only containing a pointer to the first operation. |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3452 - If the opcode we're looking at is a match against some set of |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3453 chars, then we add those chars to the fastmap and go on to the |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3454 next work element from the worklist (done via `break'). |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3455 - If the opcode is a control operator on the other hand, we either |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3456 ignore it (if it's meaningless at this point, such as `start_memory') |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3457 or execute it (if it's a jump). If the jump has several destinations |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3458 (i.e. `on_failure_jump'), then we push the other destination onto the |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3459 worklist. |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3460 We guarantee termination by ignoring backward jumps (more or less), |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3461 so that `p' is monotonically increasing. More to the point, we |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3462 never set `p' (or push) anything `<= p1'. */ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3463 |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
3464 while (p < pend) |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3465 { |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3466 /* `p1' is used as a marker of how far back a `on_failure_jump' |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3467 can go without being ignored. It is normally equal to `p' |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3468 (which prevents any backward `on_failure_jump') except right |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3469 after a plain `jump', to allow patterns such as: |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3470 0: jump 10 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3471 3..9: <body> |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3472 10: on_failure_jump 3 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3473 as used for the *? operator. */ |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
3474 re_char *p1 = p; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
3475 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3476 switch (SWITCH_ENUM_CAST ((re_opcode_t) *p++)) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3477 { |
28380
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3478 case succeed: |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
3479 return 1; |
28380
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3480 continue; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3481 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3482 case duplicate: |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3483 /* If the first character has to match a backreference, that means |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3484 that the group was empty (since it already matched). Since this |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3485 is the only case that interests us here, we can assume that the |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3486 backreference must match the empty string. */ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3487 p++; |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3488 continue; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3489 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3490 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3491 /* Following are the cases which match a character. These end |
18262 | 3492 with `break'. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3493 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3494 case exactn: |
30752
db737e34fc36
(regex_compile) <normal_char>: Pay attention to multibyteness.
Kenichi Handa <handa@m17n.org>
parents:
29801
diff
changeset
|
3495 if (fastmap) |
db737e34fc36
(regex_compile) <normal_char>: Pay attention to multibyteness.
Kenichi Handa <handa@m17n.org>
parents:
29801
diff
changeset
|
3496 { |
db737e34fc36
(regex_compile) <normal_char>: Pay attention to multibyteness.
Kenichi Handa <handa@m17n.org>
parents:
29801
diff
changeset
|
3497 int c = RE_STRING_CHAR (p + 1, pend - p); |
db737e34fc36
(regex_compile) <normal_char>: Pay attention to multibyteness.
Kenichi Handa <handa@m17n.org>
parents:
29801
diff
changeset
|
3498 |
db737e34fc36
(regex_compile) <normal_char>: Pay attention to multibyteness.
Kenichi Handa <handa@m17n.org>
parents:
29801
diff
changeset
|
3499 if (SINGLE_BYTE_CHAR_P (c)) |
db737e34fc36
(regex_compile) <normal_char>: Pay attention to multibyteness.
Kenichi Handa <handa@m17n.org>
parents:
29801
diff
changeset
|
3500 fastmap[c] = 1; |
db737e34fc36
(regex_compile) <normal_char>: Pay attention to multibyteness.
Kenichi Handa <handa@m17n.org>
parents:
29801
diff
changeset
|
3501 else |
db737e34fc36
(regex_compile) <normal_char>: Pay attention to multibyteness.
Kenichi Handa <handa@m17n.org>
parents:
29801
diff
changeset
|
3502 fastmap[p[1]] = 1; |
db737e34fc36
(regex_compile) <normal_char>: Pay attention to multibyteness.
Kenichi Handa <handa@m17n.org>
parents:
29801
diff
changeset
|
3503 } |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3504 break; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3505 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3506 |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3507 case anychar: |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3508 /* We could put all the chars except for \n (and maybe \0) |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3509 but we don't bother since it is generally not worth it. */ |
28380
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3510 if (!fastmap) break; |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
3511 return -1; |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3512 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3513 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3514 case charset_not: |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3515 /* Chars beyond end of bitmap are possible matches. |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3516 All the single-byte codes can occur in multibyte buffers. |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3517 So any that are not listed in the charset |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3518 are possible matches, even in multibyte buffers. */ |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3519 if (!fastmap) break; |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3520 for (j = CHARSET_BITMAP_SIZE (&p[-1]) * BYTEWIDTH; |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3521 j < (1 << BYTEWIDTH); j++) |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3522 fastmap[j] = 1; |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3523 /* Fallthrough */ |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3524 case charset: |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3525 if (!fastmap) break; |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3526 not = (re_opcode_t) *(p - 1) == charset_not; |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3527 for (j = CHARSET_BITMAP_SIZE (&p[-1]) * BYTEWIDTH - 1, p++; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3528 j >= 0; j--) |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3529 if (!!(p[j / BYTEWIDTH] & (1 << (j % BYTEWIDTH))) ^ not) |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3530 fastmap[j] = 1; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3531 |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3532 if ((not && multibyte) |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3533 /* Any character set can possibly contain a character |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3534 which doesn't match the specified set of characters. */ |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3535 || (CHARSET_RANGE_TABLE_EXISTS_P (&p[-2]) |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3536 && CHARSET_RANGE_TABLE_BITS (&p[-2]) != 0)) |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3537 /* If we can match a character class, we can match |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3538 any character set. */ |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3539 { |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3540 set_fastmap_for_multibyte_characters: |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3541 if (match_any_multibyte_characters == false) |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3542 { |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3543 for (j = 0x80; j < 0xA0; j++) /* XXX */ |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3544 if (BASE_LEADING_CODE_P (j)) |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3545 fastmap[j] = 1; |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3546 match_any_multibyte_characters = true; |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3547 } |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3548 } |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3549 |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3550 else if (!not && CHARSET_RANGE_TABLE_EXISTS_P (&p[-2]) |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3551 && match_any_multibyte_characters == false) |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3552 { |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3553 /* Set fastmap[I] 1 where I is a base leading code of each |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3554 multibyte character in the range table. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3555 int c, count; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3556 |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3557 /* Make P points the range table. `+ 2' is to skip flag |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
3558 bits for a character class. */ |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3559 p += CHARSET_BITMAP_SIZE (&p[-2]) + 2; |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3560 |
25877
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
3561 /* Extract the number of ranges in range table into COUNT. */ |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3562 EXTRACT_NUMBER_AND_INCR (count, p); |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3563 for (; count > 0; count--, p += 2 * 3) /* XXX */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3564 { |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3565 /* Extract the start of each range. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3566 EXTRACT_CHARACTER (c, p); |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3567 j = CHAR_CHARSET (c); |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3568 fastmap[CHARSET_LEADING_CODE_BASE (j)] = 1; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3569 } |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3570 } |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3571 break; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3572 |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3573 case syntaxspec: |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3574 case notsyntaxspec: |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3575 if (!fastmap) break; |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3576 #ifndef emacs |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3577 not = (re_opcode_t)p[-1] == notsyntaxspec; |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3578 k = *p++; |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3579 for (j = 0; j < (1 << BYTEWIDTH); j++) |
28279
24a23e27dac6
(enum syntaxcode): Provide default for non-Emacs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28268
diff
changeset
|
3580 if ((SYNTAX (j) == (enum syntaxcode) k) ^ not) |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3581 fastmap[j] = 1; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3582 break; |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3583 #else /* emacs */ |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3584 /* This match depends on text properties. These end with |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3585 aborting optimizations. */ |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
3586 return -1; |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3587 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3588 case categoryspec: |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3589 case notcategoryspec: |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3590 if (!fastmap) break; |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3591 not = (re_opcode_t)p[-1] == notcategoryspec; |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3592 k = *p++; |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3593 for (j = 0; j < (1 << BYTEWIDTH); j++) |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3594 if ((CHAR_HAS_CATEGORY (j, k)) ^ not) |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3595 fastmap[j] = 1; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3596 |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3597 if (multibyte) |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3598 /* Any character set can possibly contain a character |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3599 whose category is K (or not). */ |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3600 goto set_fastmap_for_multibyte_characters; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3601 break; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3602 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3603 /* All cases after this match the empty string. These end with |
18262 | 3604 `continue'. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3605 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3606 case before_dot: |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3607 case at_dot: |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3608 case after_dot: |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3609 #endif /* !emacs */ |
18262 | 3610 case no_op: |
3611 case begline: | |
3612 case endline: | |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3613 case begbuf: |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3614 case endbuf: |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3615 case wordbound: |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3616 case notwordbound: |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3617 case wordbeg: |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3618 case wordend: |
18262 | 3619 continue; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3620 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3621 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3622 case jump: |
18262 | 3623 EXTRACT_NUMBER_AND_INCR (j, p); |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3624 if (j < 0) |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3625 /* Backward jumps can only go back to code that we've already |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3626 visited. `re_compile' should make sure this is true. */ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3627 break; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
3628 p += j; |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3629 switch (SWITCH_ENUM_CAST ((re_opcode_t) *p)) |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3630 { |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3631 case on_failure_jump: |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3632 case on_failure_keep_string_jump: |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3633 case on_failure_jump_loop: |
28342
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
3634 case on_failure_jump_nastyloop: |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3635 case on_failure_jump_smart: |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3636 p++; |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3637 break; |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3638 default: |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3639 continue; |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3640 }; |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3641 /* Keep `p1' to allow the `on_failure_jump' we are jumping to |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3642 to jump back to "just after here". */ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3643 /* Fallthrough */ |
18262 | 3644 |
3645 case on_failure_jump: | |
3646 case on_failure_keep_string_jump: | |
28342
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
3647 case on_failure_jump_nastyloop: |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3648 case on_failure_jump_loop: |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3649 case on_failure_jump_smart: |
18262 | 3650 EXTRACT_NUMBER_AND_INCR (j, p); |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3651 if (p + j <= p1) |
28372
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
3652 ; /* Backward jump to be ignored. */ |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
3653 else |
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
3654 { /* We have to look down both arms. |
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
3655 We first go down the "straight" path so as to minimize |
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
3656 stack usage when going through alternatives. */ |
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
3657 int r = analyse_first (p, pend, fastmap, multibyte); |
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
3658 if (r) return r; |
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
3659 p += j; |
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
3660 } |
18262 | 3661 continue; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3662 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3663 |
28372
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
3664 case jump_n: |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
3665 /* This code simply does not properly handle forward jump_n. */ |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
3666 DEBUG_STATEMENT (EXTRACT_NUMBER (j, p); assert (j < 0)); |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
3667 p += 4; |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
3668 /* jump_n can either jump or fall through. The (backward) jump |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
3669 case has already been handled, so we only need to look at the |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
3670 fallthrough case. */ |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
3671 continue; |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
3672 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3673 case succeed_n: |
28372
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
3674 /* If N == 0, it should be an on_failure_jump_loop instead. */ |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
3675 DEBUG_STATEMENT (EXTRACT_NUMBER (j, p + 2); assert (j > 0)); |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
3676 p += 4; |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
3677 /* We only care about one iteration of the loop, so we don't |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
3678 need to consider the case where this behaves like an |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
3679 on_failure_jump. */ |
18262 | 3680 continue; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3681 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3682 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3683 case set_number_at: |
18262 | 3684 p += 4; |
3685 continue; | |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3686 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3687 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3688 case start_memory: |
18262 | 3689 case stop_memory: |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3690 p += 1; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3691 continue; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3692 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3693 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3694 default: |
18262 | 3695 abort (); /* We have listed all the cases. */ |
3696 } /* switch *p++ */ | |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3697 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3698 /* Getting here means we have found the possible starting |
18262 | 3699 characters for one path of the pattern -- and that the empty |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
3700 string does not match. We need not follow this path further. */ |
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
3701 return 0; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3702 } /* while p */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3703 |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
3704 /* We reached the end without matching anything. */ |
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
3705 return 1; |
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
3706 |
28380
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3707 } /* analyse_first */ |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3708 |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3709 /* re_compile_fastmap computes a ``fastmap'' for the compiled pattern in |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3710 BUFP. A fastmap records which of the (1 << BYTEWIDTH) possible |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3711 characters can start a string that matches the pattern. This fastmap |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3712 is used by re_search to skip quickly over impossible starting points. |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3713 |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3714 Character codes above (1 << BYTEWIDTH) are not represented in the |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3715 fastmap, but the leading codes are represented. Thus, the fastmap |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3716 indicates which character sets could start a match. |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3717 |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3718 The caller must supply the address of a (1 << BYTEWIDTH)-byte data |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3719 area as BUFP->fastmap. |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3720 |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3721 We set the `fastmap', `fastmap_accurate', and `can_be_null' fields in |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3722 the pattern buffer. |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3723 |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3724 Returns 0 if we succeed, -2 if an internal error. */ |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3725 |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3726 int |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3727 re_compile_fastmap (bufp) |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3728 struct re_pattern_buffer *bufp; |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3729 { |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3730 char *fastmap = bufp->fastmap; |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3731 int analysis; |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3732 |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3733 assert (fastmap && bufp->buffer); |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3734 |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3735 bzero (fastmap, 1 << BYTEWIDTH); /* Assume nothing's valid. */ |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3736 bufp->fastmap_accurate = 1; /* It will be when we're done. */ |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3737 |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3738 analysis = analyse_first (bufp->buffer, bufp->buffer + bufp->used, |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
3739 fastmap, RE_MULTIBYTE_P (bufp)); |
31312
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
3740 bufp->can_be_null = (analysis != 0); |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3741 return 0; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3742 } /* re_compile_fastmap */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3743 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3744 /* Set REGS to hold NUM_REGS registers, storing them in STARTS and |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3745 ENDS. Subsequent matches using PATTERN_BUFFER and REGS will use |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3746 this memory for recording register information. STARTS and ENDS |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3747 must be allocated using the malloc library routine, and must each |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3748 be at least NUM_REGS * sizeof (regoff_t) bytes long. |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3749 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3750 If NUM_REGS == 0, then subsequent matches should allocate their own |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3751 register data. |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3752 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3753 Unless this function is called, the first search or match using |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3754 PATTERN_BUFFER will allocate its own register data, without |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3755 freeing the old data. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3756 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3757 void |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3758 re_set_registers (bufp, regs, num_regs, starts, ends) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3759 struct re_pattern_buffer *bufp; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3760 struct re_registers *regs; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3761 unsigned num_regs; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3762 regoff_t *starts, *ends; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3763 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3764 if (num_regs) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3765 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3766 bufp->regs_allocated = REGS_REALLOCATE; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3767 regs->num_regs = num_regs; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3768 regs->start = starts; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3769 regs->end = ends; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3770 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3771 else |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3772 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3773 bufp->regs_allocated = REGS_UNALLOCATED; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3774 regs->num_regs = 0; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3775 regs->start = regs->end = (regoff_t *) 0; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3776 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3777 } |
31312
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
3778 WEAK_ALIAS (__re_set_registers, re_set_registers) |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3779 |
18262 | 3780 /* Searching routines. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3781 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3782 /* Like re_search_2, below, but only one string is specified, and |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3783 doesn't let you say where to stop matching. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3784 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3785 int |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3786 re_search (bufp, string, size, startpos, range, regs) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3787 struct re_pattern_buffer *bufp; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3788 const char *string; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3789 int size, startpos, range; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3790 struct re_registers *regs; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3791 { |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
3792 return re_search_2 (bufp, NULL, 0, string, size, startpos, range, |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3793 regs, size); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3794 } |
31312
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
3795 WEAK_ALIAS (__re_search, re_search) |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3796 |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3797 /* End address of virtual concatenation of string. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3798 #define STOP_ADDR_VSTRING(P) \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3799 (((P) >= size1 ? string2 + size2 : string1 + size1)) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3800 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3801 /* Address of POS in the concatenation of virtual string. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3802 #define POS_ADDR_VSTRING(POS) \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3803 (((POS) >= size1 ? string2 - size1 : string1) + (POS)) |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3804 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3805 /* Using the compiled pattern in BUFP->buffer, first tries to match the |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3806 virtual concatenation of STRING1 and STRING2, starting first at index |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3807 STARTPOS, then at STARTPOS + 1, and so on. |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
3808 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3809 STRING1 and STRING2 have length SIZE1 and SIZE2, respectively. |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
3810 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3811 RANGE is how far to scan while trying to match. RANGE = 0 means try |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3812 only at STARTPOS; in general, the last start tried is STARTPOS + |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3813 RANGE. |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
3814 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3815 In REGS, return the indices of the virtual concatenation of STRING1 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3816 and STRING2 that matched the entire BUFP->buffer and its contained |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3817 subexpressions. |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
3818 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3819 Do not consider matching one past the index STOP in the virtual |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3820 concatenation of STRING1 and STRING2. |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3821 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3822 We return either the position in the strings at which the match was |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3823 found, -1 if no match, or -2 if error (such as failure |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3824 stack overflow). */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3825 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3826 int |
28138
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28062
diff
changeset
|
3827 re_search_2 (bufp, str1, size1, str2, size2, startpos, range, regs, stop) |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3828 struct re_pattern_buffer *bufp; |
28138
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28062
diff
changeset
|
3829 const char *str1, *str2; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3830 int size1, size2; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3831 int startpos; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3832 int range; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3833 struct re_registers *regs; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3834 int stop; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3835 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3836 int val; |
28138
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28062
diff
changeset
|
3837 re_char *string1 = (re_char*) str1; |
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28062
diff
changeset
|
3838 re_char *string2 = (re_char*) str2; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3839 register char *fastmap = bufp->fastmap; |
13250
52e053f46f76
(TRANSLATE, PATFETCH): Cast elt of `translate'.
Richard M. Stallman <rms@gnu.org>
parents:
13100
diff
changeset
|
3840 register RE_TRANSLATE_TYPE translate = bufp->translate; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3841 int total_size = size1 + size2; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3842 int endpos = startpos + range; |
31312
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
3843 boolean anchored_start; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3844 |
18262 | 3845 /* Nonzero if we have to concern multibyte character. */ |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
3846 const boolean multibyte = RE_MULTIBYTE_P (bufp); |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3847 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3848 /* Check for out-of-range STARTPOS. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3849 if (startpos < 0 || startpos > total_size) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3850 return -1; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
3851 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3852 /* Fix up RANGE if it might eventually take us outside |
13100
4f0f50fc3aaf
(re_search_2): Use 0, not -1, as the lower bound
Richard M. Stallman <rms@gnu.org>
parents:
12983
diff
changeset
|
3853 the virtual concatenation of STRING1 and STRING2. |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
3854 Make sure we won't move STARTPOS below 0 or above TOTAL_SIZE. */ |
13100
4f0f50fc3aaf
(re_search_2): Use 0, not -1, as the lower bound
Richard M. Stallman <rms@gnu.org>
parents:
12983
diff
changeset
|
3855 if (endpos < 0) |
4f0f50fc3aaf
(re_search_2): Use 0, not -1, as the lower bound
Richard M. Stallman <rms@gnu.org>
parents:
12983
diff
changeset
|
3856 range = 0 - startpos; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3857 else if (endpos > total_size) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3858 range = total_size - startpos; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3859 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3860 /* If the search isn't to be a backwards one, don't waste time in a |
21760
f97c01dfd603
(re_search_2): Fix handling of at_dot.
Richard M. Stallman <rms@gnu.org>
parents:
21562
diff
changeset
|
3861 search for a pattern anchored at beginning of buffer. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3862 if (bufp->used > 0 && (re_opcode_t) bufp->buffer[0] == begbuf && range > 0) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3863 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3864 if (startpos > 0) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3865 return -1; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3866 else |
21760
f97c01dfd603
(re_search_2): Fix handling of at_dot.
Richard M. Stallman <rms@gnu.org>
parents:
21562
diff
changeset
|
3867 range = 0; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3868 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3869 |
12983
ed39ba26313b
(re_search_2): If pattern starts with \=, optimize search.
Richard M. Stallman <rms@gnu.org>
parents:
12931
diff
changeset
|
3870 #ifdef emacs |
ed39ba26313b
(re_search_2): If pattern starts with \=, optimize search.
Richard M. Stallman <rms@gnu.org>
parents:
12931
diff
changeset
|
3871 /* In a forward search for something that starts with \=. |
ed39ba26313b
(re_search_2): If pattern starts with \=, optimize search.
Richard M. Stallman <rms@gnu.org>
parents:
12931
diff
changeset
|
3872 don't keep searching past point. */ |
ed39ba26313b
(re_search_2): If pattern starts with \=, optimize search.
Richard M. Stallman <rms@gnu.org>
parents:
12931
diff
changeset
|
3873 if (bufp->used > 0 && (re_opcode_t) bufp->buffer[0] == at_dot && range > 0) |
ed39ba26313b
(re_search_2): If pattern starts with \=, optimize search.
Richard M. Stallman <rms@gnu.org>
parents:
12931
diff
changeset
|
3874 { |
21760
f97c01dfd603
(re_search_2): Fix handling of at_dot.
Richard M. Stallman <rms@gnu.org>
parents:
21562
diff
changeset
|
3875 range = PT_BYTE - BEGV_BYTE - startpos; |
f97c01dfd603
(re_search_2): Fix handling of at_dot.
Richard M. Stallman <rms@gnu.org>
parents:
21562
diff
changeset
|
3876 if (range < 0) |
12983
ed39ba26313b
(re_search_2): If pattern starts with \=, optimize search.
Richard M. Stallman <rms@gnu.org>
parents:
12931
diff
changeset
|
3877 return -1; |
ed39ba26313b
(re_search_2): If pattern starts with \=, optimize search.
Richard M. Stallman <rms@gnu.org>
parents:
12931
diff
changeset
|
3878 } |
ed39ba26313b
(re_search_2): If pattern starts with \=, optimize search.
Richard M. Stallman <rms@gnu.org>
parents:
12931
diff
changeset
|
3879 #endif /* emacs */ |
ed39ba26313b
(re_search_2): If pattern starts with \=, optimize search.
Richard M. Stallman <rms@gnu.org>
parents:
12931
diff
changeset
|
3880 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3881 /* Update the fastmap now if not correct already. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3882 if (fastmap && !bufp->fastmap_accurate) |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
3883 re_compile_fastmap (bufp); |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
3884 |
16009
2a4da819f152
(re_search_2): Optimize regexp that starts with ^.
Richard M. Stallman <rms@gnu.org>
parents:
16008
diff
changeset
|
3885 /* See whether the pattern is anchored. */ |
31312
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
3886 anchored_start = (bufp->buffer[0] == begline); |
16009
2a4da819f152
(re_search_2): Optimize regexp that starts with ^.
Richard M. Stallman <rms@gnu.org>
parents:
16008
diff
changeset
|
3887 |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3888 #ifdef emacs |
21482
9898a4994a12
(re_match_2, re_search_2): Convert position to a charpos,
Karl Heuer <kwzh@gnu.org>
parents:
21404
diff
changeset
|
3889 gl_state.object = re_match_object; |
9898a4994a12
(re_match_2, re_search_2): Convert position to a charpos,
Karl Heuer <kwzh@gnu.org>
parents:
21404
diff
changeset
|
3890 { |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
3891 int charpos = SYNTAX_TABLE_BYTE_TO_CHAR (POS_AS_IN_BUFFER (startpos)); |
21482
9898a4994a12
(re_match_2, re_search_2): Convert position to a charpos,
Karl Heuer <kwzh@gnu.org>
parents:
21404
diff
changeset
|
3892 |
9898a4994a12
(re_match_2, re_search_2): Convert position to a charpos,
Karl Heuer <kwzh@gnu.org>
parents:
21404
diff
changeset
|
3893 SETUP_SYNTAX_TABLE_FOR_OBJECT (re_match_object, charpos, 1); |
9898a4994a12
(re_match_2, re_search_2): Convert position to a charpos,
Karl Heuer <kwzh@gnu.org>
parents:
21404
diff
changeset
|
3894 } |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3895 #endif |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3896 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3897 /* Loop through the string, looking for a place to start matching. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3898 for (;;) |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
3899 { |
16009
2a4da819f152
(re_search_2): Optimize regexp that starts with ^.
Richard M. Stallman <rms@gnu.org>
parents:
16008
diff
changeset
|
3900 /* If the pattern is anchored, |
2a4da819f152
(re_search_2): Optimize regexp that starts with ^.
Richard M. Stallman <rms@gnu.org>
parents:
16008
diff
changeset
|
3901 skip quickly past places we cannot match. |
2a4da819f152
(re_search_2): Optimize regexp that starts with ^.
Richard M. Stallman <rms@gnu.org>
parents:
16008
diff
changeset
|
3902 We don't bother to treat startpos == 0 specially |
2a4da819f152
(re_search_2): Optimize regexp that starts with ^.
Richard M. Stallman <rms@gnu.org>
parents:
16008
diff
changeset
|
3903 because that case doesn't repeat. */ |
2a4da819f152
(re_search_2): Optimize regexp that starts with ^.
Richard M. Stallman <rms@gnu.org>
parents:
16008
diff
changeset
|
3904 if (anchored_start && startpos > 0) |
2a4da819f152
(re_search_2): Optimize regexp that starts with ^.
Richard M. Stallman <rms@gnu.org>
parents:
16008
diff
changeset
|
3905 { |
31312
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
3906 if (! ((startpos <= size1 ? string1[startpos - 1] |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
3907 : string2[startpos - size1 - 1]) |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
3908 == '\n')) |
16009
2a4da819f152
(re_search_2): Optimize regexp that starts with ^.
Richard M. Stallman <rms@gnu.org>
parents:
16008
diff
changeset
|
3909 goto advance; |
2a4da819f152
(re_search_2): Optimize regexp that starts with ^.
Richard M. Stallman <rms@gnu.org>
parents:
16008
diff
changeset
|
3910 } |
2a4da819f152
(re_search_2): Optimize regexp that starts with ^.
Richard M. Stallman <rms@gnu.org>
parents:
16008
diff
changeset
|
3911 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3912 /* If a fastmap is supplied, skip quickly over characters that |
18262 | 3913 cannot be the start of a match. If the pattern can match the |
3914 null string, however, we don't need to skip characters; we want | |
3915 the first null string. */ | |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3916 if (fastmap && startpos < total_size && !bufp->can_be_null) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3917 { |
28138
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28062
diff
changeset
|
3918 register re_char *d; |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
3919 register re_wchar_t buf_ch; |
21348
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
3920 |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
3921 d = POS_ADDR_VSTRING (startpos); |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
3922 |
18262 | 3923 if (range > 0) /* Searching forwards. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3924 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3925 register int lim = 0; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3926 int irange = range; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3927 |
18262 | 3928 if (startpos < size1 && startpos + range >= size1) |
3929 lim = range - (size1 - startpos); | |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3930 |
18262 | 3931 /* Written out as an if-else to avoid testing `translate' |
3932 inside the loop. */ | |
21838
1d93b782b983
(re_search_2): Fix indentation.
Andreas Schwab <schwab@suse.de>
parents:
21760
diff
changeset
|
3933 if (RE_TRANSLATE_P (translate)) |
1d93b782b983
(re_search_2): Fix indentation.
Andreas Schwab <schwab@suse.de>
parents:
21760
diff
changeset
|
3934 { |
21348
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
3935 if (multibyte) |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
3936 while (range > lim) |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
3937 { |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
3938 int buf_charlen; |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
3939 |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
3940 buf_ch = STRING_CHAR_AND_LENGTH (d, range - lim, |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
3941 buf_charlen); |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
3942 |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
3943 buf_ch = RE_TRANSLATE (translate, buf_ch); |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
3944 if (buf_ch >= 0400 |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
3945 || fastmap[buf_ch]) |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
3946 break; |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
3947 |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
3948 range -= buf_charlen; |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
3949 d += buf_charlen; |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
3950 } |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
3951 else |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
3952 while (range > lim |
28138
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28062
diff
changeset
|
3953 && !fastmap[RE_TRANSLATE (translate, *d)]) |
22237
566c88b62de6
(re_search_2): Don't use ++ inside RE_TRANSLATE.
Richard M. Stallman <rms@gnu.org>
parents:
21963
diff
changeset
|
3954 { |
566c88b62de6
(re_search_2): Don't use ++ inside RE_TRANSLATE.
Richard M. Stallman <rms@gnu.org>
parents:
21963
diff
changeset
|
3955 d++; |
566c88b62de6
(re_search_2): Don't use ++ inside RE_TRANSLATE.
Richard M. Stallman <rms@gnu.org>
parents:
21963
diff
changeset
|
3956 range--; |
566c88b62de6
(re_search_2): Don't use ++ inside RE_TRANSLATE.
Richard M. Stallman <rms@gnu.org>
parents:
21963
diff
changeset
|
3957 } |
21348
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
3958 } |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3959 else |
28138
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28062
diff
changeset
|
3960 while (range > lim && !fastmap[*d]) |
22237
566c88b62de6
(re_search_2): Don't use ++ inside RE_TRANSLATE.
Richard M. Stallman <rms@gnu.org>
parents:
21963
diff
changeset
|
3961 { |
566c88b62de6
(re_search_2): Don't use ++ inside RE_TRANSLATE.
Richard M. Stallman <rms@gnu.org>
parents:
21963
diff
changeset
|
3962 d++; |
566c88b62de6
(re_search_2): Don't use ++ inside RE_TRANSLATE.
Richard M. Stallman <rms@gnu.org>
parents:
21963
diff
changeset
|
3963 range--; |
566c88b62de6
(re_search_2): Don't use ++ inside RE_TRANSLATE.
Richard M. Stallman <rms@gnu.org>
parents:
21963
diff
changeset
|
3964 } |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3965 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3966 startpos += irange - range; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3967 } |
18262 | 3968 else /* Searching backwards. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3969 { |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
3970 int room = (startpos >= size1 |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
3971 ? size2 + size1 - startpos |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
3972 : size1 - startpos); |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
3973 buf_ch = RE_STRING_CHAR (d, room); |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
3974 buf_ch = TRANSLATE (buf_ch); |
21348
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
3975 |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
3976 if (! (buf_ch >= 0400 |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
3977 || fastmap[buf_ch])) |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3978 goto advance; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3979 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3980 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3981 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3982 /* If can't match the null string, and that's all we have left, fail. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3983 if (range >= 0 && startpos == total_size && fastmap |
18262 | 3984 && !bufp->can_be_null) |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3985 return -1; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3986 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3987 val = re_match_2_internal (bufp, string1, size1, string2, size2, |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3988 startpos, regs, stop); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3989 #ifndef REGEX_MALLOC |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
3990 # ifdef C_ALLOCA |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3991 alloca (0); |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
3992 # endif |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3993 #endif |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3994 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3995 if (val >= 0) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3996 return startpos; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
3997 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3998 if (val == -2) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3999 return -2; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4000 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4001 advance: |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
4002 if (!range) |
18262 | 4003 break; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
4004 else if (range > 0) |
18262 | 4005 { |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4006 /* Update STARTPOS to the next character boundary. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4007 if (multibyte) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4008 { |
28138
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28062
diff
changeset
|
4009 re_char *p = POS_ADDR_VSTRING (startpos); |
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28062
diff
changeset
|
4010 re_char *pend = STOP_ADDR_VSTRING (startpos); |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4011 int len = MULTIBYTE_FORM_LENGTH (p, pend - p); |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4012 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4013 range -= len; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4014 if (range < 0) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4015 break; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4016 startpos += len; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4017 } |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4018 else |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4019 { |
18532
488df9d19f5e
(re_search_2): Cast result of POS_ADDR_VSTRING.
Richard M. Stallman <rms@gnu.org>
parents:
18263
diff
changeset
|
4020 range--; |
488df9d19f5e
(re_search_2): Cast result of POS_ADDR_VSTRING.
Richard M. Stallman <rms@gnu.org>
parents:
18263
diff
changeset
|
4021 startpos++; |
488df9d19f5e
(re_search_2): Cast result of POS_ADDR_VSTRING.
Richard M. Stallman <rms@gnu.org>
parents:
18263
diff
changeset
|
4022 } |
16010 | 4023 } |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4024 else |
18262 | 4025 { |
4026 range++; | |
4027 startpos--; | |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4028 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4029 /* Update STARTPOS to the previous character boundary. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4030 if (multibyte) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4031 { |
28138
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28062
diff
changeset
|
4032 re_char *p = POS_ADDR_VSTRING (startpos); |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4033 int len = 0; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4034 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4035 /* Find the head of multibyte form. */ |
20633
063756386696
(re_search_2): Fix call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20455
diff
changeset
|
4036 while (!CHAR_HEAD_P (*p)) |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4037 p--, len++; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4038 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4039 /* Adjust it. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4040 #if 0 /* XXX */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4041 if (MULTIBYTE_FORM_LENGTH (p, len + 1) != (len + 1)) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4042 ; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4043 else |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4044 #endif |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4045 { |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4046 range += len; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4047 if (range > 0) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4048 break; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4049 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4050 startpos -= len; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4051 } |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4052 } |
18262 | 4053 } |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4054 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4055 return -1; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4056 } /* re_search_2 */ |
31312
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
4057 WEAK_ALIAS (__re_search_2, re_search_2) |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4058 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4059 /* Declarations and macros for re_match_2. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4060 |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
4061 static int bcmp_translate _RE_ARGS((re_char *s1, re_char *s2, |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
4062 register int len, |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
4063 RE_TRANSLATE_TYPE translate, |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
4064 const int multibyte)); |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4065 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4066 /* This converts PTR, a pointer into one of the search strings `string1' |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4067 and `string2' into an offset from the beginning of that string. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4068 #define POINTER_TO_OFFSET(ptr) \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4069 (FIRST_STRING_P (ptr) \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4070 ? ((regoff_t) ((ptr) - string1)) \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4071 : ((regoff_t) ((ptr) - string2 + size1))) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4072 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4073 /* Call before fetching a character with *d. This switches over to |
28662
d40a7f046efe
(re_match_2_internal): Don't shorten the strings anymore,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28473
diff
changeset
|
4074 string2 if necessary. |
d40a7f046efe
(re_match_2_internal): Don't shorten the strings anymore,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28473
diff
changeset
|
4075 Check re_match_2_internal for a discussion of why end_match_2 might |
d40a7f046efe
(re_match_2_internal): Don't shorten the strings anymore,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28473
diff
changeset
|
4076 not be within string2 (but be equal to end_match_1 instead). */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4077 #define PREFETCH() \ |
18262 | 4078 while (d == dend) \ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4079 { \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4080 /* End of string2 => fail. */ \ |
18262 | 4081 if (dend == end_match_2) \ |
4082 goto fail; \ | |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
4083 /* End of string1 => advance to string2. */ \ |
18262 | 4084 d = string2; \ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4085 dend = end_match_2; \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4086 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4087 |
29296
b2c75746a989
(PREFETCH_NOLIMIT): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29194
diff
changeset
|
4088 /* Call before fetching a char with *d if you already checked other limits. |
b2c75746a989
(PREFETCH_NOLIMIT): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29194
diff
changeset
|
4089 This is meant for use in lookahead operations like wordend, etc.. |
b2c75746a989
(PREFETCH_NOLIMIT): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29194
diff
changeset
|
4090 where we might need to look at parts of the string that might be |
b2c75746a989
(PREFETCH_NOLIMIT): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29194
diff
changeset
|
4091 outside of the LIMITs (i.e past `stop'). */ |
b2c75746a989
(PREFETCH_NOLIMIT): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29194
diff
changeset
|
4092 #define PREFETCH_NOLIMIT() \ |
b2c75746a989
(PREFETCH_NOLIMIT): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29194
diff
changeset
|
4093 if (d == end1) \ |
b2c75746a989
(PREFETCH_NOLIMIT): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29194
diff
changeset
|
4094 { \ |
b2c75746a989
(PREFETCH_NOLIMIT): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29194
diff
changeset
|
4095 d = string2; \ |
b2c75746a989
(PREFETCH_NOLIMIT): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29194
diff
changeset
|
4096 dend = end_match_2; \ |
b2c75746a989
(PREFETCH_NOLIMIT): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29194
diff
changeset
|
4097 } \ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4098 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4099 /* Test if at very beginning or at very end of the virtual concatenation |
18262 | 4100 of `string1' and `string2'. If only one string, it's `string2'. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4101 #define AT_STRINGS_BEG(d) ((d) == (size1 ? string1 : string2) || !size2) |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
4102 #define AT_STRINGS_END(d) ((d) == end2) |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4103 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4104 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4105 /* Test if D points to a character which is word-constituent. We have |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4106 two special cases to check for: if past the end of string1, look at |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4107 the first character in string2; and if before the beginning of |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4108 string2, look at the last character in string1. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4109 #define WORDCHAR_P(d) \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4110 (SYNTAX ((d) == end1 ? *string2 \ |
18262 | 4111 : (d) == string2 - 1 ? *(end1 - 1) : *(d)) \ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4112 == Sword) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4113 |
13722
e2669b8a46e2
(AT_WORD_BOUNDARY): Disable macro.
Karl Heuer <kwzh@gnu.org>
parents:
13565
diff
changeset
|
4114 /* Disabled due to a compiler bug -- see comment at case wordbound */ |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4115 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4116 /* The comment at case wordbound is following one, but we don't use |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4117 AT_WORD_BOUNDARY anymore to support multibyte form. |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4118 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4119 The DEC Alpha C compiler 3.x generates incorrect code for the |
18262 | 4120 test WORDCHAR_P (d - 1) != WORDCHAR_P (d) in the expansion of |
4121 AT_WORD_BOUNDARY, so this code is disabled. Expanding the | |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4122 macro and introducing temporary variables works around the bug. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4123 |
13722
e2669b8a46e2
(AT_WORD_BOUNDARY): Disable macro.
Karl Heuer <kwzh@gnu.org>
parents:
13565
diff
changeset
|
4124 #if 0 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4125 /* Test if the character before D and the one at D differ with respect |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4126 to being word-constituent. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4127 #define AT_WORD_BOUNDARY(d) \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4128 (AT_STRINGS_BEG (d) || AT_STRINGS_END (d) \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4129 || WORDCHAR_P (d - 1) != WORDCHAR_P (d)) |
13722
e2669b8a46e2
(AT_WORD_BOUNDARY): Disable macro.
Karl Heuer <kwzh@gnu.org>
parents:
13565
diff
changeset
|
4130 #endif |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4131 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4132 /* Free everything we malloc. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4133 #ifdef MATCH_MAY_ALLOCATE |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
4134 # define FREE_VAR(var) if (var) { REGEX_FREE (var); var = NULL; } else |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
4135 # define FREE_VARIABLES() \ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4136 do { \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4137 REGEX_FREE_STACK (fail_stack.stack); \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4138 FREE_VAR (regstart); \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4139 FREE_VAR (regend); \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4140 FREE_VAR (best_regstart); \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4141 FREE_VAR (best_regend); \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4142 } while (0) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4143 #else |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
4144 # define FREE_VARIABLES() ((void)0) /* Do nothing! But inhibit gcc warning. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4145 #endif /* not MATCH_MAY_ALLOCATE */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4146 |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4147 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4148 /* Optimization routines. */ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4149 |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4150 /* If the operation is a match against one or more chars, |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4151 return a pointer to the next operation, else return NULL. */ |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
4152 static re_char * |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4153 skip_one_char (p) |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
4154 re_char *p; |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4155 { |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4156 switch (SWITCH_ENUM_CAST (*p++)) |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4157 { |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4158 case anychar: |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4159 break; |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4160 |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4161 case exactn: |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4162 p += *p + 1; |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4163 break; |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4164 |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4165 case charset_not: |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4166 case charset: |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4167 if (CHARSET_RANGE_TABLE_EXISTS_P (p - 1)) |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4168 { |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4169 int mcnt; |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4170 p = CHARSET_RANGE_TABLE (p - 1); |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4171 EXTRACT_NUMBER_AND_INCR (mcnt, p); |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4172 p = CHARSET_RANGE_TABLE_END (p, mcnt); |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4173 } |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4174 else |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4175 p += 1 + CHARSET_BITMAP_SIZE (p - 1); |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4176 break; |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4177 |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4178 case syntaxspec: |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4179 case notsyntaxspec: |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
4180 #ifdef emacs |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4181 case categoryspec: |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4182 case notcategoryspec: |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4183 #endif /* emacs */ |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4184 p++; |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4185 break; |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4186 |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4187 default: |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4188 p = NULL; |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4189 } |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4190 return p; |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4191 } |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4192 |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4193 |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4194 /* Jump over non-matching operations. */ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4195 static unsigned char * |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4196 skip_noops (p, pend) |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4197 unsigned char *p, *pend; |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4198 { |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4199 int mcnt; |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4200 while (p < pend) |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4201 { |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4202 switch (SWITCH_ENUM_CAST ((re_opcode_t) *p)) |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4203 { |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4204 case start_memory: |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4205 case stop_memory: |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4206 p += 2; break; |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4207 case no_op: |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4208 p += 1; break; |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4209 case jump: |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4210 p += 1; |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4211 EXTRACT_NUMBER_AND_INCR (mcnt, p); |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4212 p += mcnt; |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4213 break; |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4214 default: |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4215 return p; |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4216 } |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4217 } |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4218 assert (p == pend); |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4219 return p; |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4220 } |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4221 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4222 /* Non-zero if "p1 matches something" implies "p2 fails". */ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4223 static int |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4224 mutually_exclusive_p (bufp, p1, p2) |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4225 struct re_pattern_buffer *bufp; |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4226 unsigned char *p1, *p2; |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4227 { |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4228 re_opcode_t op2; |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
4229 const boolean multibyte = RE_MULTIBYTE_P (bufp); |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4230 unsigned char *pend = bufp->buffer + bufp->used; |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4231 |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4232 assert (p1 >= bufp->buffer && p1 < pend |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4233 && p2 >= bufp->buffer && p2 <= pend); |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4234 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4235 /* Skip over open/close-group commands. |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4236 If what follows this loop is a ...+ construct, |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4237 look at what begins its body, since we will have to |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4238 match at least one of that. */ |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4239 p2 = skip_noops (p2, pend); |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4240 /* The same skip can be done for p1, except that this function |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4241 is only used in the case where p1 is a simple match operator. */ |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4242 /* p1 = skip_noops (p1, pend); */ |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4243 |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4244 assert (p1 >= bufp->buffer && p1 < pend |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4245 && p2 >= bufp->buffer && p2 <= pend); |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4246 |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4247 op2 = p2 == pend ? succeed : *p2; |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4248 |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4249 switch (SWITCH_ENUM_CAST (op2)) |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4250 { |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4251 case succeed: |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4252 case endbuf: |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4253 /* If we're at the end of the pattern, we can change. */ |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4254 if (skip_one_char (p1)) |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4255 { |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4256 DEBUG_PRINT1 (" End of pattern: fast loop.\n"); |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4257 return 1; |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4258 } |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4259 break; |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4260 |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4261 case endline: |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4262 case exactn: |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4263 { |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
4264 register re_wchar_t c |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4265 = (re_opcode_t) *p2 == endline ? '\n' |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4266 : RE_STRING_CHAR(p2 + 2, pend - p2 - 2); |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4267 |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4268 if ((re_opcode_t) *p1 == exactn) |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4269 { |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4270 if (c != RE_STRING_CHAR (p1 + 2, pend - p1 - 2)) |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4271 { |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4272 DEBUG_PRINT3 (" '%c' != '%c' => fast loop.\n", c, p1[2]); |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4273 return 1; |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4274 } |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4275 } |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4276 |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4277 else if ((re_opcode_t) *p1 == charset |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4278 || (re_opcode_t) *p1 == charset_not) |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4279 { |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4280 int not = (re_opcode_t) *p1 == charset_not; |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4281 |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4282 /* Test if C is listed in charset (or charset_not) |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4283 at `p1'. */ |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4284 if (SINGLE_BYTE_CHAR_P (c)) |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4285 { |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4286 if (c < CHARSET_BITMAP_SIZE (p1) * BYTEWIDTH |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4287 && p1[2 + c / BYTEWIDTH] & (1 << (c % BYTEWIDTH))) |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4288 not = !not; |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4289 } |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4290 else if (CHARSET_RANGE_TABLE_EXISTS_P (p1)) |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4291 CHARSET_LOOKUP_RANGE_TABLE (not, c, p1); |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4292 |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4293 /* `not' is equal to 1 if c would match, which means |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4294 that we can't change to pop_failure_jump. */ |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4295 if (!not) |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4296 { |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4297 DEBUG_PRINT1 (" No match => fast loop.\n"); |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4298 return 1; |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4299 } |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4300 } |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4301 else if ((re_opcode_t) *p1 == anychar |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4302 && c == '\n') |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4303 { |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4304 DEBUG_PRINT1 (" . != \\n => fast loop.\n"); |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4305 return 1; |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4306 } |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4307 } |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4308 break; |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4309 |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4310 case charset: |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4311 case charset_not: |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4312 { |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4313 if ((re_opcode_t) *p1 == exactn) |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4314 /* Reuse the code above. */ |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4315 return mutually_exclusive_p (bufp, p2, p1); |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4316 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4317 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4318 /* It is hard to list up all the character in charset |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4319 P2 if it includes multibyte character. Give up in |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4320 such case. */ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4321 else if (!multibyte || !CHARSET_RANGE_TABLE_EXISTS_P (p2)) |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4322 { |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4323 /* Now, we are sure that P2 has no range table. |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4324 So, for the size of bitmap in P2, `p2[1]' is |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4325 enough. But P1 may have range table, so the |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4326 size of bitmap table of P1 is extracted by |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4327 using macro `CHARSET_BITMAP_SIZE'. |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4328 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4329 Since we know that all the character listed in |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4330 P2 is ASCII, it is enough to test only bitmap |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4331 table of P1. */ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4332 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4333 if (*p1 == *p2) |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4334 { |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4335 int idx; |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4336 /* We win if the charset inside the loop |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4337 has no overlap with the one after the loop. */ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4338 for (idx = 0; |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4339 (idx < (int) p2[1] |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4340 && idx < CHARSET_BITMAP_SIZE (p1)); |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4341 idx++) |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4342 if ((p2[2 + idx] & p1[2 + idx]) != 0) |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4343 break; |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4344 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4345 if (idx == p2[1] |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4346 || idx == CHARSET_BITMAP_SIZE (p1)) |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4347 { |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4348 DEBUG_PRINT1 (" No match => fast loop.\n"); |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4349 return 1; |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4350 } |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4351 } |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4352 else if ((re_opcode_t) *p1 == charset |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4353 || (re_opcode_t) *p1 == charset_not) |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4354 { |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4355 int idx; |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4356 /* We win if the charset_not inside the loop lists |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4357 every character listed in the charset after. */ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4358 for (idx = 0; idx < (int) p2[1]; idx++) |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4359 if (! (p2[2 + idx] == 0 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4360 || (idx < CHARSET_BITMAP_SIZE (p1) |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4361 && ((p2[2 + idx] & ~ p1[2 + idx]) == 0)))) |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4362 break; |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4363 |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4364 if (idx == p2[1]) |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4365 { |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4366 DEBUG_PRINT1 (" No match => fast loop.\n"); |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4367 return 1; |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4368 } |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4369 } |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4370 } |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4371 } |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4372 |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4373 case wordend: |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4374 case notsyntaxspec: |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4375 return ((re_opcode_t) *p1 == syntaxspec |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4376 && p1[1] == (op2 == wordend ? Sword : p2[1])); |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4377 |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4378 case wordbeg: |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4379 case syntaxspec: |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4380 return ((re_opcode_t) *p1 == notsyntaxspec |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4381 && p1[1] == (op2 == wordend ? Sword : p2[1])); |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4382 |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4383 case wordbound: |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4384 return (((re_opcode_t) *p1 == notsyntaxspec |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4385 || (re_opcode_t) *p1 == syntaxspec) |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4386 && p1[1] == Sword); |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4387 |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
4388 #ifdef emacs |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4389 case categoryspec: |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4390 return ((re_opcode_t) *p1 == notcategoryspec && p1[1] == p2[1]); |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4391 case notcategoryspec: |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4392 return ((re_opcode_t) *p1 == categoryspec && p1[1] == p2[1]); |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4393 #endif /* emacs */ |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4394 |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4395 default: |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4396 ; |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4397 } |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4398 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4399 /* Safe default. */ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4400 return 0; |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4401 } |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4402 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4403 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4404 /* Matching routines. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4405 |
18262 | 4406 #ifndef emacs /* Emacs never uses this. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4407 /* re_match is like re_match_2 except it takes only a single string. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4408 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4409 int |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4410 re_match (bufp, string, size, pos, regs) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4411 struct re_pattern_buffer *bufp; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4412 const char *string; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4413 int size, pos; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4414 struct re_registers *regs; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4415 { |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
4416 int result = re_match_2_internal (bufp, NULL, 0, (re_char*) string, size, |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4417 pos, regs, size); |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
4418 # if defined C_ALLOCA && !defined REGEX_MALLOC |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4419 alloca (0); |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
4420 # endif |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4421 return result; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4422 } |
31312
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
4423 WEAK_ALIAS (__re_match, re_match) |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4424 #endif /* not emacs */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4425 |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4426 #ifdef emacs |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4427 /* In Emacs, this is the string or buffer in which we |
18262 | 4428 are matching. It is used for looking up syntax properties. */ |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4429 Lisp_Object re_match_object; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4430 #endif |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4431 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4432 /* re_match_2 matches the compiled pattern in BUFP against the |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4433 the (virtual) concatenation of STRING1 and STRING2 (of length SIZE1 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4434 and SIZE2, respectively). We start matching at POS, and stop |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4435 matching at STOP. |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
4436 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4437 If REGS is non-null and the `no_sub' field of BUFP is nonzero, we |
18262 | 4438 store offsets for the substring each group matched in REGS. See the |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4439 documentation for exactly how many groups we fill. |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4440 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4441 We return -1 if no match, -2 if an internal error (such as the |
18262 | 4442 failure stack overflowing). Otherwise, we return the length of the |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4443 matched substring. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4444 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4445 int |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4446 re_match_2 (bufp, string1, size1, string2, size2, pos, regs, stop) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4447 struct re_pattern_buffer *bufp; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4448 const char *string1, *string2; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4449 int size1, size2; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4450 int pos; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4451 struct re_registers *regs; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4452 int stop; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4453 { |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4454 int result; |
18262 | 4455 |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4456 #ifdef emacs |
21482
9898a4994a12
(re_match_2, re_search_2): Convert position to a charpos,
Karl Heuer <kwzh@gnu.org>
parents:
21404
diff
changeset
|
4457 int charpos; |
9898a4994a12
(re_match_2, re_search_2): Convert position to a charpos,
Karl Heuer <kwzh@gnu.org>
parents:
21404
diff
changeset
|
4458 gl_state.object = re_match_object; |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
4459 charpos = SYNTAX_TABLE_BYTE_TO_CHAR (POS_AS_IN_BUFFER (pos)); |
21482
9898a4994a12
(re_match_2, re_search_2): Convert position to a charpos,
Karl Heuer <kwzh@gnu.org>
parents:
21404
diff
changeset
|
4460 SETUP_SYNTAX_TABLE_FOR_OBJECT (re_match_object, charpos, 1); |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4461 #endif |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4462 |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
4463 result = re_match_2_internal (bufp, (re_char*) string1, size1, |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
4464 (re_char*) string2, size2, |
21482
9898a4994a12
(re_match_2, re_search_2): Convert position to a charpos,
Karl Heuer <kwzh@gnu.org>
parents:
21404
diff
changeset
|
4465 pos, regs, stop); |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
4466 #if defined C_ALLOCA && !defined REGEX_MALLOC |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4467 alloca (0); |
29801
3ea64112b4ba
(re_match, re_match_2): Protect calls to alloca (0).
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29546
diff
changeset
|
4468 #endif |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4469 return result; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4470 } |
31312
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
4471 WEAK_ALIAS (__re_match_2, re_match_2) |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4472 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4473 /* This is a separate function so that we can force an alloca cleanup |
18262 | 4474 afterwards. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4475 static int |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4476 re_match_2_internal (bufp, string1, size1, string2, size2, pos, regs, stop) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4477 struct re_pattern_buffer *bufp; |
28138
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28062
diff
changeset
|
4478 re_char *string1, *string2; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4479 int size1, size2; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4480 int pos; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4481 struct re_registers *regs; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4482 int stop; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4483 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4484 /* General temporaries. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4485 int mcnt; |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
4486 size_t reg; |
28138
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28062
diff
changeset
|
4487 boolean not; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4488 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4489 /* Just past the end of the corresponding string. */ |
28138
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28062
diff
changeset
|
4490 re_char *end1, *end2; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4491 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4492 /* Pointers into string1 and string2, just past the last characters in |
18262 | 4493 each to consider matching. */ |
28138
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28062
diff
changeset
|
4494 re_char *end_match_1, *end_match_2; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4495 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4496 /* Where we are in the data, and the end of the current string. */ |
28138
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28062
diff
changeset
|
4497 re_char *d, *dend; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
4498 |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
4499 /* Used sometimes to remember where we were before starting matching |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
4500 an operator so that we can go back in case of failure. This "atomic" |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
4501 behavior of matching opcodes is indispensable to the correctness |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
4502 of the on_failure_keep_string_jump optimization. */ |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
4503 re_char *dfail; |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
4504 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4505 /* Where we are in the pattern, and the end of the pattern. */ |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
4506 re_char *p = bufp->buffer; |
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
4507 re_char *pend = p + bufp->used; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4508 |
18262 | 4509 /* We use this to map every character in the string. */ |
13250
52e053f46f76
(TRANSLATE, PATFETCH): Cast elt of `translate'.
Richard M. Stallman <rms@gnu.org>
parents:
13100
diff
changeset
|
4510 RE_TRANSLATE_TYPE translate = bufp->translate; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4511 |
18262 | 4512 /* Nonzero if we have to concern multibyte character. */ |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
4513 const boolean multibyte = RE_MULTIBYTE_P (bufp); |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4514 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4515 /* Failure point stack. Each place that can handle a failure further |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4516 down the line pushes a failure point on this stack. It consists of |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4517 regstart, and regend for all registers corresponding to |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4518 the subexpressions we're currently inside, plus the number of such |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4519 registers, and, finally, two char *'s. The first char * is where |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4520 to resume scanning the pattern; the second one is where to resume |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4521 scanning the strings. */ |
18262 | 4522 #ifdef MATCH_MAY_ALLOCATE /* otherwise, this is global. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4523 fail_stack_type fail_stack; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4524 #endif |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4525 #ifdef DEBUG |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4526 unsigned nfailure_points_pushed = 0, nfailure_points_popped = 0; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4527 #endif |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4528 |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
4529 #if defined REL_ALLOC && defined REGEX_MALLOC |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4530 /* This holds the pointer to the failure stack, when |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4531 it is allocated relocatably. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4532 fail_stack_elt_t *failure_stack_ptr; |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
4533 #endif |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4534 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4535 /* We fill all the registers internally, independent of what we |
18262 | 4536 return, for use in backreferences. The number here includes |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4537 an element for register zero. */ |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
4538 size_t num_regs = bufp->re_nsub + 1; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
4539 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4540 /* Information on the contents of registers. These are pointers into |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4541 the input strings; they record just what was matched (on this |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4542 attempt) by a subexpression part of the pattern, that is, the |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4543 regnum-th regstart pointer points to where in the pattern we began |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4544 matching and the regnum-th regend points to right after where we |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4545 stopped matching the regnum-th subexpression. (The zeroth register |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4546 keeps track of what the whole pattern matches.) */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4547 #ifdef MATCH_MAY_ALLOCATE /* otherwise, these are global. */ |
28138
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28062
diff
changeset
|
4548 re_char **regstart, **regend; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4549 #endif |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4550 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4551 /* The following record the register info as found in the above |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
4552 variables when we find a match better than any we've seen before. |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4553 This happens as we backtrack through the failure points, which in |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4554 turn happens only if we have not yet matched the entire string. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4555 unsigned best_regs_set = false; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4556 #ifdef MATCH_MAY_ALLOCATE /* otherwise, these are global. */ |
28138
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28062
diff
changeset
|
4557 re_char **best_regstart, **best_regend; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4558 #endif |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
4559 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4560 /* Logically, this is `best_regend[0]'. But we don't want to have to |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4561 allocate space for that if we're not allocating space for anything |
18262 | 4562 else (see below). Also, we never need info about register 0 for |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4563 any of the other register vectors, and it seems rather a kludge to |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4564 treat `best_regend' differently than the rest. So we keep track of |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4565 the end of the best match so far in a separate variable. We |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4566 initialize this to NULL so that when we backtrack the first time |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4567 and need to test it, it's not garbage. */ |
28138
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28062
diff
changeset
|
4568 re_char *match_end = NULL; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4569 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4570 #ifdef DEBUG |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4571 /* Counts the total number of registers pushed. */ |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
4572 unsigned num_regs_pushed = 0; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4573 #endif |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4574 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4575 DEBUG_PRINT1 ("\n\nEntering re_match_2.\n"); |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
4576 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4577 INIT_FAIL_STACK (); |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
4578 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4579 #ifdef MATCH_MAY_ALLOCATE |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4580 /* Do not bother to initialize all the register variables if there are |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4581 no groups in the pattern, as it takes a fair amount of time. If |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4582 there are groups, we include space for register 0 (the whole |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4583 pattern), even though we never use it, since it simplifies the |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4584 array indexing. We should fix this. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4585 if (bufp->re_nsub) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4586 { |
28138
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28062
diff
changeset
|
4587 regstart = REGEX_TALLOC (num_regs, re_char *); |
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28062
diff
changeset
|
4588 regend = REGEX_TALLOC (num_regs, re_char *); |
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28062
diff
changeset
|
4589 best_regstart = REGEX_TALLOC (num_regs, re_char *); |
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28062
diff
changeset
|
4590 best_regend = REGEX_TALLOC (num_regs, re_char *); |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4591 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4592 if (!(regstart && regend && best_regstart && best_regend)) |
18262 | 4593 { |
4594 FREE_VARIABLES (); | |
4595 return -2; | |
4596 } | |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4597 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4598 else |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4599 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4600 /* We must initialize all our variables to NULL, so that |
18262 | 4601 `FREE_VARIABLES' doesn't try to free them. */ |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4602 regstart = regend = best_regstart = best_regend = NULL; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4603 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4604 #endif /* MATCH_MAY_ALLOCATE */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4605 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4606 /* The starting position is bogus. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4607 if (pos < 0 || pos > size1 + size2) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4608 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4609 FREE_VARIABLES (); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4610 return -1; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4611 } |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
4612 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4613 /* Initialize subexpression text positions to -1 to mark ones that no |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4614 start_memory/stop_memory has been seen for. Also initialize the |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4615 register information struct. */ |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
4616 for (reg = 1; reg < num_regs; reg++) |
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
4617 regstart[reg] = regend[reg] = NULL; |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
4618 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4619 /* We move `string1' into `string2' if the latter's empty -- but not if |
18262 | 4620 `string1' is null. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4621 if (size2 == 0 && string1 != NULL) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4622 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4623 string2 = string1; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4624 size2 = size1; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4625 string1 = 0; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4626 size1 = 0; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4627 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4628 end1 = string1 + size1; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4629 end2 = string2 + size2; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4630 |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
4631 /* `p' scans through the pattern as `d' scans through the data. |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4632 `dend' is the end of the input string that `d' points within. `d' |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4633 is advanced into the following input string whenever necessary, but |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4634 this happens before fetching; therefore, at the beginning of the |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4635 loop, `d' can be pointing at the end of a string, but it cannot |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4636 equal `string2'. */ |
28662
d40a7f046efe
(re_match_2_internal): Don't shorten the strings anymore,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28473
diff
changeset
|
4637 if (pos >= size1) |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4638 { |
28662
d40a7f046efe
(re_match_2_internal): Don't shorten the strings anymore,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28473
diff
changeset
|
4639 /* Only match within string2. */ |
d40a7f046efe
(re_match_2_internal): Don't shorten the strings anymore,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28473
diff
changeset
|
4640 d = string2 + pos - size1; |
d40a7f046efe
(re_match_2_internal): Don't shorten the strings anymore,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28473
diff
changeset
|
4641 dend = end_match_2 = string2 + stop - size1; |
d40a7f046efe
(re_match_2_internal): Don't shorten the strings anymore,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28473
diff
changeset
|
4642 end_match_1 = end1; /* Just to give it a value. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4643 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4644 else |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4645 { |
29296
b2c75746a989
(PREFETCH_NOLIMIT): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29194
diff
changeset
|
4646 if (stop < size1) |
28662
d40a7f046efe
(re_match_2_internal): Don't shorten the strings anymore,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28473
diff
changeset
|
4647 { |
d40a7f046efe
(re_match_2_internal): Don't shorten the strings anymore,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28473
diff
changeset
|
4648 /* Only match within string1. */ |
d40a7f046efe
(re_match_2_internal): Don't shorten the strings anymore,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28473
diff
changeset
|
4649 end_match_1 = string1 + stop; |
d40a7f046efe
(re_match_2_internal): Don't shorten the strings anymore,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28473
diff
changeset
|
4650 /* BEWARE! |
d40a7f046efe
(re_match_2_internal): Don't shorten the strings anymore,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28473
diff
changeset
|
4651 When we reach end_match_1, PREFETCH normally switches to string2. |
d40a7f046efe
(re_match_2_internal): Don't shorten the strings anymore,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28473
diff
changeset
|
4652 But in the present case, this means that just doing a PREFETCH |
d40a7f046efe
(re_match_2_internal): Don't shorten the strings anymore,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28473
diff
changeset
|
4653 makes us jump from `stop' to `gap' within the string. |
d40a7f046efe
(re_match_2_internal): Don't shorten the strings anymore,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28473
diff
changeset
|
4654 What we really want here is for the search to stop as |
d40a7f046efe
(re_match_2_internal): Don't shorten the strings anymore,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28473
diff
changeset
|
4655 soon as we hit end_match_1. That's why we set end_match_2 |
d40a7f046efe
(re_match_2_internal): Don't shorten the strings anymore,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28473
diff
changeset
|
4656 to end_match_1 (since PREFETCH fails as soon as we hit |
d40a7f046efe
(re_match_2_internal): Don't shorten the strings anymore,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28473
diff
changeset
|
4657 end_match_2). */ |
d40a7f046efe
(re_match_2_internal): Don't shorten the strings anymore,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28473
diff
changeset
|
4658 end_match_2 = end_match_1; |
d40a7f046efe
(re_match_2_internal): Don't shorten the strings anymore,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28473
diff
changeset
|
4659 } |
d40a7f046efe
(re_match_2_internal): Don't shorten the strings anymore,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28473
diff
changeset
|
4660 else |
29296
b2c75746a989
(PREFETCH_NOLIMIT): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29194
diff
changeset
|
4661 { /* It's important to use this code when stop == size so that |
b2c75746a989
(PREFETCH_NOLIMIT): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29194
diff
changeset
|
4662 moving `d' from end1 to string2 will not prevent the d == dend |
b2c75746a989
(PREFETCH_NOLIMIT): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29194
diff
changeset
|
4663 check from catching the end of string. */ |
28662
d40a7f046efe
(re_match_2_internal): Don't shorten the strings anymore,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28473
diff
changeset
|
4664 end_match_1 = end1; |
d40a7f046efe
(re_match_2_internal): Don't shorten the strings anymore,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28473
diff
changeset
|
4665 end_match_2 = string2 + stop - size1; |
d40a7f046efe
(re_match_2_internal): Don't shorten the strings anymore,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28473
diff
changeset
|
4666 } |
d40a7f046efe
(re_match_2_internal): Don't shorten the strings anymore,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28473
diff
changeset
|
4667 d = string1 + pos; |
d40a7f046efe
(re_match_2_internal): Don't shorten the strings anymore,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28473
diff
changeset
|
4668 dend = end_match_1; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4669 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4670 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4671 DEBUG_PRINT1 ("The compiled pattern is: "); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4672 DEBUG_PRINT_COMPILED_PATTERN (bufp, p, pend); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4673 DEBUG_PRINT1 ("The string to match is: `"); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4674 DEBUG_PRINT_DOUBLE_STRING (d, string1, size1, string2, size2); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4675 DEBUG_PRINT1 ("'\n"); |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
4676 |
18262 | 4677 /* This loops over pattern commands. It exits by returning from the |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4678 function if the match is complete, or it drops through if the match |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4679 fails at this starting point in the input data. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4680 for (;;) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4681 { |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4682 DEBUG_PRINT2 ("\n%p: ", p); |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4683 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4684 if (p == pend) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4685 { /* End of pattern means we might have succeeded. */ |
18262 | 4686 DEBUG_PRINT1 ("end of pattern ... "); |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
4687 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4688 /* If we haven't matched the entire string, and we want the |
18262 | 4689 longest match, try backtracking. */ |
4690 if (d != end_match_2) | |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4691 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4692 /* 1 if this match ends in the same string (string1 or string2) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4693 as the best previous match. */ |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
4694 boolean same_str_p = (FIRST_STRING_P (match_end) |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
4695 == FIRST_STRING_P (d)); |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4696 /* 1 if this match is the best seen so far. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4697 boolean best_match_p; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4698 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4699 /* AIX compiler got confused when this was combined |
18262 | 4700 with the previous declaration. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4701 if (same_str_p) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4702 best_match_p = d > match_end; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4703 else |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
4704 best_match_p = !FIRST_STRING_P (d); |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4705 |
18262 | 4706 DEBUG_PRINT1 ("backtracking.\n"); |
4707 | |
4708 if (!FAIL_STACK_EMPTY ()) | |
4709 { /* More failure points to try. */ | |
4710 | |
4711 /* If exceeds best match so far, save it. */ | |
4712 if (!best_regs_set || best_match_p) | |
4713 { | |
4714 best_regs_set = true; | |
4715 match_end = d; | |
4716 | |
4717 DEBUG_PRINT1 ("\nSAVING match as best so far.\n"); | |
4718 | |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
4719 for (reg = 1; reg < num_regs; reg++) |
18262 | 4720 { |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
4721 best_regstart[reg] = regstart[reg]; |
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
4722 best_regend[reg] = regend[reg]; |
18262 | 4723 } |
4724 } | |
4725 goto fail; | |
4726 } | |
4727 | |
4728 /* If no failure points, don't restore garbage. And if | |
4729 last match is real best match, don't restore second | |
4730 best one. */ | |
4731 else if (best_regs_set && !best_match_p) | |
4732 { | |
4733 restore_best_regs: | |
4734 /* Restore best match. It may happen that `dend == | |
4735 end_match_1' while the restored d is in string2. | |
4736 For example, the pattern `x.*y.*z' against the | |
4737 strings `x-' and `y-z-', if the two strings are | |
4738 not consecutive in memory. */ | |
4739 DEBUG_PRINT1 ("Restoring best registers.\n"); | |
4740 | |
4741 d = match_end; | |
4742 dend = ((d >= string1 && d <= end1) | |
4743 ? end_match_1 : end_match_2); | |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4744 |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
4745 for (reg = 1; reg < num_regs; reg++) |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4746 { |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
4747 regstart[reg] = best_regstart[reg]; |
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
4748 regend[reg] = best_regend[reg]; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4749 } |
18262 | 4750 } |
4751 } /* d != end_match_2 */ | |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4752 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4753 succeed_label: |
18262 | 4754 DEBUG_PRINT1 ("Accepting match.\n"); |
4755 | |
4756 /* If caller wants register contents data back, do it. */ | |
4757 if (regs && !bufp->no_sub) | |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4758 { |
18262 | 4759 /* Have the register data arrays been allocated? */ |
4760 if (bufp->regs_allocated == REGS_UNALLOCATED) | |
4761 { /* No. So allocate them with malloc. We need one | |
4762 extra element beyond `num_regs' for the `-1' marker | |
4763 GNU code uses. */ | |
4764 regs->num_regs = MAX (RE_NREGS, num_regs + 1); | |
4765 regs->start = TALLOC (regs->num_regs, regoff_t); | |
4766 regs->end = TALLOC (regs->num_regs, regoff_t); | |
4767 if (regs->start == NULL || regs->end == NULL) | |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4768 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4769 FREE_VARIABLES (); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4770 return -2; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4771 } |
18262 | 4772 bufp->regs_allocated = REGS_REALLOCATE; |
4773 } | |
4774 else if (bufp->regs_allocated == REGS_REALLOCATE) | |
4775 { /* Yes. If we need more elements than were already | |
4776 allocated, reallocate them. If we need fewer, just | |
4777 leave it alone. */ | |
4778 if (regs->num_regs < num_regs + 1) | |
4779 { | |
4780 regs->num_regs = num_regs + 1; | |
4781 RETALLOC (regs->start, regs->num_regs, regoff_t); | |
4782 RETALLOC (regs->end, regs->num_regs, regoff_t); | |
4783 if (regs->start == NULL || regs->end == NULL) | |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4784 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4785 FREE_VARIABLES (); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4786 return -2; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4787 } |
18262 | 4788 } |
4789 } | |
4790 else | |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4791 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4792 /* These braces fend off a "empty body in an else-statement" |
18262 | 4793 warning under GCC when assert expands to nothing. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4794 assert (bufp->regs_allocated == REGS_FIXED); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4795 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4796 |
18262 | 4797 /* Convert the pointer data in `regstart' and `regend' to |
4798 indices. Register zero has to be set differently, | |
4799 since we haven't kept track of any info for it. */ | |
4800 if (regs->num_regs > 0) | |
4801 { | |
4802 regs->start[0] = pos; | |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
4803 regs->end[0] = POINTER_TO_OFFSET (d); |
18262 | 4804 } |
4805 | |
4806 /* Go through the first `min (num_regs, regs->num_regs)' | |
4807 registers, since that is all we initialized. */ | |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
4808 for (reg = 1; reg < MIN (num_regs, regs->num_regs); reg++) |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4809 { |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
4810 if (REG_UNSET (regstart[reg]) || REG_UNSET (regend[reg])) |
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
4811 regs->start[reg] = regs->end[reg] = -1; |
18262 | 4812 else |
4813 { | |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
4814 regs->start[reg] |
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
4815 = (regoff_t) POINTER_TO_OFFSET (regstart[reg]); |
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
4816 regs->end[reg] |
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
4817 = (regoff_t) POINTER_TO_OFFSET (regend[reg]); |
18262 | 4818 } |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4819 } |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
4820 |
18262 | 4821 /* If the regs structure we return has more elements than |
4822 were in the pattern, set the extra elements to -1. If | |
4823 we (re)allocated the registers, this is the case, | |
4824 because we always allocate enough to have at least one | |
4825 -1 at the end. */ | |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
4826 for (reg = num_regs; reg < regs->num_regs; reg++) |
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
4827 regs->start[reg] = regs->end[reg] = -1; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4828 } /* regs && !bufp->no_sub */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4829 |
18262 | 4830 DEBUG_PRINT4 ("%u failure points pushed, %u popped (%u remain).\n", |
4831 nfailure_points_pushed, nfailure_points_popped, | |
4832 nfailure_points_pushed - nfailure_points_popped); | |
4833 DEBUG_PRINT2 ("%u registers pushed.\n", num_regs_pushed); | |
4834 | |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
4835 mcnt = POINTER_TO_OFFSET (d) - pos; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4836 |
18262 | 4837 DEBUG_PRINT2 ("Returning %d from re_match_2.\n", mcnt); |
4838 | |
4839 FREE_VARIABLES (); | |
4840 return mcnt; | |
4841 } | |
4842 | |
4843 /* Otherwise match next pattern command. */ | |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4844 switch (SWITCH_ENUM_CAST ((re_opcode_t) *p++)) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4845 { |
18262 | 4846 /* Ignore these. Used to ignore the n of succeed_n's which |
4847 currently have n == 0. */ | |
4848 case no_op: | |
4849 DEBUG_PRINT1 ("EXECUTING no_op.\n"); | |
4850 break; | |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4851 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4852 case succeed: |
18262 | 4853 DEBUG_PRINT1 ("EXECUTING succeed.\n"); |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4854 goto succeed_label; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4855 |
18262 | 4856 /* Match the next n pattern characters exactly. The following |
4857 byte in the pattern defines n, and the n bytes after that | |
4858 are the characters to match. */ | |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4859 case exactn: |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4860 mcnt = *p++; |
18262 | 4861 DEBUG_PRINT2 ("EXECUTING exactn %d.\n", mcnt); |
4862 | |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
4863 /* Remember the start point to rollback upon failure. */ |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
4864 dfail = d; |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
4865 |
18262 | 4866 /* This is written out as an if-else so we don't waste time |
4867 testing `translate' inside the loop. */ | |
21562
afd0a04106ec
Use RE_TRANSLATE_P to check whether translation is
Andreas Schwab <schwab@suse.de>
parents:
21558
diff
changeset
|
4868 if (RE_TRANSLATE_P (translate)) |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4869 { |
21348
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4870 if (multibyte) |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4871 do |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4872 { |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4873 int pat_charlen, buf_charlen; |
21401
7afa39c82ea2
(re_match_2_internal): Declare buf_ch unsigned int.
Richard M. Stallman <rms@gnu.org>
parents:
21352
diff
changeset
|
4874 unsigned int pat_ch, buf_ch; |
21348
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4875 |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4876 PREFETCH (); |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4877 pat_ch = STRING_CHAR_AND_LENGTH (p, pend - p, pat_charlen); |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4878 buf_ch = STRING_CHAR_AND_LENGTH (d, dend - d, buf_charlen); |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4879 |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4880 if (RE_TRANSLATE (translate, buf_ch) |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4881 != pat_ch) |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
4882 { |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
4883 d = dfail; |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
4884 goto fail; |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
4885 } |
21348
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4886 |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4887 p += pat_charlen; |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4888 d += buf_charlen; |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4889 mcnt -= pat_charlen; |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4890 } |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4891 while (mcnt > 0); |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4892 else |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4893 do |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4894 { |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4895 PREFETCH (); |
28138
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28062
diff
changeset
|
4896 if (RE_TRANSLATE (translate, *d) != *p++) |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
4897 { |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
4898 d = dfail; |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
4899 goto fail; |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
4900 } |
22237
566c88b62de6
(re_search_2): Don't use ++ inside RE_TRANSLATE.
Richard M. Stallman <rms@gnu.org>
parents:
21963
diff
changeset
|
4901 d++; |
21348
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4902 } |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4903 while (--mcnt); |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4904 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4905 else |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4906 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4907 do |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4908 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4909 PREFETCH (); |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
4910 if (*d++ != *p++) |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
4911 { |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
4912 d = dfail; |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
4913 goto fail; |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
4914 } |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4915 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4916 while (--mcnt); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4917 } |
18262 | 4918 break; |
4919 | |
4920 | |
4921 /* Match any character except possibly a newline or a null. */ | |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4922 case anychar: |
21348
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4923 { |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4924 int buf_charlen; |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
4925 re_wchar_t buf_ch; |
21348
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4926 |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4927 DEBUG_PRINT1 ("EXECUTING anychar.\n"); |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4928 |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4929 PREFETCH (); |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
4930 buf_ch = RE_STRING_CHAR_AND_LENGTH (d, dend - d, buf_charlen); |
21348
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4931 buf_ch = TRANSLATE (buf_ch); |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4932 |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4933 if ((!(bufp->syntax & RE_DOT_NEWLINE) |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4934 && buf_ch == '\n') |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4935 || ((bufp->syntax & RE_DOT_NOT_NULL) |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4936 && buf_ch == '\000')) |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4937 goto fail; |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4938 |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4939 DEBUG_PRINT2 (" Matched `%d'.\n", *d); |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4940 d += buf_charlen; |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4941 } |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4942 break; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4943 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4944 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4945 case charset: |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4946 case charset_not: |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4947 { |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4948 register unsigned int c; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4949 boolean not = (re_opcode_t) *(p - 1) == charset_not; |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4950 int len; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4951 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4952 /* Start of actual range_table, or end of bitmap if there is no |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4953 range table. */ |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
4954 re_char *range_table; |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4955 |
25440
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
4956 /* Nonzero if there is a range table. */ |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4957 int range_table_exists; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4958 |
25440
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
4959 /* Number of ranges of range table. This is not included |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
4960 in the initial byte-length of the command. */ |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
4961 int count = 0; |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4962 |
18262 | 4963 DEBUG_PRINT2 ("EXECUTING charset%s.\n", not ? "_not" : ""); |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4964 |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4965 range_table_exists = CHARSET_RANGE_TABLE_EXISTS_P (&p[-1]); |
25440
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
4966 |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4967 if (range_table_exists) |
25440
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
4968 { |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
4969 range_table = CHARSET_RANGE_TABLE (&p[-1]); /* Past the bitmap. */ |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
4970 EXTRACT_NUMBER_AND_INCR (count, range_table); |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
4971 } |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4972 |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
4973 PREFETCH (); |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
4974 c = RE_STRING_CHAR_AND_LENGTH (d, dend - d, len); |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
4975 c = TRANSLATE (c); /* The character to match. */ |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4976 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4977 if (SINGLE_BYTE_CHAR_P (c)) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4978 { /* Lookup bitmap. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4979 /* Cast to `unsigned' instead of `unsigned char' in |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4980 case the bit list is a full 32 bytes long. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4981 if (c < (unsigned) (CHARSET_BITMAP_SIZE (&p[-1]) * BYTEWIDTH) |
25440
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
4982 && p[1 + c / BYTEWIDTH] & (1 << (c % BYTEWIDTH))) |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
4983 not = !not; |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4984 } |
25440
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
4985 #ifdef emacs |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4986 else if (range_table_exists) |
25440
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
4987 { |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
4988 int class_bits = CHARSET_RANGE_TABLE_BITS (&p[-1]); |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
4989 |
31360
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
4990 if ( (class_bits & BIT_LOWER && ISLOWER (c)) |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
4991 | (class_bits & BIT_MULTIBYTE) |
25440
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
4992 | (class_bits & BIT_PUNCT && ISPUNCT (c)) |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
4993 | (class_bits & BIT_SPACE && ISSPACE (c)) |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
4994 | (class_bits & BIT_UPPER && ISUPPER (c)) |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
4995 | (class_bits & BIT_WORD && ISWORD (c))) |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
4996 not = !not; |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
4997 else |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
4998 CHARSET_LOOKUP_RANGE_TABLE_RAW (not, c, range_table, count); |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
4999 } |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
5000 #endif /* emacs */ |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
5001 |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
5002 if (range_table_exists) |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
5003 p = CHARSET_RANGE_TABLE_END (range_table, count); |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
5004 else |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
5005 p += CHARSET_BITMAP_SIZE (&p[-1]) + 1; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5006 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5007 if (!not) goto fail; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5008 |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5009 d += len; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5010 break; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5011 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5012 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5013 |
18262 | 5014 /* The beginning of a group is represented by start_memory. |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5015 The argument is the register number. The text |
18262 | 5016 matched within the group is recorded (in the internal |
5017 registers data structure) under the register number. */ | |
5018 case start_memory: | |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5019 DEBUG_PRINT2 ("EXECUTING start_memory %d:\n", *p); |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5020 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5021 /* In case we need to undo this operation (via backtracking). */ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5022 PUSH_FAILURE_REG ((unsigned int)*p); |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5023 |
18262 | 5024 regstart[*p] = d; |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
5025 regend[*p] = NULL; /* probably unnecessary. -sm */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5026 DEBUG_PRINT2 (" regstart: %d\n", POINTER_TO_OFFSET (regstart[*p])); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5027 |
18262 | 5028 /* Move past the register number and inner group count. */ |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5029 p += 1; |
18262 | 5030 break; |
5031 | |
5032 | |
5033 /* The stop_memory opcode represents the end of a group. Its | |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5034 argument is the same as start_memory's: the register number. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5035 case stop_memory: |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5036 DEBUG_PRINT2 ("EXECUTING stop_memory %d:\n", *p); |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5037 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5038 assert (!REG_UNSET (regstart[*p])); |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5039 /* Strictly speaking, there should be code such as: |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5040 |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
5041 assert (REG_UNSET (regend[*p])); |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5042 PUSH_FAILURE_REGSTOP ((unsigned int)*p); |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5043 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5044 But the only info to be pushed is regend[*p] and it is known to |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5045 be UNSET, so there really isn't anything to push. |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5046 Not pushing anything, on the other hand deprives us from the |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5047 guarantee that regend[*p] is UNSET since undoing this operation |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5048 will not reset its value properly. This is not important since |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5049 the value will only be read on the next start_memory or at |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5050 the very end and both events can only happen if this stop_memory |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5051 is *not* undone. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5052 |
18262 | 5053 regend[*p] = d; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5054 DEBUG_PRINT2 (" regend: %d\n", POINTER_TO_OFFSET (regend[*p])); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5055 |
18262 | 5056 /* Move past the register number and the inner group count. */ |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5057 p += 1; |
18262 | 5058 break; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5059 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5060 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5061 /* \<digit> has been turned into a `duplicate' command which is |
18262 | 5062 followed by the numeric value of <digit> as the register number. */ |
5063 case duplicate: | |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5064 { |
28138
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28062
diff
changeset
|
5065 register re_char *d2, *dend2; |
18262 | 5066 int regno = *p++; /* Get which register to match against. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5067 DEBUG_PRINT2 ("EXECUTING duplicate %d.\n", regno); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5068 |
18262 | 5069 /* Can't back reference a group which we've never matched. */ |
5070 if (REG_UNSET (regstart[regno]) || REG_UNSET (regend[regno])) | |
5071 goto fail; | |
5072 | |
5073 /* Where in input to try to start matching. */ | |
5074 d2 = regstart[regno]; | |
5075 | |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
5076 /* Remember the start point to rollback upon failure. */ |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
5077 dfail = d; |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
5078 |
18262 | 5079 /* Where to stop matching; if both the place to start and |
5080 the place to stop matching are in the same string, then | |
5081 set to the place to stop, otherwise, for now have to use | |
5082 the end of the first string. */ | |
5083 | |
5084 dend2 = ((FIRST_STRING_P (regstart[regno]) | |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5085 == FIRST_STRING_P (regend[regno])) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5086 ? regend[regno] : end_match_1); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5087 for (;;) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5088 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5089 /* If necessary, advance to next segment in register |
18262 | 5090 contents. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5091 while (d2 == dend2) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5092 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5093 if (dend2 == end_match_2) break; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5094 if (dend2 == regend[regno]) break; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5095 |
18262 | 5096 /* End of string1 => advance to string2. */ |
5097 d2 = string2; | |
5098 dend2 = regend[regno]; | |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5099 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5100 /* At end of register contents => success */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5101 if (d2 == dend2) break; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5102 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5103 /* If necessary, advance to next segment in data. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5104 PREFETCH (); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5105 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5106 /* How many characters left in this segment to match. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5107 mcnt = dend - d; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5108 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5109 /* Want how many consecutive characters we can match in |
18262 | 5110 one shot, so, if necessary, adjust the count. */ |
5111 if (mcnt > dend2 - d2) | |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5112 mcnt = dend2 - d2; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5113 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5114 /* Compare that many; failure if mismatch, else move |
18262 | 5115 past them. */ |
21562
afd0a04106ec
Use RE_TRANSLATE_P to check whether translation is
Andreas Schwab <schwab@suse.de>
parents:
21558
diff
changeset
|
5116 if (RE_TRANSLATE_P (translate) |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
5117 ? bcmp_translate (d, d2, mcnt, translate, multibyte) |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
5118 : memcmp (d, d2, mcnt)) |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
5119 { |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
5120 d = dfail; |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
5121 goto fail; |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
5122 } |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5123 d += mcnt, d2 += mcnt; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5124 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5125 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5126 break; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5127 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5128 |
18262 | 5129 /* begline matches the empty string at the beginning of the string |
31312
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
5130 (unless `not_bol' is set in `bufp'), and after newlines. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5131 case begline: |
18262 | 5132 DEBUG_PRINT1 ("EXECUTING begline.\n"); |
5133 | |
5134 if (AT_STRINGS_BEG (d)) | |
5135 { | |
5136 if (!bufp->not_bol) break; | |
5137 } | |
28662
d40a7f046efe
(re_match_2_internal): Don't shorten the strings anymore,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28473
diff
changeset
|
5138 else |
18262 | 5139 { |
28662
d40a7f046efe
(re_match_2_internal): Don't shorten the strings anymore,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28473
diff
changeset
|
5140 unsigned char c; |
d40a7f046efe
(re_match_2_internal): Don't shorten the strings anymore,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28473
diff
changeset
|
5141 GET_CHAR_BEFORE_2 (c, d, string1, end1, string2, end2); |
31312
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
5142 if (c == '\n') |
28662
d40a7f046efe
(re_match_2_internal): Don't shorten the strings anymore,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28473
diff
changeset
|
5143 break; |
18262 | 5144 } |
5145 /* In all other cases, we fail. */ | |
5146 goto fail; | |
5147 | |
5148 | |
5149 /* endline is the dual of begline. */ | |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5150 case endline: |
18262 | 5151 DEBUG_PRINT1 ("EXECUTING endline.\n"); |
5152 | |
5153 if (AT_STRINGS_END (d)) | |
5154 { | |
5155 if (!bufp->not_eol) break; | |
5156 } | |
29296
b2c75746a989
(PREFETCH_NOLIMIT): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29194
diff
changeset
|
5157 else |
18262 | 5158 { |
29296
b2c75746a989
(PREFETCH_NOLIMIT): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29194
diff
changeset
|
5159 PREFETCH_NOLIMIT (); |
31312
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
5160 if (*d == '\n') |
29296
b2c75746a989
(PREFETCH_NOLIMIT): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29194
diff
changeset
|
5161 break; |
18262 | 5162 } |
5163 goto fail; | |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5164 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5165 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5166 /* Match at the very beginning of the data. */ |
18262 | 5167 case begbuf: |
5168 DEBUG_PRINT1 ("EXECUTING begbuf.\n"); | |
5169 if (AT_STRINGS_BEG (d)) | |
5170 break; | |
5171 goto fail; | |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5172 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5173 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5174 /* Match at the very end of the data. */ |
18262 | 5175 case endbuf: |
5176 DEBUG_PRINT1 ("EXECUTING endbuf.\n"); | |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5177 if (AT_STRINGS_END (d)) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5178 break; |
18262 | 5179 goto fail; |
5180 | |
5181 | |
5182 /* on_failure_keep_string_jump is used to optimize `.*\n'. It | |
5183 pushes NULL as the value for the string on the stack. Then | |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5184 `POP_FAILURE_POINT' will keep the current value for the |
18262 | 5185 string, instead of restoring it. To see why, consider |
5186 matching `foo\nbar' against `.*\n'. The .* matches the foo; | |
5187 then the . fails against the \n. But the next thing we want | |
5188 to do is match the \n against the \n; if we restored the | |
5189 string value, we would be back at the foo. | |
5190 | |
5191 Because this is used only in specific cases, we don't need to | |
5192 check all the things that `on_failure_jump' does, to make | |
5193 sure the right things get saved on the stack. Hence we don't | |
5194 share its code. The only reason to push anything on the | |
5195 stack at all is that otherwise we would have to change | |
5196 `anychar's code to do something besides goto fail in this | |
5197 case; that seems worse than this. */ | |
5198 case on_failure_keep_string_jump: | |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5199 EXTRACT_NUMBER_AND_INCR (mcnt, p); |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5200 DEBUG_PRINT3 ("EXECUTING on_failure_keep_string_jump %d (to %p):\n", |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5201 mcnt, p + mcnt); |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5202 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5203 PUSH_FAILURE_POINT (p - 3, NULL); |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5204 break; |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5205 |
28342
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
5206 /* A nasty loop is introduced by the non-greedy *? and +?. |
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
5207 With such loops, the stack only ever contains one failure point |
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
5208 at a time, so that a plain on_failure_jump_loop kind of |
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
5209 cycle detection cannot work. Worse yet, such a detection |
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
5210 can not only fail to detect a cycle, but it can also wrongly |
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
5211 detect a cycle (between different instantiations of the same |
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
5212 loop. |
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
5213 So the method used for those nasty loops is a little different: |
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
5214 We use a special cycle-detection-stack-frame which is pushed |
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
5215 when the on_failure_jump_nastyloop failure-point is *popped*. |
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
5216 This special frame thus marks the beginning of one iteration |
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
5217 through the loop and we can hence easily check right here |
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
5218 whether something matched between the beginning and the end of |
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
5219 the loop. */ |
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
5220 case on_failure_jump_nastyloop: |
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
5221 EXTRACT_NUMBER_AND_INCR (mcnt, p); |
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
5222 DEBUG_PRINT3 ("EXECUTING on_failure_jump_nastyloop %d (to %p):\n", |
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
5223 mcnt, p + mcnt); |
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
5224 |
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
5225 assert ((re_opcode_t)p[-4] == no_op); |
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
5226 CHECK_INFINITE_LOOP (p - 4, d); |
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
5227 PUSH_FAILURE_POINT (p - 3, d); |
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
5228 break; |
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
5229 |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
5230 |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
5231 /* Simple loop detecting on_failure_jump: just check on the |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
5232 failure stack if the same spot was already hit earlier. */ |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5233 case on_failure_jump_loop: |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5234 on_failure: |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5235 EXTRACT_NUMBER_AND_INCR (mcnt, p); |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5236 DEBUG_PRINT3 ("EXECUTING on_failure_jump_loop %d (to %p):\n", |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5237 mcnt, p + mcnt); |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5238 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5239 CHECK_INFINITE_LOOP (p - 3, d); |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5240 PUSH_FAILURE_POINT (p - 3, d); |
18262 | 5241 break; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5242 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5243 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5244 /* Uses of on_failure_jump: |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5245 |
18262 | 5246 Each alternative starts with an on_failure_jump that points |
5247 to the beginning of the next alternative. Each alternative | |
5248 except the last ends with a jump that in effect jumps past | |
5249 the rest of the alternatives. (They really jump to the | |
5250 ending jump of the following alternative, because tensioning | |
5251 these jumps is a hassle.) | |
5252 | |
5253 Repeats start with an on_failure_jump that points past both | |
5254 the repetition text and either the following jump or | |
5255 pop_failure_jump back to this on_failure_jump. */ | |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5256 case on_failure_jump: |
32823
2a7f61d7ae12
(IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
Andrew Innes <andrewi@gnu.org>
parents:
32805
diff
changeset
|
5257 IMMEDIATE_QUIT_CHECK; |
18262 | 5258 EXTRACT_NUMBER_AND_INCR (mcnt, p); |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5259 DEBUG_PRINT3 ("EXECUTING on_failure_jump %d (to %p):\n", |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5260 mcnt, p + mcnt); |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5261 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5262 PUSH_FAILURE_POINT (p -3, d); |
18262 | 5263 break; |
5264 | |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
5265 /* This operation is used for greedy *. |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5266 Compare the beginning of the repeat with what in the |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5267 pattern follows its end. If we can establish that there |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5268 is nothing that they would both match, i.e., that we |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5269 would have to backtrack because of (as in, e.g., `a*a') |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5270 then we can use a non-backtracking loop based on |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
5271 on_failure_keep_string_jump instead of on_failure_jump. */ |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5272 case on_failure_jump_smart: |
32823
2a7f61d7ae12
(IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
Andrew Innes <andrewi@gnu.org>
parents:
32805
diff
changeset
|
5273 IMMEDIATE_QUIT_CHECK; |
18262 | 5274 EXTRACT_NUMBER_AND_INCR (mcnt, p); |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5275 DEBUG_PRINT3 ("EXECUTING on_failure_jump_smart %d (to %p).\n", |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5276 mcnt, p + mcnt); |
18262 | 5277 { |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
5278 re_char *p1 = p; /* Next operation. */ |
32954
f77e6c51dd07
(POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32891
diff
changeset
|
5279 /* Here, we discard `const', making re_match non-reentrant. */ |
f77e6c51dd07
(POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32891
diff
changeset
|
5280 unsigned char *p2 = (unsigned char*) p + mcnt; /* Jump dest. */ |
f77e6c51dd07
(POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32891
diff
changeset
|
5281 unsigned char *p3 = (unsigned char*) p - 3; /* opcode location. */ |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5282 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5283 p -= 3; /* Reset so that we will re-execute the |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5284 instruction once it's been changed. */ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5285 |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
5286 EXTRACT_NUMBER (mcnt, p2 - 2); |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
5287 |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
5288 /* Ensure this is a indeed the trivial kind of loop |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
5289 we are expecting. */ |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
5290 assert (skip_one_char (p1) == p2 - 3); |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
5291 assert ((re_opcode_t) p2[-3] == jump && p2 + mcnt == p); |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
5292 DEBUG_STATEMENT (debug += 2); |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5293 if (mutually_exclusive_p (bufp, p1, p2)) |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5294 { |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5295 /* Use a fast `on_failure_keep_string_jump' loop. */ |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
5296 DEBUG_PRINT1 (" smart exclusive => fast loop.\n"); |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
5297 *p3 = (unsigned char) on_failure_keep_string_jump; |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
5298 STORE_NUMBER (p2 - 2, mcnt + 3); |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5299 } |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5300 else |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5301 { |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5302 /* Default to a safe `on_failure_jump' loop. */ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5303 DEBUG_PRINT1 (" smart default => slow loop.\n"); |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
5304 *p3 = (unsigned char) on_failure_jump; |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5305 } |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
5306 DEBUG_STATEMENT (debug -= 2); |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5307 } |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5308 break; |
18262 | 5309 |
5310 /* Unconditionally jump (without popping any failure points). */ | |
5311 case jump: | |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5312 unconditional_jump: |
32823
2a7f61d7ae12
(IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
Andrew Innes <andrewi@gnu.org>
parents:
32805
diff
changeset
|
5313 IMMEDIATE_QUIT_CHECK; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5314 EXTRACT_NUMBER_AND_INCR (mcnt, p); /* Get the amount to jump. */ |
18262 | 5315 DEBUG_PRINT2 ("EXECUTING jump %d ", mcnt); |
5316 p += mcnt; /* Do the jump. */ | |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5317 DEBUG_PRINT2 ("(to %p).\n", p); |
18262 | 5318 break; |
5319 | |
5320 | |
5321 /* Have to succeed matching what follows at least n times. | |
5322 After that, handle like `on_failure_jump'. */ | |
5323 case succeed_n: | |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
5324 /* Signedness doesn't matter since we only compare MCNT to 0. */ |
18262 | 5325 EXTRACT_NUMBER (mcnt, p + 2); |
5326 DEBUG_PRINT2 ("EXECUTING succeed_n %d.\n", mcnt); | |
5327 | |
31172
0ee53ec2081a
(PUSH_FAILURE_COUNT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30752
diff
changeset
|
5328 /* Originally, mcnt is how many times we HAVE to succeed. */ |
0ee53ec2081a
(PUSH_FAILURE_COUNT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30752
diff
changeset
|
5329 if (mcnt != 0) |
18262 | 5330 { |
32954
f77e6c51dd07
(POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32891
diff
changeset
|
5331 /* Here, we discard `const', making re_match non-reentrant. */ |
f77e6c51dd07
(POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32891
diff
changeset
|
5332 unsigned char *p2 = (unsigned char*) p + 2; /* counter loc. */ |
31172
0ee53ec2081a
(PUSH_FAILURE_COUNT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30752
diff
changeset
|
5333 mcnt--; |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
5334 p += 4; |
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
5335 PUSH_NUMBER (p2, mcnt); |
18262 | 5336 } |
31172
0ee53ec2081a
(PUSH_FAILURE_COUNT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30752
diff
changeset
|
5337 else |
0ee53ec2081a
(PUSH_FAILURE_COUNT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30752
diff
changeset
|
5338 /* The two bytes encoding mcnt == 0 are two no_op opcodes. */ |
0ee53ec2081a
(PUSH_FAILURE_COUNT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30752
diff
changeset
|
5339 goto on_failure; |
18262 | 5340 break; |
5341 | |
5342 case jump_n: | |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
5343 /* Signedness doesn't matter since we only compare MCNT to 0. */ |
18262 | 5344 EXTRACT_NUMBER (mcnt, p + 2); |
5345 DEBUG_PRINT2 ("EXECUTING jump_n %d.\n", mcnt); | |
5346 | |
5347 /* Originally, this is how many times we CAN jump. */ | |
31172
0ee53ec2081a
(PUSH_FAILURE_COUNT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30752
diff
changeset
|
5348 if (mcnt != 0) |
18262 | 5349 { |
32954
f77e6c51dd07
(POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32891
diff
changeset
|
5350 /* Here, we discard `const', making re_match non-reentrant. */ |
f77e6c51dd07
(POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32891
diff
changeset
|
5351 unsigned char *p2 = (unsigned char*) p + 2; /* counter loc. */ |
31172
0ee53ec2081a
(PUSH_FAILURE_COUNT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30752
diff
changeset
|
5352 mcnt--; |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
5353 PUSH_NUMBER (p2, mcnt); |
31172
0ee53ec2081a
(PUSH_FAILURE_COUNT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30752
diff
changeset
|
5354 goto unconditional_jump; |
18262 | 5355 } |
5356 /* If don't have to jump any more, skip over the rest of command. */ | |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5357 else |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5358 p += 4; |
18262 | 5359 break; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5360 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5361 case set_number_at: |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5362 { |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
5363 unsigned char *p2; /* Location of the counter. */ |
18262 | 5364 DEBUG_PRINT1 ("EXECUTING set_number_at.\n"); |
5365 | |
5366 EXTRACT_NUMBER_AND_INCR (mcnt, p); | |
32954
f77e6c51dd07
(POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32891
diff
changeset
|
5367 /* Here, we discard `const', making re_match non-reentrant. */ |
f77e6c51dd07
(POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32891
diff
changeset
|
5368 p2 = (unsigned char*) p + mcnt; |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
5369 /* Signedness doesn't matter since we only copy MCNT's bits . */ |
18262 | 5370 EXTRACT_NUMBER_AND_INCR (mcnt, p); |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
5371 DEBUG_PRINT3 (" Setting %p to %d.\n", p2, mcnt); |
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
5372 PUSH_NUMBER (p2, mcnt); |
18262 | 5373 break; |
5374 } | |
13722
e2669b8a46e2
(AT_WORD_BOUNDARY): Disable macro.
Karl Heuer <kwzh@gnu.org>
parents:
13565
diff
changeset
|
5375 |
e2669b8a46e2
(AT_WORD_BOUNDARY): Disable macro.
Karl Heuer <kwzh@gnu.org>
parents:
13565
diff
changeset
|
5376 case wordbound: |
28138
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28062
diff
changeset
|
5377 case notwordbound: |
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28062
diff
changeset
|
5378 not = (re_opcode_t) *(p - 1) == notwordbound; |
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28062
diff
changeset
|
5379 DEBUG_PRINT2 ("EXECUTING %swordbound.\n", not?"not":""); |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5380 |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
5381 /* We SUCCEED (or FAIL) in one of the following cases: */ |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5382 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5383 /* Case 1: D is at the beginning or the end of string. */ |
13722
e2669b8a46e2
(AT_WORD_BOUNDARY): Disable macro.
Karl Heuer <kwzh@gnu.org>
parents:
13565
diff
changeset
|
5384 if (AT_STRINGS_BEG (d) || AT_STRINGS_END (d)) |
28138
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28062
diff
changeset
|
5385 not = !not; |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5386 else |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5387 { |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5388 /* C1 is the character before D, S1 is the syntax of C1, C2 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5389 is the character at D, and S2 is the syntax of C2. */ |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
5390 re_wchar_t c1, c2; |
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
5391 int s1, s2; |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5392 #ifdef emacs |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
5393 int offset = PTR_TO_OFFSET (d - 1); |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
5394 int charpos = SYNTAX_TABLE_BYTE_TO_CHAR (offset); |
20633
063756386696
(re_search_2): Fix call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20455
diff
changeset
|
5395 UPDATE_SYNTAX_TABLE (charpos); |
18262 | 5396 #endif |
28138
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28062
diff
changeset
|
5397 GET_CHAR_BEFORE_2 (c1, d, string1, end1, string2, end2); |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5398 s1 = SYNTAX (c1); |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5399 #ifdef emacs |
20633
063756386696
(re_search_2): Fix call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20455
diff
changeset
|
5400 UPDATE_SYNTAX_TABLE_FORWARD (charpos + 1); |
18262 | 5401 #endif |
29296
b2c75746a989
(PREFETCH_NOLIMIT): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29194
diff
changeset
|
5402 PREFETCH_NOLIMIT (); |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
5403 c2 = RE_STRING_CHAR (d, dend - d); |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5404 s2 = SYNTAX (c2); |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5405 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5406 if (/* Case 2: Only one of S1 and S2 is Sword. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5407 ((s1 == Sword) != (s2 == Sword)) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5408 /* Case 3: Both of S1 and S2 are Sword, and macro |
18262 | 5409 WORD_BOUNDARY_P (C1, C2) returns nonzero. */ |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5410 || ((s1 == Sword) && WORD_BOUNDARY_P (c1, c2))) |
28138
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28062
diff
changeset
|
5411 not = !not; |
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28062
diff
changeset
|
5412 } |
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28062
diff
changeset
|
5413 if (not) |
13722
e2669b8a46e2
(AT_WORD_BOUNDARY): Disable macro.
Karl Heuer <kwzh@gnu.org>
parents:
13565
diff
changeset
|
5414 break; |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5415 else |
13722
e2669b8a46e2
(AT_WORD_BOUNDARY): Disable macro.
Karl Heuer <kwzh@gnu.org>
parents:
13565
diff
changeset
|
5416 goto fail; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5417 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5418 case wordbeg: |
18262 | 5419 DEBUG_PRINT1 ("EXECUTING wordbeg.\n"); |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5420 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5421 /* We FAIL in one of the following cases: */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5422 |
18262 | 5423 /* Case 1: D is at the end of string. */ |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5424 if (AT_STRINGS_END (d)) |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
5425 goto fail; |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5426 else |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5427 { |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5428 /* C1 is the character before D, S1 is the syntax of C1, C2 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5429 is the character at D, and S2 is the syntax of C2. */ |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
5430 re_wchar_t c1, c2; |
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
5431 int s1, s2; |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5432 #ifdef emacs |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
5433 int offset = PTR_TO_OFFSET (d); |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
5434 int charpos = SYNTAX_TABLE_BYTE_TO_CHAR (offset); |
20650
427fa7757472
(re_match_2_internal): Use SYNTAX_TABLE_BYTE_TO_CHAR.
Richard M. Stallman <rms@gnu.org>
parents:
20633
diff
changeset
|
5435 UPDATE_SYNTAX_TABLE (charpos); |
18262 | 5436 #endif |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
5437 PREFETCH (); |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
5438 c2 = RE_STRING_CHAR (d, dend - d); |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5439 s2 = SYNTAX (c2); |
18262 | 5440 |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5441 /* Case 2: S2 is not Sword. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5442 if (s2 != Sword) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5443 goto fail; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5444 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5445 /* Case 3: D is not at the beginning of string ... */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5446 if (!AT_STRINGS_BEG (d)) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5447 { |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5448 GET_CHAR_BEFORE_2 (c1, d, string1, end1, string2, end2); |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5449 #ifdef emacs |
20633
063756386696
(re_search_2): Fix call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20455
diff
changeset
|
5450 UPDATE_SYNTAX_TABLE_BACKWARD (charpos - 1); |
18262 | 5451 #endif |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5452 s1 = SYNTAX (c1); |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5453 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5454 /* ... and S1 is Sword, and WORD_BOUNDARY_P (C1, C2) |
18262 | 5455 returns 0. */ |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5456 if ((s1 == Sword) && !WORD_BOUNDARY_P (c1, c2)) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5457 goto fail; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5458 } |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5459 } |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5460 break; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5461 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5462 case wordend: |
18262 | 5463 DEBUG_PRINT1 ("EXECUTING wordend.\n"); |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5464 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5465 /* We FAIL in one of the following cases: */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5466 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5467 /* Case 1: D is at the beginning of string. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5468 if (AT_STRINGS_BEG (d)) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5469 goto fail; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5470 else |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5471 { |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5472 /* C1 is the character before D, S1 is the syntax of C1, C2 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5473 is the character at D, and S2 is the syntax of C2. */ |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
5474 re_wchar_t c1, c2; |
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
5475 int s1, s2; |
20633
063756386696
(re_search_2): Fix call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20455
diff
changeset
|
5476 #ifdef emacs |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
5477 int offset = PTR_TO_OFFSET (d) - 1; |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
5478 int charpos = SYNTAX_TABLE_BYTE_TO_CHAR (offset); |
20650
427fa7757472
(re_match_2_internal): Use SYNTAX_TABLE_BYTE_TO_CHAR.
Richard M. Stallman <rms@gnu.org>
parents:
20633
diff
changeset
|
5479 UPDATE_SYNTAX_TABLE (charpos); |
20633
063756386696
(re_search_2): Fix call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20455
diff
changeset
|
5480 #endif |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
5481 GET_CHAR_BEFORE_2 (c1, d, string1, end1, string2, end2); |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5482 s1 = SYNTAX (c1); |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5483 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5484 /* Case 2: S1 is not Sword. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5485 if (s1 != Sword) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5486 goto fail; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5487 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5488 /* Case 3: D is not at the end of string ... */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5489 if (!AT_STRINGS_END (d)) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5490 { |
29296
b2c75746a989
(PREFETCH_NOLIMIT): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29194
diff
changeset
|
5491 PREFETCH_NOLIMIT (); |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
5492 c2 = RE_STRING_CHAR (d, dend - d); |
20633
063756386696
(re_search_2): Fix call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20455
diff
changeset
|
5493 #ifdef emacs |
063756386696
(re_search_2): Fix call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20455
diff
changeset
|
5494 UPDATE_SYNTAX_TABLE_FORWARD (charpos); |
063756386696
(re_search_2): Fix call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20455
diff
changeset
|
5495 #endif |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5496 s2 = SYNTAX (c2); |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5497 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5498 /* ... and S2 is Sword, and WORD_BOUNDARY_P (C1, C2) |
18262 | 5499 returns 0. */ |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5500 if ((s2 == Sword) && !WORD_BOUNDARY_P (c1, c2)) |
18262 | 5501 goto fail; |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5502 } |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5503 } |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5504 break; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5505 |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
5506 case syntaxspec: |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
5507 case notsyntaxspec: |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
5508 not = (re_opcode_t) *(p - 1) == notsyntaxspec; |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
5509 mcnt = *p++; |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
5510 DEBUG_PRINT3 ("EXECUTING %ssyntaxspec %d.\n", not?"not":"", mcnt); |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
5511 PREFETCH (); |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
5512 #ifdef emacs |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
5513 { |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
5514 int offset = PTR_TO_OFFSET (d); |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
5515 int pos1 = SYNTAX_TABLE_BYTE_TO_CHAR (offset); |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
5516 UPDATE_SYNTAX_TABLE (pos1); |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
5517 } |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
5518 #endif |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
5519 { |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
5520 int len; |
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
5521 re_wchar_t c; |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
5522 |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
5523 c = RE_STRING_CHAR_AND_LENGTH (d, dend - d, len); |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
5524 |
28279
24a23e27dac6
(enum syntaxcode): Provide default for non-Emacs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28268
diff
changeset
|
5525 if ((SYNTAX (c) != (enum syntaxcode) mcnt) ^ not) |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
5526 goto fail; |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
5527 d += len; |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
5528 } |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
5529 break; |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
5530 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5531 #ifdef emacs |
18262 | 5532 case before_dot: |
5533 DEBUG_PRINT1 ("EXECUTING before_dot.\n"); | |
28138
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28062
diff
changeset
|
5534 if (PTR_BYTE_POS (d) >= PT_BYTE) |
18262 | 5535 goto fail; |
5536 break; | |
5537 | |
5538 case at_dot: | |
5539 DEBUG_PRINT1 ("EXECUTING at_dot.\n"); | |
28138
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28062
diff
changeset
|
5540 if (PTR_BYTE_POS (d) != PT_BYTE) |
18262 | 5541 goto fail; |
5542 break; | |
5543 | |
5544 case after_dot: | |
5545 DEBUG_PRINT1 ("EXECUTING after_dot.\n"); | |
28138
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28062
diff
changeset
|
5546 if (PTR_BYTE_POS (d) <= PT_BYTE) |
18262 | 5547 goto fail; |
5548 break; | |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5549 |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
5550 case categoryspec: |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
5551 case notcategoryspec: |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
5552 not = (re_opcode_t) *(p - 1) == notcategoryspec; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5553 mcnt = *p++; |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
5554 DEBUG_PRINT3 ("EXECUTING %scategoryspec %d.\n", not?"not":"", mcnt); |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5555 PREFETCH (); |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5556 { |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
5557 int len; |
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
5558 re_wchar_t c; |
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
5559 |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
5560 c = RE_STRING_CHAR_AND_LENGTH (d, dend - d, len); |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5561 |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
5562 if ((!CHAR_HAS_CATEGORY (c, mcnt)) ^ not) |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5563 goto fail; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5564 d += len; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5565 } |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5566 break; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5567 |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
5568 #endif /* emacs */ |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5569 |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
5570 default: |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
5571 abort (); |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5572 } |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5573 continue; /* Successfully executed one pattern command; keep going. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5574 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5575 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5576 /* We goto here if a matching operation fails. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5577 fail: |
32823
2a7f61d7ae12
(IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
Andrew Innes <andrewi@gnu.org>
parents:
32805
diff
changeset
|
5578 IMMEDIATE_QUIT_CHECK; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5579 if (!FAIL_STACK_EMPTY ()) |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5580 { |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
5581 re_char *str, *pat; |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5582 /* A restart point is known. Restore to that state. */ |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
5583 DEBUG_PRINT1 ("\nFAIL:\n"); |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
5584 POP_FAILURE_POINT (str, pat); |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5585 switch (SWITCH_ENUM_CAST ((re_opcode_t) *pat++)) |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5586 { |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5587 case on_failure_keep_string_jump: |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5588 assert (str == NULL); |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5589 goto continue_failure_jump; |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5590 |
28342
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
5591 case on_failure_jump_nastyloop: |
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
5592 assert ((re_opcode_t)pat[-2] == no_op); |
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
5593 PUSH_FAILURE_POINT (pat - 2, str); |
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
5594 /* Fallthrough */ |
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
5595 |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5596 case on_failure_jump_loop: |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5597 case on_failure_jump: |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5598 case succeed_n: |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5599 d = str; |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5600 continue_failure_jump: |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5601 EXTRACT_NUMBER_AND_INCR (mcnt, pat); |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5602 p = pat + mcnt; |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5603 break; |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5604 |
28342
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
5605 case no_op: |
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
5606 /* A special frame used for nastyloops. */ |
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
5607 goto fail; |
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
5608 |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5609 default: |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5610 abort(); |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5611 } |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5612 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5613 assert (p >= bufp->buffer && p <= pend); |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5614 |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
5615 if (d >= string1 && d <= end1) |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5616 dend = end_match_1; |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
5617 } |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5618 else |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
5619 break; /* Matching at this starting point really fails. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5620 } /* for (;;) */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5621 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5622 if (best_regs_set) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5623 goto restore_best_regs; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5624 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5625 FREE_VARIABLES (); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5626 |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5627 return -1; /* Failure to match. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5628 } /* re_match_2 */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5629 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5630 /* Subroutine definitions for re_match_2. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5631 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5632 /* Return zero if TRANSLATE[S1] and TRANSLATE[S2] are identical for LEN |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5633 bytes; nonzero otherwise. */ |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5634 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5635 static int |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
5636 bcmp_translate (s1, s2, len, translate, multibyte) |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
5637 re_char *s1, *s2; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5638 register int len; |
13250
52e053f46f76
(TRANSLATE, PATFETCH): Cast elt of `translate'.
Richard M. Stallman <rms@gnu.org>
parents:
13100
diff
changeset
|
5639 RE_TRANSLATE_TYPE translate; |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
5640 const int multibyte; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5641 { |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
5642 register re_char *p1 = s1, *p2 = s2; |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
5643 re_char *p1_end = s1 + len; |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
5644 re_char *p2_end = s2 + len; |
21348
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
5645 |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
5646 /* FIXME: Checking both p1 and p2 presumes that the two strings might have |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
5647 different lengths, but relying on a single `len' would break this. -sm */ |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
5648 while (p1 < p1_end && p2 < p2_end) |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5649 { |
21348
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
5650 int p1_charlen, p2_charlen; |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
5651 re_wchar_t p1_ch, p2_ch; |
21348
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
5652 |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
5653 p1_ch = RE_STRING_CHAR_AND_LENGTH (p1, p1_end - p1, p1_charlen); |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
5654 p2_ch = RE_STRING_CHAR_AND_LENGTH (p2, p2_end - p2, p2_charlen); |
21348
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
5655 |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
5656 if (RE_TRANSLATE (translate, p1_ch) |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
5657 != RE_TRANSLATE (translate, p2_ch)) |
18614
a9bf61beded5
(TRANSLATE, re_search_2, re_match_2_internal,bcmp_translate):
Richard M. Stallman <rms@gnu.org>
parents:
18532
diff
changeset
|
5658 return 1; |
21348
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
5659 |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
5660 p1 += p1_charlen, p2 += p2_charlen; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5661 } |
21348
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
5662 |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
5663 if (p1 != p1_end || p2 != p2_end) |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
5664 return 1; |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
5665 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5666 return 0; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5667 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5668 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5669 /* Entry points for GNU code. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5670 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5671 /* re_compile_pattern is the GNU regular expression compiler: it |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5672 compiles PATTERN (of length SIZE) and puts the result in BUFP. |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5673 Returns 0 if the pattern was valid, otherwise an error string. |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5674 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5675 Assumes the `allocated' (and perhaps `buffer') and `translate' fields |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5676 are set in BUFP on entry. |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5677 |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5678 We call regex_compile to do the actual compilation. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5679 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5680 const char * |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5681 re_compile_pattern (pattern, length, bufp) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5682 const char *pattern; |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
5683 size_t length; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5684 struct re_pattern_buffer *bufp; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5685 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5686 reg_errcode_t ret; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5687 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5688 /* GNU code is written to assume at least RE_NREGS registers will be set |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5689 (and at least one extra will be -1). */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5690 bufp->regs_allocated = REGS_UNALLOCATED; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5691 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5692 /* And GNU code determines whether or not to get register information |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5693 by passing null for the REGS argument to re_match, etc., not by |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5694 setting no_sub. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5695 bufp->no_sub = 0; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5696 |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
5697 ret = regex_compile ((re_char*) pattern, length, re_syntax_options, bufp); |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5698 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5699 if (!ret) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5700 return NULL; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5701 return gettext (re_error_msgid[(int) ret]); |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5702 } |
31312
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
5703 WEAK_ALIAS (__re_compile_pattern, re_compile_pattern) |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5704 |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5705 /* Entry points compatible with 4.2 BSD regex library. We don't define |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5706 them unless specifically requested. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5707 |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
5708 #if defined _REGEX_RE_COMP || defined _LIBC |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5709 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5710 /* BSD has one and only one pattern buffer. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5711 static struct re_pattern_buffer re_comp_buf; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5712 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5713 char * |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
5714 # ifdef _LIBC |
15635
89f7ba4ccd22
[_LIBC] (re_comp, re_exec): Use `weak_function' keyword in defn instead of
Roland McGrath <roland@gnu.org>
parents:
15516
diff
changeset
|
5715 /* Make these definitions weak in libc, so POSIX programs can redefine |
89f7ba4ccd22
[_LIBC] (re_comp, re_exec): Use `weak_function' keyword in defn instead of
Roland McGrath <roland@gnu.org>
parents:
15516
diff
changeset
|
5716 these names if they don't use our functions, and still use |
89f7ba4ccd22
[_LIBC] (re_comp, re_exec): Use `weak_function' keyword in defn instead of
Roland McGrath <roland@gnu.org>
parents:
15516
diff
changeset
|
5717 regcomp/regexec below without link errors. */ |
89f7ba4ccd22
[_LIBC] (re_comp, re_exec): Use `weak_function' keyword in defn instead of
Roland McGrath <roland@gnu.org>
parents:
15516
diff
changeset
|
5718 weak_function |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
5719 # endif |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5720 re_comp (s) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5721 const char *s; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5722 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5723 reg_errcode_t ret; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5724 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5725 if (!s) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5726 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5727 if (!re_comp_buf.buffer) |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
5728 /* Yes, we're discarding `const' here if !HAVE_LIBINTL. */ |
29801
3ea64112b4ba
(re_match, re_match_2): Protect calls to alloca (0).
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29546
diff
changeset
|
5729 return (char *) gettext ("No previous regular expression"); |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5730 return 0; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5731 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5732 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5733 if (!re_comp_buf.buffer) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5734 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5735 re_comp_buf.buffer = (unsigned char *) malloc (200); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5736 if (re_comp_buf.buffer == NULL) |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
5737 /* Yes, we're discarding `const' here if !HAVE_LIBINTL. */ |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
5738 return (char *) gettext (re_error_msgid[(int) REG_ESPACE]); |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5739 re_comp_buf.allocated = 200; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5740 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5741 re_comp_buf.fastmap = (char *) malloc (1 << BYTEWIDTH); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5742 if (re_comp_buf.fastmap == NULL) |
29801
3ea64112b4ba
(re_match, re_match_2): Protect calls to alloca (0).
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29546
diff
changeset
|
5743 /* Yes, we're discarding `const' here if !HAVE_LIBINTL. */ |
3ea64112b4ba
(re_match, re_match_2): Protect calls to alloca (0).
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29546
diff
changeset
|
5744 return (char *) gettext (re_error_msgid[(int) REG_ESPACE]); |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5745 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5746 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5747 /* Since `re_exec' always passes NULL for the `regs' argument, we |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5748 don't need to initialize the pattern buffer fields which affect it. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5749 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5750 ret = regex_compile (s, strlen (s), re_syntax_options, &re_comp_buf); |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5751 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5752 if (!ret) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5753 return NULL; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5754 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5755 /* Yes, we're discarding `const' here if !HAVE_LIBINTL. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5756 return (char *) gettext (re_error_msgid[(int) ret]); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5757 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5758 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5759 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5760 int |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
5761 # ifdef _LIBC |
15635
89f7ba4ccd22
[_LIBC] (re_comp, re_exec): Use `weak_function' keyword in defn instead of
Roland McGrath <roland@gnu.org>
parents:
15516
diff
changeset
|
5762 weak_function |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
5763 # endif |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5764 re_exec (s) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5765 const char *s; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5766 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5767 const int len = strlen (s); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5768 return |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5769 0 <= re_search (&re_comp_buf, s, len, 0, len, (struct re_registers *) 0); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5770 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5771 #endif /* _REGEX_RE_COMP */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5772 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5773 /* POSIX.2 functions. Don't define these for Emacs. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5774 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5775 #ifndef emacs |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5776 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5777 /* regcomp takes a regular expression as a string and compiles it. |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5778 |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5779 PREG is a regex_t *. We do not expect any fields to be initialized, |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5780 since POSIX says we shouldn't. Thus, we set |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5781 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5782 `buffer' to the compiled pattern; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5783 `used' to the length of the compiled pattern; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5784 `syntax' to RE_SYNTAX_POSIX_EXTENDED if the |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5785 REG_EXTENDED bit in CFLAGS is set; otherwise, to |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5786 RE_SYNTAX_POSIX_BASIC; |
31312
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
5787 `fastmap' to an allocated space for the fastmap; |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
5788 `fastmap_accurate' to zero; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5789 `re_nsub' to the number of subexpressions in PATTERN. |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5790 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5791 PATTERN is the address of the pattern string. |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5792 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5793 CFLAGS is a series of bits which affect compilation. |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5794 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5795 If REG_EXTENDED is set, we use POSIX extended syntax; otherwise, we |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5796 use POSIX basic syntax. |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5797 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5798 If REG_NEWLINE is set, then . and [^...] don't match newline. |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5799 Also, regexec will try a match beginning after every newline. |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5800 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5801 If REG_ICASE is set, then we considers upper- and lowercase |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5802 versions of letters to be equivalent when matching. |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5803 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5804 If REG_NOSUB is set, then when PREG is passed to regexec, that |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5805 routine will report only success or failure, and nothing about the |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5806 registers. |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5807 |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5808 It returns 0 if it succeeds, nonzero if it doesn't. (See regex.h for |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5809 the return codes and their meanings.) */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5810 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5811 int |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5812 regcomp (preg, pattern, cflags) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5813 regex_t *preg; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5814 const char *pattern; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5815 int cflags; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5816 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5817 reg_errcode_t ret; |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
5818 reg_syntax_t syntax |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5819 = (cflags & REG_EXTENDED) ? |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5820 RE_SYNTAX_POSIX_EXTENDED : RE_SYNTAX_POSIX_BASIC; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5821 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5822 /* regex_compile will allocate the space for the compiled pattern. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5823 preg->buffer = 0; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5824 preg->allocated = 0; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5825 preg->used = 0; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5826 |
31312
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
5827 /* Try to allocate space for the fastmap. */ |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
5828 preg->fastmap = (char *) malloc (1 << BYTEWIDTH); |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5829 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5830 if (cflags & REG_ICASE) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5831 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5832 unsigned i; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5833 |
13250
52e053f46f76
(TRANSLATE, PATFETCH): Cast elt of `translate'.
Richard M. Stallman <rms@gnu.org>
parents:
13100
diff
changeset
|
5834 preg->translate |
52e053f46f76
(TRANSLATE, PATFETCH): Cast elt of `translate'.
Richard M. Stallman <rms@gnu.org>
parents:
13100
diff
changeset
|
5835 = (RE_TRANSLATE_TYPE) malloc (CHAR_SET_SIZE |
52e053f46f76
(TRANSLATE, PATFETCH): Cast elt of `translate'.
Richard M. Stallman <rms@gnu.org>
parents:
13100
diff
changeset
|
5836 * sizeof (*(RE_TRANSLATE_TYPE)0)); |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5837 if (preg->translate == NULL) |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
5838 return (int) REG_ESPACE; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5839 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5840 /* Map uppercase characters to corresponding lowercase ones. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5841 for (i = 0; i < CHAR_SET_SIZE; i++) |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
5842 preg->translate[i] = ISUPPER (i) ? TOLOWER (i) : i; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5843 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5844 else |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5845 preg->translate = NULL; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5846 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5847 /* If REG_NEWLINE is set, newlines are treated differently. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5848 if (cflags & REG_NEWLINE) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5849 { /* REG_NEWLINE implies neither . nor [^...] match newline. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5850 syntax &= ~RE_DOT_NEWLINE; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5851 syntax |= RE_HAT_LISTS_NOT_NEWLINE; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5852 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5853 else |
31312
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
5854 syntax |= RE_NO_NEWLINE_ANCHOR; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5855 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5856 preg->no_sub = !!(cflags & REG_NOSUB); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5857 |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5858 /* POSIX says a null character in the pattern terminates it, so we |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5859 can use strlen here in compiling the pattern. */ |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
5860 ret = regex_compile ((re_char*) pattern, strlen (pattern), syntax, preg); |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5861 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5862 /* POSIX doesn't distinguish between an unmatched open-group and an |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5863 unmatched close-group: both are REG_EPAREN. */ |
31312
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
5864 if (ret == REG_ERPAREN) |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
5865 ret = REG_EPAREN; |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
5866 |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
5867 if (ret == REG_NOERROR && preg->fastmap) |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
5868 { /* Compute the fastmap now, since regexec cannot modify the pattern |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
5869 buffer. */ |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
5870 re_compile_fastmap (preg); |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
5871 if (preg->can_be_null) |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
5872 { /* The fastmap can't be used anyway. */ |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
5873 free (preg->fastmap); |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
5874 preg->fastmap = NULL; |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
5875 } |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
5876 } |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5877 return (int) ret; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5878 } |
31312
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
5879 WEAK_ALIAS (__regcomp, regcomp) |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5880 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5881 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5882 /* regexec searches for a given pattern, specified by PREG, in the |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5883 string STRING. |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5884 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5885 If NMATCH is zero or REG_NOSUB was set in the cflags argument to |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5886 `regcomp', we ignore PMATCH. Otherwise, we assume PMATCH has at |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5887 least NMATCH elements, and we set them to the offsets of the |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5888 corresponding matched substrings. |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5889 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5890 EFLAGS specifies `execution flags' which affect matching: if |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5891 REG_NOTBOL is set, then ^ does not match at the beginning of the |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5892 string; if REG_NOTEOL is set, then $ does not match at the end. |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5893 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5894 We return 0 if we find a match and REG_NOMATCH if not. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5895 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5896 int |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5897 regexec (preg, string, nmatch, pmatch, eflags) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5898 const regex_t *preg; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5899 const char *string; |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5900 size_t nmatch; |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5901 regmatch_t pmatch[]; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5902 int eflags; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5903 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5904 int ret; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5905 struct re_registers regs; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5906 regex_t private_preg; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5907 int len = strlen (string); |
31312
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
5908 boolean want_reg_info = !preg->no_sub && nmatch > 0 && pmatch; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5909 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5910 private_preg = *preg; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5911 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5912 private_preg.not_bol = !!(eflags & REG_NOTBOL); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5913 private_preg.not_eol = !!(eflags & REG_NOTEOL); |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5914 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5915 /* The user has told us exactly how many registers to return |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5916 information about, via `nmatch'. We have to pass that on to the |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5917 matching routines. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5918 private_preg.regs_allocated = REGS_FIXED; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5919 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5920 if (want_reg_info) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5921 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5922 regs.num_regs = nmatch; |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
5923 regs.start = TALLOC (nmatch * 2, regoff_t); |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
5924 if (regs.start == NULL) |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
5925 return (int) REG_NOMATCH; |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
5926 regs.end = regs.start + nmatch; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5927 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5928 |
31312
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
5929 /* Instead of using not_eol to implement REG_NOTEOL, we could simply |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
5930 pass (&private_preg, string, len + 1, 0, len, ...) pretending the string |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
5931 was a little bit longer but still only matching the real part. |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
5932 This works because the `endline' will check for a '\n' and will find a |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
5933 '\0', correctly deciding that this is not the end of a line. |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
5934 But it doesn't work out so nicely for REG_NOTBOL, since we don't have |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
5935 a convenient '\0' there. For all we know, the string could be preceded |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
5936 by '\n' which would throw things off. */ |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
5937 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5938 /* Perform the searching operation. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5939 ret = re_search (&private_preg, string, len, |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
5940 /* start: */ 0, /* range: */ len, |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
5941 want_reg_info ? ®s : (struct re_registers *) 0); |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5942 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5943 /* Copy the register information to the POSIX structure. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5944 if (want_reg_info) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5945 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5946 if (ret >= 0) |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
5947 { |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
5948 unsigned r; |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
5949 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
5950 for (r = 0; r < nmatch; r++) |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
5951 { |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
5952 pmatch[r].rm_so = regs.start[r]; |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
5953 pmatch[r].rm_eo = regs.end[r]; |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
5954 } |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
5955 } |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5956 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5957 /* If we needed the temporary register info, free the space now. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5958 free (regs.start); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5959 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5960 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5961 /* We want zero return to mean success, unlike `re_search'. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5962 return ret >= 0 ? (int) REG_NOERROR : (int) REG_NOMATCH; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5963 } |
31312
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
5964 WEAK_ALIAS (__regexec, regexec) |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5965 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5966 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5967 /* Returns a message corresponding to an error code, ERRCODE, returned |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5968 from either regcomp or regexec. We don't use PREG here. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5969 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5970 size_t |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5971 regerror (errcode, preg, errbuf, errbuf_size) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5972 int errcode; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5973 const regex_t *preg; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5974 char *errbuf; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5975 size_t errbuf_size; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5976 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5977 const char *msg; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5978 size_t msg_size; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5979 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5980 if (errcode < 0 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5981 || errcode >= (sizeof (re_error_msgid) / sizeof (re_error_msgid[0]))) |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5982 /* Only error codes returned by the rest of the code should be passed |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5983 to this routine. If we are given anything else, or if other regex |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5984 code generates an invalid error code, then the program has a bug. |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5985 Dump core so we can fix it. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5986 abort (); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5987 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5988 msg = gettext (re_error_msgid[errcode]); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5989 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5990 msg_size = strlen (msg) + 1; /* Includes the null. */ |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5991 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5992 if (errbuf_size != 0) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5993 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5994 if (msg_size > errbuf_size) |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
5995 { |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
5996 strncpy (errbuf, msg, errbuf_size - 1); |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
5997 errbuf[errbuf_size - 1] = 0; |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
5998 } |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5999 else |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
6000 strcpy (errbuf, msg); |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6001 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6002 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6003 return msg_size; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6004 } |
31312
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
6005 WEAK_ALIAS (__regerror, regerror) |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6006 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6007 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6008 /* Free dynamically allocated space used by PREG. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6009 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6010 void |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6011 regfree (preg) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6012 regex_t *preg; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6013 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6014 if (preg->buffer != NULL) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6015 free (preg->buffer); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6016 preg->buffer = NULL; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
6017 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6018 preg->allocated = 0; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6019 preg->used = 0; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6020 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6021 if (preg->fastmap != NULL) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6022 free (preg->fastmap); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6023 preg->fastmap = NULL; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6024 preg->fastmap_accurate = 0; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6025 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6026 if (preg->translate != NULL) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6027 free (preg->translate); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6028 preg->translate = NULL; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6029 } |
31312
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
6030 WEAK_ALIAS (__regfree, regfree) |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6031 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6032 #endif /* not emacs */ |