Mercurial > emacs
annotate src/regex.c @ 101179:84cbdd182a6d
(url-cookie-retrieve): Handle null localpart.
author | Chong Yidong <cyd@stupidchicken.com> |
---|---|
date | Wed, 14 Jan 2009 20:47:02 +0000 |
parents | e038c1a8307c |
children | d0a6d64c3cfc |
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 | |
64770
a0d1312ede66
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64084
diff
changeset
|
5 Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, |
100951 | 6 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 |
78335
655b84302874
Switch license to GPLv3 or later.
Glenn Morris <rgm@gnu.org>
parents:
75348
diff
changeset
|
7 Free Software Foundation, Inc. |
1155 | 8 |
11864
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 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
|
10 it under the terms of the GNU General Public License as published by |
78335
655b84302874
Switch license to GPLv3 or later.
Glenn Morris <rgm@gnu.org>
parents:
75348
diff
changeset
|
11 the Free Software Foundation; either version 3, or (at your option) |
11864
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 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
|
13 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
14 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
|
15 but WITHOUT ANY WARRANTY; without even the implied warranty of |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
16 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
|
17 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
|
18 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
19 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
|
20 along with this program; if not, write to the Free Software |
64084 | 21 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
22 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
|
23 |
47368
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
24 /* TODO: |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
25 - structure the opcode space into opcode+flag. |
31172
0ee53ec2081a
(PUSH_FAILURE_COUNT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30752
diff
changeset
|
26 - merge with glibc's regex.[ch]. |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
27 - 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
|
28 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
|
29 - 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
|
30 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
|
31 */ |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
32 |
11864
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 /* 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
|
34 #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
|
35 #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
|
36 #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
|
37 |
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 #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
|
39 # 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
|
40 #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
|
41 |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
42 #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
|
43 # include <stddef.h> |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
44 #else |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
45 /* 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
|
46 # include <sys/types.h> |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
47 #endif |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
48 |
31360
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
49 /* 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
|
50 Those should not be used for Emacs since it uses its own. */ |
39718
287021d71c8a
(WIDE_CHAR_SUPPORT): Do not use defined() in macro.
Gerd Moellmann <gerd@gnu.org>
parents:
37705
diff
changeset
|
51 #if defined _LIBC |
287021d71c8a
(WIDE_CHAR_SUPPORT): Do not use defined() in macro.
Gerd Moellmann <gerd@gnu.org>
parents:
37705
diff
changeset
|
52 #define WIDE_CHAR_SUPPORT 1 |
287021d71c8a
(WIDE_CHAR_SUPPORT): Do not use defined() in macro.
Gerd Moellmann <gerd@gnu.org>
parents:
37705
diff
changeset
|
53 #else |
31360
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
54 #define WIDE_CHAR_SUPPORT \ |
39718
287021d71c8a
(WIDE_CHAR_SUPPORT): Do not use defined() in macro.
Gerd Moellmann <gerd@gnu.org>
parents:
37705
diff
changeset
|
55 (HAVE_WCTYPE_H && HAVE_WCHAR_H && HAVE_BTOWC && !emacs) |
287021d71c8a
(WIDE_CHAR_SUPPORT): Do not use defined() in macro.
Gerd Moellmann <gerd@gnu.org>
parents:
37705
diff
changeset
|
56 #endif |
31360
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
57 |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
58 /* 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
|
59 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
|
60 #if WIDE_CHAR_SUPPORT |
31360
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
61 /* 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
|
62 # include <wchar.h> |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
63 # include <wctype.h> |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
64 #endif |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
65 |
31312
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
66 #ifdef _LIBC |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
67 /* 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
|
68 # 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
|
69 # 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
|
70 # define regcomp(preg, pattern, cflags) __regcomp (preg, pattern, cflags) |
74955
0b7286cbaf0c
(regerror): Change parameter name err_code.
Jason Rumney <jasonr@gnu.org>
parents:
74323
diff
changeset
|
71 # define regerror(err_code, preg, errbuf, errbuf_size) \ |
0b7286cbaf0c
(regerror): Change parameter name err_code.
Jason Rumney <jasonr@gnu.org>
parents:
74323
diff
changeset
|
72 __regerror(err_code, preg, errbuf, errbuf_size) |
31312
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
73 # 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
|
74 __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
|
75 # 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
|
76 __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
|
77 # 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
|
78 __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
|
79 # 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
|
80 __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
|
81 # 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
|
82 __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
|
83 # 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
|
84 # 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
|
85 __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
|
86 # 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
|
87 |
31360
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
88 /* 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
|
89 # define btowc __btowc |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
90 # define iswctype __iswctype |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
91 # define wctype __wctype |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
92 |
31312
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
93 # 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
|
94 |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
95 /* 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
|
96 # include <locale/localeinfo.h> |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
97 # 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
|
98 # include <langinfo.h> |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
99 #else |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
100 # 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
|
101 #endif |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
102 |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
103 /* 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
|
104 #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
|
105 # 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
|
106 #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
|
107 # 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
|
108 #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
|
109 |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
110 #ifndef gettext_noop |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
111 /* 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
|
112 strings. */ |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
113 # define gettext_noop(String) String |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
114 #endif |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
115 |
11864
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 /* 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
|
117 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
|
118 #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
|
119 |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
120 # include "lisp.h" |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
121 # include "buffer.h" |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
122 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
123 /* 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
|
124 # 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
|
125 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
126 # include "syntax.h" |
88387
06da178fab0e
* regex.c: Include "character.h" instead of "charset.h".
Kenichi Handa <handa@m17n.org>
parents:
40650
diff
changeset
|
127 # include "character.h" |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
128 # include "category.h" |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
129 |
37705
a8725acacca5
(malloc, realloc, free) [emacs]: Undefine before
Eli Zaretskii <eliz@gnu.org>
parents:
35533
diff
changeset
|
130 # ifdef malloc |
a8725acacca5
(malloc, realloc, free) [emacs]: Undefine before
Eli Zaretskii <eliz@gnu.org>
parents:
35533
diff
changeset
|
131 # undef malloc |
a8725acacca5
(malloc, realloc, free) [emacs]: Undefine before
Eli Zaretskii <eliz@gnu.org>
parents:
35533
diff
changeset
|
132 # endif |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
133 # define malloc xmalloc |
37705
a8725acacca5
(malloc, realloc, free) [emacs]: Undefine before
Eli Zaretskii <eliz@gnu.org>
parents:
35533
diff
changeset
|
134 # ifdef realloc |
a8725acacca5
(malloc, realloc, free) [emacs]: Undefine before
Eli Zaretskii <eliz@gnu.org>
parents:
35533
diff
changeset
|
135 # undef realloc |
a8725acacca5
(malloc, realloc, free) [emacs]: Undefine before
Eli Zaretskii <eliz@gnu.org>
parents:
35533
diff
changeset
|
136 # endif |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
137 # define realloc xrealloc |
37705
a8725acacca5
(malloc, realloc, free) [emacs]: Undefine before
Eli Zaretskii <eliz@gnu.org>
parents:
35533
diff
changeset
|
138 # ifdef free |
a8725acacca5
(malloc, realloc, free) [emacs]: Undefine before
Eli Zaretskii <eliz@gnu.org>
parents:
35533
diff
changeset
|
139 # undef free |
a8725acacca5
(malloc, realloc, free) [emacs]: Undefine before
Eli Zaretskii <eliz@gnu.org>
parents:
35533
diff
changeset
|
140 # endif |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
141 # define free xfree |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
142 |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
143 /* Converts the pointer to the char to BEG-based offset from the start. */ |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
144 # 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
|
145 # 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
|
146 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
147 # define RE_MULTIBYTE_P(bufp) ((bufp)->multibyte) |
89061
9a9b54d06f3d
* regex.c (RE_TARGET_MULTIBYTE_P): New macro.
Kenichi Handa <handa@m17n.org>
parents:
88387
diff
changeset
|
148 # define RE_TARGET_MULTIBYTE_P(bufp) ((bufp)->target_multibyte) |
90757
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
149 # define RE_STRING_CHAR(p, s, multibyte) \ |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
150 (multibyte ? (STRING_CHAR (p, s)) : (*(p))) |
90757
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
151 # define RE_STRING_CHAR_AND_LENGTH(p, s, len, multibyte) \ |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
152 (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
|
153 |
90757
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
154 # define RE_CHAR_TO_MULTIBYTE(c) unibyte_to_multibyte_table[(c)] |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
155 |
95856
f13a77e0e34f
* character.h (CHAR_TO_BYTE_SAFE): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
95479
diff
changeset
|
156 # define RE_CHAR_TO_UNIBYTE(c) CHAR_TO_BYTE_SAFE (c) |
90757
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
157 |
89455
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
158 /* Set C a (possibly converted to multibyte) character before P. P |
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
159 points into a string which is the virtual concatenation of STR1 |
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
160 (which ends at END1) or STR2 (which ends at END2). */ |
89061
9a9b54d06f3d
* regex.c (RE_TARGET_MULTIBYTE_P): New macro.
Kenichi Handa <handa@m17n.org>
parents:
88387
diff
changeset
|
161 # define GET_CHAR_BEFORE_2(c, p, str1, end1, str2, end2) \ |
9a9b54d06f3d
* regex.c (RE_TARGET_MULTIBYTE_P): New macro.
Kenichi Handa <handa@m17n.org>
parents:
88387
diff
changeset
|
162 do { \ |
90764
324e371fbbe5
(GET_CHAR_BEFORE_2, GET_CHAR_AFTER): Check the variable
Kenichi Handa <handa@m17n.org>
parents:
90757
diff
changeset
|
163 if (target_multibyte) \ |
89061
9a9b54d06f3d
* regex.c (RE_TARGET_MULTIBYTE_P): New macro.
Kenichi Handa <handa@m17n.org>
parents:
88387
diff
changeset
|
164 { \ |
9a9b54d06f3d
* regex.c (RE_TARGET_MULTIBYTE_P): New macro.
Kenichi Handa <handa@m17n.org>
parents:
88387
diff
changeset
|
165 re_char *dtemp = (p) == (str2) ? (end1) : (p); \ |
9a9b54d06f3d
* regex.c (RE_TARGET_MULTIBYTE_P): New macro.
Kenichi Handa <handa@m17n.org>
parents:
88387
diff
changeset
|
166 re_char *dlimit = ((p) > (str2) && (p) <= (end2)) ? (str2) : (str1); \ |
9a9b54d06f3d
* regex.c (RE_TARGET_MULTIBYTE_P): New macro.
Kenichi Handa <handa@m17n.org>
parents:
88387
diff
changeset
|
167 while (dtemp-- > dlimit && !CHAR_HEAD_P (*dtemp)); \ |
9a9b54d06f3d
* regex.c (RE_TARGET_MULTIBYTE_P): New macro.
Kenichi Handa <handa@m17n.org>
parents:
88387
diff
changeset
|
168 c = STRING_CHAR (dtemp, (p) - dtemp); \ |
9a9b54d06f3d
* regex.c (RE_TARGET_MULTIBYTE_P): New macro.
Kenichi Handa <handa@m17n.org>
parents:
88387
diff
changeset
|
169 } \ |
9a9b54d06f3d
* regex.c (RE_TARGET_MULTIBYTE_P): New macro.
Kenichi Handa <handa@m17n.org>
parents:
88387
diff
changeset
|
170 else \ |
9a9b54d06f3d
* regex.c (RE_TARGET_MULTIBYTE_P): New macro.
Kenichi Handa <handa@m17n.org>
parents:
88387
diff
changeset
|
171 { \ |
9a9b54d06f3d
* regex.c (RE_TARGET_MULTIBYTE_P): New macro.
Kenichi Handa <handa@m17n.org>
parents:
88387
diff
changeset
|
172 (c = ((p) == (str2) ? (end1) : (p))[-1]); \ |
90757
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
173 (c) = RE_CHAR_TO_MULTIBYTE (c); \ |
89061
9a9b54d06f3d
* regex.c (RE_TARGET_MULTIBYTE_P): New macro.
Kenichi Handa <handa@m17n.org>
parents:
88387
diff
changeset
|
174 } \ |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
175 } while (0) |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
176 |
89455
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
177 /* Set C a (possibly converted to multibyte) character at P, and set |
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
178 LEN to the byte length of that character. */ |
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
179 # define GET_CHAR_AFTER(c, p, len) \ |
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
180 do { \ |
90764
324e371fbbe5
(GET_CHAR_BEFORE_2, GET_CHAR_AFTER): Check the variable
Kenichi Handa <handa@m17n.org>
parents:
90757
diff
changeset
|
181 if (target_multibyte) \ |
90757
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
182 (c) = STRING_CHAR_AND_LENGTH (p, 0, len); \ |
89455
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
183 else \ |
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
184 { \ |
90757
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
185 (c) = *p; \ |
89455
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
186 len = 1; \ |
90757
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
187 (c) = RE_CHAR_TO_MULTIBYTE (c); \ |
89455
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
188 } \ |
89483 | 189 } while (0) |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
190 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
191 #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
|
192 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
193 /* 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
|
194 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
|
195 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
|
196 # undef REL_ALLOC |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
197 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
198 # 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
|
199 # include <stdlib.h> |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
200 # 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
|
201 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
|
202 char *realloc (); |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
203 # 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
|
204 |
69038
b2288bb7d88f
* regex.c (xmalloc, xrealloc): Define these when not linked to
Chong Yidong <cyd@stupidchicken.com>
parents:
69032
diff
changeset
|
205 /* When used in Emacs's lib-src, we need xmalloc and xrealloc. */ |
b2288bb7d88f
* regex.c (xmalloc, xrealloc): Define these when not linked to
Chong Yidong <cyd@stupidchicken.com>
parents:
69032
diff
changeset
|
206 |
b2288bb7d88f
* regex.c (xmalloc, xrealloc): Define these when not linked to
Chong Yidong <cyd@stupidchicken.com>
parents:
69032
diff
changeset
|
207 void * |
b2288bb7d88f
* regex.c (xmalloc, xrealloc): Define these when not linked to
Chong Yidong <cyd@stupidchicken.com>
parents:
69032
diff
changeset
|
208 xmalloc (size) |
b2288bb7d88f
* regex.c (xmalloc, xrealloc): Define these when not linked to
Chong Yidong <cyd@stupidchicken.com>
parents:
69032
diff
changeset
|
209 size_t size; |
b2288bb7d88f
* regex.c (xmalloc, xrealloc): Define these when not linked to
Chong Yidong <cyd@stupidchicken.com>
parents:
69032
diff
changeset
|
210 { |
b2288bb7d88f
* regex.c (xmalloc, xrealloc): Define these when not linked to
Chong Yidong <cyd@stupidchicken.com>
parents:
69032
diff
changeset
|
211 register void *val; |
b2288bb7d88f
* regex.c (xmalloc, xrealloc): Define these when not linked to
Chong Yidong <cyd@stupidchicken.com>
parents:
69032
diff
changeset
|
212 val = (void *) malloc (size); |
b2288bb7d88f
* regex.c (xmalloc, xrealloc): Define these when not linked to
Chong Yidong <cyd@stupidchicken.com>
parents:
69032
diff
changeset
|
213 if (!val && size) |
b2288bb7d88f
* regex.c (xmalloc, xrealloc): Define these when not linked to
Chong Yidong <cyd@stupidchicken.com>
parents:
69032
diff
changeset
|
214 { |
b2288bb7d88f
* regex.c (xmalloc, xrealloc): Define these when not linked to
Chong Yidong <cyd@stupidchicken.com>
parents:
69032
diff
changeset
|
215 write (2, "virtual memory exhausted\n", 25); |
b2288bb7d88f
* regex.c (xmalloc, xrealloc): Define these when not linked to
Chong Yidong <cyd@stupidchicken.com>
parents:
69032
diff
changeset
|
216 exit (1); |
b2288bb7d88f
* regex.c (xmalloc, xrealloc): Define these when not linked to
Chong Yidong <cyd@stupidchicken.com>
parents:
69032
diff
changeset
|
217 } |
b2288bb7d88f
* regex.c (xmalloc, xrealloc): Define these when not linked to
Chong Yidong <cyd@stupidchicken.com>
parents:
69032
diff
changeset
|
218 return val; |
b2288bb7d88f
* regex.c (xmalloc, xrealloc): Define these when not linked to
Chong Yidong <cyd@stupidchicken.com>
parents:
69032
diff
changeset
|
219 } |
b2288bb7d88f
* regex.c (xmalloc, xrealloc): Define these when not linked to
Chong Yidong <cyd@stupidchicken.com>
parents:
69032
diff
changeset
|
220 |
b2288bb7d88f
* regex.c (xmalloc, xrealloc): Define these when not linked to
Chong Yidong <cyd@stupidchicken.com>
parents:
69032
diff
changeset
|
221 void * |
b2288bb7d88f
* regex.c (xmalloc, xrealloc): Define these when not linked to
Chong Yidong <cyd@stupidchicken.com>
parents:
69032
diff
changeset
|
222 xrealloc (block, size) |
b2288bb7d88f
* regex.c (xmalloc, xrealloc): Define these when not linked to
Chong Yidong <cyd@stupidchicken.com>
parents:
69032
diff
changeset
|
223 void *block; |
b2288bb7d88f
* regex.c (xmalloc, xrealloc): Define these when not linked to
Chong Yidong <cyd@stupidchicken.com>
parents:
69032
diff
changeset
|
224 size_t size; |
b2288bb7d88f
* regex.c (xmalloc, xrealloc): Define these when not linked to
Chong Yidong <cyd@stupidchicken.com>
parents:
69032
diff
changeset
|
225 { |
b2288bb7d88f
* regex.c (xmalloc, xrealloc): Define these when not linked to
Chong Yidong <cyd@stupidchicken.com>
parents:
69032
diff
changeset
|
226 register void *val; |
b2288bb7d88f
* regex.c (xmalloc, xrealloc): Define these when not linked to
Chong Yidong <cyd@stupidchicken.com>
parents:
69032
diff
changeset
|
227 /* We must call malloc explicitly when BLOCK is 0, since some |
b2288bb7d88f
* regex.c (xmalloc, xrealloc): Define these when not linked to
Chong Yidong <cyd@stupidchicken.com>
parents:
69032
diff
changeset
|
228 reallocs don't do this. */ |
b2288bb7d88f
* regex.c (xmalloc, xrealloc): Define these when not linked to
Chong Yidong <cyd@stupidchicken.com>
parents:
69032
diff
changeset
|
229 if (! block) |
b2288bb7d88f
* regex.c (xmalloc, xrealloc): Define these when not linked to
Chong Yidong <cyd@stupidchicken.com>
parents:
69032
diff
changeset
|
230 val = (void *) malloc (size); |
b2288bb7d88f
* regex.c (xmalloc, xrealloc): Define these when not linked to
Chong Yidong <cyd@stupidchicken.com>
parents:
69032
diff
changeset
|
231 else |
b2288bb7d88f
* regex.c (xmalloc, xrealloc): Define these when not linked to
Chong Yidong <cyd@stupidchicken.com>
parents:
69032
diff
changeset
|
232 val = (void *) realloc (block, size); |
b2288bb7d88f
* regex.c (xmalloc, xrealloc): Define these when not linked to
Chong Yidong <cyd@stupidchicken.com>
parents:
69032
diff
changeset
|
233 if (!val && size) |
b2288bb7d88f
* regex.c (xmalloc, xrealloc): Define these when not linked to
Chong Yidong <cyd@stupidchicken.com>
parents:
69032
diff
changeset
|
234 { |
b2288bb7d88f
* regex.c (xmalloc, xrealloc): Define these when not linked to
Chong Yidong <cyd@stupidchicken.com>
parents:
69032
diff
changeset
|
235 write (2, "virtual memory exhausted\n", 25); |
b2288bb7d88f
* regex.c (xmalloc, xrealloc): Define these when not linked to
Chong Yidong <cyd@stupidchicken.com>
parents:
69032
diff
changeset
|
236 exit (1); |
b2288bb7d88f
* regex.c (xmalloc, xrealloc): Define these when not linked to
Chong Yidong <cyd@stupidchicken.com>
parents:
69032
diff
changeset
|
237 } |
b2288bb7d88f
* regex.c (xmalloc, xrealloc): Define these when not linked to
Chong Yidong <cyd@stupidchicken.com>
parents:
69032
diff
changeset
|
238 return val; |
b2288bb7d88f
* regex.c (xmalloc, xrealloc): Define these when not linked to
Chong Yidong <cyd@stupidchicken.com>
parents:
69032
diff
changeset
|
239 } |
b2288bb7d88f
* regex.c (xmalloc, xrealloc): Define these when not linked to
Chong Yidong <cyd@stupidchicken.com>
parents:
69032
diff
changeset
|
240 |
69039
f717c65a39d7
* regex.c: Revert 2006-02-19 change.
Chong Yidong <cyd@stupidchicken.com>
parents:
69038
diff
changeset
|
241 # ifdef malloc |
f717c65a39d7
* regex.c: Revert 2006-02-19 change.
Chong Yidong <cyd@stupidchicken.com>
parents:
69038
diff
changeset
|
242 # undef malloc |
f717c65a39d7
* regex.c: Revert 2006-02-19 change.
Chong Yidong <cyd@stupidchicken.com>
parents:
69038
diff
changeset
|
243 # endif |
f717c65a39d7
* regex.c: Revert 2006-02-19 change.
Chong Yidong <cyd@stupidchicken.com>
parents:
69038
diff
changeset
|
244 # define malloc xmalloc |
f717c65a39d7
* regex.c: Revert 2006-02-19 change.
Chong Yidong <cyd@stupidchicken.com>
parents:
69038
diff
changeset
|
245 # ifdef realloc |
f717c65a39d7
* regex.c: Revert 2006-02-19 change.
Chong Yidong <cyd@stupidchicken.com>
parents:
69038
diff
changeset
|
246 # undef realloc |
f717c65a39d7
* regex.c: Revert 2006-02-19 change.
Chong Yidong <cyd@stupidchicken.com>
parents:
69038
diff
changeset
|
247 # endif |
f717c65a39d7
* regex.c: Revert 2006-02-19 change.
Chong Yidong <cyd@stupidchicken.com>
parents:
69038
diff
changeset
|
248 # define realloc xrealloc |
f717c65a39d7
* regex.c: Revert 2006-02-19 change.
Chong Yidong <cyd@stupidchicken.com>
parents:
69038
diff
changeset
|
249 |
12065
094636c759bf
Undefined INHIBIT_STRING_HEADER when we have no
Karl Heuer <kwzh@gnu.org>
parents:
11974
diff
changeset
|
250 /* 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
|
251 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
|
252 # 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
|
253 # 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
|
254 # 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
|
255 # 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
|
256 # endif |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
257 # endif |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
258 # endif |
12065
094636c759bf
Undefined INHIBIT_STRING_HEADER when we have no
Karl Heuer <kwzh@gnu.org>
parents:
11974
diff
changeset
|
259 |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
260 /* 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
|
261 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
|
262 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
|
263 # 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
|
264 # 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
|
265 # include <string.h> |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
266 # ifndef bzero |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
267 # ifndef _LIBC |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
268 # 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
|
269 # else |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
270 # 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
|
271 # endif |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
272 # endif |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
273 # else |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
274 # include <strings.h> |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
275 # ifndef memcmp |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
276 # 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
|
277 # endif |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
278 # ifndef memcpy |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
279 # 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
|
280 # endif |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
281 # endif |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
282 # 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
|
283 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
284 /* 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
|
285 |
28279
24a23e27dac6
(enum syntaxcode): Provide default for non-Emacs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28268
diff
changeset
|
286 /* Sword must be nonzero for the wordchar pattern commands in re_match_2. */ |
55690
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
287 enum syntaxcode { Swhitespace = 0, Sword = 1, Ssymbol = 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
|
288 |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
289 # 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
|
290 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
291 /* 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
|
292 # 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
|
293 # 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
|
294 # 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
|
295 # 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
|
296 # define RE_MULTIBYTE_P(x) 0 |
89061
9a9b54d06f3d
* regex.c (RE_TARGET_MULTIBYTE_P): New macro.
Kenichi Handa <handa@m17n.org>
parents:
88387
diff
changeset
|
297 # define RE_TARGET_MULTIBYTE_P(x) 0 |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
298 # 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
|
299 # 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
|
300 # 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
|
301 # 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
|
302 # define MULTIBYTE_FORM_LENGTH(p, s) (1) |
49276
f71131f142ff
(GET_CHAR_BEFORE_2): Use PREV_CHAR_BOUNDARY.
Kenichi Handa <handa@m17n.org>
parents:
48424
diff
changeset
|
303 # define PREV_CHAR_BOUNDARY(p, limit) ((p)--) |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
304 # define STRING_CHAR(p, s) (*(p)) |
90757
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
305 # define RE_STRING_CHAR(p, s, multibyte) STRING_CHAR ((p), (s)) |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
306 # 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
|
307 # define STRING_CHAR_AND_LENGTH(p, s, actual_len) ((actual_len) = 1, *(p)) |
90766
128e9642f988
(RE_STRING_CHAR_AND_LENGTH) [! emacs]: Add missing arg `len'.
Juanma Barranquero <lekktu@gmail.com>
parents:
90764
diff
changeset
|
308 # define RE_STRING_CHAR_AND_LENGTH(p, s, len, multibyte) STRING_CHAR_AND_LENGTH ((p), (s), (len)) |
90757
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
309 # define RE_CHAR_TO_MULTIBYTE(c) (c) |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
310 # define RE_CHAR_TO_UNIBYTE(c) (c) |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
311 # 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
|
312 (c = ((p) == (str2) ? *((end1) - 1) : *((p) - 1))) |
89455
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
313 # define GET_CHAR_AFTER(c, p, len) \ |
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
314 (c = *p, len = 1) |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
315 # define MAKE_CHAR(charset, c1, c2) (c1) |
88387
06da178fab0e
* regex.c: Include "character.h" instead of "charset.h".
Kenichi Handa <handa@m17n.org>
parents:
40650
diff
changeset
|
316 # define BYTE8_TO_CHAR(c) (c) |
06da178fab0e
* regex.c: Include "character.h" instead of "charset.h".
Kenichi Handa <handa@m17n.org>
parents:
40650
diff
changeset
|
317 # define CHAR_BYTE8_P(c) (0) |
89061
9a9b54d06f3d
* regex.c (RE_TARGET_MULTIBYTE_P): New macro.
Kenichi Handa <handa@m17n.org>
parents:
88387
diff
changeset
|
318 # define CHAR_LEADING_CODE(c) (c) |
89483 | 319 |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
320 #endif /* not emacs */ |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
321 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
322 #ifndef RE_TRANSLATE |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
323 # 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
|
324 # 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
|
325 #endif |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
326 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
327 /* 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
|
328 #include "regex.h" |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
329 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
330 /* 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
|
331 #include <ctype.h> |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
332 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
333 #ifdef emacs |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
334 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
335 /* 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
|
336 # 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
|
337 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
338 /* 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
|
339 # 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
|
340 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
341 /* 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
|
342 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
343 /* 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
|
344 # 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
|
345 # 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
|
346 # 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
|
347 || ((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
|
348 || ((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
|
349 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
350 /* 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
|
351 # 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
|
352 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
353 /* 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
|
354 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
355 # 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
|
356 ? (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
|
357 : 1) |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
358 |
31360
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
359 # 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
|
360 ? (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
|
361 : 1) |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
362 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
363 # 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
|
364 ? (((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
|
365 || ((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
|
366 || ((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
|
367 : SYNTAX (c) == Sword) |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
368 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
369 # 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
|
370 ? (((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
|
371 || ((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
|
372 : SYNTAX (c) == Sword) |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
373 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
374 # 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
|
375 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
376 # 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
|
377 ? ((c) > ' ' && (c) < 0177 \ |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
378 && !(((c) >= 'a' && (c) <= 'z') \ |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
379 || ((c) >= 'A' && (c) <= 'Z') \ |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
380 || ((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
|
381 : SYNTAX (c) != Sword) |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
382 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
383 # 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
|
384 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
385 # 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
|
386 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
387 # 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
|
388 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
389 #else /* not emacs */ |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
390 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
391 /* Jim Meyering writes: |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
392 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
393 "... 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
|
394 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
|
395 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
|
396 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
|
397 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
|
398 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
|
399 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
|
400 eliminate the && through constant folding." |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
401 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
|
402 |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
403 # undef ISASCII |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
404 # 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
|
405 # 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
|
406 # else |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
407 # 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
|
408 # endif |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
409 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
410 /* 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
|
411 # 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
|
412 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
413 /* 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
|
414 # 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
|
415 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
416 # ifdef isblank |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
417 # 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
|
418 # else |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
419 # 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
|
420 # endif |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
421 # ifdef isgraph |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
422 # 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
|
423 # else |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
424 # 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
|
425 # endif |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
426 |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
427 # undef ISPRINT |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
428 # 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
|
429 # 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
|
430 # 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
|
431 # 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
|
432 # 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
|
433 # 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
|
434 # 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
|
435 # 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
|
436 # 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
|
437 # 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
|
438 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
439 # 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
|
440 |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
441 # ifdef _tolower |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
442 # define TOLOWER(c) _tolower(c) |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
443 # else |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
444 # define TOLOWER(c) tolower(c) |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
445 # endif |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
446 |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
447 /* 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
|
448 # define CHAR_SET_SIZE 256 |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
449 |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
450 # 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
|
451 |
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 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
|
453 |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
454 # 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
|
455 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
456 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
|
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 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
|
459 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
|
460 { |
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 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
|
462 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
|
463 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
464 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
|
465 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
|
466 |
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 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
|
468 |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
469 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
|
470 if (ISALNUM (c)) |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
471 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
|
472 |
55690
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
473 re_syntax_table['_'] = Ssymbol; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
474 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
475 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
|
476 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
477 |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
478 # endif /* not SYNTAX_TABLE */ |
25440
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
479 |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
480 # 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
|
481 |
25440
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
482 #endif /* not emacs */ |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
483 |
11864
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 #ifndef NULL |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
485 # 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
|
486 #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
|
487 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
488 /* 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
|
489 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
|
490 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
|
491 (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
|
492 #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
|
493 #if __STDC__ |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
494 # 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
|
495 #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
|
496 /* 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
|
497 # 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
|
498 #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
|
499 |
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 /* 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
|
501 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
|
502 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
|
503 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
|
504 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
|
505 |
11864
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 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
|
507 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
|
508 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
|
509 |
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 #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
|
511 |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
512 # 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
|
513 # 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
|
514 # 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
|
515 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
516 #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
|
517 |
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 /* 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
|
519 # 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
|
520 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
521 /* 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
|
522 # ifdef __GNUC__ |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
523 # 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
|
524 # else /* not __GNUC__ */ |
89071
c49c3ca273ba
Use `ifdef HAVE_ALLOCA_H', not `if HAVE_ALLOCA_H'.
Dave Love <fx@gnu.org>
parents:
89061
diff
changeset
|
525 # ifdef HAVE_ALLOCA_H |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
526 # include <alloca.h> |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
527 # 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
|
528 # endif /* not __GNUC__ */ |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
529 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
530 # endif /* not alloca */ |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
531 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
532 # 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
|
533 |
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 /* 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
|
535 # 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
|
536 (destination = (char *) alloca (nsize), \ |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
537 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
|
538 |
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 /* 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
|
540 # 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
|
541 |
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 #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
|
543 |
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 /* 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
|
545 |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
546 #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
|
547 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
548 # 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
|
549 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
|
550 # 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
|
551 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
|
552 # 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
|
553 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
|
554 |
12478
533b6d02cf04
Don't use relocatable allocator.
Richard M. Stallman <rms@gnu.org>
parents:
12331
diff
changeset
|
555 #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
|
556 |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
557 # ifdef REGEX_MALLOC |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
558 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
559 # 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
|
560 # 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
|
561 # 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
|
562 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
563 # 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
|
564 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
565 # 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
|
566 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
567 # 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
|
568 REGEX_REALLOCATE (source, osize, nsize) |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
569 /* 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
|
570 # 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
|
571 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
572 # endif /* not REGEX_MALLOC */ |
12478
533b6d02cf04
Don't use relocatable allocator.
Richard M. Stallman <rms@gnu.org>
parents:
12331
diff
changeset
|
573 #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
|
574 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
575 |
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 /* 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
|
577 `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
|
578 a good thing. */ |
18262 | 579 #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
|
580 (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
|
581 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
582 /* (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
|
583 #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
|
584 #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
|
585 #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
|
586 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
|
587 #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
|
588 |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
589 #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
|
590 |
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 #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
|
592 |
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 #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
|
594 #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
|
595 #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
|
596 #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
|
597 |
65817
251409bdae6a
(re_char): Move it back to the implementation file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65764
diff
changeset
|
598 /* Type of source-pattern and string chars. */ |
251409bdae6a
(re_char): Move it back to the implementation file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65764
diff
changeset
|
599 typedef const unsigned char re_char; |
251409bdae6a
(re_char): Move it back to the implementation file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65764
diff
changeset
|
600 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
601 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
|
602 #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
|
603 #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
|
604 |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
605 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
|
606 re_char *string1, int size1, |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
607 re_char *string2, int size2, |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
608 int pos, |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
609 struct re_registers *regs, |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
610 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
|
611 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
612 /* 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
|
613 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
|
614 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
|
615 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
|
616 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
617 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
|
618 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
619 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
|
620 |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
621 /* 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
|
622 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
|
623 |
18262 | 624 /* 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
|
625 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
|
626 |
18262 | 627 /* 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
|
628 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
|
629 |
18262 | 630 /* Matches any one char belonging to specified set. First |
631 following byte is number of bitmap bytes. Then come bytes | |
632 for a bitmap saying which chars are in. Bits in each byte | |
633 are ordered low-bit-first. A character is in the set if its | |
634 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
|
635 automatically not in the set. |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
636 |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
637 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
|
638 is followed by a range table: |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
639 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
|
640 See RANGE_TABLE_WORK_BITS below. |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
641 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
|
642 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
|
643 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
|
644 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
|
645 |
18262 | 646 /* 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
|
647 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
|
648 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
|
649 |
18262 | 650 /* Start remembering the text that is matched, for storing in a |
651 register. Followed by one byte with the register number, in | |
652 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
|
653 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
|
654 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
|
655 |
18262 | 656 /* Stop remembering the text that is matched and store it in a |
657 memory register. Followed by one byte with the register | |
658 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
|
659 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
|
660 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
|
661 |
18262 | 662 /* 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
|
663 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
|
664 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
|
665 |
18262 | 666 /* 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
|
667 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
|
668 |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
669 /* 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
|
670 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
|
671 |
18262 | 672 /* Succeeds if at beginning of buffer (if emacs) or at beginning |
673 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
|
674 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
|
675 |
18262 | 676 /* 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
|
677 endbuf, |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
678 |
18262 | 679 /* 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
|
680 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
|
681 |
18262 | 682 /* Followed by two-byte relative address of place to resume at |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
683 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
|
684 on_failure_jump, |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
685 |
18262 | 686 /* Like on_failure_jump, but pushes a placeholder instead of the |
687 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
|
688 on_failure_keep_string_jump, |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
689 |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
690 /* 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
|
691 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
|
692 indefinitely). */ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
693 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
|
694 |
28342
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
695 /* 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
|
696 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
|
697 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
|
698 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
|
699 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
|
700 |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
701 /* 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
|
702 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
|
703 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
|
704 `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
|
705 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
|
706 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
|
707 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
|
708 |
18262 | 709 /* 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
|
710 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
|
711 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
|
712 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
|
713 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
|
714 |
18262 | 715 /* Followed by two-byte relative address, and two-byte number n. |
716 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
|
717 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
|
718 |
18262 | 719 /* Set the following two-byte relative address to the |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
720 subsequent two-byte number. The address *includes* the two |
18262 | 721 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
|
722 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
|
723 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
724 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
|
725 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
|
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 wordbound, /* Succeeds if at a word boundary. */ |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
728 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
|
729 |
55690
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
730 symbeg, /* Succeeds if at symbol beginning. */ |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
731 symend, /* Succeeds if at symbol end. */ |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
732 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
733 /* Matches any character whose syntax is specified. Followed by |
18262 | 734 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
|
735 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
|
736 |
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 /* 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
|
738 notsyntaxspec |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
739 |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
740 #ifdef emacs |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
741 ,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
|
742 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
|
743 after_dot, /* Succeeds if after point. */ |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
744 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
745 /* Matches any character whose category-set contains the specified |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
746 category. The operator is followed by a byte which contains a |
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
747 category code (mnemonic ASCII character). */ |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
748 categoryspec, |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
749 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
750 /* 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
|
751 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
|
752 contains the category code (mnemonic ASCII character). */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
753 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
|
754 #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
|
755 } 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
|
756 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
757 /* 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
|
758 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
759 /* 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
|
760 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
761 #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
|
762 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
|
763 (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
|
764 (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
|
765 } 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
|
766 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
767 /* 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
|
768 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
|
769 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
|
770 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
771 #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
|
772 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
|
773 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
|
774 (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
|
775 } 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
|
776 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
777 /* 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
|
778 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
|
779 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
780 #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
|
781 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
|
782 (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
|
783 (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
|
784 } 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
|
785 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
786 #ifdef DEBUG |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
787 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
|
788 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
|
789 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
|
790 int *dest; |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
791 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
|
792 { |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
793 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
|
794 *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
|
795 *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
|
796 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
797 |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
798 # 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
|
799 # undef EXTRACT_NUMBER |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
800 # 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
|
801 # 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
|
802 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
803 #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
|
804 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
805 /* 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
|
806 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
|
807 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
808 #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
|
809 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
|
810 EXTRACT_NUMBER (destination, source); \ |
18262 | 811 (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
|
812 } 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
|
813 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
814 #ifdef DEBUG |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
815 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
|
816 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
|
817 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
|
818 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
|
819 int *destination; |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
820 re_char **source; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
821 { |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
822 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
|
823 *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
|
824 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
825 |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
826 # ifndef EXTRACT_MACROS |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
827 # 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
|
828 # 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
|
829 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
|
830 # 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
|
831 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
832 #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
|
833 |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
834 /* 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
|
835 DESTINATION, and increment DESTINATION to the byte after where the |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
836 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
|
837 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
838 #define STORE_CHARACTER_AND_INCR(destination, character) \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
839 do { \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
840 (destination)[0] = (character) & 0377; \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
841 (destination)[1] = ((character) >> 8) & 0377; \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
842 (destination)[2] = (character) >> 16; \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
843 (destination) += 3; \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
844 } while (0) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
845 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
846 /* Put into DESTINATION a character stored in three contiguous bytes |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
847 starting at SOURCE. */ |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
848 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
849 #define EXTRACT_CHARACTER(destination, source) \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
850 do { \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
851 (destination) = ((source)[0] \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
852 | ((source)[1] << 8) \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
853 | ((source)[2] << 16)); \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
854 } while (0) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
855 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
856 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
857 /* Macros for charset. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
858 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
859 /* 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
|
860 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
|
861 #define CHARSET_BITMAP_SIZE(p) ((p)[1] & 0x7F) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
862 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
863 /* Nonzero if charset P has range table. */ |
18262 | 864 #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
|
865 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
866 /* 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
|
867 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
|
868 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
|
869 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
|
870 #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
|
871 |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
872 /* 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
|
873 #define CHARSET_RANGE_TABLE_BITS(p) \ |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
874 ((p)[2 + CHARSET_BITMAP_SIZE (p)] \ |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
875 + (p)[3 + CHARSET_BITMAP_SIZE (p)] * 0x100) |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
876 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
877 /* 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
|
878 #define CHARSET_LOOKUP_BITMAP(p, c) \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
879 ((c) < CHARSET_BITMAP_SIZE (p) * BYTEWIDTH \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
880 && (p)[2 + (c) / BYTEWIDTH] & (1 << ((c) % BYTEWIDTH))) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
881 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
882 /* Return the address of end of RANGE_TABLE. COUNT is number of |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
883 ranges (which is a pair of (start, end)) in the RANGE_TABLE. `* 2' |
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
884 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
|
885 and end. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
886 #define CHARSET_RANGE_TABLE_END(range_table, count) \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
887 ((range_table) + (count) * 2 * 3) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
888 |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
889 /* 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
|
890 COUNT is number of ranges in RANGE_TABLE. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
891 #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
|
892 do \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
893 { \ |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
894 re_wchar_t range_start, range_end; \ |
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
895 re_char *p; \ |
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
896 re_char *range_table_end \ |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
897 = CHARSET_RANGE_TABLE_END ((range_table), (count)); \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
898 \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
899 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
|
900 { \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
901 EXTRACT_CHARACTER (range_start, p); \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
902 EXTRACT_CHARACTER (range_end, p + 3); \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
903 \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
904 if (range_start <= (c) && (c) <= range_end) \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
905 { \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
906 (not) = !(not); \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
907 break; \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
908 } \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
909 } \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
910 } \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
911 while (0) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
912 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
913 /* 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
|
914 C is listed in it. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
915 #define CHARSET_LOOKUP_RANGE_TABLE(not, c, charset) \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
916 do \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
917 { \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
918 /* Number of ranges in range table. */ \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
919 int count; \ |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
920 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
|
921 \ |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
922 EXTRACT_NUMBER_AND_INCR (count, range_table); \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
923 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
|
924 } \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
925 while (0) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
926 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
927 /* 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
|
928 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
|
929 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
|
930 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
|
931 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
|
932 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
933 #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
|
934 |
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 /* 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
|
936 # 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
|
937 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
938 /* 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
|
939 # 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
|
940 |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
941 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
|
942 |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
943 # 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
|
944 # 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
|
945 # 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
|
946 # 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
|
947 # 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
|
948 # 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
|
949 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
|
950 # 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
|
951 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
|
952 |
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 /* 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
|
955 |
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 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
|
957 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
|
958 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
|
959 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
960 unsigned was_a_range = 0; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
961 unsigned i = 0; |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
962 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
963 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
|
964 { |
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 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
|
966 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
967 was_a_range = 0; |
18262 | 968 putchar (i - 1); |
969 while (i < (1 << BYTEWIDTH) && fastmap[i]) | |
970 { | |
971 was_a_range = 1; | |
972 i++; | |
973 } | |
11864
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 if (was_a_range) |
18262 | 975 { |
976 printf ("-"); | |
977 putchar (i - 1); | |
978 } | |
979 } | |
11864
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 } |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
981 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
|
982 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
983 |
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 |
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 /* 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
|
986 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
|
987 |
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 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
|
989 print_partial_compiled_pattern (start, end) |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
990 re_char *start; |
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
991 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
|
992 { |
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 int mcnt, mcnt2; |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
994 re_char *p = start; |
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
995 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
|
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 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
|
998 { |
49930
0f71486df5bc
(print_partial_compiled_pattern): Output to stderr.
Richard M. Stallman <rms@gnu.org>
parents:
49600
diff
changeset
|
999 fprintf (stderr, "(null)\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
|
1000 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
|
1001 } |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1002 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1003 /* 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
|
1004 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
|
1005 { |
49930
0f71486df5bc
(print_partial_compiled_pattern): Output to stderr.
Richard M. Stallman <rms@gnu.org>
parents:
49600
diff
changeset
|
1006 fprintf (stderr, "%d:\t", p - 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
|
1007 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1008 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
|
1009 { |
18262 | 1010 case no_op: |
49930
0f71486df5bc
(print_partial_compiled_pattern): Output to stderr.
Richard M. Stallman <rms@gnu.org>
parents:
49600
diff
changeset
|
1011 fprintf (stderr, "/no_op"); |
18262 | 1012 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
|
1013 |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
1014 case succeed: |
49930
0f71486df5bc
(print_partial_compiled_pattern): Output to stderr.
Richard M. Stallman <rms@gnu.org>
parents:
49600
diff
changeset
|
1015 fprintf (stderr, "/succeed"); |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
1016 break; |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
1017 |
11864
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 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
|
1019 mcnt = *p++; |
49930
0f71486df5bc
(print_partial_compiled_pattern): Output to stderr.
Richard M. Stallman <rms@gnu.org>
parents:
49600
diff
changeset
|
1020 fprintf (stderr, "/exactn/%d", mcnt); |
18262 | 1021 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
|
1022 { |
49930
0f71486df5bc
(print_partial_compiled_pattern): Output to stderr.
Richard M. Stallman <rms@gnu.org>
parents:
49600
diff
changeset
|
1023 fprintf (stderr, "/%c", *p++); |
18262 | 1024 } |
1025 while (--mcnt); | |
1026 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
|
1027 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1028 case start_memory: |
49930
0f71486df5bc
(print_partial_compiled_pattern): Output to stderr.
Richard M. Stallman <rms@gnu.org>
parents:
49600
diff
changeset
|
1029 fprintf (stderr, "/start_memory/%d", *p++); |
18262 | 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 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1032 case stop_memory: |
49930
0f71486df5bc
(print_partial_compiled_pattern): Output to stderr.
Richard M. Stallman <rms@gnu.org>
parents:
49600
diff
changeset
|
1033 fprintf (stderr, "/stop_memory/%d", *p++); |
18262 | 1034 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
|
1035 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1036 case duplicate: |
49930
0f71486df5bc
(print_partial_compiled_pattern): Output to stderr.
Richard M. Stallman <rms@gnu.org>
parents:
49600
diff
changeset
|
1037 fprintf (stderr, "/duplicate/%d", *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
|
1038 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
|
1039 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1040 case anychar: |
49930
0f71486df5bc
(print_partial_compiled_pattern): Output to stderr.
Richard M. Stallman <rms@gnu.org>
parents:
49600
diff
changeset
|
1041 fprintf (stderr, "/anychar"); |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1042 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
|
1043 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1044 case charset: |
18262 | 1045 case charset_not: |
1046 { | |
1047 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
|
1048 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
|
1049 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
|
1050 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
|
1051 |
49930
0f71486df5bc
(print_partial_compiled_pattern): Output to stderr.
Richard M. Stallman <rms@gnu.org>
parents:
49600
diff
changeset
|
1052 fprintf (stderr, "/charset [%s", |
52838
246c94760bee
(MAX_BUF_SIZE): Reduce to 2**15.
Richard M. Stallman <rms@gnu.org>
parents:
52680
diff
changeset
|
1053 (re_opcode_t) *(p - 1) == charset_not ? "^" : ""); |
246c94760bee
(MAX_BUF_SIZE): Reduce to 2**15.
Richard M. Stallman <rms@gnu.org>
parents:
52680
diff
changeset
|
1054 |
246c94760bee
(MAX_BUF_SIZE): Reduce to 2**15.
Richard M. Stallman <rms@gnu.org>
parents:
52680
diff
changeset
|
1055 if (p + *p >= pend) |
246c94760bee
(MAX_BUF_SIZE): Reduce to 2**15.
Richard M. Stallman <rms@gnu.org>
parents:
52680
diff
changeset
|
1056 fprintf (stderr, " !extends past end of pattern! "); |
18262 | 1057 |
1058 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
|
1059 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
|
1060 && (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
|
1061 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1062 /* 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
|
1063 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
|
1064 { |
49930
0f71486df5bc
(print_partial_compiled_pattern): Output to stderr.
Richard M. Stallman <rms@gnu.org>
parents:
49600
diff
changeset
|
1065 fprintf (stderr, "-"); |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1066 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
|
1067 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1068 /* 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
|
1069 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
|
1070 { |
49930
0f71486df5bc
(print_partial_compiled_pattern): Output to stderr.
Richard M. Stallman <rms@gnu.org>
parents:
49600
diff
changeset
|
1071 fprintf (stderr, "%c", last); |
11864
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 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
|
1073 } |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1074 |
11864
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 if (! in_range) |
49930
0f71486df5bc
(print_partial_compiled_pattern): Output to stderr.
Richard M. Stallman <rms@gnu.org>
parents:
49600
diff
changeset
|
1076 fprintf (stderr, "%c", 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
|
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 last = c; |
18262 | 1079 } |
11864
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 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1081 if (in_range) |
49930
0f71486df5bc
(print_partial_compiled_pattern): Output to stderr.
Richard M. Stallman <rms@gnu.org>
parents:
49600
diff
changeset
|
1082 fprintf (stderr, "%c", last); |
0f71486df5bc
(print_partial_compiled_pattern): Output to stderr.
Richard M. Stallman <rms@gnu.org>
parents:
49600
diff
changeset
|
1083 |
0f71486df5bc
(print_partial_compiled_pattern): Output to stderr.
Richard M. Stallman <rms@gnu.org>
parents:
49600
diff
changeset
|
1084 fprintf (stderr, "]"); |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1085 |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
1086 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
|
1087 |
25440
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
1088 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
|
1089 { |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
1090 int count; |
49930
0f71486df5bc
(print_partial_compiled_pattern): Output to stderr.
Richard M. Stallman <rms@gnu.org>
parents:
49600
diff
changeset
|
1091 fprintf (stderr, "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
|
1092 |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
1093 /* ??? 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
|
1094 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
|
1095 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
|
1096 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
|
1097 } |
11864
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 } |
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 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
|
1100 |
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 case begline: |
49930
0f71486df5bc
(print_partial_compiled_pattern): Output to stderr.
Richard M. Stallman <rms@gnu.org>
parents:
49600
diff
changeset
|
1102 fprintf (stderr, "/begline"); |
18262 | 1103 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
|
1104 |
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 case endline: |
49930
0f71486df5bc
(print_partial_compiled_pattern): Output to stderr.
Richard M. Stallman <rms@gnu.org>
parents:
49600
diff
changeset
|
1106 fprintf (stderr, "/endline"); |
18262 | 1107 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
|
1108 |
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 case on_failure_jump: |
18262 | 1110 extract_number_and_incr (&mcnt, &p); |
49930
0f71486df5bc
(print_partial_compiled_pattern): Output to stderr.
Richard M. Stallman <rms@gnu.org>
parents:
49600
diff
changeset
|
1111 fprintf (stderr, "/on_failure_jump to %d", p + mcnt - start); |
18262 | 1112 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
|
1113 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1114 case on_failure_keep_string_jump: |
18262 | 1115 extract_number_and_incr (&mcnt, &p); |
49930
0f71486df5bc
(print_partial_compiled_pattern): Output to stderr.
Richard M. Stallman <rms@gnu.org>
parents:
49600
diff
changeset
|
1116 fprintf (stderr, "/on_failure_keep_string_jump to %d", p + mcnt - start); |
18262 | 1117 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
|
1118 |
28342
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
1119 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
|
1120 extract_number_and_incr (&mcnt, &p); |
49930
0f71486df5bc
(print_partial_compiled_pattern): Output to stderr.
Richard M. Stallman <rms@gnu.org>
parents:
49600
diff
changeset
|
1121 fprintf (stderr, "/on_failure_jump_nastyloop to %d", p + mcnt - start); |
28342
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
1122 break; |
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
1123 |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1124 case on_failure_jump_loop: |
18262 | 1125 extract_number_and_incr (&mcnt, &p); |
49930
0f71486df5bc
(print_partial_compiled_pattern): Output to stderr.
Richard M. Stallman <rms@gnu.org>
parents:
49600
diff
changeset
|
1126 fprintf (stderr, "/on_failure_jump_loop to %d", p + mcnt - start); |
18262 | 1127 break; |
1128 | |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1129 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
|
1130 extract_number_and_incr (&mcnt, &p); |
49930
0f71486df5bc
(print_partial_compiled_pattern): Output to stderr.
Richard M. Stallman <rms@gnu.org>
parents:
49600
diff
changeset
|
1131 fprintf (stderr, "/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
|
1132 break; |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1133 |
18262 | 1134 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
|
1135 extract_number_and_incr (&mcnt, &p); |
49930
0f71486df5bc
(print_partial_compiled_pattern): Output to stderr.
Richard M. Stallman <rms@gnu.org>
parents:
49600
diff
changeset
|
1136 fprintf (stderr, "/jump to %d", p + mcnt - start); |
16010 | 1137 break; |
1138 | |
18262 | 1139 case succeed_n: |
1140 extract_number_and_incr (&mcnt, &p); | |
1141 extract_number_and_incr (&mcnt2, &p); | |
49930
0f71486df5bc
(print_partial_compiled_pattern): Output to stderr.
Richard M. Stallman <rms@gnu.org>
parents:
49600
diff
changeset
|
1142 fprintf (stderr, "/succeed_n to %d, %d times", p - 2 + mcnt - start, mcnt2); |
18262 | 1143 break; |
1144 | |
1145 case jump_n: | |
1146 extract_number_and_incr (&mcnt, &p); | |
1147 extract_number_and_incr (&mcnt2, &p); | |
49930
0f71486df5bc
(print_partial_compiled_pattern): Output to stderr.
Richard M. Stallman <rms@gnu.org>
parents:
49600
diff
changeset
|
1148 fprintf (stderr, "/jump_n to %d, %d times", p - 2 + mcnt - start, mcnt2); |
18262 | 1149 break; |
1150 | |
1151 case set_number_at: | |
1152 extract_number_and_incr (&mcnt, &p); | |
1153 extract_number_and_incr (&mcnt2, &p); | |
49930
0f71486df5bc
(print_partial_compiled_pattern): Output to stderr.
Richard M. Stallman <rms@gnu.org>
parents:
49600
diff
changeset
|
1154 fprintf (stderr, "/set_number_at location %d to %d", p - 2 + mcnt - start, mcnt2); |
18262 | 1155 break; |
1156 | |
1157 case wordbound: | |
49930
0f71486df5bc
(print_partial_compiled_pattern): Output to stderr.
Richard M. Stallman <rms@gnu.org>
parents:
49600
diff
changeset
|
1158 fprintf (stderr, "/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
|
1159 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
|
1160 |
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 case notwordbound: |
49930
0f71486df5bc
(print_partial_compiled_pattern): Output to stderr.
Richard M. Stallman <rms@gnu.org>
parents:
49600
diff
changeset
|
1162 fprintf (stderr, "/notwordbound"); |
18262 | 1163 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
|
1164 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1165 case wordbeg: |
49930
0f71486df5bc
(print_partial_compiled_pattern): Output to stderr.
Richard M. Stallman <rms@gnu.org>
parents:
49600
diff
changeset
|
1166 fprintf (stderr, "/wordbeg"); |
11864
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 break; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1168 |
11864
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 case wordend: |
49930
0f71486df5bc
(print_partial_compiled_pattern): Output to stderr.
Richard M. Stallman <rms@gnu.org>
parents:
49600
diff
changeset
|
1170 fprintf (stderr, "/wordend"); |
55811
d8ee27fc17e9
(print_partial_compiled_pattern): Add missing 'break'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55690
diff
changeset
|
1171 break; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1172 |
55690
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
1173 case symbeg: |
55811
d8ee27fc17e9
(print_partial_compiled_pattern): Add missing 'break'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55690
diff
changeset
|
1174 fprintf (stderr, "/symbeg"); |
55690
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
1175 break; |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
1176 |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
1177 case symend: |
55811
d8ee27fc17e9
(print_partial_compiled_pattern): Add missing 'break'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55690
diff
changeset
|
1178 fprintf (stderr, "/symend"); |
55690
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
1179 break; |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
1180 |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
1181 case syntaxspec: |
49930
0f71486df5bc
(print_partial_compiled_pattern): Output to stderr.
Richard M. Stallman <rms@gnu.org>
parents:
49600
diff
changeset
|
1182 fprintf (stderr, "/syntaxspec"); |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
1183 mcnt = *p++; |
49930
0f71486df5bc
(print_partial_compiled_pattern): Output to stderr.
Richard M. Stallman <rms@gnu.org>
parents:
49600
diff
changeset
|
1184 fprintf (stderr, "/%d", mcnt); |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
1185 break; |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
1186 |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
1187 case notsyntaxspec: |
49930
0f71486df5bc
(print_partial_compiled_pattern): Output to stderr.
Richard M. Stallman <rms@gnu.org>
parents:
49600
diff
changeset
|
1188 fprintf (stderr, "/notsyntaxspec"); |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
1189 mcnt = *p++; |
49930
0f71486df5bc
(print_partial_compiled_pattern): Output to stderr.
Richard M. Stallman <rms@gnu.org>
parents:
49600
diff
changeset
|
1190 fprintf (stderr, "/%d", mcnt); |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
1191 break; |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
1192 |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
1193 # 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
|
1194 case before_dot: |
49930
0f71486df5bc
(print_partial_compiled_pattern): Output to stderr.
Richard M. Stallman <rms@gnu.org>
parents:
49600
diff
changeset
|
1195 fprintf (stderr, "/before_dot"); |
18262 | 1196 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
|
1197 |
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 case at_dot: |
49930
0f71486df5bc
(print_partial_compiled_pattern): Output to stderr.
Richard M. Stallman <rms@gnu.org>
parents:
49600
diff
changeset
|
1199 fprintf (stderr, "/at_dot"); |
18262 | 1200 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
|
1201 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1202 case after_dot: |
49930
0f71486df5bc
(print_partial_compiled_pattern): Output to stderr.
Richard M. Stallman <rms@gnu.org>
parents:
49600
diff
changeset
|
1203 fprintf (stderr, "/after_dot"); |
18262 | 1204 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
|
1205 |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
1206 case categoryspec: |
49930
0f71486df5bc
(print_partial_compiled_pattern): Output to stderr.
Richard M. Stallman <rms@gnu.org>
parents:
49600
diff
changeset
|
1207 fprintf (stderr, "/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
|
1208 mcnt = *p++; |
49930
0f71486df5bc
(print_partial_compiled_pattern): Output to stderr.
Richard M. Stallman <rms@gnu.org>
parents:
49600
diff
changeset
|
1209 fprintf (stderr, "/%d", mcnt); |
18262 | 1210 break; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1211 |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
1212 case notcategoryspec: |
49930
0f71486df5bc
(print_partial_compiled_pattern): Output to stderr.
Richard M. Stallman <rms@gnu.org>
parents:
49600
diff
changeset
|
1213 fprintf (stderr, "/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
|
1214 mcnt = *p++; |
49930
0f71486df5bc
(print_partial_compiled_pattern): Output to stderr.
Richard M. Stallman <rms@gnu.org>
parents:
49600
diff
changeset
|
1215 fprintf (stderr, "/%d", 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
|
1216 break; |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
1217 # 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
|
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 case begbuf: |
49930
0f71486df5bc
(print_partial_compiled_pattern): Output to stderr.
Richard M. Stallman <rms@gnu.org>
parents:
49600
diff
changeset
|
1220 fprintf (stderr, "/begbuf"); |
18262 | 1221 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
|
1222 |
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 case endbuf: |
49930
0f71486df5bc
(print_partial_compiled_pattern): Output to stderr.
Richard M. Stallman <rms@gnu.org>
parents:
49600
diff
changeset
|
1224 fprintf (stderr, "/endbuf"); |
18262 | 1225 break; |
1226 | |
1227 default: | |
49930
0f71486df5bc
(print_partial_compiled_pattern): Output to stderr.
Richard M. Stallman <rms@gnu.org>
parents:
49600
diff
changeset
|
1228 fprintf (stderr, "?%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
|
1229 } |
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 |
49930
0f71486df5bc
(print_partial_compiled_pattern): Output to stderr.
Richard M. Stallman <rms@gnu.org>
parents:
49600
diff
changeset
|
1231 fprintf (stderr, "\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
|
1232 } |
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 |
49930
0f71486df5bc
(print_partial_compiled_pattern): Output to stderr.
Richard M. Stallman <rms@gnu.org>
parents:
49600
diff
changeset
|
1234 fprintf (stderr, "%d:\tend of pattern.\n", p - 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
|
1235 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1236 |
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 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
|
1239 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
|
1240 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
|
1241 { |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
1242 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
|
1243 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1244 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
|
1245 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
|
1246 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
|
1247 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1248 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
|
1249 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1250 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
|
1251 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
|
1252 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1253 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1254 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
|
1255 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
|
1256 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
|
1257 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
|
1258 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
|
1259 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
|
1260 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
|
1261 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
|
1262 /* 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
|
1263 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1264 |
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 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
|
1267 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
|
1268 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
|
1269 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
|
1270 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
|
1271 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
|
1272 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
|
1273 { |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1274 int this_char; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1275 |
11864
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 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
|
1277 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
|
1278 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
|
1279 { |
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 if (FIRST_STRING_P (where)) |
18262 | 1281 { |
1282 for (this_char = where - string1; this_char < size1; this_char++) | |
1283 putchar (string1[this_char]); | |
1284 | |
1285 where = string2; | |
1286 } | |
11864
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 |
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 for (this_char = where - string2; this_char < size2; this_char++) |
18262 | 1289 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
|
1290 } |
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 |
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 #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
|
1294 |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
1295 # undef assert |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
1296 # define assert(e) |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
1297 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
1298 # 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
|
1299 # 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
|
1300 # 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
|
1301 # 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
|
1302 # 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
|
1303 # 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
|
1304 # 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
|
1305 |
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 #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
|
1307 |
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 /* 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
|
1309 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
|
1310 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
|
1311 /* 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
|
1312 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
|
1313 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
|
1314 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1315 |
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 /* 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
|
1317 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
|
1318 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
|
1319 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1320 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
|
1321 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
|
1322 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1323 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
|
1324 re_set_syntax (syntax) |
58325
d82983edcbe6
(regex_compile): Substitute whitespace_regexp for spaces, if it is nonzero.
Richard M. Stallman <rms@gnu.org>
parents:
57665
diff
changeset
|
1325 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
|
1326 { |
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 reg_syntax_t ret = re_syntax_options; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1328 |
11864
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 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
|
1330 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
|
1331 } |
31312
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
1332 WEAK_ALIAS (__re_set_syntax, re_set_syntax) |
58325
d82983edcbe6
(regex_compile): Substitute whitespace_regexp for spaces, if it is nonzero.
Richard M. Stallman <rms@gnu.org>
parents:
57665
diff
changeset
|
1333 |
d82983edcbe6
(regex_compile): Substitute whitespace_regexp for spaces, if it is nonzero.
Richard M. Stallman <rms@gnu.org>
parents:
57665
diff
changeset
|
1334 /* Regexp to use to replace spaces, or NULL meaning don't. */ |
d82983edcbe6
(regex_compile): Substitute whitespace_regexp for spaces, if it is nonzero.
Richard M. Stallman <rms@gnu.org>
parents:
57665
diff
changeset
|
1335 static re_char *whitespace_regexp; |
d82983edcbe6
(regex_compile): Substitute whitespace_regexp for spaces, if it is nonzero.
Richard M. Stallman <rms@gnu.org>
parents:
57665
diff
changeset
|
1336 |
d82983edcbe6
(regex_compile): Substitute whitespace_regexp for spaces, if it is nonzero.
Richard M. Stallman <rms@gnu.org>
parents:
57665
diff
changeset
|
1337 void |
d82983edcbe6
(regex_compile): Substitute whitespace_regexp for spaces, if it is nonzero.
Richard M. Stallman <rms@gnu.org>
parents:
57665
diff
changeset
|
1338 re_set_whitespace_regexp (regexp) |
65817
251409bdae6a
(re_char): Move it back to the implementation file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65764
diff
changeset
|
1339 const char *regexp; |
58325
d82983edcbe6
(regex_compile): Substitute whitespace_regexp for spaces, if it is nonzero.
Richard M. Stallman <rms@gnu.org>
parents:
57665
diff
changeset
|
1340 { |
65817
251409bdae6a
(re_char): Move it back to the implementation file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65764
diff
changeset
|
1341 whitespace_regexp = (re_char *) regexp; |
58325
d82983edcbe6
(regex_compile): Substitute whitespace_regexp for spaces, if it is nonzero.
Richard M. Stallman <rms@gnu.org>
parents:
57665
diff
changeset
|
1342 } |
d82983edcbe6
(regex_compile): Substitute whitespace_regexp for spaces, if it is nonzero.
Richard M. Stallman <rms@gnu.org>
parents:
57665
diff
changeset
|
1343 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
|
1344 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1345 /* 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
|
1346 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
|
1347 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
|
1348 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
|
1349 |
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 static const char *re_error_msgid[] = |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1351 { |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1352 gettext_noop ("Success"), /* REG_NOERROR */ |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1353 gettext_noop ("No match"), /* REG_NOMATCH */ |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1354 gettext_noop ("Invalid regular expression"), /* REG_BADPAT */ |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1355 gettext_noop ("Invalid collation character"), /* REG_ECOLLATE */ |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1356 gettext_noop ("Invalid character class name"), /* REG_ECTYPE */ |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1357 gettext_noop ("Trailing backslash"), /* REG_EESCAPE */ |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1358 gettext_noop ("Invalid back reference"), /* REG_ESUBREG */ |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1359 gettext_noop ("Unmatched [ or [^"), /* REG_EBRACK */ |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1360 gettext_noop ("Unmatched ( or \\("), /* REG_EPAREN */ |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1361 gettext_noop ("Unmatched \\{"), /* REG_EBRACE */ |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1362 gettext_noop ("Invalid content of \\{\\}"), /* REG_BADBR */ |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1363 gettext_noop ("Invalid range end"), /* REG_ERANGE */ |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1364 gettext_noop ("Memory exhausted"), /* REG_ESPACE */ |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1365 gettext_noop ("Invalid preceding regular expression"), /* REG_BADRPT */ |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1366 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
|
1367 gettext_noop ("Regular expression too big"), /* REG_ESIZE */ |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1368 gettext_noop ("Unmatched ) or \\)"), /* REG_ERPAREN */ |
57665
b8ccc605c96d
(re_error_msgid): Add an entry for REG_ERANGEX.
Kenichi Handa <handa@m17n.org>
parents:
56091
diff
changeset
|
1369 gettext_noop ("Range striding over charsets") /* REG_ERANGEX */ |
11864
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 }; |
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 |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1372 /* 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
|
1373 |
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 /* 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
|
1375 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
|
1376 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
|
1377 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
|
1378 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
|
1379 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
|
1380 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
|
1381 |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1382 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
|
1383 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
|
1384 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
|
1385 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
|
1386 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
|
1387 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
|
1388 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
|
1389 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
|
1390 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1391 /* 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
|
1392 #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
|
1393 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1394 /* 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
|
1395 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
|
1396 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
|
1397 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
|
1398 so REL_ALLOC should not affect this. */ |
84493
70ea273ac237
(C_ALLOCA): Remove all references and code that was only used when
Glenn Morris <rgm@gnu.org>
parents:
82365
diff
changeset
|
1399 #if defined REGEX_MALLOC && defined emacs |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
1400 # 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
|
1401 #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
|
1402 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1403 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1404 /* 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
|
1405 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
|
1406 REGEX_ALLOCATE_STACK. */ |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1407 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1408 |
20449
fc965930c738
(TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents:
19184
diff
changeset
|
1409 /* 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
|
1410 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
|
1411 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
|
1412 #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
|
1413 # 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
|
1414 #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
|
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 /* 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
|
1417 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
|
1418 This is a variable only so users of regex can assign to it; we never |
40650
ded4aa3c81b2
(re_wctype): Try to fix some warnings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39718
diff
changeset
|
1419 change it ourselves. We always multiply it by TYPICAL_FAILURE_SIZE |
ded4aa3c81b2
(re_wctype): Try to fix some warnings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39718
diff
changeset
|
1420 before using it, so it should probably be a byte-count instead. */ |
31312
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
1421 # 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
|
1422 /* 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
|
1423 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
|
1424 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
|
1425 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
|
1426 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
|
1427 # else |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
1428 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
|
1429 # 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
|
1430 |
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 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
|
1432 { |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
1433 re_char *pointer; |
31312
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
1434 /* 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
|
1435 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
|
1436 }; |
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 |
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 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
|
1439 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1440 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
|
1441 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1442 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
|
1443 size_t size; |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
1444 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
|
1445 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
|
1446 } 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
|
1447 |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1448 #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
|
1449 #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
|
1450 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1451 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1452 /* 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
|
1453 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
|
1454 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1455 #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
|
1456 # 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
|
1457 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
|
1458 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
|
1459 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
|
1460 * 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
|
1461 \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1462 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
|
1463 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
|
1464 \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1465 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
|
1466 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
|
1467 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
|
1468 } 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
|
1469 |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
1470 # 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
|
1471 #else |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
1472 # 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
|
1473 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
|
1474 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
|
1475 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
|
1476 } 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
|
1477 |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
1478 # 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
|
1479 #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
|
1480 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1481 |
20449
fc965930c738
(TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents:
19184
diff
changeset
|
1482 /* 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
|
1483 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
|
1484 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1485 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
|
1486 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
|
1487 |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1488 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
|
1489 |
20449
fc965930c738
(TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents:
19184
diff
changeset
|
1490 /* 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
|
1491 when we increase it. |
fc965930c738
(TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents:
19184
diff
changeset
|
1492 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
|
1493 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
|
1494 were as ultimate, maximum-size stack. */ |
fc965930c738
(TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents:
19184
diff
changeset
|
1495 #define FAIL_STACK_GROWTH_FACTOR 4 |
fc965930c738
(TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents:
19184
diff
changeset
|
1496 |
fc965930c738
(TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents:
19184
diff
changeset
|
1497 #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
|
1498 (((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
|
1499 >= 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
|
1500 ? 0 \ |
20449
fc965930c738
(TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents:
19184
diff
changeset
|
1501 : ((fail_stack).stack \ |
fc965930c738
(TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents:
19184
diff
changeset
|
1502 = (fail_stack_elt_t *) \ |
18262 | 1503 REGEX_REALLOCATE_STACK ((fail_stack).stack, \ |
1504 (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
|
1505 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
|
1506 ((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
|
1507 * 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
|
1508 \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1509 (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
|
1510 ? 0 \ |
20450
8f05356e9dc3
(GROW_FAIL_STACK): Fix previous change:
Karl Heuer <kwzh@gnu.org>
parents:
20449
diff
changeset
|
1511 : ((fail_stack).size \ |
8f05356e9dc3
(GROW_FAIL_STACK): Fix previous change:
Karl Heuer <kwzh@gnu.org>
parents:
20449
diff
changeset
|
1512 = (MIN (re_max_failures * TYPICAL_FAILURE_SIZE, \ |
8f05356e9dc3
(GROW_FAIL_STACK): Fix previous change:
Karl Heuer <kwzh@gnu.org>
parents:
20449
diff
changeset
|
1513 ((fail_stack).size * sizeof (fail_stack_elt_t) \ |
8f05356e9dc3
(GROW_FAIL_STACK): Fix previous change:
Karl Heuer <kwzh@gnu.org>
parents:
20449
diff
changeset
|
1514 * FAIL_STACK_GROWTH_FACTOR)) \ |
8f05356e9dc3
(GROW_FAIL_STACK): Fix previous change:
Karl Heuer <kwzh@gnu.org>
parents:
20449
diff
changeset
|
1515 / sizeof (fail_stack_elt_t)), \ |
18262 | 1516 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
|
1517 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1518 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1519 /* 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
|
1520 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
|
1521 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
|
1522 #define PUSH_FAILURE_POINTER(item) \ |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
1523 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
|
1524 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1525 /* 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
|
1526 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
|
1527 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
|
1528 #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
|
1529 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
|
1530 |
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 /* 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
|
1532 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
|
1533 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
|
1534 #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
|
1535 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
|
1536 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1537 /* 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
|
1538 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
|
1539 #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
|
1540 #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
|
1541 #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
|
1542 |
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 /* 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
|
1544 #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
|
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 /* 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
|
1547 #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
|
1548 #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
|
1549 #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
|
1550 #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
|
1551 |
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 #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
|
1554 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
|
1555 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
|
1556 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
|
1557 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
|
1558 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
|
1559 } |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1560 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1561 /* 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
|
1562 #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
|
1563 do { \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1564 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
|
1565 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
|
1566 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
|
1567 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
|
1568 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
|
1569 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
|
1570 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
|
1571 } 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
|
1572 |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
1573 /* 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
|
1574 be reset when backtracking. */ |
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
1575 #define PUSH_NUMBER(ptr,val) \ |
31172
0ee53ec2081a
(PUSH_FAILURE_COUNT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30752
diff
changeset
|
1576 do { \ |
0ee53ec2081a
(PUSH_FAILURE_COUNT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30752
diff
changeset
|
1577 char *destination; \ |
0ee53ec2081a
(PUSH_FAILURE_COUNT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30752
diff
changeset
|
1578 int c; \ |
0ee53ec2081a
(PUSH_FAILURE_COUNT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30752
diff
changeset
|
1579 ENSURE_FAIL_STACK(3); \ |
0ee53ec2081a
(PUSH_FAILURE_COUNT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30752
diff
changeset
|
1580 EXTRACT_NUMBER (c, ptr); \ |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
1581 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
|
1582 PUSH_FAILURE_INT (c); \ |
0ee53ec2081a
(PUSH_FAILURE_COUNT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30752
diff
changeset
|
1583 PUSH_FAILURE_POINTER (ptr); \ |
0ee53ec2081a
(PUSH_FAILURE_COUNT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30752
diff
changeset
|
1584 PUSH_FAILURE_INT (-1); \ |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
1585 STORE_NUMBER (ptr, val); \ |
31172
0ee53ec2081a
(PUSH_FAILURE_COUNT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30752
diff
changeset
|
1586 } while (0) |
0ee53ec2081a
(PUSH_FAILURE_COUNT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30752
diff
changeset
|
1587 |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1588 /* Pop a saved register off the stack. */ |
31172
0ee53ec2081a
(PUSH_FAILURE_COUNT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30752
diff
changeset
|
1589 #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
|
1590 do { \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1591 int reg = POP_FAILURE_INT (); \ |
31172
0ee53ec2081a
(PUSH_FAILURE_COUNT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30752
diff
changeset
|
1592 if (reg == -1) \ |
0ee53ec2081a
(PUSH_FAILURE_COUNT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30752
diff
changeset
|
1593 { \ |
0ee53ec2081a
(PUSH_FAILURE_COUNT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30752
diff
changeset
|
1594 /* 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
|
1595 /* 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
|
1596 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
|
1597 reg = POP_FAILURE_INT (); \ |
0ee53ec2081a
(PUSH_FAILURE_COUNT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30752
diff
changeset
|
1598 STORE_NUMBER (ptr, reg); \ |
0ee53ec2081a
(PUSH_FAILURE_COUNT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30752
diff
changeset
|
1599 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
|
1600 } \ |
0ee53ec2081a
(PUSH_FAILURE_COUNT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30752
diff
changeset
|
1601 else \ |
0ee53ec2081a
(PUSH_FAILURE_COUNT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30752
diff
changeset
|
1602 { \ |
0ee53ec2081a
(PUSH_FAILURE_COUNT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30752
diff
changeset
|
1603 regend[reg] = POP_FAILURE_POINTER (); \ |
0ee53ec2081a
(PUSH_FAILURE_COUNT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30752
diff
changeset
|
1604 regstart[reg] = POP_FAILURE_POINTER (); \ |
0ee53ec2081a
(PUSH_FAILURE_COUNT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30752
diff
changeset
|
1605 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
|
1606 reg, regstart[reg], regend[reg]); \ |
0ee53ec2081a
(PUSH_FAILURE_COUNT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30752
diff
changeset
|
1607 } \ |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1608 } 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
|
1609 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1610 /* 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
|
1611 #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
|
1612 do { \ |
44063
fd6c1f8ebd4e
(DISCARD_FAILURE_REG_OR_COUNT): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
40650
diff
changeset
|
1613 int failure = TOP_FAILURE_HANDLE (); \ |
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 /* Check for infinite matching loops */ \ |
44063
fd6c1f8ebd4e
(DISCARD_FAILURE_REG_OR_COUNT): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
40650
diff
changeset
|
1615 while (failure > 0 \ |
fd6c1f8ebd4e
(DISCARD_FAILURE_REG_OR_COUNT): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
40650
diff
changeset
|
1616 && (FAILURE_STR (failure) == string_place \ |
fd6c1f8ebd4e
(DISCARD_FAILURE_REG_OR_COUNT): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
40650
diff
changeset
|
1617 || FAILURE_STR (failure) == NULL)) \ |
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 { \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1619 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
|
1620 && 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
|
1621 if (FAILURE_PAT (failure) == pat_cur) \ |
44063
fd6c1f8ebd4e
(DISCARD_FAILURE_REG_OR_COUNT): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
40650
diff
changeset
|
1622 { \ |
47368
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
1623 cycle = 1; \ |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
1624 break; \ |
44063
fd6c1f8ebd4e
(DISCARD_FAILURE_REG_OR_COUNT): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
40650
diff
changeset
|
1625 } \ |
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
|
1626 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
|
1627 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
|
1628 } \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1629 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
|
1630 } while (0) |
47368
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
1631 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1632 /* 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
|
1633 if we ever fail back to it. |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1634 |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1635 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
|
1636 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
|
1637 declared. |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1638 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1639 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
|
1640 |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1641 #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
|
1642 do { \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1643 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
|
1644 /* 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
|
1645 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
|
1646 \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1647 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
|
1648 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
|
1649 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
|
1650 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
|
1651 \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1652 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
|
1653 \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1654 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
|
1655 \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1656 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
|
1657 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
|
1658 \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1659 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
|
1660 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
|
1661 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
|
1662 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
|
1663 \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1664 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
|
1665 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
|
1666 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
|
1667 \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1668 /* 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
|
1669 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
|
1670 } 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
|
1671 |
20449
fc965930c738
(TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents:
19184
diff
changeset
|
1672 /* 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
|
1673 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
|
1674 is to choose a limit for how big to make the failure stack. */ |
40650
ded4aa3c81b2
(re_wctype): Try to fix some warnings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39718
diff
changeset
|
1675 /* BEWARE, the value `20' is hard-coded in emacs.c:main(). */ |
20449
fc965930c738
(TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents:
19184
diff
changeset
|
1676 #define TYPICAL_FAILURE_SIZE 20 |
fc965930c738
(TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents:
19184
diff
changeset
|
1677 |
11864
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 /* 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
|
1679 #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
|
1680 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1681 |
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 /* 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
|
1683 |
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 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
|
1685 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
|
1686 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
|
1687 REGSTART, REGEND -- arrays of string positions. |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1688 |
11864
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 Also assumes the variables `fail_stack' and (if debugging), `bufp', |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
1690 `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
|
1691 |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1692 #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
|
1693 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
|
1694 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
|
1695 \ |
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 /* 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
|
1697 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
|
1698 DEBUG_PRINT2 (" Before pop, next avail: %d\n", fail_stack.avail); \ |
18262 | 1699 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
|
1700 \ |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1701 /* 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
|
1702 while (fail_stack.frame < fail_stack.avail) \ |
31172
0ee53ec2081a
(PUSH_FAILURE_COUNT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30752
diff
changeset
|
1703 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
|
1704 \ |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
1705 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
|
1706 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
|
1707 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
|
1708 \ |
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 /* 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
|
1710 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
|
1711 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
|
1712 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
|
1713 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
|
1714 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
|
1715 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
|
1716 \ |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1717 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
|
1718 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
|
1719 \ |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1720 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
|
1721 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
|
1722 \ |
11864
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 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
|
1724 } 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
|
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 |
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 |
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 /* 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
|
1729 #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
|
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 /* 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
|
1732 |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1733 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
|
1734 reg_syntax_t syntax, |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1735 struct re_pattern_buffer *bufp)); |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1736 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
|
1737 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
|
1738 int arg1, int arg2)); |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1739 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
|
1740 int arg, unsigned char *end)); |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1741 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
|
1742 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
|
1743 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
|
1744 re_char *p, |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1745 reg_syntax_t syntax)); |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
1746 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
|
1747 re_char *pend, |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1748 reg_syntax_t syntax)); |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
1749 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
|
1750 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
|
1751 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
|
1752 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1753 /* 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
|
1754 translation. */ |
47008
c299d527a088
(PATFETCH): Remove the translating fetch.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44145
diff
changeset
|
1755 #define PATFETCH(c) \ |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
1756 do { \ |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
1757 int len; \ |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
1758 if (p == pend) return REG_EEND; \ |
90757
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
1759 c = RE_STRING_CHAR_AND_LENGTH (p, pend - p, len, multibyte); \ |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
1760 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
|
1761 } 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
|
1762 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1763 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1764 /* 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
|
1765 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
|
1766 `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
|
1767 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
|
1768 #ifndef TRANSLATE |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
1769 # 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
|
1770 (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
|
1771 #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
|
1772 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1773 |
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 /* 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
|
1775 |
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 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
|
1777 #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
|
1778 |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1779 /* 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
|
1780 #define GET_BUFFER_SPACE(n) \ |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
1781 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
|
1782 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
|
1783 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1784 /* 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
|
1785 #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
|
1786 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
|
1787 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
|
1788 *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
|
1789 } 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
|
1790 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1791 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1792 /* 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
|
1793 #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
|
1794 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
|
1795 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
|
1796 *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
|
1797 *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
|
1798 } 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
|
1799 |
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 |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1801 /* 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
|
1802 #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
|
1803 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
|
1804 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
|
1805 *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
|
1806 *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
|
1807 *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
|
1808 } 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
|
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 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1811 /* 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
|
1812 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
|
1813 #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
|
1814 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
|
1815 |
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 /* 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
|
1817 #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
|
1818 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
|
1819 |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1820 /* 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
|
1821 #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
|
1822 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
|
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 /* 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
|
1825 #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
|
1826 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
|
1827 |
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 |
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 /* This is not an arbitrary limit: the arguments which represent offsets |
52838
246c94760bee
(MAX_BUF_SIZE): Reduce to 2**15.
Richard M. Stallman <rms@gnu.org>
parents:
52680
diff
changeset
|
1830 into the pattern are two bytes long. So if 2^15 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
|
1831 be too small, many things would have to change. */ |
52838
246c94760bee
(MAX_BUF_SIZE): Reduce to 2**15.
Richard M. Stallman <rms@gnu.org>
parents:
52680
diff
changeset
|
1832 # define MAX_BUF_SIZE (1L << 15) |
246c94760bee
(MAX_BUF_SIZE): Reduce to 2**15.
Richard M. Stallman <rms@gnu.org>
parents:
52680
diff
changeset
|
1833 |
246c94760bee
(MAX_BUF_SIZE): Reduce to 2**15.
Richard M. Stallman <rms@gnu.org>
parents:
52680
diff
changeset
|
1834 #if 0 /* This is when we thought it could be 2^16 bytes. */ |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1835 /* 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
|
1836 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
|
1837 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
|
1838 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
|
1839 You have been warned!! */ |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1840 #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
|
1841 /* 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
|
1842 # define MAX_BUF_SIZE 65500L |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1843 #else |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1844 # 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
|
1845 #endif |
52838
246c94760bee
(MAX_BUF_SIZE): Reduce to 2**15.
Richard M. Stallman <rms@gnu.org>
parents:
52680
diff
changeset
|
1846 #endif /* 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
|
1847 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1848 /* 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
|
1849 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
|
1850 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
|
1851 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
|
1852 #if __BOUNDED_POINTERS__ |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1853 # define SET_HIGH_BOUND(P) (__ptrhigh (P) = __ptrlow (P) + bufp->allocated) |
93266
6a347c175702
(EXTEND_BUFFER): Change order of pointer addition operations, to avoid
Chong Yidong <cyd@stupidchicken.com>
parents:
93033
diff
changeset
|
1854 # define MOVE_BUFFER_POINTER(P) \ |
6a347c175702
(EXTEND_BUFFER): Change order of pointer addition operations, to avoid
Chong Yidong <cyd@stupidchicken.com>
parents:
93033
diff
changeset
|
1855 (__ptrlow (P) = new_buffer + (__ptrlow (P) - old_buffer), \ |
6a347c175702
(EXTEND_BUFFER): Change order of pointer addition operations, to avoid
Chong Yidong <cyd@stupidchicken.com>
parents:
93033
diff
changeset
|
1856 SET_HIGH_BOUND (P), \ |
6a347c175702
(EXTEND_BUFFER): Change order of pointer addition operations, to avoid
Chong Yidong <cyd@stupidchicken.com>
parents:
93033
diff
changeset
|
1857 __ptrvalue (P) = new_buffer + (__ptrvalue (P) - old_buffer)) |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1858 # 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
|
1859 else \ |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1860 { \ |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1861 SET_HIGH_BOUND (b); \ |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1862 SET_HIGH_BOUND (begalt); \ |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1863 if (fixup_alt_jump) \ |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1864 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
|
1865 if (laststart) \ |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1866 SET_HIGH_BOUND (laststart); \ |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1867 if (pending_exact) \ |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1868 SET_HIGH_BOUND (pending_exact); \ |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1869 } |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1870 #else |
93266
6a347c175702
(EXTEND_BUFFER): Change order of pointer addition operations, to avoid
Chong Yidong <cyd@stupidchicken.com>
parents:
93033
diff
changeset
|
1871 # define MOVE_BUFFER_POINTER(P) ((P) = new_buffer + ((P) - old_buffer)) |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1872 # 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
|
1873 #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
|
1874 #define EXTEND_BUFFER() \ |
18262 | 1875 do { \ |
93266
6a347c175702
(EXTEND_BUFFER): Change order of pointer addition operations, to avoid
Chong Yidong <cyd@stupidchicken.com>
parents:
93033
diff
changeset
|
1876 unsigned char *old_buffer = bufp->buffer; \ |
18262 | 1877 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
|
1878 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
|
1879 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
|
1880 if (bufp->allocated > MAX_BUF_SIZE) \ |
18262 | 1881 bufp->allocated = MAX_BUF_SIZE; \ |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
1882 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
|
1883 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
|
1884 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
|
1885 /* 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
|
1886 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
|
1887 { \ |
93266
6a347c175702
(EXTEND_BUFFER): Change order of pointer addition operations, to avoid
Chong Yidong <cyd@stupidchicken.com>
parents:
93033
diff
changeset
|
1888 unsigned char *new_buffer = bufp->buffer; \ |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1889 MOVE_BUFFER_POINTER (b); \ |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1890 MOVE_BUFFER_POINTER (begalt); \ |
18262 | 1891 if (fixup_alt_jump) \ |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1892 MOVE_BUFFER_POINTER (fixup_alt_jump); \ |
18262 | 1893 if (laststart) \ |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1894 MOVE_BUFFER_POINTER (laststart); \ |
18262 | 1895 if (pending_exact) \ |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1896 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
|
1897 } \ |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1898 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
|
1899 } 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
|
1900 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1901 |
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 /* 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
|
1903 {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
|
1904 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
|
1905 #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
|
1906 |
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 /* 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
|
1908 ignore the excess. */ |
47337
a4b9dff21d74
(regnum_t): Use signed int, not unsigned int.
Richard M. Stallman <rms@gnu.org>
parents:
47250
diff
changeset
|
1909 typedef int regnum_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
|
1910 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1911 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1912 /* 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
|
1913 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1914 /* 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
|
1915 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
|
1916 /* 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
|
1917 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
|
1918 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1919 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
|
1920 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1921 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
|
1922 pattern_offset_t fixup_alt_jump; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1923 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
|
1924 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
|
1925 } 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
|
1926 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1927 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1928 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
|
1929 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1930 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
|
1931 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
|
1932 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
|
1933 } 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
|
1934 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1935 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1936 #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
|
1937 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1938 #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
|
1939 #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
|
1940 |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
1941 /* 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
|
1942 #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
|
1943 |
68371
05d6eb9afa08
(IMMEDIATE_QUIT_CHECK): Use it with SYNC_INPUT as well.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65817
diff
changeset
|
1944 /* Explicit quit checking is only used on NTemacs and whenever we |
05d6eb9afa08
(IMMEDIATE_QUIT_CHECK): Use it with SYNC_INPUT as well.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65817
diff
changeset
|
1945 use polling to process input events. */ |
05d6eb9afa08
(IMMEDIATE_QUIT_CHECK): Use it with SYNC_INPUT as well.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65817
diff
changeset
|
1946 #if defined emacs && (defined WINDOWSNT || defined SYNC_INPUT) && defined QUIT |
47233
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
1947 extern int immediate_quit; |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
1948 # define IMMEDIATE_QUIT_CHECK \ |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
1949 do { \ |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
1950 if (immediate_quit) QUIT; \ |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
1951 } while (0) |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
1952 #else |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
1953 # define IMMEDIATE_QUIT_CHECK ((void)0) |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
1954 #endif |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
1955 |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1956 /* Structure to manage work area for range table. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1957 struct range_table_work_area |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1958 { |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1959 int *table; /* actual work area. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1960 int allocated; /* allocated size for work area in bytes. */ |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
1961 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
|
1962 int bits; /* flag to record character classes */ |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1963 }; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1964 |
47233
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
1965 /* Make sure that WORK_AREA can hold more N multibyte characters. |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
1966 This is used only in set_image_of_range and set_image_of_range_1. |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
1967 It expects WORK_AREA to be a pointer. |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
1968 If it can't get the space, it returns from the surrounding function. */ |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
1969 |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
1970 #define EXTEND_RANGE_TABLE(work_area, n) \ |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
1971 do { \ |
89483 | 1972 if (((work_area).used + (n)) * sizeof (int) > (work_area).allocated) \ |
47233
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
1973 { \ |
89483 | 1974 extend_range_table_work_area (&work_area); \ |
1975 if ((work_area).table == 0) \ | |
47233
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
1976 return (REG_ESPACE); \ |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
1977 } \ |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1978 } while (0) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1979 |
25440
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
1980 #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
|
1981 (work_area).bits |= (bit) |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
1982 |
31360
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1983 /* 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
|
1984 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
|
1985 #define BIT_WORD 0x1 |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1986 #define BIT_LOWER 0x2 |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1987 #define BIT_PUNCT 0x4 |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1988 #define BIT_SPACE 0x8 |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1989 #define BIT_UPPER 0x10 |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
1990 #define BIT_MULTIBYTE 0x20 |
25440
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
1991 |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1992 /* 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
|
1993 #define SET_RANGE_TABLE_WORK_AREA(work_area, range_start, range_end) \ |
47233
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
1994 do { \ |
89483 | 1995 EXTEND_RANGE_TABLE ((work_area), 2); \ |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1996 (work_area).table[(work_area).used++] = (range_start); \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1997 (work_area).table[(work_area).used++] = (range_end); \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1998 } while (0) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1999 |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
2000 /* Free allocated memory for WORK_AREA. */ |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2001 #define FREE_RANGE_TABLE_WORK_AREA(work_area) \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2002 do { \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2003 if ((work_area).table) \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2004 free ((work_area).table); \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2005 } while (0) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2006 |
25440
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
2007 #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
|
2008 #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
|
2009 #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
|
2010 #define RANGE_TABLE_WORK_ELT(work_area, i) ((work_area).table[i]) |
47233
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2011 |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2012 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2013 /* 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
|
2014 #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
|
2015 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2016 |
89061
9a9b54d06f3d
* regex.c (RE_TARGET_MULTIBYTE_P): New macro.
Kenichi Handa <handa@m17n.org>
parents:
88387
diff
changeset
|
2017 #ifdef emacs |
9a9b54d06f3d
* regex.c (RE_TARGET_MULTIBYTE_P): New macro.
Kenichi Handa <handa@m17n.org>
parents:
88387
diff
changeset
|
2018 |
90757
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2019 /* Store characters in the range FROM to TO in the bitmap at B (for |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2020 ASCII and unibyte characters) and WORK_AREA (for multibyte |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2021 characters) while translating them and paying attention to the |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2022 continuity of translated characters. |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2023 |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2024 Implementation note: It is better to implement these fairly big |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2025 macros by a function, but it's not that easy because macros called |
89483 | 2026 in this macro assume various local variables already declared. */ |
89061
9a9b54d06f3d
* regex.c (RE_TARGET_MULTIBYTE_P): New macro.
Kenichi Handa <handa@m17n.org>
parents:
88387
diff
changeset
|
2027 |
90757
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2028 /* Both FROM and TO are ASCII characters. */ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2029 |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2030 #define SETUP_ASCII_RANGE(work_area, FROM, TO) \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2031 do { \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2032 int C0, C1; \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2033 \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2034 for (C0 = (FROM); C0 <= (TO); C0++) \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2035 { \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2036 C1 = TRANSLATE (C0); \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2037 if (! ASCII_CHAR_P (C1)) \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2038 { \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2039 SET_RANGE_TABLE_WORK_AREA ((work_area), C1, C1); \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2040 if ((C1 = RE_CHAR_TO_UNIBYTE (C1)) < 0) \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2041 C1 = C0; \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2042 } \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2043 SET_LIST_BIT (C1); \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2044 } \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2045 } while (0) |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2046 |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2047 |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2048 /* Both FROM and TO are unibyte characters (0x80..0xFF). */ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2049 |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2050 #define SETUP_UNIBYTE_RANGE(work_area, FROM, TO) \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2051 do { \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2052 int C0, C1, C2, I; \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2053 int USED = RANGE_TABLE_WORK_USED (work_area); \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2054 \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2055 for (C0 = (FROM); C0 <= (TO); C0++) \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2056 { \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2057 C1 = RE_CHAR_TO_MULTIBYTE (C0); \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2058 if (CHAR_BYTE8_P (C1)) \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2059 SET_LIST_BIT (C0); \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2060 else \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2061 { \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2062 C2 = TRANSLATE (C1); \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2063 if (C2 == C1 \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2064 || (C1 = RE_CHAR_TO_UNIBYTE (C2)) < 0) \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2065 C1 = C0; \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2066 SET_LIST_BIT (C1); \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2067 for (I = RANGE_TABLE_WORK_USED (work_area) - 2; I >= USED; I -= 2) \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2068 { \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2069 int from = RANGE_TABLE_WORK_ELT (work_area, I); \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2070 int to = RANGE_TABLE_WORK_ELT (work_area, I + 1); \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2071 \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2072 if (C2 >= from - 1 && C2 <= to + 1) \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2073 { \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2074 if (C2 == from - 1) \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2075 RANGE_TABLE_WORK_ELT (work_area, I)--; \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2076 else if (C2 == to + 1) \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2077 RANGE_TABLE_WORK_ELT (work_area, I + 1)++; \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2078 break; \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2079 } \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2080 } \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2081 if (I < USED) \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2082 SET_RANGE_TABLE_WORK_AREA ((work_area), C2, C2); \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2083 } \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2084 } \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2085 } while (0) |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2086 |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2087 |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2088 /* Both FROM and TO are mulitbyte characters. */ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2089 |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2090 #define SETUP_MULTIBYTE_RANGE(work_area, FROM, TO) \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2091 do { \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2092 int C0, C1, C2, I, USED = RANGE_TABLE_WORK_USED (work_area); \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2093 \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2094 SET_RANGE_TABLE_WORK_AREA ((work_area), (FROM), (TO)); \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2095 for (C0 = (FROM); C0 <= (TO); C0++) \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2096 { \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2097 C1 = TRANSLATE (C0); \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2098 if ((C2 = RE_CHAR_TO_UNIBYTE (C1)) >= 0 \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2099 || (C1 != C0 && (C2 = RE_CHAR_TO_UNIBYTE (C0)) >= 0)) \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2100 SET_LIST_BIT (C2); \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2101 if (C1 >= (FROM) && C1 <= (TO)) \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2102 continue; \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2103 for (I = RANGE_TABLE_WORK_USED (work_area) - 2; I >= USED; I -= 2) \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2104 { \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2105 int from = RANGE_TABLE_WORK_ELT (work_area, I); \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2106 int to = RANGE_TABLE_WORK_ELT (work_area, I + 1); \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2107 \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2108 if (C1 >= from - 1 && C1 <= to + 1) \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2109 { \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2110 if (C1 == from - 1) \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2111 RANGE_TABLE_WORK_ELT (work_area, I)--; \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2112 else if (C1 == to + 1) \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2113 RANGE_TABLE_WORK_ELT (work_area, I + 1)++; \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2114 break; \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2115 } \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2116 } \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2117 if (I < USED) \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2118 SET_RANGE_TABLE_WORK_AREA ((work_area), C1, C1); \ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2119 } \ |
89061
9a9b54d06f3d
* regex.c (RE_TARGET_MULTIBYTE_P): New macro.
Kenichi Handa <handa@m17n.org>
parents:
88387
diff
changeset
|
2120 } while (0) |
9a9b54d06f3d
* regex.c (RE_TARGET_MULTIBYTE_P): New macro.
Kenichi Handa <handa@m17n.org>
parents:
88387
diff
changeset
|
2121 |
9a9b54d06f3d
* regex.c (RE_TARGET_MULTIBYTE_P): New macro.
Kenichi Handa <handa@m17n.org>
parents:
88387
diff
changeset
|
2122 #endif /* emacs */ |
9a9b54d06f3d
* regex.c (RE_TARGET_MULTIBYTE_P): New macro.
Kenichi Handa <handa@m17n.org>
parents:
88387
diff
changeset
|
2123 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2124 /* Get the next unsigned number in the uncompiled pattern. */ |
18262 | 2125 #define GET_UNSIGNED_NUMBER(num) \ |
58784
5f1c0193e984
(GET_UNSIGNED_NUMBER): Signal an error when reaching the end.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58780
diff
changeset
|
2126 do { \ |
5f1c0193e984
(GET_UNSIGNED_NUMBER): Signal an error when reaching the end.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58780
diff
changeset
|
2127 if (p == pend) \ |
5f1c0193e984
(GET_UNSIGNED_NUMBER): Signal an error when reaching the end.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58780
diff
changeset
|
2128 FREE_STACK_RETURN (REG_EBRACE); \ |
5f1c0193e984
(GET_UNSIGNED_NUMBER): Signal an error when reaching the end.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58780
diff
changeset
|
2129 else \ |
5f1c0193e984
(GET_UNSIGNED_NUMBER): Signal an error when reaching the end.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58780
diff
changeset
|
2130 { \ |
5f1c0193e984
(GET_UNSIGNED_NUMBER): Signal an error when reaching the end.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58780
diff
changeset
|
2131 PATFETCH (c); \ |
5f1c0193e984
(GET_UNSIGNED_NUMBER): Signal an error when reaching the end.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58780
diff
changeset
|
2132 while ('0' <= c && c <= '9') \ |
5f1c0193e984
(GET_UNSIGNED_NUMBER): Signal an error when reaching the end.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58780
diff
changeset
|
2133 { \ |
5f1c0193e984
(GET_UNSIGNED_NUMBER): Signal an error when reaching the end.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58780
diff
changeset
|
2134 int prev; \ |
5f1c0193e984
(GET_UNSIGNED_NUMBER): Signal an error when reaching the end.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58780
diff
changeset
|
2135 if (num < 0) \ |
5f1c0193e984
(GET_UNSIGNED_NUMBER): Signal an error when reaching the end.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58780
diff
changeset
|
2136 num = 0; \ |
5f1c0193e984
(GET_UNSIGNED_NUMBER): Signal an error when reaching the end.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58780
diff
changeset
|
2137 prev = num; \ |
5f1c0193e984
(GET_UNSIGNED_NUMBER): Signal an error when reaching the end.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58780
diff
changeset
|
2138 num = num * 10 + c - '0'; \ |
5f1c0193e984
(GET_UNSIGNED_NUMBER): Signal an error when reaching the end.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58780
diff
changeset
|
2139 if (num / 10 != prev) \ |
5f1c0193e984
(GET_UNSIGNED_NUMBER): Signal an error when reaching the end.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58780
diff
changeset
|
2140 FREE_STACK_RETURN (REG_BADBR); \ |
5f1c0193e984
(GET_UNSIGNED_NUMBER): Signal an error when reaching the end.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58780
diff
changeset
|
2141 if (p == pend) \ |
5f1c0193e984
(GET_UNSIGNED_NUMBER): Signal an error when reaching the end.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58780
diff
changeset
|
2142 FREE_STACK_RETURN (REG_EBRACE); \ |
5f1c0193e984
(GET_UNSIGNED_NUMBER): Signal an error when reaching the end.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58780
diff
changeset
|
2143 PATFETCH (c); \ |
5f1c0193e984
(GET_UNSIGNED_NUMBER): Signal an error when reaching the end.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58780
diff
changeset
|
2144 } \ |
5f1c0193e984
(GET_UNSIGNED_NUMBER): Signal an error when reaching the end.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58780
diff
changeset
|
2145 } \ |
5f1c0193e984
(GET_UNSIGNED_NUMBER): Signal an error when reaching the end.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58780
diff
changeset
|
2146 } while (0) |
47233
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2147 |
56091
10b16f7f1a51
(re_wctype, re_iswctype): Function defs longer static.
Richard M. Stallman <rms@gnu.org>
parents:
55811
diff
changeset
|
2148 #if ! WIDE_CHAR_SUPPORT |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
2149 |
31360
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2150 /* Map a string to the char class it names (if any). */ |
56091
10b16f7f1a51
(re_wctype, re_iswctype): Function defs longer static.
Richard M. Stallman <rms@gnu.org>
parents:
55811
diff
changeset
|
2151 re_wctype_t |
40650
ded4aa3c81b2
(re_wctype): Try to fix some warnings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39718
diff
changeset
|
2152 re_wctype (str) |
ded4aa3c81b2
(re_wctype): Try to fix some warnings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39718
diff
changeset
|
2153 re_char *str; |
31360
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2154 { |
40650
ded4aa3c81b2
(re_wctype): Try to fix some warnings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39718
diff
changeset
|
2155 const char *string = str; |
31360
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2156 if (STREQ (string, "alnum")) return RECC_ALNUM; |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2157 else if (STREQ (string, "alpha")) return RECC_ALPHA; |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2158 else if (STREQ (string, "word")) return RECC_WORD; |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2159 else if (STREQ (string, "ascii")) return RECC_ASCII; |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2160 else if (STREQ (string, "nonascii")) return RECC_NONASCII; |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2161 else if (STREQ (string, "graph")) return RECC_GRAPH; |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2162 else if (STREQ (string, "lower")) return RECC_LOWER; |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2163 else if (STREQ (string, "print")) return RECC_PRINT; |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2164 else if (STREQ (string, "punct")) return RECC_PUNCT; |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2165 else if (STREQ (string, "space")) return RECC_SPACE; |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2166 else if (STREQ (string, "upper")) return RECC_UPPER; |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2167 else if (STREQ (string, "unibyte")) return RECC_UNIBYTE; |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2168 else if (STREQ (string, "multibyte")) return RECC_MULTIBYTE; |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2169 else if (STREQ (string, "digit")) return RECC_DIGIT; |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2170 else if (STREQ (string, "xdigit")) return RECC_XDIGIT; |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2171 else if (STREQ (string, "cntrl")) return RECC_CNTRL; |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2172 else if (STREQ (string, "blank")) return RECC_BLANK; |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2173 else return 0; |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2174 } |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2175 |
78501 | 2176 /* True if CH is in the char class CC. */ |
56091
10b16f7f1a51
(re_wctype, re_iswctype): Function defs longer static.
Richard M. Stallman <rms@gnu.org>
parents:
55811
diff
changeset
|
2177 boolean |
31360
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2178 re_iswctype (ch, cc) |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2179 int ch; |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2180 re_wctype_t cc; |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2181 { |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2182 switch (cc) |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2183 { |
33066
c782e22760e0
(re_iswctype, re_wctype_to_bit): Fix braino.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32954
diff
changeset
|
2184 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
|
2185 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
|
2186 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
|
2187 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
|
2188 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
|
2189 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
|
2190 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
|
2191 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
|
2192 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
|
2193 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
|
2194 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
|
2195 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
|
2196 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
|
2197 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
|
2198 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
|
2199 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
|
2200 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
|
2201 case RECC_ERROR: return false; |
c782e22760e0
(re_iswctype, re_wctype_to_bit): Fix braino.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32954
diff
changeset
|
2202 default: |
c782e22760e0
(re_iswctype, re_wctype_to_bit): Fix braino.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32954
diff
changeset
|
2203 abort(); |
31360
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2204 } |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2205 } |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2206 |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2207 /* 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
|
2208 chars of class CC. */ |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2209 static int |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2210 re_wctype_to_bit (cc) |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2211 re_wctype_t cc; |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2212 { |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2213 switch (cc) |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2214 { |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2215 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
|
2216 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
|
2217 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
|
2218 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
|
2219 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
|
2220 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
|
2221 case RECC_SPACE: return BIT_SPACE; |
31360
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2222 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
|
2223 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
|
2224 default: |
c782e22760e0
(re_iswctype, re_wctype_to_bit): Fix braino.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32954
diff
changeset
|
2225 abort(); |
31360
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2226 } |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2227 } |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
2228 #endif |
47233
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2229 |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2230 /* Filling in the work area of a range. */ |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2231 |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2232 /* Actually extend the space in WORK_AREA. */ |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2233 |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2234 static void |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2235 extend_range_table_work_area (work_area) |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2236 struct range_table_work_area *work_area; |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49276
diff
changeset
|
2237 { |
47233
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2238 work_area->allocated += 16 * sizeof (int); |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2239 if (work_area->table) |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2240 work_area->table |
69039
f717c65a39d7
* regex.c: Revert 2006-02-19 change.
Chong Yidong <cyd@stupidchicken.com>
parents:
69038
diff
changeset
|
2241 = (int *) realloc (work_area->table, work_area->allocated); |
47233
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2242 else |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2243 work_area->table |
69039
f717c65a39d7
* regex.c: Revert 2006-02-19 change.
Chong Yidong <cyd@stupidchicken.com>
parents:
69038
diff
changeset
|
2244 = (int *) malloc (work_area->allocated); |
47233
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2245 } |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2246 |
89483 | 2247 #if 0 |
47233
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2248 #ifdef emacs |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2249 |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2250 /* Carefully find the ranges of codes that are equivalent |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2251 under case conversion to the range start..end when passed through |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2252 TRANSLATE. Handle the case where non-letters can come in between |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2253 two upper-case letters (which happens in Latin-1). |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2254 Also handle the case of groups of more than 2 case-equivalent chars. |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2255 |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2256 The basic method is to look at consecutive characters and see |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2257 if they can form a run that can be handled as one. |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2258 |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2259 Returns -1 if successful, REG_ESPACE if ran out of space. */ |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2260 |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2261 static int |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2262 set_image_of_range_1 (work_area, start, end, translate) |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2263 RE_TRANSLATE_TYPE translate; |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2264 struct range_table_work_area *work_area; |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2265 re_wchar_t start, end; |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2266 { |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2267 /* `one_case' indicates a character, or a run of characters, |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2268 each of which is an isolate (no case-equivalents). |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2269 This includes all ASCII non-letters. |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2270 |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2271 `two_case' indicates a character, or a run of characters, |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2272 each of which has two case-equivalent forms. |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2273 This includes all ASCII letters. |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2274 |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2275 `strange' indicates a character that has more than one |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2276 case-equivalent. */ |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49276
diff
changeset
|
2277 |
47233
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2278 enum case_type {one_case, two_case, strange}; |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2279 |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2280 /* Describe the run that is in progress, |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2281 which the next character can try to extend. |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2282 If run_type is strange, that means there really is no run. |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2283 If run_type is one_case, then run_start...run_end is the run. |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2284 If run_type is two_case, then the run is run_start...run_end, |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2285 and the case-equivalents end at run_eqv_end. */ |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2286 |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2287 enum case_type run_type = strange; |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2288 int run_start, run_end, run_eqv_end; |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2289 |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2290 Lisp_Object eqv_table; |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2291 |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2292 if (!RE_TRANSLATE_P (translate)) |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2293 { |
47250
923aa802303b
(set_image_of_range_1): In no-TRANSLATE case,
Richard M. Stallman <rms@gnu.org>
parents:
47233
diff
changeset
|
2294 EXTEND_RANGE_TABLE (work_area, 2); |
47233
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2295 work_area->table[work_area->used++] = (start); |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2296 work_area->table[work_area->used++] = (end); |
47250
923aa802303b
(set_image_of_range_1): In no-TRANSLATE case,
Richard M. Stallman <rms@gnu.org>
parents:
47233
diff
changeset
|
2297 return -1; |
47233
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2298 } |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2299 |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2300 eqv_table = XCHAR_TABLE (translate)->extras[2]; |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2301 |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2302 for (; start <= end; start++) |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2303 { |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2304 enum case_type this_type; |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2305 int eqv = RE_TRANSLATE (eqv_table, start); |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2306 int minchar, maxchar; |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2307 |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2308 /* Classify this character */ |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2309 if (eqv == start) |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2310 this_type = one_case; |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2311 else if (RE_TRANSLATE (eqv_table, eqv) == start) |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2312 this_type = two_case; |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2313 else |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2314 this_type = strange; |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2315 |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2316 if (start < eqv) |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2317 minchar = start, maxchar = eqv; |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2318 else |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2319 minchar = eqv, maxchar = start; |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2320 |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2321 /* Can this character extend the run in progress? */ |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2322 if (this_type == strange || this_type != run_type |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2323 || !(minchar == run_end + 1 |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2324 && (run_type == two_case |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2325 ? maxchar == run_eqv_end + 1 : 1))) |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2326 { |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2327 /* No, end the run. |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2328 Record each of its equivalent ranges. */ |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2329 if (run_type == one_case) |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2330 { |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2331 EXTEND_RANGE_TABLE (work_area, 2); |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2332 work_area->table[work_area->used++] = run_start; |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2333 work_area->table[work_area->used++] = run_end; |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2334 } |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2335 else if (run_type == two_case) |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2336 { |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2337 EXTEND_RANGE_TABLE (work_area, 4); |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2338 work_area->table[work_area->used++] = run_start; |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2339 work_area->table[work_area->used++] = run_end; |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2340 work_area->table[work_area->used++] |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2341 = RE_TRANSLATE (eqv_table, run_start); |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2342 work_area->table[work_area->used++] |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2343 = RE_TRANSLATE (eqv_table, run_end); |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2344 } |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2345 run_type = strange; |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2346 } |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49276
diff
changeset
|
2347 |
47233
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2348 if (this_type == strange) |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2349 { |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2350 /* For a strange character, add each of its equivalents, one |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2351 by one. Don't start a range. */ |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2352 do |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2353 { |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2354 EXTEND_RANGE_TABLE (work_area, 2); |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2355 work_area->table[work_area->used++] = eqv; |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2356 work_area->table[work_area->used++] = eqv; |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2357 eqv = RE_TRANSLATE (eqv_table, eqv); |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2358 } |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2359 while (eqv != start); |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2360 } |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2361 |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2362 /* Add this char to the run, or start a new run. */ |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2363 else if (run_type == strange) |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2364 { |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2365 /* Initialize a new range. */ |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2366 run_type = this_type; |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2367 run_start = start; |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2368 run_end = start; |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2369 run_eqv_end = RE_TRANSLATE (eqv_table, run_end); |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2370 } |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2371 else |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2372 { |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2373 /* Extend a running range. */ |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2374 run_end = minchar; |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2375 run_eqv_end = RE_TRANSLATE (eqv_table, run_end); |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2376 } |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2377 } |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2378 |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2379 /* If a run is still in progress at the end, finish it now |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2380 by recording its equivalent ranges. */ |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2381 if (run_type == one_case) |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2382 { |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2383 EXTEND_RANGE_TABLE (work_area, 2); |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2384 work_area->table[work_area->used++] = run_start; |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2385 work_area->table[work_area->used++] = run_end; |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2386 } |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2387 else if (run_type == two_case) |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2388 { |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2389 EXTEND_RANGE_TABLE (work_area, 4); |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2390 work_area->table[work_area->used++] = run_start; |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2391 work_area->table[work_area->used++] = run_end; |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2392 work_area->table[work_area->used++] |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2393 = RE_TRANSLATE (eqv_table, run_start); |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2394 work_area->table[work_area->used++] |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2395 = RE_TRANSLATE (eqv_table, run_end); |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2396 } |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2397 |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2398 return -1; |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2399 } |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2400 |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2401 #endif /* emacs */ |
47008
c299d527a088
(PATFETCH): Remove the translating fetch.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44145
diff
changeset
|
2402 |
47250
923aa802303b
(set_image_of_range_1): In no-TRANSLATE case,
Richard M. Stallman <rms@gnu.org>
parents:
47233
diff
changeset
|
2403 /* Record the the image of the range start..end when passed through |
47008
c299d527a088
(PATFETCH): Remove the translating fetch.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44145
diff
changeset
|
2404 TRANSLATE. This is not necessarily TRANSLATE(start)..TRANSLATE(end) |
c299d527a088
(PATFETCH): Remove the translating fetch.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44145
diff
changeset
|
2405 and is not even necessarily contiguous. |
47250
923aa802303b
(set_image_of_range_1): In no-TRANSLATE case,
Richard M. Stallman <rms@gnu.org>
parents:
47233
diff
changeset
|
2406 Normally we approximate it with the smallest contiguous range that contains |
923aa802303b
(set_image_of_range_1): In no-TRANSLATE case,
Richard M. Stallman <rms@gnu.org>
parents:
47233
diff
changeset
|
2407 all the chars we need. However, for Latin-1 we go to extra effort |
923aa802303b
(set_image_of_range_1): In no-TRANSLATE case,
Richard M. Stallman <rms@gnu.org>
parents:
47233
diff
changeset
|
2408 to do a better job. |
923aa802303b
(set_image_of_range_1): In no-TRANSLATE case,
Richard M. Stallman <rms@gnu.org>
parents:
47233
diff
changeset
|
2409 |
923aa802303b
(set_image_of_range_1): In no-TRANSLATE case,
Richard M. Stallman <rms@gnu.org>
parents:
47233
diff
changeset
|
2410 This function is not called for ASCII ranges. |
47233
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2411 |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2412 Returns -1 if successful, REG_ESPACE if ran out of space. */ |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2413 |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2414 static int |
47008
c299d527a088
(PATFETCH): Remove the translating fetch.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44145
diff
changeset
|
2415 set_image_of_range (work_area, start, end, translate) |
c299d527a088
(PATFETCH): Remove the translating fetch.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44145
diff
changeset
|
2416 RE_TRANSLATE_TYPE translate; |
c299d527a088
(PATFETCH): Remove the translating fetch.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44145
diff
changeset
|
2417 struct range_table_work_area *work_area; |
c299d527a088
(PATFETCH): Remove the translating fetch.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44145
diff
changeset
|
2418 re_wchar_t start, end; |
c299d527a088
(PATFETCH): Remove the translating fetch.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44145
diff
changeset
|
2419 { |
47233
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2420 re_wchar_t cmin, cmax; |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2421 |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2422 #ifdef emacs |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2423 /* For Latin-1 ranges, use set_image_of_range_1 |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2424 to get proper handling of ranges that include letters and nonletters. |
47250
923aa802303b
(set_image_of_range_1): In no-TRANSLATE case,
Richard M. Stallman <rms@gnu.org>
parents:
47233
diff
changeset
|
2425 For a range that includes the whole of Latin-1, this is not necessary. |
47233
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2426 For other character sets, we don't bother to get this right. */ |
47250
923aa802303b
(set_image_of_range_1): In no-TRANSLATE case,
Richard M. Stallman <rms@gnu.org>
parents:
47233
diff
changeset
|
2427 if (RE_TRANSLATE_P (translate) && start < 04400 |
923aa802303b
(set_image_of_range_1): In no-TRANSLATE case,
Richard M. Stallman <rms@gnu.org>
parents:
47233
diff
changeset
|
2428 && !(start < 04200 && end >= 04377)) |
47233
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2429 { |
47250
923aa802303b
(set_image_of_range_1): In no-TRANSLATE case,
Richard M. Stallman <rms@gnu.org>
parents:
47233
diff
changeset
|
2430 int newend; |
47233
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2431 int tem; |
47250
923aa802303b
(set_image_of_range_1): In no-TRANSLATE case,
Richard M. Stallman <rms@gnu.org>
parents:
47233
diff
changeset
|
2432 newend = end; |
923aa802303b
(set_image_of_range_1): In no-TRANSLATE case,
Richard M. Stallman <rms@gnu.org>
parents:
47233
diff
changeset
|
2433 if (newend > 04377) |
923aa802303b
(set_image_of_range_1): In no-TRANSLATE case,
Richard M. Stallman <rms@gnu.org>
parents:
47233
diff
changeset
|
2434 newend = 04377; |
923aa802303b
(set_image_of_range_1): In no-TRANSLATE case,
Richard M. Stallman <rms@gnu.org>
parents:
47233
diff
changeset
|
2435 tem = set_image_of_range_1 (work_area, start, newend, translate); |
47233
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2436 if (tem > 0) |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2437 return tem; |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2438 |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2439 start = 04400; |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2440 if (end < 04400) |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2441 return -1; |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2442 } |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2443 #endif |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2444 |
47250
923aa802303b
(set_image_of_range_1): In no-TRANSLATE case,
Richard M. Stallman <rms@gnu.org>
parents:
47233
diff
changeset
|
2445 EXTEND_RANGE_TABLE (work_area, 2); |
923aa802303b
(set_image_of_range_1): In no-TRANSLATE case,
Richard M. Stallman <rms@gnu.org>
parents:
47233
diff
changeset
|
2446 work_area->table[work_area->used++] = (start); |
923aa802303b
(set_image_of_range_1): In no-TRANSLATE case,
Richard M. Stallman <rms@gnu.org>
parents:
47233
diff
changeset
|
2447 work_area->table[work_area->used++] = (end); |
923aa802303b
(set_image_of_range_1): In no-TRANSLATE case,
Richard M. Stallman <rms@gnu.org>
parents:
47233
diff
changeset
|
2448 |
923aa802303b
(set_image_of_range_1): In no-TRANSLATE case,
Richard M. Stallman <rms@gnu.org>
parents:
47233
diff
changeset
|
2449 cmin = -1, cmax = -1; |
47233
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2450 |
47008
c299d527a088
(PATFETCH): Remove the translating fetch.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44145
diff
changeset
|
2451 if (RE_TRANSLATE_P (translate)) |
47250
923aa802303b
(set_image_of_range_1): In no-TRANSLATE case,
Richard M. Stallman <rms@gnu.org>
parents:
47233
diff
changeset
|
2452 { |
923aa802303b
(set_image_of_range_1): In no-TRANSLATE case,
Richard M. Stallman <rms@gnu.org>
parents:
47233
diff
changeset
|
2453 int ch; |
923aa802303b
(set_image_of_range_1): In no-TRANSLATE case,
Richard M. Stallman <rms@gnu.org>
parents:
47233
diff
changeset
|
2454 |
923aa802303b
(set_image_of_range_1): In no-TRANSLATE case,
Richard M. Stallman <rms@gnu.org>
parents:
47233
diff
changeset
|
2455 for (ch = start; ch <= end; ch++) |
923aa802303b
(set_image_of_range_1): In no-TRANSLATE case,
Richard M. Stallman <rms@gnu.org>
parents:
47233
diff
changeset
|
2456 { |
923aa802303b
(set_image_of_range_1): In no-TRANSLATE case,
Richard M. Stallman <rms@gnu.org>
parents:
47233
diff
changeset
|
2457 re_wchar_t c = TRANSLATE (ch); |
923aa802303b
(set_image_of_range_1): In no-TRANSLATE case,
Richard M. Stallman <rms@gnu.org>
parents:
47233
diff
changeset
|
2458 if (! (start <= c && c <= end)) |
923aa802303b
(set_image_of_range_1): In no-TRANSLATE case,
Richard M. Stallman <rms@gnu.org>
parents:
47233
diff
changeset
|
2459 { |
923aa802303b
(set_image_of_range_1): In no-TRANSLATE case,
Richard M. Stallman <rms@gnu.org>
parents:
47233
diff
changeset
|
2460 if (cmin == -1) |
923aa802303b
(set_image_of_range_1): In no-TRANSLATE case,
Richard M. Stallman <rms@gnu.org>
parents:
47233
diff
changeset
|
2461 cmin = c, cmax = c; |
923aa802303b
(set_image_of_range_1): In no-TRANSLATE case,
Richard M. Stallman <rms@gnu.org>
parents:
47233
diff
changeset
|
2462 else |
923aa802303b
(set_image_of_range_1): In no-TRANSLATE case,
Richard M. Stallman <rms@gnu.org>
parents:
47233
diff
changeset
|
2463 { |
923aa802303b
(set_image_of_range_1): In no-TRANSLATE case,
Richard M. Stallman <rms@gnu.org>
parents:
47233
diff
changeset
|
2464 cmin = MIN (cmin, c); |
923aa802303b
(set_image_of_range_1): In no-TRANSLATE case,
Richard M. Stallman <rms@gnu.org>
parents:
47233
diff
changeset
|
2465 cmax = MAX (cmax, c); |
923aa802303b
(set_image_of_range_1): In no-TRANSLATE case,
Richard M. Stallman <rms@gnu.org>
parents:
47233
diff
changeset
|
2466 } |
923aa802303b
(set_image_of_range_1): In no-TRANSLATE case,
Richard M. Stallman <rms@gnu.org>
parents:
47233
diff
changeset
|
2467 } |
923aa802303b
(set_image_of_range_1): In no-TRANSLATE case,
Richard M. Stallman <rms@gnu.org>
parents:
47233
diff
changeset
|
2468 } |
923aa802303b
(set_image_of_range_1): In no-TRANSLATE case,
Richard M. Stallman <rms@gnu.org>
parents:
47233
diff
changeset
|
2469 |
923aa802303b
(set_image_of_range_1): In no-TRANSLATE case,
Richard M. Stallman <rms@gnu.org>
parents:
47233
diff
changeset
|
2470 if (cmin != -1) |
923aa802303b
(set_image_of_range_1): In no-TRANSLATE case,
Richard M. Stallman <rms@gnu.org>
parents:
47233
diff
changeset
|
2471 { |
923aa802303b
(set_image_of_range_1): In no-TRANSLATE case,
Richard M. Stallman <rms@gnu.org>
parents:
47233
diff
changeset
|
2472 EXTEND_RANGE_TABLE (work_area, 2); |
923aa802303b
(set_image_of_range_1): In no-TRANSLATE case,
Richard M. Stallman <rms@gnu.org>
parents:
47233
diff
changeset
|
2473 work_area->table[work_area->used++] = (cmin); |
923aa802303b
(set_image_of_range_1): In no-TRANSLATE case,
Richard M. Stallman <rms@gnu.org>
parents:
47233
diff
changeset
|
2474 work_area->table[work_area->used++] = (cmax); |
923aa802303b
(set_image_of_range_1): In no-TRANSLATE case,
Richard M. Stallman <rms@gnu.org>
parents:
47233
diff
changeset
|
2475 } |
923aa802303b
(set_image_of_range_1): In no-TRANSLATE case,
Richard M. Stallman <rms@gnu.org>
parents:
47233
diff
changeset
|
2476 } |
47233
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2477 |
620fccf981d3
(set_image_of_range_1): New function.
Richard M. Stallman <rms@gnu.org>
parents:
47008
diff
changeset
|
2478 return -1; |
47008
c299d527a088
(PATFETCH): Remove the translating fetch.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44145
diff
changeset
|
2479 } |
89483 | 2480 #endif /* 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
|
2481 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2482 #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
|
2483 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2484 /* 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
|
2485 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
|
2486 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
|
2487 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
|
2488 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
|
2489 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
|
2490 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2491 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
|
2492 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2493 /* 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
|
2494 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
|
2495 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
|
2496 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
|
2497 |
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
|
2498 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
|
2499 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
|
2500 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2501 /* 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
|
2502 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
|
2503 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2504 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
|
2505 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
|
2506 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
|
2507 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2508 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
|
2509 { |
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
|
2510 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
|
2511 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
|
2512 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
|
2513 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
|
2514 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2515 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
|
2516 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2517 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2518 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2519 #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
|
2520 |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2521 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
|
2522 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
|
2523 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
|
2524 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2525 /* `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
|
2526 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
|
2527 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2528 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
|
2529 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
|
2530 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2531 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
|
2532 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
|
2533 `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
|
2534 `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
|
2535 `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
|
2536 `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
|
2537 `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
|
2538 `not_bol' and `not_eol' are zero; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
2539 |
31312
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
2540 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
|
2541 |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2542 /* 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
|
2543 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
|
2544 #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
|
2545 do { \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2546 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
|
2547 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
|
2548 } 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
|
2549 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2550 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2551 /* 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
|
2552 #define FREE_STACK_RETURN(value) \ |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2553 do { \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2554 FREE_RANGE_TABLE_WORK_AREA (range_table_work); \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2555 free (compile_stack.stack); \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2556 return value; \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2557 } 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
|
2558 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2559 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
|
2560 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
|
2561 re_char *pattern; |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
2562 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
|
2563 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
|
2564 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
|
2565 { |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
2566 /* We fetch characters from PATTERN here. */ |
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
2567 register re_wchar_t c, c1; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
2568 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2569 /* 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
|
2570 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
|
2571 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2572 /* 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
|
2573 register unsigned char *b; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
2574 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2575 /* 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
|
2576 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
|
2577 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2578 /* 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
|
2579 #ifdef AIX |
dc8ce74d8633
(regex_compile): Declare p with non-const type on AIX.
Richard M. Stallman <rms@gnu.org>
parents:
22411
diff
changeset
|
2580 /* `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
|
2581 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
|
2582 #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
|
2583 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
|
2584 #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
|
2585 re_char *pend = pattern + size; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
2586 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2587 /* 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
|
2588 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
|
2589 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2590 /* 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
|
2591 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
|
2592 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
|
2593 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
|
2594 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
|
2595 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2596 /* 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
|
2597 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
|
2598 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
|
2599 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
|
2600 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2601 /* 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
|
2602 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
|
2603 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2604 /* 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
|
2605 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
|
2606 re_char *beg_interval; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
2607 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2608 /* Address of the place where a forward jump should go to the end of |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
2609 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
|
2610 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
|
2611 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
|
2612 |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2613 /* Work area for range table of charset. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2614 struct range_table_work_area range_table_work; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2615 |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
2616 /* 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
|
2617 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
|
2618 |
89483 | 2619 /* If a target of matching can contain multibyte characters. */ |
89455
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
2620 const boolean target_multibyte = RE_TARGET_MULTIBYTE_P (bufp); |
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
2621 |
58325
d82983edcbe6
(regex_compile): Substitute whitespace_regexp for spaces, if it is nonzero.
Richard M. Stallman <rms@gnu.org>
parents:
57665
diff
changeset
|
2622 /* Nonzero if we have pushed down into a subpattern. */ |
d82983edcbe6
(regex_compile): Substitute whitespace_regexp for spaces, if it is nonzero.
Richard M. Stallman <rms@gnu.org>
parents:
57665
diff
changeset
|
2623 int in_subpattern = 0; |
d82983edcbe6
(regex_compile): Substitute whitespace_regexp for spaces, if it is nonzero.
Richard M. Stallman <rms@gnu.org>
parents:
57665
diff
changeset
|
2624 |
d82983edcbe6
(regex_compile): Substitute whitespace_regexp for spaces, if it is nonzero.
Richard M. Stallman <rms@gnu.org>
parents:
57665
diff
changeset
|
2625 /* These hold the values of p, pattern, and pend from the main |
d82983edcbe6
(regex_compile): Substitute whitespace_regexp for spaces, if it is nonzero.
Richard M. Stallman <rms@gnu.org>
parents:
57665
diff
changeset
|
2626 pattern when we have pushed into a subpattern. */ |
d82983edcbe6
(regex_compile): Substitute whitespace_regexp for spaces, if it is nonzero.
Richard M. Stallman <rms@gnu.org>
parents:
57665
diff
changeset
|
2627 re_char *main_p; |
d82983edcbe6
(regex_compile): Substitute whitespace_regexp for spaces, if it is nonzero.
Richard M. Stallman <rms@gnu.org>
parents:
57665
diff
changeset
|
2628 re_char *main_pattern; |
d82983edcbe6
(regex_compile): Substitute whitespace_regexp for spaces, if it is nonzero.
Richard M. Stallman <rms@gnu.org>
parents:
57665
diff
changeset
|
2629 re_char *main_pend; |
d82983edcbe6
(regex_compile): Substitute whitespace_regexp for spaces, if it is nonzero.
Richard M. Stallman <rms@gnu.org>
parents:
57665
diff
changeset
|
2630 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2631 #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
|
2632 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
|
2633 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
|
2634 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
|
2635 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2636 unsigned debug_count; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
2637 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2638 for (debug_count = 0; debug_count < size; debug_count++) |
18262 | 2639 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
|
2640 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
|
2641 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2642 #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
|
2643 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2644 /* 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
|
2645 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
|
2646 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
|
2647 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
|
2648 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2649 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
|
2650 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
|
2651 |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2652 range_table_work.table = 0; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2653 range_table_work.allocated = 0; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2654 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2655 /* 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
|
2656 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
|
2657 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
|
2658 bufp->not_bol = bufp->not_eol = 0; |
73229
3501fcb2e68c
(regex_compile): Set the new `used_syntax' bit.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
73056
diff
changeset
|
2659 bufp->used_syntax = 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
|
2660 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2661 /* 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
|
2662 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
|
2663 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
|
2664 bufp->used = 0; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
2665 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2666 /* 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
|
2667 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
|
2668 |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
2669 #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
|
2670 /* 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
|
2671 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
|
2672 #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
|
2673 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2674 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
|
2675 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2676 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
|
2677 { /* If zero allocated, but buffer is non-null, try to realloc |
18262 | 2678 enough space. This loses if buffer's address is bogus, but |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
2679 that is the user's responsibility. */ |
18262 | 2680 RETALLOC (bufp->buffer, INIT_BUF_SIZE, unsigned char); |
2681 } | |
11864
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 else |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
2683 { /* Caller did not allocate a buffer. Do it for them. */ |
18262 | 2684 bufp->buffer = TALLOC (INIT_BUF_SIZE, unsigned char); |
2685 } | |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2686 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
|
2687 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2688 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
|
2689 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2690 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2691 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
|
2692 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2693 /* Loop through the uncompiled pattern until we're at the end. */ |
58325
d82983edcbe6
(regex_compile): Substitute whitespace_regexp for spaces, if it is nonzero.
Richard M. Stallman <rms@gnu.org>
parents:
57665
diff
changeset
|
2694 while (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
|
2695 { |
58325
d82983edcbe6
(regex_compile): Substitute whitespace_regexp for spaces, if it is nonzero.
Richard M. Stallman <rms@gnu.org>
parents:
57665
diff
changeset
|
2696 if (p == pend) |
d82983edcbe6
(regex_compile): Substitute whitespace_regexp for spaces, if it is nonzero.
Richard M. Stallman <rms@gnu.org>
parents:
57665
diff
changeset
|
2697 { |
d82983edcbe6
(regex_compile): Substitute whitespace_regexp for spaces, if it is nonzero.
Richard M. Stallman <rms@gnu.org>
parents:
57665
diff
changeset
|
2698 /* If this is the end of an included regexp, |
d82983edcbe6
(regex_compile): Substitute whitespace_regexp for spaces, if it is nonzero.
Richard M. Stallman <rms@gnu.org>
parents:
57665
diff
changeset
|
2699 pop back to the main regexp and try again. */ |
d82983edcbe6
(regex_compile): Substitute whitespace_regexp for spaces, if it is nonzero.
Richard M. Stallman <rms@gnu.org>
parents:
57665
diff
changeset
|
2700 if (in_subpattern) |
d82983edcbe6
(regex_compile): Substitute whitespace_regexp for spaces, if it is nonzero.
Richard M. Stallman <rms@gnu.org>
parents:
57665
diff
changeset
|
2701 { |
d82983edcbe6
(regex_compile): Substitute whitespace_regexp for spaces, if it is nonzero.
Richard M. Stallman <rms@gnu.org>
parents:
57665
diff
changeset
|
2702 in_subpattern = 0; |
d82983edcbe6
(regex_compile): Substitute whitespace_regexp for spaces, if it is nonzero.
Richard M. Stallman <rms@gnu.org>
parents:
57665
diff
changeset
|
2703 pattern = main_pattern; |
d82983edcbe6
(regex_compile): Substitute whitespace_regexp for spaces, if it is nonzero.
Richard M. Stallman <rms@gnu.org>
parents:
57665
diff
changeset
|
2704 p = main_p; |
d82983edcbe6
(regex_compile): Substitute whitespace_regexp for spaces, if it is nonzero.
Richard M. Stallman <rms@gnu.org>
parents:
57665
diff
changeset
|
2705 pend = main_pend; |
d82983edcbe6
(regex_compile): Substitute whitespace_regexp for spaces, if it is nonzero.
Richard M. Stallman <rms@gnu.org>
parents:
57665
diff
changeset
|
2706 continue; |
d82983edcbe6
(regex_compile): Substitute whitespace_regexp for spaces, if it is nonzero.
Richard M. Stallman <rms@gnu.org>
parents:
57665
diff
changeset
|
2707 } |
d82983edcbe6
(regex_compile): Substitute whitespace_regexp for spaces, if it is nonzero.
Richard M. Stallman <rms@gnu.org>
parents:
57665
diff
changeset
|
2708 /* If this is the end of the main regexp, we are done. */ |
d82983edcbe6
(regex_compile): Substitute whitespace_regexp for spaces, if it is nonzero.
Richard M. Stallman <rms@gnu.org>
parents:
57665
diff
changeset
|
2709 break; |
d82983edcbe6
(regex_compile): Substitute whitespace_regexp for spaces, if it is nonzero.
Richard M. Stallman <rms@gnu.org>
parents:
57665
diff
changeset
|
2710 } |
d82983edcbe6
(regex_compile): Substitute whitespace_regexp for spaces, if it is nonzero.
Richard M. Stallman <rms@gnu.org>
parents:
57665
diff
changeset
|
2711 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2712 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
|
2713 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2714 switch (c) |
18262 | 2715 { |
58325
d82983edcbe6
(regex_compile): Substitute whitespace_regexp for spaces, if it is nonzero.
Richard M. Stallman <rms@gnu.org>
parents:
57665
diff
changeset
|
2716 case ' ': |
d82983edcbe6
(regex_compile): Substitute whitespace_regexp for spaces, if it is nonzero.
Richard M. Stallman <rms@gnu.org>
parents:
57665
diff
changeset
|
2717 { |
d82983edcbe6
(regex_compile): Substitute whitespace_regexp for spaces, if it is nonzero.
Richard M. Stallman <rms@gnu.org>
parents:
57665
diff
changeset
|
2718 re_char *p1 = p; |
d82983edcbe6
(regex_compile): Substitute whitespace_regexp for spaces, if it is nonzero.
Richard M. Stallman <rms@gnu.org>
parents:
57665
diff
changeset
|
2719 |
d82983edcbe6
(regex_compile): Substitute whitespace_regexp for spaces, if it is nonzero.
Richard M. Stallman <rms@gnu.org>
parents:
57665
diff
changeset
|
2720 /* If there's no special whitespace regexp, treat |
58328 | 2721 spaces normally. And don't try to do this recursively. */ |
2722 if (!whitespace_regexp || in_subpattern) | |
58325
d82983edcbe6
(regex_compile): Substitute whitespace_regexp for spaces, if it is nonzero.
Richard M. Stallman <rms@gnu.org>
parents:
57665
diff
changeset
|
2723 goto normal_char; |
d82983edcbe6
(regex_compile): Substitute whitespace_regexp for spaces, if it is nonzero.
Richard M. Stallman <rms@gnu.org>
parents:
57665
diff
changeset
|
2724 |
d82983edcbe6
(regex_compile): Substitute whitespace_regexp for spaces, if it is nonzero.
Richard M. Stallman <rms@gnu.org>
parents:
57665
diff
changeset
|
2725 /* Peek past following spaces. */ |
d82983edcbe6
(regex_compile): Substitute whitespace_regexp for spaces, if it is nonzero.
Richard M. Stallman <rms@gnu.org>
parents:
57665
diff
changeset
|
2726 while (p1 != pend) |
d82983edcbe6
(regex_compile): Substitute whitespace_regexp for spaces, if it is nonzero.
Richard M. Stallman <rms@gnu.org>
parents:
57665
diff
changeset
|
2727 { |
d82983edcbe6
(regex_compile): Substitute whitespace_regexp for spaces, if it is nonzero.
Richard M. Stallman <rms@gnu.org>
parents:
57665
diff
changeset
|
2728 if (*p1 != ' ') |
d82983edcbe6
(regex_compile): Substitute whitespace_regexp for spaces, if it is nonzero.
Richard M. Stallman <rms@gnu.org>
parents:
57665
diff
changeset
|
2729 break; |
d82983edcbe6
(regex_compile): Substitute whitespace_regexp for spaces, if it is nonzero.
Richard M. Stallman <rms@gnu.org>
parents:
57665
diff
changeset
|
2730 p1++; |
d82983edcbe6
(regex_compile): Substitute whitespace_regexp for spaces, if it is nonzero.
Richard M. Stallman <rms@gnu.org>
parents:
57665
diff
changeset
|
2731 } |
d82983edcbe6
(regex_compile): Substitute whitespace_regexp for spaces, if it is nonzero.
Richard M. Stallman <rms@gnu.org>
parents:
57665
diff
changeset
|
2732 /* If the spaces are followed by a repetition op, |
d82983edcbe6
(regex_compile): Substitute whitespace_regexp for spaces, if it is nonzero.
Richard M. Stallman <rms@gnu.org>
parents:
57665
diff
changeset
|
2733 treat them normally. */ |
58780
7f1f68f88ae8
(regex_compile): Fix end-of-pattern case for space.
Richard M. Stallman <rms@gnu.org>
parents:
58328
diff
changeset
|
2734 if (p1 != pend |
7f1f68f88ae8
(regex_compile): Fix end-of-pattern case for space.
Richard M. Stallman <rms@gnu.org>
parents:
58328
diff
changeset
|
2735 && (*p1 == '*' || *p1 == '+' || *p1 == '?' |
58325
d82983edcbe6
(regex_compile): Substitute whitespace_regexp for spaces, if it is nonzero.
Richard M. Stallman <rms@gnu.org>
parents:
57665
diff
changeset
|
2736 || (*p1 == '\\' && p1 + 1 != pend && p1[1] == '{'))) |
d82983edcbe6
(regex_compile): Substitute whitespace_regexp for spaces, if it is nonzero.
Richard M. Stallman <rms@gnu.org>
parents:
57665
diff
changeset
|
2737 goto normal_char; |
d82983edcbe6
(regex_compile): Substitute whitespace_regexp for spaces, if it is nonzero.
Richard M. Stallman <rms@gnu.org>
parents:
57665
diff
changeset
|
2738 |
d82983edcbe6
(regex_compile): Substitute whitespace_regexp for spaces, if it is nonzero.
Richard M. Stallman <rms@gnu.org>
parents:
57665
diff
changeset
|
2739 /* Replace the spaces with the whitespace regexp. */ |
d82983edcbe6
(regex_compile): Substitute whitespace_regexp for spaces, if it is nonzero.
Richard M. Stallman <rms@gnu.org>
parents:
57665
diff
changeset
|
2740 in_subpattern = 1; |
d82983edcbe6
(regex_compile): Substitute whitespace_regexp for spaces, if it is nonzero.
Richard M. Stallman <rms@gnu.org>
parents:
57665
diff
changeset
|
2741 main_p = p1; |
d82983edcbe6
(regex_compile): Substitute whitespace_regexp for spaces, if it is nonzero.
Richard M. Stallman <rms@gnu.org>
parents:
57665
diff
changeset
|
2742 main_pend = pend; |
d82983edcbe6
(regex_compile): Substitute whitespace_regexp for spaces, if it is nonzero.
Richard M. Stallman <rms@gnu.org>
parents:
57665
diff
changeset
|
2743 main_pattern = pattern; |
d82983edcbe6
(regex_compile): Substitute whitespace_regexp for spaces, if it is nonzero.
Richard M. Stallman <rms@gnu.org>
parents:
57665
diff
changeset
|
2744 p = pattern = whitespace_regexp; |
d82983edcbe6
(regex_compile): Substitute whitespace_regexp for spaces, if it is nonzero.
Richard M. Stallman <rms@gnu.org>
parents:
57665
diff
changeset
|
2745 pend = p + strlen (p); |
d82983edcbe6
(regex_compile): Substitute whitespace_regexp for spaces, if it is nonzero.
Richard M. Stallman <rms@gnu.org>
parents:
57665
diff
changeset
|
2746 break; |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
2747 } |
58325
d82983edcbe6
(regex_compile): Substitute whitespace_regexp for spaces, if it is nonzero.
Richard M. Stallman <rms@gnu.org>
parents:
57665
diff
changeset
|
2748 |
18262 | 2749 case '^': |
2750 { | |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
2751 if ( /* If at start of pattern, it's an operator. */ |
18262 | 2752 p == pattern + 1 |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
2753 /* If context independent, it's an operator. */ |
18262 | 2754 || syntax & RE_CONTEXT_INDEP_ANCHORS |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
2755 /* Otherwise, depends on what's come before. */ |
18262 | 2756 || 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
|
2757 BUF_PUSH ((syntax & RE_NO_NEWLINE_ANCHOR) ? begbuf : begline); |
18262 | 2758 else |
2759 goto normal_char; | |
2760 } | |
2761 break; | |
2762 | |
2763 | |
2764 case '$': | |
2765 { | |
2766 if ( /* If at end of pattern, it's an operator. */ | |
2767 p == pend | |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
2768 /* If context independent, it's an operator. */ |
18262 | 2769 || syntax & RE_CONTEXT_INDEP_ANCHORS |
2770 /* Otherwise, depends on what's next. */ | |
2771 || 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
|
2772 BUF_PUSH ((syntax & RE_NO_NEWLINE_ANCHOR) ? endbuf : endline); |
18262 | 2773 else |
2774 goto normal_char; | |
2775 } | |
2776 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
|
2777 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2778 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2779 case '+': |
18262 | 2780 case '?': |
2781 if ((syntax & RE_BK_PLUS_QM) | |
2782 || (syntax & RE_LIMITED_OPS)) | |
2783 goto normal_char; | |
2784 handle_plus: | |
2785 case '*': | |
2786 /* If there is no previous pattern... */ | |
2787 if (!laststart) | |
2788 { | |
2789 if (syntax & RE_CONTEXT_INVALID_OPS) | |
2790 FREE_STACK_RETURN (REG_BADRPT); | |
2791 else if (!(syntax & RE_CONTEXT_INDEP_OPS)) | |
2792 goto normal_char; | |
2793 } | |
2794 | |
2795 { | |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
2796 /* 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
|
2797 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
|
2798 boolean greedy = 1; |
18262 | 2799 |
2800 /* If there is a sequence of repetition chars, collapse it | |
2801 down to just one (the right one). We can't combine | |
2802 interval operators with these because of, e.g., `a{2}*', | |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
2803 which should only match an even number of `a's. */ |
18262 | 2804 |
2805 for (;;) | |
2806 { | |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
2807 if ((syntax & RE_FRUGAL) |
26906
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2808 && 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
|
2809 greedy = 0; |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2810 else |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2811 { |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2812 zero_times_ok |= c != '+'; |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2813 many_times_ok |= c != '?'; |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2814 } |
18262 | 2815 |
2816 if (p == pend) | |
2817 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
|
2818 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
|
2819 || (!(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
|
2820 && (*p == '+' || *p == '?'))) |
18262 | 2821 ; |
28372
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2822 else if (syntax & RE_BK_PLUS_QM && *p == '\\') |
18262 | 2823 { |
28372
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2824 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
|
2825 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
|
2826 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
|
2827 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
|
2828 else |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2829 break; |
18262 | 2830 } |
2831 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
|
2832 break; |
18262 | 2833 /* 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
|
2834 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
|
2835 } |
18262 | 2836 |
2837 /* Star, etc. applied to an empty pattern is equivalent | |
2838 to an empty pattern. */ | |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2839 if (!laststart || laststart == b) |
18262 | 2840 break; |
2841 | |
2842 /* Now we know whether or not zero matches is allowed | |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
2843 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
|
2844 if (greedy) |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2845 { |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2846 if (many_times_ok) |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2847 { |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2848 boolean simple = skip_one_char (laststart) == b; |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2849 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
|
2850 re_opcode_t ofj = |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
2851 /* Check if the loop can match the empty string. */ |
47368
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
2852 (simple || !analyse_first (laststart, b, NULL, 0)) |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
2853 ? on_failure_jump : on_failure_jump_loop; |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2854 assert (skip_one_char (laststart) <= b); |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49276
diff
changeset
|
2855 |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2856 if (!zero_times_ok && simple) |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2857 { /* 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
|
2858 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
|
2859 into PP* if P is simple. */ |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2860 unsigned char *p1, *p2; |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2861 startoffset = b - laststart; |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2862 GET_BUFFER_SPACE (startoffset); |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2863 p1 = b; p2 = laststart; |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2864 while (p2 < p1) |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2865 *b++ = *p2++; |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2866 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
|
2867 } |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2868 |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2869 GET_BUFFER_SPACE (6); |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2870 if (!zero_times_ok) |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2871 /* A + loop. */ |
28380
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
2872 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
|
2873 else |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2874 /* 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
|
2875 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
|
2876 that yet, we leave the decision up to |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2877 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
|
2878 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
|
2879 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
|
2880 b += 3; |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2881 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
|
2882 b += 3; |
18262 | 2883 } |
2884 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
|
2885 { |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2886 /* A simple ? pattern. */ |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2887 assert (zero_times_ok); |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2888 GET_BUFFER_SPACE (3); |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2889 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
|
2890 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
|
2891 } |
26906
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2892 } |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2893 else /* not greedy */ |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2894 { /* 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
|
2895 |
28342
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
2896 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
|
2897 if (many_times_ok) |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2898 { |
28380
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
2899 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
|
2900 |
47368
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
2901 /* The non-greedy multiple match looks like |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
2902 a repeat..until: we only need a conditional jump |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
2903 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
|
2904 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
|
2905 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
|
2906 : 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
|
2907 b += 3; |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2908 if (zero_times_ok) |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2909 { |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2910 /* 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
|
2911 To also match zero times, we need to first jump to |
47368
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
2912 the end of the loop (its conditional jump). */ |
26906
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2913 INSERT_JUMP (jump, laststart, b); |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2914 b += 3; |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2915 } |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2916 } |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2917 else |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2918 { |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2919 /* non-greedy a?? */ |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2920 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
|
2921 b += 3; |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2922 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
|
2923 b += 3; |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2924 } |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2925 } |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2926 } |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2927 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
|
2928 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
|
2929 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2930 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2931 case '.': |
18262 | 2932 laststart = b; |
2933 BUF_PUSH (anychar); | |
2934 break; | |
2935 | |
2936 | |
2937 case '[': | |
2938 { | |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2939 CLEAR_RANGE_TABLE_WORK_USED (range_table_work); |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2940 |
18262 | 2941 if (p == pend) FREE_STACK_RETURN (REG_EBRACK); |
2942 | |
2943 /* Ensure that we have enough space to push a charset: the | |
2944 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
|
2945 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
|
2946 |
18262 | 2947 laststart = b; |
2948 | |
2949 /* We test `*p == '^' twice, instead of using an if | |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
2950 statement, so we only need one BUF_PUSH. */ |
18262 | 2951 BUF_PUSH (*p == '^' ? charset_not : charset); |
2952 if (*p == '^') | |
2953 p++; | |
2954 | |
2955 /* Remember the first position in the bracket expression. */ | |
2956 p1 = p; | |
2957 | |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
2958 /* Push the number of bytes in the bitmap. */ |
18262 | 2959 BUF_PUSH ((1 << BYTEWIDTH) / BYTEWIDTH); |
2960 | |
2961 /* Clear the whole map. */ | |
2962 bzero (b, (1 << BYTEWIDTH) / BYTEWIDTH); | |
2963 | |
2964 /* charset_not matches newline according to a syntax bit. */ | |
2965 if ((re_opcode_t) b[-2] == charset_not | |
2966 && (syntax & RE_HAT_LISTS_NOT_NEWLINE)) | |
2967 SET_LIST_BIT ('\n'); | |
2968 | |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
2969 /* Read in characters and ranges, setting map bits. */ |
18262 | 2970 for (;;) |
2971 { | |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2972 boolean escaped_char = false; |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
2973 const unsigned char *p2 = p; |
90757
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
2974 re_wchar_t ch, c2; |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2975 |
18262 | 2976 if (p == pend) FREE_STACK_RETURN (REG_EBRACK); |
2977 | |
47008
c299d527a088
(PATFETCH): Remove the translating fetch.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44145
diff
changeset
|
2978 /* Don't translate yet. The range TRANSLATE(X..Y) cannot |
c299d527a088
(PATFETCH): Remove the translating fetch.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44145
diff
changeset
|
2979 always be determined from TRANSLATE(X) and TRANSLATE(Y) |
c299d527a088
(PATFETCH): Remove the translating fetch.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44145
diff
changeset
|
2980 So the translation is done later in a loop. Example: |
c299d527a088
(PATFETCH): Remove the translating fetch.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44145
diff
changeset
|
2981 (let ((case-fold-search t)) (string-match "[A-_]" "A")) */ |
18262 | 2982 PATFETCH (c); |
2983 | |
2984 /* \ might escape characters inside [...] and [^...]. */ | |
2985 if ((syntax & RE_BACKSLASH_ESCAPE_IN_LISTS) && c == '\\') | |
2986 { | |
2987 if (p == pend) FREE_STACK_RETURN (REG_EESCAPE); | |
16010 | 2988 |
2989 PATFETCH (c); | |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2990 escaped_char = true; |
18262 | 2991 } |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2992 else |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2993 { |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
2994 /* Could be the end of the bracket expression. If it's |
19184 | 2995 not (i.e., when the bracket expression is `[]' so |
2996 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
|
2997 if (c == ']' && p2 != p1) |
19184 | 2998 break; |
18262 | 2999 } |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3000 |
18262 | 3001 /* See if we're at the beginning of a possible character |
3002 class. */ | |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3003 |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
3004 if (!escaped_char && |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
3005 syntax & RE_CHAR_CLASSES && c == '[' && *p == ':') |
19184 | 3006 { |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
3007 /* Leave room for the null. */ |
31360
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
3008 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
|
3009 const unsigned char *class_beg; |
18262 | 3010 |
3011 PATFETCH (c); | |
3012 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
|
3013 class_beg = p; |
18262 | 3014 |
3015 /* If pattern is `[[:'. */ | |
3016 if (p == pend) FREE_STACK_RETURN (REG_EBRACK); | |
3017 | |
3018 for (;;) | |
3019 { | |
31360
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
3020 PATFETCH (c); |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
3021 if ((c == ':' && *p == ']') || p == pend) |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
3022 break; |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
3023 if (c1 < CHAR_CLASS_MAX_LENGTH) |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
3024 str[c1++] = c; |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
3025 else |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
3026 /* 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
|
3027 str[0] = '\0'; |
18262 | 3028 } |
3029 str[c1] = '\0'; | |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3030 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3031 /* If isn't a word bracketed by `[:' and `:]': |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3032 undo the ending character, the letters, and |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3033 leave the leading `:' and `[' (but set bits for |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3034 them). */ |
18262 | 3035 if (c == ':' && *p == ']') |
3036 { | |
31360
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
3037 re_wctype_t cc; |
89483 | 3038 int limit; |
31360
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
3039 |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
3040 cc = re_wctype (str); |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
3041 |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
3042 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
|
3043 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
|
3044 |
31360
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
3045 /* 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
|
3046 class. */ |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
3047 PATFETCH (c); |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
3048 |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
3049 if (p == pend) FREE_STACK_RETURN (REG_EBRACK); |
18262 | 3050 |
90757
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
3051 #ifndef emacs |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
3052 for (ch = 0; ch < (1 << BYTEWIDTH); ++ch) |
89483 | 3053 if (re_iswctype (btowc (ch), cc)) |
3054 { | |
3055 c = TRANSLATE (ch); | |
90727
a664c8170666
(regex_compile): Synch with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90718
diff
changeset
|
3056 if (c < (1 << BYTEWIDTH)) |
a664c8170666
(regex_compile): Synch with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90718
diff
changeset
|
3057 SET_LIST_BIT (c); |
89483 | 3058 } |
90757
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
3059 #else /* emacs */ |
25440
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
3060 /* 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
|
3061 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
|
3062 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
|
3063 they can only match ASCII characters. We |
31360
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
3064 don't need to handle them for multibyte. |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
3065 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
|
3066 |
90757
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
3067 for (ch = 0; ch < 256; ++ch) |
18262 | 3068 { |
90757
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
3069 c = RE_CHAR_TO_MULTIBYTE (ch); |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
3070 if (! CHAR_BYTE8_P (c) |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
3071 && re_iswctype (c, cc)) |
89483 | 3072 { |
90757
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
3073 SET_LIST_BIT (ch); |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
3074 c1 = TRANSLATE (c); |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
3075 if (c1 == c) |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
3076 continue; |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
3077 if (ASCII_CHAR_P (c1)) |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
3078 SET_LIST_BIT (c1); |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
3079 else if ((c1 = RE_CHAR_TO_UNIBYTE (c1)) >= 0) |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
3080 SET_LIST_BIT (c1); |
89483 | 3081 } |
18262 | 3082 } |
90757
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
3083 SET_RANGE_TABLE_WORK_AREA_BIT |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
3084 (range_table_work, re_wctype_to_bit (cc)); |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
3085 #endif /* emacs */ |
73229
3501fcb2e68c
(regex_compile): Set the new `used_syntax' bit.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
73056
diff
changeset
|
3086 /* In most cases the matching rule for char classes |
3501fcb2e68c
(regex_compile): Set the new `used_syntax' bit.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
73056
diff
changeset
|
3087 only uses the syntax table for multibyte chars, |
3501fcb2e68c
(regex_compile): Set the new `used_syntax' bit.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
73056
diff
changeset
|
3088 so that the content of the syntax-table it is not |
3501fcb2e68c
(regex_compile): Set the new `used_syntax' bit.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
73056
diff
changeset
|
3089 hardcoded in the range_table. SPACE and WORD are |
3501fcb2e68c
(regex_compile): Set the new `used_syntax' bit.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
73056
diff
changeset
|
3090 the two exceptions. */ |
3501fcb2e68c
(regex_compile): Set the new `used_syntax' bit.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
73056
diff
changeset
|
3091 if ((1 << cc) & ((1 << RECC_SPACE) | (1 << RECC_WORD))) |
3501fcb2e68c
(regex_compile): Set the new `used_syntax' bit.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
73056
diff
changeset
|
3092 bufp->used_syntax = 1; |
3501fcb2e68c
(regex_compile): Set the new `used_syntax' bit.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
73056
diff
changeset
|
3093 |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3094 /* Repeat the loop. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3095 continue; |
18262 | 3096 } |
3097 else | |
3098 { | |
28372
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
3099 /* 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
|
3100 p = class_beg; |
18262 | 3101 SET_LIST_BIT ('['); |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3102 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3103 /* Because the `:' may starts the range, we |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3104 can't simply set bit and repeat the loop. |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
3105 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
|
3106 c = ':'; |
18262 | 3107 } |
3108 } | |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3109 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3110 if (p < pend && p[0] == '-' && p[1] != ']') |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3111 { |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3112 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3113 /* Discard the `-'. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3114 PATFETCH (c1); |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3115 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3116 /* Fetch the character which ends the range. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3117 PATFETCH (c1); |
90757
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
3118 #ifdef emacs |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
3119 if (CHAR_BYTE8_P (c1) |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
3120 && ! ASCII_CHAR_P (c) && ! CHAR_BYTE8_P (c)) |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
3121 /* Treat the range from a multibyte character to |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
3122 raw-byte character as empty. */ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
3123 c = c1 + 1; |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
3124 #endif /* emacs */ |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3125 } |
18262 | 3126 else |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3127 /* Range from C to C. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3128 c1 = c; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3129 |
90757
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
3130 if (c > c1) |
18262 | 3131 { |
90757
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
3132 if (syntax & RE_NO_EMPTY_RANGES) |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
3133 FREE_STACK_RETURN (REG_ERANGEX); |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
3134 /* Else, repeat the loop. */ |
18262 | 3135 } |
89455
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
3136 else |
18262 | 3137 { |
90757
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
3138 #ifndef emacs |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
3139 /* Set the range into bitmap */ |
89483 | 3140 for (; c <= c1; c++) |
16010 | 3141 { |
90757
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
3142 ch = TRANSLATE (c); |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
3143 if (ch < (1 << BYTEWIDTH)) |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
3144 SET_LIST_BIT (ch); |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
3145 } |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
3146 #else /* emacs */ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
3147 if (c < 128) |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3148 { |
90757
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
3149 ch = MIN (127, c1); |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
3150 SETUP_ASCII_RANGE (range_table_work, c, ch); |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
3151 c = ch + 1; |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
3152 if (CHAR_BYTE8_P (c1)) |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
3153 c = BYTE8_TO_CHAR (128); |
16010 | 3154 } |
90757
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
3155 if (c <= c1) |
16010 | 3156 { |
90757
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
3157 if (CHAR_BYTE8_P (c)) |
74323
ad2b5e25b8f0
(regex_compile): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
74277
diff
changeset
|
3158 { |
90757
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
3159 c = CHAR_TO_BYTE8 (c); |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
3160 c1 = CHAR_TO_BYTE8 (c1); |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
3161 for (; c <= c1; c++) |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
3162 SET_LIST_BIT (c); |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
3163 } |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
3164 else if (multibyte) |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
3165 { |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
3166 SETUP_MULTIBYTE_RANGE (range_table_work, c, c1); |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
3167 } |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
3168 else |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
3169 { |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
3170 SETUP_UNIBYTE_RANGE (range_table_work, c, c1); |
74323
ad2b5e25b8f0
(regex_compile): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
74277
diff
changeset
|
3171 } |
21348
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
3172 } |
90757
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
3173 #endif /* emacs */ |
18262 | 3174 } |
16010 | 3175 } |
3176 | |
18262 | 3177 /* Discard any (non)matching list bytes that are all 0 at the |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
3178 end of the map. Decrease the map-length byte too. */ |
18262 | 3179 while ((int) b[-1] > 0 && b[b[-1] - 1] == 0) |
3180 b[-1]--; | |
3181 b += b[-1]; | |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3182 |
25440
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
3183 /* 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
|
3184 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
|
3185 || RANGE_TABLE_WORK_BITS (range_table_work)) |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3186 { |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3187 int i; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3188 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
|
3189 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3190 /* 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
|
3191 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
|
3192 each character. */ |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
3193 GET_BUFFER_SPACE (4 + used * 3); |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3194 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3195 /* Indicate the existence of range table. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3196 laststart[1] |= 0x80; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3197 |
25440
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
3198 /* 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
|
3199 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
|
3200 *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
|
3201 *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
|
3202 |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3203 STORE_NUMBER_AND_INCR (b, used / 2); |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3204 for (i = 0; i < used; i++) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3205 STORE_CHARACTER_AND_INCR |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3206 (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
|
3207 } |
18262 | 3208 } |
3209 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
|
3210 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3211 |
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 case '(': |
18262 | 3213 if (syntax & RE_NO_BK_PARENS) |
3214 goto handle_open; | |
3215 else | |
3216 goto normal_char; | |
3217 | |
3218 | |
3219 case ')': | |
3220 if (syntax & RE_NO_BK_PARENS) | |
3221 goto handle_close; | |
3222 else | |
3223 goto normal_char; | |
3224 | |
3225 | |
3226 case '\n': | |
3227 if (syntax & RE_NEWLINE_ALT) | |
3228 goto handle_alt; | |
3229 else | |
3230 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
|
3231 |
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 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3233 case '|': |
18262 | 3234 if (syntax & RE_NO_BK_VBAR) |
3235 goto handle_alt; | |
3236 else | |
3237 goto normal_char; | |
3238 | |
3239 | |
3240 case '{': | |
3241 if (syntax & RE_INTERVALS && syntax & RE_NO_BK_BRACES) | |
3242 goto handle_interval; | |
3243 else | |
3244 goto normal_char; | |
3245 | |
3246 | |
3247 case '\\': | |
3248 if (p == pend) FREE_STACK_RETURN (REG_EESCAPE); | |
3249 | |
3250 /* Do not translate the character after the \, so that we can | |
3251 distinguish, e.g., \B from \b, even if we normally would | |
3252 translate, e.g., B to b. */ | |
47008
c299d527a088
(PATFETCH): Remove the translating fetch.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44145
diff
changeset
|
3253 PATFETCH (c); |
18262 | 3254 |
3255 switch (c) | |
3256 { | |
3257 case '(': | |
3258 if (syntax & RE_NO_BK_PARENS) | |
3259 goto normal_backslash; | |
3260 | |
3261 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
|
3262 { |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3263 int shy = 0; |
81329
465e2d55267d
(regex_compile): Remove the `regnum' counter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
75348
diff
changeset
|
3264 regnum_t regnum = 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
|
3265 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
|
3266 { |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3267 /* 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
|
3268 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
|
3269 { |
28372
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
3270 PATFETCH (c); /* Gobble up the '?'. */ |
81329
465e2d55267d
(regex_compile): Remove the `regnum' counter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
75348
diff
changeset
|
3271 while (!shy) |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3272 { |
81329
465e2d55267d
(regex_compile): Remove the `regnum' counter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
75348
diff
changeset
|
3273 PATFETCH (c); |
465e2d55267d
(regex_compile): Remove the `regnum' counter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
75348
diff
changeset
|
3274 switch (c) |
465e2d55267d
(regex_compile): Remove the `regnum' counter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
75348
diff
changeset
|
3275 { |
465e2d55267d
(regex_compile): Remove the `regnum' counter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
75348
diff
changeset
|
3276 case ':': shy = 1; break; |
465e2d55267d
(regex_compile): Remove the `regnum' counter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
75348
diff
changeset
|
3277 case '0': |
465e2d55267d
(regex_compile): Remove the `regnum' counter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
75348
diff
changeset
|
3278 /* An explicitly specified regnum must start |
465e2d55267d
(regex_compile): Remove the `regnum' counter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
75348
diff
changeset
|
3279 with non-0. */ |
465e2d55267d
(regex_compile): Remove the `regnum' counter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
75348
diff
changeset
|
3280 if (regnum == 0) |
465e2d55267d
(regex_compile): Remove the `regnum' counter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
75348
diff
changeset
|
3281 FREE_STACK_RETURN (REG_BADPAT); |
465e2d55267d
(regex_compile): Remove the `regnum' counter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
75348
diff
changeset
|
3282 case '1': case '2': case '3': case '4': |
465e2d55267d
(regex_compile): Remove the `regnum' counter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
75348
diff
changeset
|
3283 case '5': case '6': case '7': case '8': case '9': |
465e2d55267d
(regex_compile): Remove the `regnum' counter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
75348
diff
changeset
|
3284 regnum = 10*regnum + (c - '0'); break; |
465e2d55267d
(regex_compile): Remove the `regnum' counter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
75348
diff
changeset
|
3285 default: |
465e2d55267d
(regex_compile): Remove the `regnum' counter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
75348
diff
changeset
|
3286 /* Only (?:...) is supported right now. */ |
465e2d55267d
(regex_compile): Remove the `regnum' counter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
75348
diff
changeset
|
3287 FREE_STACK_RETURN (REG_BADPAT); |
465e2d55267d
(regex_compile): Remove the `regnum' counter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
75348
diff
changeset
|
3288 } |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3289 } |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3290 } |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3291 } |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3292 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3293 if (!shy) |
81329
465e2d55267d
(regex_compile): Remove the `regnum' counter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
75348
diff
changeset
|
3294 regnum = ++bufp->re_nsub; |
465e2d55267d
(regex_compile): Remove the `regnum' counter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
75348
diff
changeset
|
3295 else if (regnum) |
465e2d55267d
(regex_compile): Remove the `regnum' counter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
75348
diff
changeset
|
3296 { /* It's actually not shy, but explicitly numbered. */ |
465e2d55267d
(regex_compile): Remove the `regnum' counter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
75348
diff
changeset
|
3297 shy = 0; |
465e2d55267d
(regex_compile): Remove the `regnum' counter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
75348
diff
changeset
|
3298 if (regnum > bufp->re_nsub) |
465e2d55267d
(regex_compile): Remove the `regnum' counter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
75348
diff
changeset
|
3299 bufp->re_nsub = regnum; |
465e2d55267d
(regex_compile): Remove the `regnum' counter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
75348
diff
changeset
|
3300 else if (regnum > bufp->re_nsub |
465e2d55267d
(regex_compile): Remove the `regnum' counter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
75348
diff
changeset
|
3301 /* Ideally, we'd want to check that the specified |
465e2d55267d
(regex_compile): Remove the `regnum' counter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
75348
diff
changeset
|
3302 group can't have matched (i.e. all subgroups |
465e2d55267d
(regex_compile): Remove the `regnum' counter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
75348
diff
changeset
|
3303 using the same regnum are in other branches of |
465e2d55267d
(regex_compile): Remove the `regnum' counter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
75348
diff
changeset
|
3304 OR patterns), but we don't currently keep track |
465e2d55267d
(regex_compile): Remove the `regnum' counter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
75348
diff
changeset
|
3305 of enough info to do that easily. */ |
465e2d55267d
(regex_compile): Remove the `regnum' counter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
75348
diff
changeset
|
3306 || group_in_compile_stack (compile_stack, regnum)) |
465e2d55267d
(regex_compile): Remove the `regnum' counter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
75348
diff
changeset
|
3307 FREE_STACK_RETURN (REG_BADPAT); |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3308 } |
81329
465e2d55267d
(regex_compile): Remove the `regnum' counter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
75348
diff
changeset
|
3309 else |
465e2d55267d
(regex_compile): Remove the `regnum' counter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
75348
diff
changeset
|
3310 /* It's really shy. */ |
465e2d55267d
(regex_compile): Remove the `regnum' counter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
75348
diff
changeset
|
3311 regnum = - bufp->re_nsub; |
18262 | 3312 |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
3313 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
|
3314 { |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
3315 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
|
3316 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
|
3317 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
|
3318 |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
3319 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
|
3320 } |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
3321 |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
3322 /* These are the values to restore when we hit end of this |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
3323 group. They are all relative offsets, so that if the |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
3324 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
|
3325 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
|
3326 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
|
3327 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
|
3328 = 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
|
3329 COMPILE_STACK_TOP.laststart_offset = b - bufp->buffer; |
81329
465e2d55267d
(regex_compile): Remove the `regnum' counter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
75348
diff
changeset
|
3330 COMPILE_STACK_TOP.regnum = regnum; |
465e2d55267d
(regex_compile): Remove the `regnum' counter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
75348
diff
changeset
|
3331 |
465e2d55267d
(regex_compile): Remove the `regnum' counter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
75348
diff
changeset
|
3332 /* Do not push a start_memory for groups beyond the last one |
465e2d55267d
(regex_compile): Remove the `regnum' counter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
75348
diff
changeset
|
3333 we can represent in the compiled pattern. */ |
465e2d55267d
(regex_compile): Remove the `regnum' counter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
75348
diff
changeset
|
3334 if (regnum <= MAX_REGNUM && regnum > 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
|
3335 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
|
3336 |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
3337 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
|
3338 |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
3339 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
|
3340 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
|
3341 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
|
3342 /* 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
|
3343 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
|
3344 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
|
3345 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
|
3346 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
|
3347 } |
18262 | 3348 |
3349 case ')': | |
3350 if (syntax & RE_NO_BK_PARENS) goto normal_backslash; | |
3351 | |
3352 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
|
3353 { |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3354 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
|
3355 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
|
3356 else |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3357 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
|
3358 } |
18262 | 3359 |
3360 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
|
3361 FIXUP_ALT_JUMP (); |
18262 | 3362 |
3363 /* See similar code for backslashed left paren above. */ | |
3364 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
|
3365 { |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3366 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
|
3367 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
|
3368 else |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3369 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
|
3370 } |
18262 | 3371 |
3372 /* Since we just checked for an empty stack above, this | |
3373 ``can't happen''. */ | |
3374 assert (compile_stack.avail != 0); | |
3375 { | |
3376 /* We don't just want to restore into `regnum', because | |
3377 later groups should continue to be numbered higher, | |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
3378 as in `(ab)c(de)' -- the second group is #2. */ |
81329
465e2d55267d
(regex_compile): Remove the `regnum' counter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
75348
diff
changeset
|
3379 regnum_t regnum; |
18262 | 3380 |
3381 compile_stack.avail--; | |
3382 begalt = bufp->buffer + COMPILE_STACK_TOP.begalt_offset; | |
3383 fixup_alt_jump | |
3384 = COMPILE_STACK_TOP.fixup_alt_jump | |
3385 ? bufp->buffer + COMPILE_STACK_TOP.fixup_alt_jump - 1 | |
3386 : 0; | |
3387 laststart = bufp->buffer + COMPILE_STACK_TOP.laststart_offset; | |
81329
465e2d55267d
(regex_compile): Remove the `regnum' counter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
75348
diff
changeset
|
3388 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
|
3389 /* 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
|
3390 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
|
3391 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
|
3392 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
|
3393 |
18262 | 3394 /* We're at the end of the group, so now we know how many |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
3395 groups were inside this one. */ |
81329
465e2d55267d
(regex_compile): Remove the `regnum' counter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
75348
diff
changeset
|
3396 if (regnum <= MAX_REGNUM && regnum > 0) |
465e2d55267d
(regex_compile): Remove the `regnum' counter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
75348
diff
changeset
|
3397 BUF_PUSH_2 (stop_memory, regnum); |
18262 | 3398 } |
3399 break; | |
3400 | |
3401 | |
3402 case '|': /* `\|'. */ | |
3403 if (syntax & RE_LIMITED_OPS || syntax & RE_NO_BK_VBAR) | |
3404 goto normal_backslash; | |
3405 handle_alt: | |
3406 if (syntax & RE_LIMITED_OPS) | |
3407 goto normal_char; | |
3408 | |
3409 /* Insert before the previous alternative a jump which | |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
3410 jumps to this alternative if the former fails. */ |
18262 | 3411 GET_BUFFER_SPACE (3); |
3412 INSERT_JUMP (on_failure_jump, begalt, b + 6); | |
3413 pending_exact = 0; | |
3414 b += 3; | |
3415 | |
3416 /* The alternative before this one has a jump after it | |
3417 which gets executed if it gets matched. Adjust that | |
3418 jump so it will jump to this alternative's analogous | |
3419 jump (put in below, which in turn will jump to the next | |
3420 (if any) alternative's such jump, etc.). The last such | |
3421 jump jumps to the correct final destination. A picture: | |
3422 _____ _____ | |
3423 | | | | | |
3424 | v | v | |
3425 a | b | c | |
3426 | |
3427 If we are at `b', then fixup_alt_jump right now points to a | |
3428 three-byte space after `a'. We'll put in the jump, set | |
3429 fixup_alt_jump to right after `b', and leave behind three | |
3430 bytes which we'll fill in when we get to after `c'. */ | |
3431 | |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3432 FIXUP_ALT_JUMP (); |
18262 | 3433 |
3434 /* Mark and leave space for a jump after this alternative, | |
3435 to be filled in later either by next alternative or | |
3436 when know we're at the end of a series of alternatives. */ | |
3437 fixup_alt_jump = b; | |
3438 GET_BUFFER_SPACE (3); | |
3439 b += 3; | |
3440 | |
3441 laststart = 0; | |
3442 begalt = b; | |
3443 break; | |
3444 | |
3445 | |
3446 case '{': | |
3447 /* If \{ is a literal. */ | |
3448 if (!(syntax & RE_INTERVALS) | |
3449 /* If we're at `\{' and it's not the open-interval | |
3450 operator. */ | |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
3451 || (syntax & RE_NO_BK_BRACES)) |
18262 | 3452 goto normal_backslash; |
3453 | |
3454 handle_interval: | |
3455 { | |
3456 /* If got here, then the syntax allows intervals. */ | |
3457 | |
3458 /* 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
|
3459 int lower_bound = 0, upper_bound = -1; |
18262 | 3460 |
28372
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
3461 beg_interval = p; |
18262 | 3462 |
3463 GET_UNSIGNED_NUMBER (lower_bound); | |
3464 | |
3465 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
|
3466 GET_UNSIGNED_NUMBER (upper_bound); |
18262 | 3467 else |
3468 /* Interval such as `{1}' => match exactly once. */ | |
3469 upper_bound = lower_bound; | |
3470 | |
3471 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
|
3472 || (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
|
3473 FREE_STACK_RETURN (REG_BADBR); |
18262 | 3474 |
3475 if (!(syntax & RE_NO_BK_BRACES)) | |
3476 { | |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
3477 if (c != '\\') |
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
3478 FREE_STACK_RETURN (REG_BADBR); |
58784
5f1c0193e984
(GET_UNSIGNED_NUMBER): Signal an error when reaching the end.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58780
diff
changeset
|
3479 if (p == pend) |
5f1c0193e984
(GET_UNSIGNED_NUMBER): Signal an error when reaching the end.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58780
diff
changeset
|
3480 FREE_STACK_RETURN (REG_EESCAPE); |
18262 | 3481 PATFETCH (c); |
3482 } | |
3483 | |
3484 if (c != '}') | |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
3485 FREE_STACK_RETURN (REG_BADBR); |
18262 | 3486 |
3487 /* We just parsed a valid interval. */ | |
3488 | |
3489 /* If it's invalid to have no preceding re. */ | |
3490 if (!laststart) | |
3491 { | |
3492 if (syntax & RE_CONTEXT_INVALID_OPS) | |
3493 FREE_STACK_RETURN (REG_BADRPT); | |
3494 else if (syntax & RE_CONTEXT_INDEP_OPS) | |
3495 laststart = b; | |
3496 else | |
3497 goto unfetch_interval; | |
3498 } | |
3499 | |
47368
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3500 if (upper_bound == 0) |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3501 /* If the upper bound is zero, just drop the sub pattern |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3502 altogether. */ |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3503 b = laststart; |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3504 else if (lower_bound == 1 && upper_bound == 1) |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3505 /* Just match it once: nothing to do here. */ |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3506 ; |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3507 |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3508 /* Otherwise, we have a nontrivial interval. When |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3509 we're all done, the pattern will look like: |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3510 set_number_at <jump count> <upper bound> |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3511 set_number_at <succeed_n count> <lower bound> |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3512 succeed_n <after jump addr> <succeed_n count> |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3513 <body of loop> |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3514 jump_n <succeed_n addr> <jump count> |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3515 (The upper bound and `jump_n' are omitted if |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3516 `upper_bound' is 1, though.) */ |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3517 else |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3518 { /* If the upper bound is > 1, we need to insert |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3519 more at the end of the loop. */ |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3520 unsigned int nbytes = (upper_bound < 0 ? 3 |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3521 : upper_bound > 1 ? 5 : 0); |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3522 unsigned int startoffset = 0; |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3523 |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3524 GET_BUFFER_SPACE (20); /* We might use less. */ |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3525 |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3526 if (lower_bound == 0) |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3527 { |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3528 /* A succeed_n that starts with 0 is really a |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3529 a simple on_failure_jump_loop. */ |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3530 INSERT_JUMP (on_failure_jump_loop, laststart, |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3531 b + 3 + nbytes); |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3532 b += 3; |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3533 } |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3534 else |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3535 { |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3536 /* Initialize lower bound of the `succeed_n', even |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3537 though it will be set during matching by its |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3538 attendant `set_number_at' (inserted next), |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3539 because `re_compile_fastmap' needs to know. |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3540 Jump to the `jump_n' we might insert below. */ |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3541 INSERT_JUMP2 (succeed_n, laststart, |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3542 b + 5 + nbytes, |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3543 lower_bound); |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3544 b += 5; |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3545 |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3546 /* Code to initialize the lower bound. Insert |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
3547 before the `succeed_n'. The `5' is the last two |
47368
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3548 bytes of this `set_number_at', plus 3 bytes of |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3549 the following `succeed_n'. */ |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3550 insert_op2 (set_number_at, laststart, 5, lower_bound, b); |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3551 b += 5; |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3552 startoffset += 5; |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3553 } |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3554 |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3555 if (upper_bound < 0) |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3556 { |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3557 /* A negative upper bound stands for infinity, |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3558 in which case it degenerates to a plain jump. */ |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3559 STORE_JUMP (jump, b, laststart + startoffset); |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3560 b += 3; |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3561 } |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3562 else if (upper_bound > 1) |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3563 { /* More than one repetition is allowed, so |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3564 append a backward jump to the `succeed_n' |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3565 that starts this interval. |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3566 |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3567 When we've reached this during matching, |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3568 we'll have matched the interval once, so |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3569 jump back only `upper_bound - 1' times. */ |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3570 STORE_JUMP2 (jump_n, b, laststart + startoffset, |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3571 upper_bound - 1); |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3572 b += 5; |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3573 |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3574 /* The location we want to set is the second |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3575 parameter of the `jump_n'; that is `b-2' as |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3576 an absolute address. `laststart' will be |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3577 the `set_number_at' we're about to insert; |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3578 `laststart+3' the number to set, the source |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3579 for the relative address. But we are |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3580 inserting into the middle of the pattern -- |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3581 so everything is getting moved up by 5. |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3582 Conclusion: (b - 2) - (laststart + 3) + 5, |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3583 i.e., b - laststart. |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3584 |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3585 We insert this at the beginning of the loop |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3586 so that if we fail during matching, we'll |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3587 reinitialize the bounds. */ |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3588 insert_op2 (set_number_at, laststart, b - laststart, |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3589 upper_bound - 1, b); |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3590 b += 5; |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3591 } |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
3592 } |
18262 | 3593 pending_exact = 0; |
3594 beg_interval = NULL; | |
3595 } | |
3596 break; | |
3597 | |
3598 unfetch_interval: | |
3599 /* If an invalid interval, match the characters as literals. */ | |
3600 assert (beg_interval); | |
3601 p = beg_interval; | |
3602 beg_interval = NULL; | |
3603 | |
3604 /* 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
|
3605 c = '{'; |
18262 | 3606 |
3607 if (!(syntax & RE_NO_BK_BRACES)) | |
3608 { | |
28372
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
3609 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
|
3610 goto normal_backslash; |
18262 | 3611 } |
28372
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
3612 else |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
3613 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
|
3614 |
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 #ifdef emacs |
18262 | 3616 /* There is no way to specify the before_dot and after_dot |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
3617 operators. rms says this is ok. --karl */ |
18262 | 3618 case '=': |
3619 BUF_PUSH (at_dot); | |
3620 break; | |
3621 | |
3622 case 's': | |
3623 laststart = b; | |
3624 PATFETCH (c); | |
3625 BUF_PUSH_2 (syntaxspec, syntax_spec_code[c]); | |
3626 break; | |
3627 | |
3628 case 'S': | |
3629 laststart = b; | |
3630 PATFETCH (c); | |
3631 BUF_PUSH_2 (notsyntaxspec, syntax_spec_code[c]); | |
3632 break; | |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3633 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3634 case 'c': |
16010 | 3635 laststart = b; |
47008
c299d527a088
(PATFETCH): Remove the translating fetch.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44145
diff
changeset
|
3636 PATFETCH (c); |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3637 BUF_PUSH_2 (categoryspec, c); |
16010 | 3638 break; |
3639 | |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3640 case 'C': |
16010 | 3641 laststart = b; |
47008
c299d527a088
(PATFETCH): Remove the translating fetch.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44145
diff
changeset
|
3642 PATFETCH (c); |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3643 BUF_PUSH_2 (notcategoryspec, c); |
16010 | 3644 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
|
3645 #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
|
3646 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3647 |
18262 | 3648 case 'w': |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
3649 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
|
3650 goto normal_char; |
18262 | 3651 laststart = b; |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3652 BUF_PUSH_2 (syntaxspec, Sword); |
18262 | 3653 break; |
3654 | |
3655 | |
3656 case 'W': | |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
3657 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
|
3658 goto normal_char; |
18262 | 3659 laststart = b; |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3660 BUF_PUSH_2 (notsyntaxspec, Sword); |
18262 | 3661 break; |
3662 | |
3663 | |
3664 case '<': | |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
3665 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
|
3666 goto normal_char; |
18262 | 3667 BUF_PUSH (wordbeg); |
3668 break; | |
3669 | |
3670 case '>': | |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
3671 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
|
3672 goto normal_char; |
18262 | 3673 BUF_PUSH (wordend); |
3674 break; | |
3675 | |
55690
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
3676 case '_': |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
3677 if (syntax & RE_NO_GNU_OPS) |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
3678 goto normal_char; |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
3679 laststart = b; |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
3680 PATFETCH (c); |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
3681 if (c == '<') |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
3682 BUF_PUSH (symbeg); |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
3683 else if (c == '>') |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
3684 BUF_PUSH (symend); |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
3685 else |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
3686 FREE_STACK_RETURN (REG_BADPAT); |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
3687 break; |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
3688 |
18262 | 3689 case 'b': |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
3690 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
|
3691 goto normal_char; |
18262 | 3692 BUF_PUSH (wordbound); |
3693 break; | |
3694 | |
3695 case 'B': | |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
3696 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
|
3697 goto normal_char; |
18262 | 3698 BUF_PUSH (notwordbound); |
3699 break; | |
3700 | |
3701 case '`': | |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
3702 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
|
3703 goto normal_char; |
18262 | 3704 BUF_PUSH (begbuf); |
3705 break; | |
3706 | |
3707 case '\'': | |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
3708 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
|
3709 goto normal_char; |
18262 | 3710 BUF_PUSH (endbuf); |
3711 break; | |
3712 | |
3713 case '1': case '2': case '3': case '4': case '5': | |
3714 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
|
3715 { |
c782e22760e0
(re_iswctype, re_wctype_to_bit): Fix braino.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32954
diff
changeset
|
3716 regnum_t reg; |
c782e22760e0
(re_iswctype, re_wctype_to_bit): Fix braino.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32954
diff
changeset
|
3717 |
c782e22760e0
(re_iswctype, re_wctype_to_bit): Fix braino.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32954
diff
changeset
|
3718 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
|
3719 goto normal_backslash; |
c782e22760e0
(re_iswctype, re_wctype_to_bit): Fix braino.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32954
diff
changeset
|
3720 |
c782e22760e0
(re_iswctype, re_wctype_to_bit): Fix braino.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32954
diff
changeset
|
3721 reg = c - '0'; |
c782e22760e0
(re_iswctype, re_wctype_to_bit): Fix braino.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32954
diff
changeset
|
3722 |
81329
465e2d55267d
(regex_compile): Remove the `regnum' counter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
75348
diff
changeset
|
3723 if (reg > bufp->re_nsub || reg < 1 |
465e2d55267d
(regex_compile): Remove the `regnum' counter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
75348
diff
changeset
|
3724 /* Can't back reference to a subexp before its end. */ |
465e2d55267d
(regex_compile): Remove the `regnum' counter.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
75348
diff
changeset
|
3725 || group_in_compile_stack (compile_stack, reg)) |
33066
c782e22760e0
(re_iswctype, re_wctype_to_bit): Fix braino.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32954
diff
changeset
|
3726 FREE_STACK_RETURN (REG_ESUBREG); |
c782e22760e0
(re_iswctype, re_wctype_to_bit): Fix braino.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32954
diff
changeset
|
3727 |
c782e22760e0
(re_iswctype, re_wctype_to_bit): Fix braino.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32954
diff
changeset
|
3728 laststart = b; |
c782e22760e0
(re_iswctype, re_wctype_to_bit): Fix braino.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32954
diff
changeset
|
3729 BUF_PUSH_2 (duplicate, reg); |
c782e22760e0
(re_iswctype, re_wctype_to_bit): Fix braino.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32954
diff
changeset
|
3730 } |
18262 | 3731 break; |
3732 | |
3733 | |
3734 case '+': | |
3735 case '?': | |
3736 if (syntax & RE_BK_PLUS_QM) | |
3737 goto handle_plus; | |
3738 else | |
3739 goto normal_backslash; | |
3740 | |
3741 default: | |
3742 normal_backslash: | |
3743 /* You might think it would be useful for \ to mean | |
3744 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
|
3745 it will never match anything. */ |
18262 | 3746 goto normal_char; |
3747 } | |
3748 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
|
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 |
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 default: |
18262 | 3752 /* 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
|
3753 normal_char: |
47008
c299d527a088
(PATFETCH): Remove the translating fetch.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44145
diff
changeset
|
3754 /* If no exactn currently being built. */ |
18262 | 3755 if (!pending_exact |
3756 | |
3757 /* If last exactn not at current position. */ | |
3758 || pending_exact + *pending_exact + 1 != b | |
3759 | |
3760 /* 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
|
3761 || *pending_exact >= (1 << BYTEWIDTH) - MAX_MULTIBYTE_LENGTH |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3762 |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
3763 /* If followed by a repetition operator. */ |
21963
b717a61747c5
(regex_compile): When checking after exactn
Richard M. Stallman <rms@gnu.org>
parents:
21838
diff
changeset
|
3764 || (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
|
3765 || ((syntax & RE_BK_PLUS_QM) |
21963
b717a61747c5
(regex_compile): When checking after exactn
Richard M. Stallman <rms@gnu.org>
parents:
21838
diff
changeset
|
3766 ? 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
|
3767 : 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
|
3768 || ((syntax & RE_INTERVALS) |
18262 | 3769 && ((syntax & RE_NO_BK_BRACES) |
21963
b717a61747c5
(regex_compile): When checking after exactn
Richard M. Stallman <rms@gnu.org>
parents:
21838
diff
changeset
|
3770 ? p != pend && *p == '{' |
b717a61747c5
(regex_compile): When checking after exactn
Richard M. Stallman <rms@gnu.org>
parents:
21838
diff
changeset
|
3771 : 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
|
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 /* Start building a new exactn. */ |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
3774 |
18262 | 3775 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
|
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 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
|
3778 pending_exact = b - 1; |
18262 | 3779 } |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3780 |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
3781 GET_BUFFER_SPACE (MAX_MULTIBYTE_LENGTH); |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
3782 { |
30752
db737e34fc36
(regex_compile) <normal_char>: Pay attention to multibyteness.
Kenichi Handa <handa@m17n.org>
parents:
29801
diff
changeset
|
3783 int len; |
db737e34fc36
(regex_compile) <normal_char>: Pay attention to multibyteness.
Kenichi Handa <handa@m17n.org>
parents:
29801
diff
changeset
|
3784 |
db737e34fc36
(regex_compile) <normal_char>: Pay attention to multibyteness.
Kenichi Handa <handa@m17n.org>
parents:
29801
diff
changeset
|
3785 if (multibyte) |
89455
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
3786 { |
90757
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
3787 c = TRANSLATE (c); |
89455
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
3788 len = CHAR_STRING (c, b); |
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
3789 b += len; |
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
3790 } |
30752
db737e34fc36
(regex_compile) <normal_char>: Pay attention to multibyteness.
Kenichi Handa <handa@m17n.org>
parents:
29801
diff
changeset
|
3791 else |
89455
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
3792 { |
90757
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
3793 c1 = RE_CHAR_TO_MULTIBYTE (c); |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
3794 if (! CHAR_BYTE8_P (c1)) |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
3795 { |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
3796 re_wchar_t c2 = TRANSLATE (c1); |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
3797 |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
3798 if (c1 != c2 && (c1 = RE_CHAR_TO_UNIBYTE (c2)) >= 0) |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
3799 c = c1; |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
3800 } |
89455
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
3801 *b++ = c; |
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
3802 len = 1; |
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
3803 } |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
3804 (*pending_exact) += len; |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
3805 } |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
3806 |
11864
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 break; |
18262 | 3808 } /* 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
|
3809 } /* 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
|
3810 |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
3811 |
11864
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 /* Through the pattern now. */ |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
3813 |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3814 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
|
3815 |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
3816 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
|
3817 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
|
3818 |
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 /* 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
|
3820 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
|
3821 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
|
3822 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
|
3823 |
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 /* 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
|
3825 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
|
3826 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3827 #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
|
3828 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
|
3829 { |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3830 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
|
3831 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
|
3832 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
|
3833 } |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
3834 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
|
3835 #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
|
3836 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3837 #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
|
3838 /* 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
|
3839 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
|
3840 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
|
3841 { |
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 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
|
3843 |
20449
fc965930c738
(TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents:
19184
diff
changeset
|
3844 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
|
3845 { |
21352
b9275822b6f5
(regex_compile) [!MATCH_MAY_ALLOCATE]: Fix paren error.
Richard M. Stallman <rms@gnu.org>
parents:
21348
diff
changeset
|
3846 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
|
3847 |
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 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
|
3849 fail_stack.stack |
69039
f717c65a39d7
* regex.c: Revert 2006-02-19 change.
Chong Yidong <cyd@stupidchicken.com>
parents:
69038
diff
changeset
|
3850 = (fail_stack_elt_t *) malloc (fail_stack.size |
69073 | 3851 * 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
|
3852 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
|
3853 fail_stack.stack |
69039
f717c65a39d7
* regex.c: Revert 2006-02-19 change.
Chong Yidong <cyd@stupidchicken.com>
parents:
69038
diff
changeset
|
3854 = (fail_stack_elt_t *) realloc (fail_stack.stack, |
69073 | 3855 (fail_stack.size |
3856 * 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
|
3857 } |
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 |
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 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
|
3860 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3861 #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
|
3862 |
52680
3614833210ba
(regex_compile): Free the stack when returning from function.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
3863 FREE_STACK_RETURN (REG_NOERROR); |
11864
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 } /* 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
|
3865 |
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 /* 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
|
3867 |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
3868 /* 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
|
3869 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3870 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
|
3871 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
|
3872 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
|
3873 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
|
3874 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
|
3875 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3876 *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
|
3877 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
|
3878 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3879 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3880 |
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 /* 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
|
3882 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3883 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
|
3884 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
|
3885 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
|
3886 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
|
3887 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
|
3888 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3889 *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
|
3890 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
|
3891 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
|
3892 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3893 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3894 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3895 /* 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
|
3896 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
|
3897 |
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 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
|
3899 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
|
3900 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
|
3901 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
|
3902 int arg; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
3903 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
|
3904 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3905 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
|
3906 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
|
3907 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3908 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
|
3909 *--pto = *--pfrom; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
3910 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3911 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
|
3912 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3913 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3914 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3915 /* 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
|
3916 |
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 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
|
3918 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
|
3919 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
|
3920 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
|
3921 int arg1, arg2; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
3922 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
|
3923 { |
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 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
|
3925 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
|
3926 |
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 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
|
3928 *--pto = *--pfrom; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
3929 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3930 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
|
3931 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3932 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3933 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3934 /* 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
|
3935 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
|
3936 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
|
3937 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3938 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
|
3939 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
|
3940 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
|
3941 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
|
3942 { |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
3943 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
|
3944 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
|
3945 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3946 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
|
3947 /* 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
|
3948 (*prev == '(' && (syntax & RE_NO_BK_PARENS || prev_prev_backslash)) |
18262 | 3949 /* After an alternative? */ |
29194
fe06affca294
(at_begline_loc_p): Also recognize the \\(?:^ case
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28662
diff
changeset
|
3950 || (*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
|
3951 /* After a shy subexpression? */ |
fe06affca294
(at_begline_loc_p): Also recognize the \\(?:^ case
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28662
diff
changeset
|
3952 || ((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
|
3953 && prev[-1] == '?' && prev[-2] == '(' |
fe06affca294
(at_begline_loc_p): Also recognize the \\(?:^ case
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28662
diff
changeset
|
3954 && (syntax & RE_NO_BK_PARENS |
fe06affca294
(at_begline_loc_p): Also recognize the \\(?:^ case
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28662
diff
changeset
|
3955 || (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
|
3956 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3957 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3958 |
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 /* 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
|
3960 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
|
3961 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3962 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
|
3963 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
|
3964 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
|
3965 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
|
3966 { |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
3967 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
|
3968 boolean next_backslash = *next == '\\'; |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
3969 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
|
3970 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3971 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
|
3972 /* 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
|
3973 (syntax & RE_NO_BK_PARENS ? *next == ')' |
18262 | 3974 : 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
|
3975 /* 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
|
3976 || (syntax & RE_NO_BK_VBAR ? *next == '|' |
18262 | 3977 : 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
|
3978 } |
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 |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
3981 /* 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
|
3982 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
|
3983 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3984 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
|
3985 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
|
3986 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
|
3987 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
|
3988 { |
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 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
|
3990 |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
3991 for (this_element = compile_stack.avail - 1; |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
3992 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
|
3993 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
|
3994 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
|
3995 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
|
3996 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3997 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
|
3998 } |
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 |
28380
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
4000 /* analyse_first. |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
4001 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
|
4002 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
|
4003 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
|
4004 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
|
4005 |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
4006 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
|
4007 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
|
4008 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
|
4009 |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
4010 static int |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
4011 analyse_first (p, pend, fastmap, multibyte) |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
4012 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
|
4013 char *fastmap; |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
4014 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
|
4015 { |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4016 int j, k; |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
4017 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
|
4018 |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4019 /* If all elements for base leading-codes in fastmap is set, this |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
4020 flag is set true. */ |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4021 boolean match_any_multibyte_characters = false; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4022 |
28380
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
4023 assert (p); |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
4024 |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4025 /* 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
|
4026 - 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
|
4027 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
|
4028 - 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
|
4029 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
|
4030 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
|
4031 - 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
|
4032 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
|
4033 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
|
4034 (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
|
4035 worklist. |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4036 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
|
4037 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
|
4038 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
|
4039 |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
4040 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
|
4041 { |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4042 /* `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
|
4043 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
|
4044 (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
|
4045 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
|
4046 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
|
4047 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
|
4048 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
|
4049 as used for the *? operator. */ |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
4050 re_char *p1 = p; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
4051 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4052 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
|
4053 { |
28380
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
4054 case succeed: |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
4055 return 1; |
28380
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
4056 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
|
4057 |
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 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
|
4059 /* 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
|
4060 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
|
4061 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
|
4062 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
|
4063 p++; |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4064 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
|
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 |
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 /* Following are the cases which match a character. These end |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
4068 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
|
4069 |
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 case exactn: |
30752
db737e34fc36
(regex_compile) <normal_char>: Pay attention to multibyteness.
Kenichi Handa <handa@m17n.org>
parents:
29801
diff
changeset
|
4071 if (fastmap) |
db737e34fc36
(regex_compile) <normal_char>: Pay attention to multibyteness.
Kenichi Handa <handa@m17n.org>
parents:
29801
diff
changeset
|
4072 { |
90757
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
4073 /* If multibyte is nonzero, the first byte of each |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
4074 character is an ASCII or a leading code. Otherwise, |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
4075 each byte is a character. Thus, this works in both |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
4076 cases. */ |
73056
2e2651f3d494
(analyse_first): For eight-bit-control chars, mark both the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
72925
diff
changeset
|
4077 fastmap[p[1]] = 1; |
90757
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
4078 if (! multibyte) |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
4079 { |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
4080 /* For the case of matching this unibyte regex |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
4081 against multibyte, we must set a leading code of |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
4082 the corresponding multibyte character. */ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
4083 int c = RE_CHAR_TO_MULTIBYTE (p[1]); |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
4084 |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
4085 if (! CHAR_BYTE8_P (c)) |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
4086 fastmap[CHAR_LEADING_CODE (c)] = 1; |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
4087 } |
30752
db737e34fc36
(regex_compile) <normal_char>: Pay attention to multibyteness.
Kenichi Handa <handa@m17n.org>
parents:
29801
diff
changeset
|
4088 } |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4089 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
|
4090 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4091 |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
4092 case anychar: |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
4093 /* 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
|
4094 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
|
4095 if (!fastmap) break; |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
4096 return -1; |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
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 case charset_not: |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
4100 if (!fastmap) break; |
89061
9a9b54d06f3d
* regex.c (RE_TARGET_MULTIBYTE_P): New macro.
Kenichi Handa <handa@m17n.org>
parents:
88387
diff
changeset
|
4101 { |
9a9b54d06f3d
* regex.c (RE_TARGET_MULTIBYTE_P): New macro.
Kenichi Handa <handa@m17n.org>
parents:
88387
diff
changeset
|
4102 /* Chars beyond end of bitmap are possible matches. */ |
9a9b54d06f3d
* regex.c (RE_TARGET_MULTIBYTE_P): New macro.
Kenichi Handa <handa@m17n.org>
parents:
88387
diff
changeset
|
4103 for (j = CHARSET_BITMAP_SIZE (&p[-1]) * BYTEWIDTH; |
90757
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
4104 j < (1 << BYTEWIDTH); j++) |
89061
9a9b54d06f3d
* regex.c (RE_TARGET_MULTIBYTE_P): New macro.
Kenichi Handa <handa@m17n.org>
parents:
88387
diff
changeset
|
4105 fastmap[j] = 1; |
9a9b54d06f3d
* regex.c (RE_TARGET_MULTIBYTE_P): New macro.
Kenichi Handa <handa@m17n.org>
parents:
88387
diff
changeset
|
4106 } |
9a9b54d06f3d
* regex.c (RE_TARGET_MULTIBYTE_P): New macro.
Kenichi Handa <handa@m17n.org>
parents:
88387
diff
changeset
|
4107 |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
4108 /* Fallthrough */ |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4109 case charset: |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
4110 if (!fastmap) break; |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
4111 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
|
4112 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
|
4113 j >= 0; j--) |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
4114 if (!!(p[j / BYTEWIDTH] & (1 << (j % BYTEWIDTH))) ^ not) |
90610
82904c663deb
(analyse_first): Cancel the change for synching with
Kenichi Handa <handa@m17n.org>
parents:
90609
diff
changeset
|
4115 fastmap[j] = 1; |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4116 |
73056
2e2651f3d494
(analyse_first): For eight-bit-control chars, mark both the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
72925
diff
changeset
|
4117 #ifdef emacs |
90790
385c9b28d8a7
(analyse_first): Fix for multibyte characters in "case
Kenichi Handa <handa@m17n.org>
parents:
90766
diff
changeset
|
4118 if (/* Any leading code can possibly start a character |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
4119 which doesn't match the specified set of characters. */ |
90790
385c9b28d8a7
(analyse_first): Fix for multibyte characters in "case
Kenichi Handa <handa@m17n.org>
parents:
90766
diff
changeset
|
4120 not |
385c9b28d8a7
(analyse_first): Fix for multibyte characters in "case
Kenichi Handa <handa@m17n.org>
parents:
90766
diff
changeset
|
4121 || |
385c9b28d8a7
(analyse_first): Fix for multibyte characters in "case
Kenichi Handa <handa@m17n.org>
parents:
90766
diff
changeset
|
4122 /* If we can match a character class, we can match any |
385c9b28d8a7
(analyse_first): Fix for multibyte characters in "case
Kenichi Handa <handa@m17n.org>
parents:
90766
diff
changeset
|
4123 multibyte characters. */ |
385c9b28d8a7
(analyse_first): Fix for multibyte characters in "case
Kenichi Handa <handa@m17n.org>
parents:
90766
diff
changeset
|
4124 (CHARSET_RANGE_TABLE_EXISTS_P (&p[-2]) |
385c9b28d8a7
(analyse_first): Fix for multibyte characters in "case
Kenichi Handa <handa@m17n.org>
parents:
90766
diff
changeset
|
4125 && CHARSET_RANGE_TABLE_BITS (&p[-2]) != 0)) |
385c9b28d8a7
(analyse_first): Fix for multibyte characters in "case
Kenichi Handa <handa@m17n.org>
parents:
90766
diff
changeset
|
4126 |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
4127 { |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
4128 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
|
4129 { |
90790
385c9b28d8a7
(analyse_first): Fix for multibyte characters in "case
Kenichi Handa <handa@m17n.org>
parents:
90766
diff
changeset
|
4130 for (j = MIN_MULTIBYTE_LEADING_CODE; |
385c9b28d8a7
(analyse_first): Fix for multibyte characters in "case
Kenichi Handa <handa@m17n.org>
parents:
90766
diff
changeset
|
4131 j <= MAX_MULTIBYTE_LEADING_CODE; j++) |
89455
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
4132 fastmap[j] = 1; |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
4133 match_any_multibyte_characters = true; |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
4134 } |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
4135 } |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
4136 |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
4137 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
|
4138 && match_any_multibyte_characters == false) |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4139 { |
89061
9a9b54d06f3d
* regex.c (RE_TARGET_MULTIBYTE_P): New macro.
Kenichi Handa <handa@m17n.org>
parents:
88387
diff
changeset
|
4140 /* Set fastmap[I] to 1 where I is a leading code of each |
88387
06da178fab0e
* regex.c: Include "character.h" instead of "charset.h".
Kenichi Handa <handa@m17n.org>
parents:
40650
diff
changeset
|
4141 multibyte characer in the range table. */ |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4142 int c, count; |
89061
9a9b54d06f3d
* regex.c (RE_TARGET_MULTIBYTE_P): New macro.
Kenichi Handa <handa@m17n.org>
parents:
88387
diff
changeset
|
4143 unsigned char lc1, lc2; |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4144 |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
4145 /* 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
|
4146 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
|
4147 p += CHARSET_BITMAP_SIZE (&p[-2]) + 2; |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4148 |
25877
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
4149 /* 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
|
4150 EXTRACT_NUMBER_AND_INCR (count, p); |
90757
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
4151 for (; count > 0; count--, p += 3) |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4152 { |
88387
06da178fab0e
* regex.c: Include "character.h" instead of "charset.h".
Kenichi Handa <handa@m17n.org>
parents:
40650
diff
changeset
|
4153 /* Extract the start and end of each range. */ |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4154 EXTRACT_CHARACTER (c, p); |
89061
9a9b54d06f3d
* regex.c (RE_TARGET_MULTIBYTE_P): New macro.
Kenichi Handa <handa@m17n.org>
parents:
88387
diff
changeset
|
4155 lc1 = CHAR_LEADING_CODE (c); |
88387
06da178fab0e
* regex.c: Include "character.h" instead of "charset.h".
Kenichi Handa <handa@m17n.org>
parents:
40650
diff
changeset
|
4156 p += 3; |
06da178fab0e
* regex.c: Include "character.h" instead of "charset.h".
Kenichi Handa <handa@m17n.org>
parents:
40650
diff
changeset
|
4157 EXTRACT_CHARACTER (c, p); |
89061
9a9b54d06f3d
* regex.c (RE_TARGET_MULTIBYTE_P): New macro.
Kenichi Handa <handa@m17n.org>
parents:
88387
diff
changeset
|
4158 lc2 = CHAR_LEADING_CODE (c); |
9a9b54d06f3d
* regex.c (RE_TARGET_MULTIBYTE_P): New macro.
Kenichi Handa <handa@m17n.org>
parents:
88387
diff
changeset
|
4159 for (j = lc1; j <= lc2; j++) |
88387
06da178fab0e
* regex.c: Include "character.h" instead of "charset.h".
Kenichi Handa <handa@m17n.org>
parents:
40650
diff
changeset
|
4160 fastmap[j] = 1; |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4161 } |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4162 } |
90790
385c9b28d8a7
(analyse_first): Fix for multibyte characters in "case
Kenichi Handa <handa@m17n.org>
parents:
90766
diff
changeset
|
4163 #endif |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4164 break; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4165 |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
4166 case syntaxspec: |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
4167 case notsyntaxspec: |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
4168 if (!fastmap) break; |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
4169 #ifndef emacs |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
4170 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
|
4171 k = *p++; |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
4172 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
|
4173 if ((SYNTAX (j) == (enum syntaxcode) k) ^ not) |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4174 fastmap[j] = 1; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4175 break; |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
4176 #else /* emacs */ |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4177 /* 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
|
4178 aborting optimizations. */ |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
4179 return -1; |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4180 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4181 case categoryspec: |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
4182 case notcategoryspec: |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
4183 if (!fastmap) break; |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
4184 not = (re_opcode_t)p[-1] == notcategoryspec; |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4185 k = *p++; |
90790
385c9b28d8a7
(analyse_first): Fix for multibyte characters in "case
Kenichi Handa <handa@m17n.org>
parents:
90766
diff
changeset
|
4186 for (j = (1 << BYTEWIDTH); j >= 0; j--) |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
4187 if ((CHAR_HAS_CATEGORY (j, k)) ^ not) |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4188 fastmap[j] = 1; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4189 |
90790
385c9b28d8a7
(analyse_first): Fix for multibyte characters in "case
Kenichi Handa <handa@m17n.org>
parents:
90766
diff
changeset
|
4190 /* Any leading code can possibly start a character which |
385c9b28d8a7
(analyse_first): Fix for multibyte characters in "case
Kenichi Handa <handa@m17n.org>
parents:
90766
diff
changeset
|
4191 has or doesn't has the specified category. */ |
385c9b28d8a7
(analyse_first): Fix for multibyte characters in "case
Kenichi Handa <handa@m17n.org>
parents:
90766
diff
changeset
|
4192 if (match_any_multibyte_characters == false) |
89455
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
4193 { |
90790
385c9b28d8a7
(analyse_first): Fix for multibyte characters in "case
Kenichi Handa <handa@m17n.org>
parents:
90766
diff
changeset
|
4194 for (j = MIN_MULTIBYTE_LEADING_CODE; |
385c9b28d8a7
(analyse_first): Fix for multibyte characters in "case
Kenichi Handa <handa@m17n.org>
parents:
90766
diff
changeset
|
4195 j <= MAX_MULTIBYTE_LEADING_CODE; j++) |
385c9b28d8a7
(analyse_first): Fix for multibyte characters in "case
Kenichi Handa <handa@m17n.org>
parents:
90766
diff
changeset
|
4196 fastmap[j] = 1; |
385c9b28d8a7
(analyse_first): Fix for multibyte characters in "case
Kenichi Handa <handa@m17n.org>
parents:
90766
diff
changeset
|
4197 match_any_multibyte_characters = true; |
89455
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
4198 } |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4199 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
|
4200 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4201 /* All cases after this match the empty string. These end with |
18262 | 4202 `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
|
4203 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4204 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
|
4205 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
|
4206 case after_dot: |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
4207 #endif /* !emacs */ |
18262 | 4208 case no_op: |
4209 case begline: | |
4210 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
|
4211 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
|
4212 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
|
4213 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
|
4214 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
|
4215 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
|
4216 case wordend: |
55690
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
4217 case symbeg: |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
4218 case symend: |
18262 | 4219 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
|
4220 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4221 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4222 case jump: |
18262 | 4223 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
|
4224 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
|
4225 /* 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
|
4226 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
|
4227 break; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
4228 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
|
4229 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
|
4230 { |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4231 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
|
4232 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
|
4233 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
|
4234 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
|
4235 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
|
4236 p++; |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4237 break; |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4238 default: |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4239 continue; |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4240 }; |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4241 /* 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
|
4242 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
|
4243 /* Fallthrough */ |
18262 | 4244 |
4245 case on_failure_jump: | |
4246 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
|
4247 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
|
4248 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
|
4249 case on_failure_jump_smart: |
18262 | 4250 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
|
4251 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
|
4252 ; /* Backward jump to be ignored. */ |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
4253 else |
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
4254 { /* We have to look down both arms. |
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
4255 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
|
4256 stack usage when going through alternatives. */ |
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
4257 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
|
4258 if (r) return r; |
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
4259 p += j; |
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
4260 } |
18262 | 4261 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
|
4262 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4263 |
28372
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
4264 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
|
4265 /* 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
|
4266 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
|
4267 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
|
4268 /* 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
|
4269 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
|
4270 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
|
4271 continue; |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49276
diff
changeset
|
4272 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4273 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
|
4274 /* 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
|
4275 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
|
4276 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
|
4277 /* 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
|
4278 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
|
4279 on_failure_jump. */ |
18262 | 4280 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
|
4281 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4282 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4283 case set_number_at: |
18262 | 4284 p += 4; |
4285 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
|
4286 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4287 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4288 case start_memory: |
18262 | 4289 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
|
4290 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
|
4291 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
|
4292 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4293 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4294 default: |
18262 | 4295 abort (); /* We have listed all the cases. */ |
4296 } /* 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
|
4297 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4298 /* Getting here means we have found the possible starting |
18262 | 4299 characters for one path of the pattern -- and that the empty |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
4300 string does not match. We need not follow this path further. */ |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
4301 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
|
4302 } /* 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
|
4303 |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
4304 /* We reached the end without matching anything. */ |
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
4305 return 1; |
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
4306 |
28380
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
4307 } /* analyse_first */ |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
4308 |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
4309 /* 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
|
4310 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
|
4311 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
|
4312 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
|
4313 |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
4314 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
|
4315 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
|
4316 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
|
4317 |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
4318 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
|
4319 area as BUFP->fastmap. |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
4320 |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
4321 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
|
4322 the pattern buffer. |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
4323 |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
4324 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
|
4325 |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
4326 int |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
4327 re_compile_fastmap (bufp) |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
4328 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
|
4329 { |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
4330 char *fastmap = bufp->fastmap; |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
4331 int analysis; |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
4332 |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
4333 assert (fastmap && bufp->buffer); |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
4334 |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
4335 bzero (fastmap, 1 << BYTEWIDTH); /* Assume nothing's valid. */ |
28380
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
4336 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
|
4337 |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
4338 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
|
4339 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
|
4340 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
|
4341 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
|
4342 } /* 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
|
4343 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4344 /* 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
|
4345 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
|
4346 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
|
4347 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
|
4348 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
|
4349 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4350 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
|
4351 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
|
4352 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4353 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
|
4354 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
|
4355 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
|
4356 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4357 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
|
4358 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
|
4359 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
|
4360 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
|
4361 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
|
4362 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
|
4363 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4364 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
|
4365 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4366 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
|
4367 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
|
4368 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
|
4369 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
|
4370 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4371 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
|
4372 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4373 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
|
4374 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
|
4375 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
|
4376 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4377 } |
31312
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
4378 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
|
4379 |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
4380 /* 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
|
4381 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4382 /* 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
|
4383 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
|
4384 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4385 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
|
4386 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
|
4387 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
|
4388 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
|
4389 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
|
4390 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
|
4391 { |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
4392 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
|
4393 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
|
4394 } |
31312
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
4395 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
|
4396 |
49276
f71131f142ff
(GET_CHAR_BEFORE_2): Use PREV_CHAR_BOUNDARY.
Kenichi Handa <handa@m17n.org>
parents:
48424
diff
changeset
|
4397 /* Head address of virtual concatenation of string. */ |
f71131f142ff
(GET_CHAR_BEFORE_2): Use PREV_CHAR_BOUNDARY.
Kenichi Handa <handa@m17n.org>
parents:
48424
diff
changeset
|
4398 #define HEAD_ADDR_VSTRING(P) \ |
f71131f142ff
(GET_CHAR_BEFORE_2): Use PREV_CHAR_BOUNDARY.
Kenichi Handa <handa@m17n.org>
parents:
48424
diff
changeset
|
4399 (((P) >= size1 ? string2 : string1)) |
f71131f142ff
(GET_CHAR_BEFORE_2): Use PREV_CHAR_BOUNDARY.
Kenichi Handa <handa@m17n.org>
parents:
48424
diff
changeset
|
4400 |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4401 /* End address of virtual concatenation of string. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4402 #define STOP_ADDR_VSTRING(P) \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4403 (((P) >= size1 ? string2 + size2 : string1 + size1)) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4404 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4405 /* 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
|
4406 #define POS_ADDR_VSTRING(POS) \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4407 (((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
|
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 /* 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
|
4410 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
|
4411 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
|
4412 |
11864
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 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
|
4414 |
11864
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 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
|
4416 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
|
4417 RANGE. |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
4418 |
11864
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 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
|
4420 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
|
4421 subexpressions. |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
4422 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4423 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
|
4424 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
|
4425 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4426 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
|
4427 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
|
4428 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
|
4429 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4430 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
|
4431 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
|
4432 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
|
4433 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
|
4434 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
|
4435 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
|
4436 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
|
4437 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
|
4438 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
|
4439 { |
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 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
|
4441 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
|
4442 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
|
4443 register char *fastmap = bufp->fastmap; |
13250
52e053f46f76
(TRANSLATE, PATFETCH): Cast elt of `translate'.
Richard M. Stallman <rms@gnu.org>
parents:
13100
diff
changeset
|
4444 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
|
4445 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
|
4446 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
|
4447 boolean anchored_start; |
90757
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
4448 /* Nonzero if we are searching multibyte string. */ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
4449 const boolean multibyte = RE_TARGET_MULTIBYTE_P (bufp); |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4450 |
11864
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 /* 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
|
4452 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
|
4453 return -1; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
4454 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4455 /* 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
|
4456 the virtual concatenation of STRING1 and STRING2. |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
4457 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
|
4458 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
|
4459 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
|
4460 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
|
4461 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
|
4462 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4463 /* 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
|
4464 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
|
4465 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
|
4466 { |
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 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
|
4468 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
|
4469 else |
21760
f97c01dfd603
(re_search_2): Fix handling of at_dot.
Richard M. Stallman <rms@gnu.org>
parents:
21562
diff
changeset
|
4470 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
|
4471 } |
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 |
12983
ed39ba26313b
(re_search_2): If pattern starts with \=, optimize search.
Richard M. Stallman <rms@gnu.org>
parents:
12931
diff
changeset
|
4473 #ifdef emacs |
ed39ba26313b
(re_search_2): If pattern starts with \=, optimize search.
Richard M. Stallman <rms@gnu.org>
parents:
12931
diff
changeset
|
4474 /* 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
|
4475 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
|
4476 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
|
4477 { |
21760
f97c01dfd603
(re_search_2): Fix handling of at_dot.
Richard M. Stallman <rms@gnu.org>
parents:
21562
diff
changeset
|
4478 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
|
4479 if (range < 0) |
12983
ed39ba26313b
(re_search_2): If pattern starts with \=, optimize search.
Richard M. Stallman <rms@gnu.org>
parents:
12931
diff
changeset
|
4480 return -1; |
ed39ba26313b
(re_search_2): If pattern starts with \=, optimize search.
Richard M. Stallman <rms@gnu.org>
parents:
12931
diff
changeset
|
4481 } |
ed39ba26313b
(re_search_2): If pattern starts with \=, optimize search.
Richard M. Stallman <rms@gnu.org>
parents:
12931
diff
changeset
|
4482 #endif /* emacs */ |
ed39ba26313b
(re_search_2): If pattern starts with \=, optimize search.
Richard M. Stallman <rms@gnu.org>
parents:
12931
diff
changeset
|
4483 |
11864
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 /* 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
|
4485 if (fastmap && !bufp->fastmap_accurate) |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
4486 re_compile_fastmap (bufp); |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
4487 |
16009
2a4da819f152
(re_search_2): Optimize regexp that starts with ^.
Richard M. Stallman <rms@gnu.org>
parents:
16008
diff
changeset
|
4488 /* 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
|
4489 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
|
4490 |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4491 #ifdef emacs |
21482
9898a4994a12
(re_match_2, re_search_2): Convert position to a charpos,
Karl Heuer <kwzh@gnu.org>
parents:
21404
diff
changeset
|
4492 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
|
4493 { |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
4494 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
|
4495 |
9898a4994a12
(re_match_2, re_search_2): Convert position to a charpos,
Karl Heuer <kwzh@gnu.org>
parents:
21404
diff
changeset
|
4496 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
|
4497 } |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4498 #endif |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4499 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4500 /* 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
|
4501 for (;;) |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
4502 { |
16009
2a4da819f152
(re_search_2): Optimize regexp that starts with ^.
Richard M. Stallman <rms@gnu.org>
parents:
16008
diff
changeset
|
4503 /* If the pattern is anchored, |
2a4da819f152
(re_search_2): Optimize regexp that starts with ^.
Richard M. Stallman <rms@gnu.org>
parents:
16008
diff
changeset
|
4504 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
|
4505 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
|
4506 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
|
4507 if (anchored_start && startpos > 0) |
2a4da819f152
(re_search_2): Optimize regexp that starts with ^.
Richard M. Stallman <rms@gnu.org>
parents:
16008
diff
changeset
|
4508 { |
31312
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
4509 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
|
4510 : string2[startpos - size1 - 1]) |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
4511 == '\n')) |
16009
2a4da819f152
(re_search_2): Optimize regexp that starts with ^.
Richard M. Stallman <rms@gnu.org>
parents:
16008
diff
changeset
|
4512 goto advance; |
2a4da819f152
(re_search_2): Optimize regexp that starts with ^.
Richard M. Stallman <rms@gnu.org>
parents:
16008
diff
changeset
|
4513 } |
2a4da819f152
(re_search_2): Optimize regexp that starts with ^.
Richard M. Stallman <rms@gnu.org>
parents:
16008
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 /* If a fastmap is supplied, skip quickly over characters that |
18262 | 4516 cannot be the start of a match. If the pattern can match the |
4517 null string, however, we don't need to skip characters; we want | |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
4518 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
|
4519 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
|
4520 { |
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
|
4521 register re_char *d; |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
4522 register re_wchar_t buf_ch; |
21348
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4523 |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4524 d = POS_ADDR_VSTRING (startpos); |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4525 |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
4526 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
|
4527 { |
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 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
|
4529 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
|
4530 |
18262 | 4531 if (startpos < size1 && startpos + range >= size1) |
4532 lim = range - (size1 - startpos); | |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4533 |
18262 | 4534 /* Written out as an if-else to avoid testing `translate' |
4535 inside the loop. */ | |
21838
1d93b782b983
(re_search_2): Fix indentation.
Andreas Schwab <schwab@suse.de>
parents:
21760
diff
changeset
|
4536 if (RE_TRANSLATE_P (translate)) |
1d93b782b983
(re_search_2): Fix indentation.
Andreas Schwab <schwab@suse.de>
parents:
21760
diff
changeset
|
4537 { |
21348
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4538 if (multibyte) |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4539 while (range > lim) |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4540 { |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4541 int buf_charlen; |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4542 |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4543 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
|
4544 buf_charlen); |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4545 buf_ch = RE_TRANSLATE (translate, buf_ch); |
89061
9a9b54d06f3d
* regex.c (RE_TARGET_MULTIBYTE_P): New macro.
Kenichi Handa <handa@m17n.org>
parents:
88387
diff
changeset
|
4546 if (fastmap[CHAR_LEADING_CODE (buf_ch)]) |
21348
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4547 break; |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4548 |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4549 range -= buf_charlen; |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4550 d += buf_charlen; |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4551 } |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4552 else |
89061
9a9b54d06f3d
* regex.c (RE_TARGET_MULTIBYTE_P): New macro.
Kenichi Handa <handa@m17n.org>
parents:
88387
diff
changeset
|
4553 while (range > lim) |
9a9b54d06f3d
* regex.c (RE_TARGET_MULTIBYTE_P): New macro.
Kenichi Handa <handa@m17n.org>
parents:
88387
diff
changeset
|
4554 { |
90757
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
4555 register re_wchar_t ch, translated; |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
4556 |
89061
9a9b54d06f3d
* regex.c (RE_TARGET_MULTIBYTE_P): New macro.
Kenichi Handa <handa@m17n.org>
parents:
88387
diff
changeset
|
4557 buf_ch = *d; |
90757
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
4558 ch = RE_CHAR_TO_MULTIBYTE (buf_ch); |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
4559 translated = RE_TRANSLATE (translate, ch); |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
4560 if (translated != ch |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
4561 && (ch = RE_CHAR_TO_UNIBYTE (translated)) >= 0) |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
4562 buf_ch = ch; |
89455
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
4563 if (fastmap[buf_ch]) |
89061
9a9b54d06f3d
* regex.c (RE_TARGET_MULTIBYTE_P): New macro.
Kenichi Handa <handa@m17n.org>
parents:
88387
diff
changeset
|
4564 break; |
9a9b54d06f3d
* regex.c (RE_TARGET_MULTIBYTE_P): New macro.
Kenichi Handa <handa@m17n.org>
parents:
88387
diff
changeset
|
4565 d++; |
9a9b54d06f3d
* regex.c (RE_TARGET_MULTIBYTE_P): New macro.
Kenichi Handa <handa@m17n.org>
parents:
88387
diff
changeset
|
4566 range--; |
9a9b54d06f3d
* regex.c (RE_TARGET_MULTIBYTE_P): New macro.
Kenichi Handa <handa@m17n.org>
parents:
88387
diff
changeset
|
4567 } |
21348
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4568 } |
11864
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 else |
89455
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
4570 { |
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
4571 if (multibyte) |
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
4572 while (range > lim) |
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
4573 { |
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
4574 int buf_charlen; |
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
4575 |
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
4576 buf_ch = STRING_CHAR_AND_LENGTH (d, range - lim, |
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
4577 buf_charlen); |
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
4578 if (fastmap[CHAR_LEADING_CODE (buf_ch)]) |
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
4579 break; |
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
4580 range -= buf_charlen; |
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
4581 d += buf_charlen; |
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
4582 } |
21348
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4583 else |
73056
2e2651f3d494
(analyse_first): For eight-bit-control chars, mark both the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
72925
diff
changeset
|
4584 while (range > lim && !fastmap[*d]) |
2e2651f3d494
(analyse_first): For eight-bit-control chars, mark both the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
72925
diff
changeset
|
4585 { |
2e2651f3d494
(analyse_first): For eight-bit-control chars, mark both the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
72925
diff
changeset
|
4586 d++; |
2e2651f3d494
(analyse_first): For eight-bit-control chars, mark both the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
72925
diff
changeset
|
4587 range--; |
2e2651f3d494
(analyse_first): For eight-bit-control chars, mark both the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
72925
diff
changeset
|
4588 } |
21348
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4589 } |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4590 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
|
4591 } |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
4592 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
|
4593 { |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
4594 int room = (startpos >= size1 |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
4595 ? size2 + size1 - startpos |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
4596 : size1 - startpos); |
89176
729d852f7419
(re_search_2): Fix for the case of unibyte buffer.
Kenichi Handa <handa@m17n.org>
parents:
89116
diff
changeset
|
4597 if (multibyte) |
729d852f7419
(re_search_2): Fix for the case of unibyte buffer.
Kenichi Handa <handa@m17n.org>
parents:
89116
diff
changeset
|
4598 { |
89455
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
4599 buf_ch = STRING_CHAR (d, room); |
89176
729d852f7419
(re_search_2): Fix for the case of unibyte buffer.
Kenichi Handa <handa@m17n.org>
parents:
89116
diff
changeset
|
4600 buf_ch = TRANSLATE (buf_ch); |
729d852f7419
(re_search_2): Fix for the case of unibyte buffer.
Kenichi Handa <handa@m17n.org>
parents:
89116
diff
changeset
|
4601 if (! fastmap[CHAR_LEADING_CODE (buf_ch)]) |
729d852f7419
(re_search_2): Fix for the case of unibyte buffer.
Kenichi Handa <handa@m17n.org>
parents:
89116
diff
changeset
|
4602 goto advance; |
729d852f7419
(re_search_2): Fix for the case of unibyte buffer.
Kenichi Handa <handa@m17n.org>
parents:
89116
diff
changeset
|
4603 } |
729d852f7419
(re_search_2): Fix for the case of unibyte buffer.
Kenichi Handa <handa@m17n.org>
parents:
89116
diff
changeset
|
4604 else |
729d852f7419
(re_search_2): Fix for the case of unibyte buffer.
Kenichi Handa <handa@m17n.org>
parents:
89116
diff
changeset
|
4605 { |
90757
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
4606 register re_wchar_t ch, translated; |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
4607 |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
4608 buf_ch = *d; |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
4609 ch = RE_CHAR_TO_MULTIBYTE (buf_ch); |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
4610 translated = TRANSLATE (ch); |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
4611 if (translated != ch |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
4612 && (ch = RE_CHAR_TO_UNIBYTE (translated)) >= 0) |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
4613 buf_ch = ch; |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
4614 if (! fastmap[TRANSLATE (buf_ch)]) |
89176
729d852f7419
(re_search_2): Fix for the case of unibyte buffer.
Kenichi Handa <handa@m17n.org>
parents:
89116
diff
changeset
|
4615 goto advance; |
729d852f7419
(re_search_2): Fix for the case of unibyte buffer.
Kenichi Handa <handa@m17n.org>
parents:
89116
diff
changeset
|
4616 } |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4617 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4618 } |
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 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4620 /* 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
|
4621 if (range >= 0 && startpos == total_size && fastmap |
18262 | 4622 && !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
|
4623 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
|
4624 |
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 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
|
4626 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
|
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 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
|
4629 return startpos; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
4630 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4631 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
|
4632 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
|
4633 |
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 advance: |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
4635 if (!range) |
18262 | 4636 break; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
4637 else if (range > 0) |
18262 | 4638 { |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4639 /* Update STARTPOS to the next character boundary. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4640 if (multibyte) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4641 { |
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
|
4642 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
|
4643 re_char *pend = STOP_ADDR_VSTRING (startpos); |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4644 int len = MULTIBYTE_FORM_LENGTH (p, pend - p); |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4645 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4646 range -= len; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4647 if (range < 0) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4648 break; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4649 startpos += len; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4650 } |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4651 else |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4652 { |
18532
488df9d19f5e
(re_search_2): Cast result of POS_ADDR_VSTRING.
Richard M. Stallman <rms@gnu.org>
parents:
18263
diff
changeset
|
4653 range--; |
488df9d19f5e
(re_search_2): Cast result of POS_ADDR_VSTRING.
Richard M. Stallman <rms@gnu.org>
parents:
18263
diff
changeset
|
4654 startpos++; |
488df9d19f5e
(re_search_2): Cast result of POS_ADDR_VSTRING.
Richard M. Stallman <rms@gnu.org>
parents:
18263
diff
changeset
|
4655 } |
16010 | 4656 } |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4657 else |
18262 | 4658 { |
4659 range++; | |
4660 startpos--; | |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4661 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4662 /* Update STARTPOS to the previous character boundary. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4663 if (multibyte) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4664 { |
49276
f71131f142ff
(GET_CHAR_BEFORE_2): Use PREV_CHAR_BOUNDARY.
Kenichi Handa <handa@m17n.org>
parents:
48424
diff
changeset
|
4665 re_char *p = POS_ADDR_VSTRING (startpos) + 1; |
f71131f142ff
(GET_CHAR_BEFORE_2): Use PREV_CHAR_BOUNDARY.
Kenichi Handa <handa@m17n.org>
parents:
48424
diff
changeset
|
4666 re_char *p0 = p; |
f71131f142ff
(GET_CHAR_BEFORE_2): Use PREV_CHAR_BOUNDARY.
Kenichi Handa <handa@m17n.org>
parents:
48424
diff
changeset
|
4667 re_char *phead = HEAD_ADDR_VSTRING (startpos); |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4668 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4669 /* Find the head of multibyte form. */ |
49276
f71131f142ff
(GET_CHAR_BEFORE_2): Use PREV_CHAR_BOUNDARY.
Kenichi Handa <handa@m17n.org>
parents:
48424
diff
changeset
|
4670 PREV_CHAR_BOUNDARY (p, phead); |
f71131f142ff
(GET_CHAR_BEFORE_2): Use PREV_CHAR_BOUNDARY.
Kenichi Handa <handa@m17n.org>
parents:
48424
diff
changeset
|
4671 range += p0 - 1 - p; |
f71131f142ff
(GET_CHAR_BEFORE_2): Use PREV_CHAR_BOUNDARY.
Kenichi Handa <handa@m17n.org>
parents:
48424
diff
changeset
|
4672 if (range > 0) |
f71131f142ff
(GET_CHAR_BEFORE_2): Use PREV_CHAR_BOUNDARY.
Kenichi Handa <handa@m17n.org>
parents:
48424
diff
changeset
|
4673 break; |
f71131f142ff
(GET_CHAR_BEFORE_2): Use PREV_CHAR_BOUNDARY.
Kenichi Handa <handa@m17n.org>
parents:
48424
diff
changeset
|
4674 |
f71131f142ff
(GET_CHAR_BEFORE_2): Use PREV_CHAR_BOUNDARY.
Kenichi Handa <handa@m17n.org>
parents:
48424
diff
changeset
|
4675 startpos -= p0 - 1 - p; |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4676 } |
18262 | 4677 } |
11864
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 } |
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 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
|
4680 } /* re_search_2 */ |
31312
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
4681 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
|
4682 |
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 /* 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
|
4684 |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
4685 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
|
4686 register int len, |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
4687 RE_TRANSLATE_TYPE translate, |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
4688 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
|
4689 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4690 /* 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
|
4691 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
|
4692 #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
|
4693 (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
|
4694 ? ((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
|
4695 : ((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
|
4696 |
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 /* 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
|
4698 string2 if necessary. |
d40a7f046efe
(re_match_2_internal): Don't shorten the strings anymore,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28473
diff
changeset
|
4699 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
|
4700 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
|
4701 #define PREFETCH() \ |
18262 | 4702 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
|
4703 { \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4704 /* End of string2 => fail. */ \ |
18262 | 4705 if (dend == end_match_2) \ |
4706 goto fail; \ | |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
4707 /* End of string1 => advance to string2. */ \ |
18262 | 4708 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
|
4709 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
|
4710 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4711 |
29296
b2c75746a989
(PREFETCH_NOLIMIT): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29194
diff
changeset
|
4712 /* 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
|
4713 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
|
4714 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
|
4715 outside of the LIMITs (i.e past `stop'). */ |
b2c75746a989
(PREFETCH_NOLIMIT): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29194
diff
changeset
|
4716 #define PREFETCH_NOLIMIT() \ |
b2c75746a989
(PREFETCH_NOLIMIT): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29194
diff
changeset
|
4717 if (d == end1) \ |
b2c75746a989
(PREFETCH_NOLIMIT): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29194
diff
changeset
|
4718 { \ |
b2c75746a989
(PREFETCH_NOLIMIT): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29194
diff
changeset
|
4719 d = string2; \ |
b2c75746a989
(PREFETCH_NOLIMIT): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29194
diff
changeset
|
4720 dend = end_match_2; \ |
b2c75746a989
(PREFETCH_NOLIMIT): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29194
diff
changeset
|
4721 } \ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4722 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4723 /* Test if at very beginning or at very end of the virtual concatenation |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
4724 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
|
4725 #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
|
4726 #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
|
4727 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4728 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4729 /* 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
|
4730 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
|
4731 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
|
4732 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
|
4733 #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
|
4734 (SYNTAX ((d) == end1 ? *string2 \ |
18262 | 4735 : (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
|
4736 == 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
|
4737 |
13722
e2669b8a46e2
(AT_WORD_BOUNDARY): Disable macro.
Karl Heuer <kwzh@gnu.org>
parents:
13565
diff
changeset
|
4738 /* 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
|
4739 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4740 /* 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
|
4741 AT_WORD_BOUNDARY anymore to support multibyte form. |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4742 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4743 The DEC Alpha C compiler 3.x generates incorrect code for the |
18262 | 4744 test WORDCHAR_P (d - 1) != WORDCHAR_P (d) in the expansion of |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
4745 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
|
4746 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
|
4747 |
13722
e2669b8a46e2
(AT_WORD_BOUNDARY): Disable macro.
Karl Heuer <kwzh@gnu.org>
parents:
13565
diff
changeset
|
4748 #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
|
4749 /* 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
|
4750 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
|
4751 #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
|
4752 (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
|
4753 || WORDCHAR_P (d - 1) != WORDCHAR_P (d)) |
13722
e2669b8a46e2
(AT_WORD_BOUNDARY): Disable macro.
Karl Heuer <kwzh@gnu.org>
parents:
13565
diff
changeset
|
4754 #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
|
4755 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4756 /* 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
|
4757 #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
|
4758 # 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
|
4759 # 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
|
4760 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
|
4761 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
|
4762 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
|
4763 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
|
4764 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
|
4765 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
|
4766 } 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
|
4767 #else |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
4768 # 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
|
4769 #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
|
4770 |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4771 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4772 /* 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
|
4773 |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4774 /* 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
|
4775 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
|
4776 static re_char * |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4777 skip_one_char (p) |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
4778 re_char *p; |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4779 { |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4780 switch (SWITCH_ENUM_CAST (*p++)) |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4781 { |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4782 case anychar: |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4783 break; |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49276
diff
changeset
|
4784 |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4785 case exactn: |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4786 p += *p + 1; |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4787 break; |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4788 |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4789 case charset_not: |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4790 case charset: |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4791 if (CHARSET_RANGE_TABLE_EXISTS_P (p - 1)) |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4792 { |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4793 int mcnt; |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4794 p = CHARSET_RANGE_TABLE (p - 1); |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4795 EXTRACT_NUMBER_AND_INCR (mcnt, p); |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4796 p = CHARSET_RANGE_TABLE_END (p, mcnt); |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4797 } |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4798 else |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4799 p += 1 + CHARSET_BITMAP_SIZE (p - 1); |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4800 break; |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49276
diff
changeset
|
4801 |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4802 case syntaxspec: |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4803 case notsyntaxspec: |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
4804 #ifdef emacs |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4805 case categoryspec: |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4806 case notcategoryspec: |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4807 #endif /* emacs */ |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4808 p++; |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4809 break; |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4810 |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4811 default: |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4812 p = NULL; |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4813 } |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4814 return p; |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4815 } |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4816 |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4817 |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4818 /* Jump over non-matching operations. */ |
52838
246c94760bee
(MAX_BUF_SIZE): Reduce to 2**15.
Richard M. Stallman <rms@gnu.org>
parents:
52680
diff
changeset
|
4819 static re_char * |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4820 skip_noops (p, pend) |
52838
246c94760bee
(MAX_BUF_SIZE): Reduce to 2**15.
Richard M. Stallman <rms@gnu.org>
parents:
52680
diff
changeset
|
4821 re_char *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
|
4822 { |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4823 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
|
4824 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
|
4825 { |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4826 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
|
4827 { |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4828 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
|
4829 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
|
4830 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
|
4831 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
|
4832 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
|
4833 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
|
4834 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
|
4835 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
|
4836 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
|
4837 break; |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4838 default: |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4839 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
|
4840 } |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4841 } |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4842 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
|
4843 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
|
4844 } |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4845 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4846 /* 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
|
4847 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
|
4848 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
|
4849 struct re_pattern_buffer *bufp; |
52838
246c94760bee
(MAX_BUF_SIZE): Reduce to 2**15.
Richard M. Stallman <rms@gnu.org>
parents:
52680
diff
changeset
|
4850 re_char *p1, *p2; |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4851 { |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4852 re_opcode_t op2; |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
4853 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
|
4854 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
|
4855 |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4856 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
|
4857 && 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
|
4858 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4859 /* 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
|
4860 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
|
4861 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
|
4862 match at least one of that. */ |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4863 p2 = skip_noops (p2, pend); |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4864 /* 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
|
4865 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
|
4866 /* p1 = skip_noops (p1, pend); */ |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4867 |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4868 assert (p1 >= bufp->buffer && p1 < pend |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4869 && p2 >= bufp->buffer && p2 <= pend); |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4870 |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4871 op2 = p2 == pend ? succeed : *p2; |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4872 |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4873 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
|
4874 { |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4875 case succeed: |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4876 case endbuf: |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4877 /* 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
|
4878 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
|
4879 { |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4880 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
|
4881 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
|
4882 } |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4883 break; |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49276
diff
changeset
|
4884 |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4885 case endline: |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4886 case exactn: |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4887 { |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
4888 register re_wchar_t c |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4889 = (re_opcode_t) *p2 == endline ? '\n' |
90757
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
4890 : RE_STRING_CHAR (p2 + 2, pend - p2 - 2, multibyte); |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4891 |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4892 if ((re_opcode_t) *p1 == exactn) |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4893 { |
90757
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
4894 if (c != RE_STRING_CHAR (p1 + 2, pend - p1 - 2, multibyte)) |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4895 { |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4896 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
|
4897 return 1; |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4898 } |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4899 } |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4900 |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4901 else if ((re_opcode_t) *p1 == charset |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4902 || (re_opcode_t) *p1 == charset_not) |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4903 { |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4904 int not = (re_opcode_t) *p1 == charset_not; |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4905 |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4906 /* 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
|
4907 at `p1'. */ |
89455
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
4908 if (! multibyte || IS_REAL_ASCII (c)) |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4909 { |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4910 if (c < CHARSET_BITMAP_SIZE (p1) * BYTEWIDTH |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4911 && p1[2 + c / BYTEWIDTH] & (1 << (c % BYTEWIDTH))) |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4912 not = !not; |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4913 } |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4914 else if (CHARSET_RANGE_TABLE_EXISTS_P (p1)) |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4915 CHARSET_LOOKUP_RANGE_TABLE (not, c, p1); |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4916 |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4917 /* `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
|
4918 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
|
4919 if (!not) |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4920 { |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4921 DEBUG_PRINT1 (" No match => fast loop.\n"); |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4922 return 1; |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4923 } |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4924 } |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4925 else if ((re_opcode_t) *p1 == anychar |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4926 && c == '\n') |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4927 { |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4928 DEBUG_PRINT1 (" . != \\n => fast loop.\n"); |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4929 return 1; |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4930 } |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4931 } |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4932 break; |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4933 |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4934 case charset: |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4935 { |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4936 if ((re_opcode_t) *p1 == exactn) |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4937 /* Reuse the code above. */ |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4938 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
|
4939 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4940 /* 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
|
4941 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
|
4942 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
|
4943 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
|
4944 { |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4945 /* 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
|
4946 So, for the size of bitmap in P2, `p2[1]' is |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
4947 enough. But P1 may have range table, so 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
|
4948 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
|
4949 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
|
4950 |
89455
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
4951 In a multibyte case, we know that all the character |
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
4952 listed in P2 is ASCII. In a unibyte case, P1 has only a |
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
4953 bitmap table. So, in both cases, it is enough to test |
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
4954 only the bitmap table of 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
|
4955 |
35525
95c2eedea354
(mutually_exclusive_p): Don't blindly handle `charset_not'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33066
diff
changeset
|
4956 if ((re_opcode_t) *p1 == charset) |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4957 { |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4958 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
|
4959 /* 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
|
4960 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
|
4961 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
|
4962 (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
|
4963 && 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
|
4964 idx++) |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4965 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
|
4966 break; |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4967 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4968 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
|
4969 || 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
|
4970 { |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4971 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
|
4972 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
|
4973 } |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4974 } |
35525
95c2eedea354
(mutually_exclusive_p): Don't blindly handle `charset_not'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33066
diff
changeset
|
4975 else if ((re_opcode_t) *p1 == charset_not) |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4976 { |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4977 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
|
4978 /* We win if the charset_not inside the loop lists |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
4979 every character listed in the charset after. */ |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4980 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
|
4981 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
|
4982 || (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
|
4983 && ((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
|
4984 break; |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4985 |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4986 if (idx == p2[1]) |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4987 { |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4988 DEBUG_PRINT1 (" No match => fast loop.\n"); |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4989 return 1; |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4990 } |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4991 } |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4992 } |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4993 } |
35533
6bd789b0ccc3
(mutually_exclusive_p): Add missing `break' at the end of `charset' processing.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35525
diff
changeset
|
4994 break; |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49276
diff
changeset
|
4995 |
35525
95c2eedea354
(mutually_exclusive_p): Don't blindly handle `charset_not'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33066
diff
changeset
|
4996 case charset_not: |
95c2eedea354
(mutually_exclusive_p): Don't blindly handle `charset_not'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33066
diff
changeset
|
4997 switch (SWITCH_ENUM_CAST (*p1)) |
95c2eedea354
(mutually_exclusive_p): Don't blindly handle `charset_not'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33066
diff
changeset
|
4998 { |
95c2eedea354
(mutually_exclusive_p): Don't blindly handle `charset_not'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33066
diff
changeset
|
4999 case exactn: |
95c2eedea354
(mutually_exclusive_p): Don't blindly handle `charset_not'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33066
diff
changeset
|
5000 case charset: |
95c2eedea354
(mutually_exclusive_p): Don't blindly handle `charset_not'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33066
diff
changeset
|
5001 /* Reuse the code above. */ |
95c2eedea354
(mutually_exclusive_p): Don't blindly handle `charset_not'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33066
diff
changeset
|
5002 return mutually_exclusive_p (bufp, p2, p1); |
95c2eedea354
(mutually_exclusive_p): Don't blindly handle `charset_not'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33066
diff
changeset
|
5003 case charset_not: |
95c2eedea354
(mutually_exclusive_p): Don't blindly handle `charset_not'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33066
diff
changeset
|
5004 /* When we have two charset_not, it's very unlikely that |
95c2eedea354
(mutually_exclusive_p): Don't blindly handle `charset_not'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33066
diff
changeset
|
5005 they don't overlap. The union of the two sets of excluded |
95c2eedea354
(mutually_exclusive_p): Don't blindly handle `charset_not'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33066
diff
changeset
|
5006 chars should cover all possible chars, which, as a matter of |
95c2eedea354
(mutually_exclusive_p): Don't blindly handle `charset_not'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33066
diff
changeset
|
5007 fact, is virtually impossible in multibyte buffers. */ |
47008
c299d527a088
(PATFETCH): Remove the translating fetch.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44145
diff
changeset
|
5008 break; |
35525
95c2eedea354
(mutually_exclusive_p): Don't blindly handle `charset_not'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33066
diff
changeset
|
5009 } |
95c2eedea354
(mutually_exclusive_p): Don't blindly handle `charset_not'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33066
diff
changeset
|
5010 break; |
95c2eedea354
(mutually_exclusive_p): Don't blindly handle `charset_not'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33066
diff
changeset
|
5011 |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
5012 case wordend: |
55690
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
5013 return ((re_opcode_t) *p1 == syntaxspec && p1[1] == Sword); |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
5014 case symend: |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
5015 return ((re_opcode_t) *p1 == syntaxspec |
55690
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
5016 && (p1[1] == Ssymbol || p1[1] == Sword)); |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
5017 case notsyntaxspec: |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
5018 return ((re_opcode_t) *p1 == syntaxspec && p1[1] == p2[1]); |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
5019 |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
5020 case wordbeg: |
55690
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
5021 return ((re_opcode_t) *p1 == notsyntaxspec && p1[1] == Sword); |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
5022 case symbeg: |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
5023 return ((re_opcode_t) *p1 == notsyntaxspec |
55690
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
5024 && (p1[1] == Ssymbol || p1[1] == Sword)); |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
5025 case syntaxspec: |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
5026 return ((re_opcode_t) *p1 == notsyntaxspec && p1[1] == p2[1]); |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
5027 |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
5028 case wordbound: |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
5029 return (((re_opcode_t) *p1 == notsyntaxspec |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
5030 || (re_opcode_t) *p1 == syntaxspec) |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
5031 && p1[1] == Sword); |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
5032 |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
5033 #ifdef emacs |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
5034 case categoryspec: |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
5035 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
|
5036 case notcategoryspec: |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
5037 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
|
5038 #endif /* emacs */ |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
5039 |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
5040 default: |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
5041 ; |
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 } |
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 /* 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
|
5045 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
|
5046 } |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5047 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5048 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5049 /* 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
|
5050 |
18262 | 5051 #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
|
5052 /* 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
|
5053 |
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 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
|
5055 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
|
5056 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
|
5057 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
|
5058 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
|
5059 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
|
5060 { |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
5061 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
|
5062 pos, 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
|
5063 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
|
5064 } |
31312
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
5065 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
|
5066 #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
|
5067 |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5068 #ifdef emacs |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5069 /* In Emacs, this is the string or buffer in which we |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
5070 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
|
5071 Lisp_Object re_match_object; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5072 #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
|
5073 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5074 /* 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
|
5075 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
|
5076 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
|
5077 matching at STOP. |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5078 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5079 If REGS is non-null and the `no_sub' field of BUFP is nonzero, we |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
5080 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
|
5081 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
|
5082 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5083 We return -1 if no match, -2 if an internal error (such as the |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
5084 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
|
5085 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
|
5086 |
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 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
|
5088 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
|
5089 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
|
5090 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
|
5091 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
|
5092 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
|
5093 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
|
5094 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
|
5095 { |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5096 int result; |
18262 | 5097 |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5098 #ifdef emacs |
21482
9898a4994a12
(re_match_2, re_search_2): Convert position to a charpos,
Karl Heuer <kwzh@gnu.org>
parents:
21404
diff
changeset
|
5099 int charpos; |
9898a4994a12
(re_match_2, re_search_2): Convert position to a charpos,
Karl Heuer <kwzh@gnu.org>
parents:
21404
diff
changeset
|
5100 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
|
5101 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
|
5102 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
|
5103 #endif |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5104 |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
5105 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
|
5106 (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
|
5107 pos, 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
|
5108 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
|
5109 } |
31312
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
5110 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
|
5111 |
89061
9a9b54d06f3d
* regex.c (RE_TARGET_MULTIBYTE_P): New macro.
Kenichi Handa <handa@m17n.org>
parents:
88387
diff
changeset
|
5112 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5113 /* This is a separate function so that we can force an alloca cleanup |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
5114 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
|
5115 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
|
5116 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
|
5117 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
|
5118 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
|
5119 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
|
5120 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
|
5121 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
|
5122 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
|
5123 { |
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 /* 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
|
5125 int mcnt; |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
5126 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
|
5127 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
|
5128 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5129 /* 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
|
5130 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
|
5131 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5132 /* Pointers into string1 and string2, just past the last characters in |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
5133 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
|
5134 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
|
5135 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5136 /* 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
|
5137 re_char *d, *dend; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5138 |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
5139 /* 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
|
5140 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
|
5141 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
|
5142 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
|
5143 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
|
5144 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5145 /* 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
|
5146 re_char *p = bufp->buffer; |
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
5147 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
|
5148 |
18262 | 5149 /* 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
|
5150 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
|
5151 |
90757
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
5152 /* Nonzero if BUFP is setup from a multibyte regex. */ |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
5153 const boolean multibyte = RE_MULTIBYTE_P (bufp); |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5154 |
90757
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
5155 /* Nonzero if STRING1/STRING2 are multibyte. */ |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
5156 const boolean target_multibyte = RE_TARGET_MULTIBYTE_P (bufp); |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
5157 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5158 /* 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
|
5159 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
|
5160 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
|
5161 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
|
5162 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
|
5163 to resume scanning the pattern; the second one is where to resume |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
5164 scanning the strings. */ |
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
5165 #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
|
5166 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
|
5167 #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
|
5168 #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
|
5169 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
|
5170 #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
|
5171 |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
5172 #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
|
5173 /* 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
|
5174 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
|
5175 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
|
5176 #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
|
5177 |
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 /* We fill all the registers internally, independent of what we |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
5179 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
|
5180 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
|
5181 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
|
5182 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5183 /* 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
|
5184 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
|
5185 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
|
5186 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
|
5187 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
|
5188 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
|
5189 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
|
5190 #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
|
5191 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
|
5192 #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
|
5193 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5194 /* 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
|
5195 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
|
5196 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
|
5197 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
|
5198 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
|
5199 #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
|
5200 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
|
5201 #endif |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5202 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5203 /* 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
|
5204 allocate space for that if we're not allocating space for anything |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
5205 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
|
5206 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
|
5207 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
|
5208 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
|
5209 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
|
5210 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
|
5211 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
|
5212 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5213 #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
|
5214 /* Counts the total number of registers pushed. */ |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5215 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
|
5216 #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
|
5217 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5218 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
|
5219 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5220 INIT_FAIL_STACK (); |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5221 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5222 #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
|
5223 /* 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
|
5224 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
|
5225 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
|
5226 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
|
5227 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
|
5228 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
|
5229 { |
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
|
5230 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
|
5231 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
|
5232 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
|
5233 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
|
5234 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5235 if (!(regstart && regend && best_regstart && best_regend)) |
18262 | 5236 { |
5237 FREE_VARIABLES (); | |
5238 return -2; | |
5239 } | |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5240 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5241 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
|
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 /* We must initialize all our variables to NULL, so that |
18262 | 5244 `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
|
5245 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
|
5246 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5247 #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
|
5248 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5249 /* 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
|
5250 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
|
5251 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5252 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
|
5253 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
|
5254 } |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5255 |
11864
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 /* 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
|
5257 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
|
5258 register information struct. */ |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
5259 for (reg = 1; reg < num_regs; reg++) |
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
5260 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
|
5261 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5262 /* We move `string1' into `string2' if the latter's empty -- but not if |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
5263 `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
|
5264 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
|
5265 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5266 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
|
5267 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
|
5268 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
|
5269 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
|
5270 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5271 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
|
5272 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
|
5273 |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5274 /* `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
|
5275 `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
|
5276 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
|
5277 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
|
5278 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
|
5279 equal `string2'. */ |
28662
d40a7f046efe
(re_match_2_internal): Don't shorten the strings anymore,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28473
diff
changeset
|
5280 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
|
5281 { |
28662
d40a7f046efe
(re_match_2_internal): Don't shorten the strings anymore,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28473
diff
changeset
|
5282 /* 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
|
5283 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
|
5284 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
|
5285 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
|
5286 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5287 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
|
5288 { |
29296
b2c75746a989
(PREFETCH_NOLIMIT): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29194
diff
changeset
|
5289 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
|
5290 { |
d40a7f046efe
(re_match_2_internal): Don't shorten the strings anymore,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28473
diff
changeset
|
5291 /* 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
|
5292 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
|
5293 /* BEWARE! |
d40a7f046efe
(re_match_2_internal): Don't shorten the strings anymore,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28473
diff
changeset
|
5294 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
|
5295 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
|
5296 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
|
5297 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
|
5298 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
|
5299 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
|
5300 end_match_2). */ |
d40a7f046efe
(re_match_2_internal): Don't shorten the strings anymore,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28473
diff
changeset
|
5301 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
|
5302 } |
d40a7f046efe
(re_match_2_internal): Don't shorten the strings anymore,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28473
diff
changeset
|
5303 else |
29296
b2c75746a989
(PREFETCH_NOLIMIT): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29194
diff
changeset
|
5304 { /* 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
|
5305 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
|
5306 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
|
5307 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
|
5308 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
|
5309 } |
d40a7f046efe
(re_match_2_internal): Don't shorten the strings anymore,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28473
diff
changeset
|
5310 d = string1 + pos; |
d40a7f046efe
(re_match_2_internal): Don't shorten the strings anymore,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28473
diff
changeset
|
5311 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
|
5312 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5313 |
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 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
|
5315 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
|
5316 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
|
5317 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
|
5318 DEBUG_PRINT1 ("'\n"); |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5319 |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
5320 /* 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
|
5321 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
|
5322 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
|
5323 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
|
5324 { |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5325 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
|
5326 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5327 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
|
5328 { /* End of pattern means we might have succeeded. */ |
18262 | 5329 DEBUG_PRINT1 ("end of pattern ... "); |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5330 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5331 /* If we haven't matched the entire string, and we want the |
18262 | 5332 longest match, try backtracking. */ |
5333 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
|
5334 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5335 /* 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
|
5336 as the best previous match. */ |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5337 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
|
5338 == 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
|
5339 /* 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
|
5340 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
|
5341 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5342 /* AIX compiler got confused when this was combined |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
5343 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
|
5344 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
|
5345 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
|
5346 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
|
5347 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
|
5348 |
18262 | 5349 DEBUG_PRINT1 ("backtracking.\n"); |
5350 | |
5351 if (!FAIL_STACK_EMPTY ()) | |
5352 { /* More failure points to try. */ | |
5353 | |
5354 /* If exceeds best match so far, save it. */ | |
5355 if (!best_regs_set || best_match_p) | |
5356 { | |
5357 best_regs_set = true; | |
5358 match_end = d; | |
5359 | |
5360 DEBUG_PRINT1 ("\nSAVING match as best so far.\n"); | |
5361 | |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
5362 for (reg = 1; reg < num_regs; reg++) |
18262 | 5363 { |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
5364 best_regstart[reg] = regstart[reg]; |
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
5365 best_regend[reg] = regend[reg]; |
18262 | 5366 } |
5367 } | |
5368 goto fail; | |
5369 } | |
5370 | |
5371 /* If no failure points, don't restore garbage. And if | |
5372 last match is real best match, don't restore second | |
5373 best one. */ | |
5374 else if (best_regs_set && !best_match_p) | |
5375 { | |
5376 restore_best_regs: | |
5377 /* Restore best match. It may happen that `dend == | |
5378 end_match_1' while the restored d is in string2. | |
5379 For example, the pattern `x.*y.*z' against the | |
5380 strings `x-' and `y-z-', if the two strings are | |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
5381 not consecutive in memory. */ |
18262 | 5382 DEBUG_PRINT1 ("Restoring best registers.\n"); |
5383 | |
5384 d = match_end; | |
5385 dend = ((d >= string1 && d <= end1) | |
5386 ? 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
|
5387 |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
5388 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
|
5389 { |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
5390 regstart[reg] = best_regstart[reg]; |
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
5391 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
|
5392 } |
18262 | 5393 } |
5394 } /* 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
|
5395 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5396 succeed_label: |
18262 | 5397 DEBUG_PRINT1 ("Accepting match.\n"); |
5398 | |
5399 /* If caller wants register contents data back, do it. */ | |
5400 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
|
5401 { |
18262 | 5402 /* Have the register data arrays been allocated? */ |
5403 if (bufp->regs_allocated == REGS_UNALLOCATED) | |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
5404 { /* No. So allocate them with malloc. We need one |
18262 | 5405 extra element beyond `num_regs' for the `-1' marker |
5406 GNU code uses. */ | |
5407 regs->num_regs = MAX (RE_NREGS, num_regs + 1); | |
5408 regs->start = TALLOC (regs->num_regs, regoff_t); | |
5409 regs->end = TALLOC (regs->num_regs, regoff_t); | |
5410 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
|
5411 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5412 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
|
5413 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
|
5414 } |
18262 | 5415 bufp->regs_allocated = REGS_REALLOCATE; |
5416 } | |
5417 else if (bufp->regs_allocated == REGS_REALLOCATE) | |
5418 { /* Yes. If we need more elements than were already | |
5419 allocated, reallocate them. If we need fewer, just | |
5420 leave it alone. */ | |
5421 if (regs->num_regs < num_regs + 1) | |
5422 { | |
5423 regs->num_regs = num_regs + 1; | |
5424 RETALLOC (regs->start, regs->num_regs, regoff_t); | |
5425 RETALLOC (regs->end, regs->num_regs, regoff_t); | |
5426 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
|
5427 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5428 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
|
5429 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
|
5430 } |
18262 | 5431 } |
5432 } | |
5433 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
|
5434 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5435 /* These braces fend off a "empty body in an else-statement" |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
5436 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
|
5437 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
|
5438 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5439 |
18262 | 5440 /* Convert the pointer data in `regstart' and `regend' to |
5441 indices. Register zero has to be set differently, | |
5442 since we haven't kept track of any info for it. */ | |
5443 if (regs->num_regs > 0) | |
5444 { | |
5445 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
|
5446 regs->end[0] = POINTER_TO_OFFSET (d); |
18262 | 5447 } |
5448 | |
5449 /* Go through the first `min (num_regs, regs->num_regs)' | |
5450 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
|
5451 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
|
5452 { |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
5453 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
|
5454 regs->start[reg] = regs->end[reg] = -1; |
18262 | 5455 else |
5456 { | |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
5457 regs->start[reg] |
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
5458 = (regoff_t) POINTER_TO_OFFSET (regstart[reg]); |
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
5459 regs->end[reg] |
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
5460 = (regoff_t) POINTER_TO_OFFSET (regend[reg]); |
18262 | 5461 } |
11864
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 } |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5463 |
18262 | 5464 /* If the regs structure we return has more elements than |
5465 were in the pattern, set the extra elements to -1. If | |
5466 we (re)allocated the registers, this is the case, | |
5467 because we always allocate enough to have at least one | |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
5468 -1 at the end. */ |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
5469 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
|
5470 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
|
5471 } /* 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
|
5472 |
18262 | 5473 DEBUG_PRINT4 ("%u failure points pushed, %u popped (%u remain).\n", |
5474 nfailure_points_pushed, nfailure_points_popped, | |
5475 nfailure_points_pushed - nfailure_points_popped); | |
5476 DEBUG_PRINT2 ("%u registers pushed.\n", num_regs_pushed); | |
5477 | |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
5478 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
|
5479 |
18262 | 5480 DEBUG_PRINT2 ("Returning %d from re_match_2.\n", mcnt); |
5481 | |
5482 FREE_VARIABLES (); | |
5483 return mcnt; | |
5484 } | |
5485 | |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
5486 /* 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
|
5487 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
|
5488 { |
18262 | 5489 /* Ignore these. Used to ignore the n of succeed_n's which |
5490 currently have n == 0. */ | |
5491 case no_op: | |
5492 DEBUG_PRINT1 ("EXECUTING no_op.\n"); | |
5493 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
|
5494 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5495 case succeed: |
18262 | 5496 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
|
5497 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
|
5498 |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
5499 /* Match the next n pattern characters exactly. The following |
18262 | 5500 byte in the pattern defines n, and the n bytes after that |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
5501 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
|
5502 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
|
5503 mcnt = *p++; |
18262 | 5504 DEBUG_PRINT2 ("EXECUTING exactn %d.\n", mcnt); |
5505 | |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
5506 /* 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
|
5507 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
|
5508 |
89455
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
5509 #ifndef emacs |
18262 | 5510 /* This is written out as an if-else so we don't waste time |
5511 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
|
5512 if (RE_TRANSLATE_P (translate)) |
89455
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
5513 do |
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
5514 { |
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
5515 PREFETCH (); |
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
5516 if (RE_TRANSLATE (translate, *d) != *p++) |
21348
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
5517 { |
89455
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
5518 d = dfail; |
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
5519 goto fail; |
21348
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
5520 } |
89455
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
5521 d++; |
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
5522 } |
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
5523 while (--mcnt); |
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
5524 else |
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
5525 do |
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
5526 { |
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
5527 PREFETCH (); |
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
5528 if (*d++ != *p++) |
21348
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
5529 { |
89455
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
5530 d = dfail; |
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
5531 goto fail; |
21348
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
5532 } |
89455
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
5533 } |
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
5534 while (--mcnt); |
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
5535 #else /* emacs */ |
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
5536 /* The cost of testing `translate' is comparatively small. */ |
90757
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
5537 if (target_multibyte) |
89455
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
5538 do |
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
5539 { |
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
5540 int pat_charlen, buf_charlen; |
90757
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
5541 int pat_ch, buf_ch; |
89455
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
5542 |
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
5543 PREFETCH (); |
90757
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
5544 if (multibyte) |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
5545 pat_ch = STRING_CHAR_AND_LENGTH (p, pend - p, pat_charlen); |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
5546 else |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
5547 { |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
5548 pat_ch = RE_CHAR_TO_MULTIBYTE (*p); |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
5549 pat_charlen = 1; |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
5550 } |
89455
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
5551 buf_ch = STRING_CHAR_AND_LENGTH (d, dend - d, buf_charlen); |
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
5552 |
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
5553 if (TRANSLATE (buf_ch) != pat_ch) |
21348
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
5554 { |
89455
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
5555 d = dfail; |
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
5556 goto fail; |
21348
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
5557 } |
89455
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
5558 |
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
5559 p += pat_charlen; |
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
5560 d += buf_charlen; |
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
5561 mcnt -= pat_charlen; |
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
5562 } |
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
5563 while (mcnt > 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
|
5564 else |
89455
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
5565 do |
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
5566 { |
90757
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
5567 int pat_charlen, buf_charlen; |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
5568 int pat_ch, buf_ch; |
89455
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
5569 |
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
5570 PREFETCH (); |
90757
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
5571 if (multibyte) |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
5572 { |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
5573 pat_ch = STRING_CHAR_AND_LENGTH (p, pend - p, pat_charlen); |
95856
f13a77e0e34f
* character.h (CHAR_TO_BYTE_SAFE): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
95479
diff
changeset
|
5574 pat_ch = RE_CHAR_TO_UNIBYTE (pat_ch); |
21348
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
5575 } |
90757
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
5576 else |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
5577 { |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
5578 pat_ch = *p; |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
5579 pat_charlen = 1; |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
5580 } |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
5581 buf_ch = RE_CHAR_TO_MULTIBYTE (*d); |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
5582 if (! CHAR_BYTE8_P (buf_ch)) |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
5583 { |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
5584 buf_ch = TRANSLATE (buf_ch); |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
5585 buf_ch = RE_CHAR_TO_UNIBYTE (buf_ch); |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
5586 if (buf_ch < 0) |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
5587 buf_ch = *d; |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
5588 } |
92979
7967dd572109
(re_match_2_internal): Correct matching of eight bit
Andreas Schwab <schwab@suse.de>
parents:
91804
diff
changeset
|
5589 else |
7967dd572109
(re_match_2_internal): Correct matching of eight bit
Andreas Schwab <schwab@suse.de>
parents:
91804
diff
changeset
|
5590 buf_ch = *d; |
90757
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
5591 if (buf_ch != pat_ch) |
89455
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
5592 { |
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
5593 d = dfail; |
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
5594 goto fail; |
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
5595 } |
90757
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
5596 p += pat_charlen; |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
5597 d++; |
89455
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
5598 } |
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
5599 while (--mcnt); |
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
5600 #endif |
18262 | 5601 break; |
5602 | |
5603 | |
5604 /* 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
|
5605 case anychar: |
21348
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
5606 { |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
5607 int buf_charlen; |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
5608 re_wchar_t buf_ch; |
21348
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
5609 |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
5610 DEBUG_PRINT1 ("EXECUTING anychar.\n"); |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
5611 |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
5612 PREFETCH (); |
90757
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
5613 buf_ch = RE_STRING_CHAR_AND_LENGTH (d, dend - d, buf_charlen, |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
5614 target_multibyte); |
21348
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
5615 buf_ch = TRANSLATE (buf_ch); |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
5616 |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
5617 if ((!(bufp->syntax & RE_DOT_NEWLINE) |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
5618 && buf_ch == '\n') |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
5619 || ((bufp->syntax & RE_DOT_NOT_NULL) |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
5620 && buf_ch == '\000')) |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
5621 goto fail; |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
5622 |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
5623 DEBUG_PRINT2 (" Matched `%d'.\n", *d); |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
5624 d += buf_charlen; |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
5625 } |
11864
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 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
|
5627 |
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 |
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 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
|
5630 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
|
5631 { |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5632 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
|
5633 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
|
5634 int len; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5635 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5636 /* 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
|
5637 range table. */ |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
5638 re_char *range_table; |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5639 |
25440
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
5640 /* Nonzero if there is a range table. */ |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5641 int range_table_exists; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5642 |
25440
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
5643 /* 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
|
5644 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
|
5645 int count = 0; |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5646 |
93006
72213c342fe7
(re_match_2_internal): Correct matching of a charset
Andreas Schwab <schwab@suse.de>
parents:
92979
diff
changeset
|
5647 /* Whether matching against a unibyte character. */ |
72213c342fe7
(re_match_2_internal): Correct matching of a charset
Andreas Schwab <schwab@suse.de>
parents:
92979
diff
changeset
|
5648 boolean unibyte_char = false; |
72213c342fe7
(re_match_2_internal): Correct matching of a charset
Andreas Schwab <schwab@suse.de>
parents:
92979
diff
changeset
|
5649 |
18262 | 5650 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
|
5651 |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5652 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
|
5653 |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5654 if (range_table_exists) |
25440
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
5655 { |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
5656 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
|
5657 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
|
5658 } |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5659 |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
5660 PREFETCH (); |
90757
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
5661 c = RE_STRING_CHAR_AND_LENGTH (d, dend - d, len, target_multibyte); |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
5662 if (target_multibyte) |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
5663 { |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
5664 int c1; |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
5665 |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
5666 c = TRANSLATE (c); |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
5667 c1 = RE_CHAR_TO_UNIBYTE (c); |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
5668 if (c1 >= 0) |
93006
72213c342fe7
(re_match_2_internal): Correct matching of a charset
Andreas Schwab <schwab@suse.de>
parents:
92979
diff
changeset
|
5669 { |
72213c342fe7
(re_match_2_internal): Correct matching of a charset
Andreas Schwab <schwab@suse.de>
parents:
92979
diff
changeset
|
5670 unibyte_char = true; |
72213c342fe7
(re_match_2_internal): Correct matching of a charset
Andreas Schwab <schwab@suse.de>
parents:
92979
diff
changeset
|
5671 c = c1; |
72213c342fe7
(re_match_2_internal): Correct matching of a charset
Andreas Schwab <schwab@suse.de>
parents:
92979
diff
changeset
|
5672 } |
90757
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
5673 } |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
5674 else |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
5675 { |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
5676 int c1 = RE_CHAR_TO_MULTIBYTE (c); |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
5677 |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
5678 if (! CHAR_BYTE8_P (c1)) |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
5679 { |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
5680 c1 = TRANSLATE (c1); |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
5681 c1 = RE_CHAR_TO_UNIBYTE (c1); |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
5682 if (c1 >= 0) |
93006
72213c342fe7
(re_match_2_internal): Correct matching of a charset
Andreas Schwab <schwab@suse.de>
parents:
92979
diff
changeset
|
5683 { |
72213c342fe7
(re_match_2_internal): Correct matching of a charset
Andreas Schwab <schwab@suse.de>
parents:
92979
diff
changeset
|
5684 unibyte_char = true; |
72213c342fe7
(re_match_2_internal): Correct matching of a charset
Andreas Schwab <schwab@suse.de>
parents:
92979
diff
changeset
|
5685 c = c1; |
72213c342fe7
(re_match_2_internal): Correct matching of a charset
Andreas Schwab <schwab@suse.de>
parents:
92979
diff
changeset
|
5686 } |
90757
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
5687 } |
93033
408f1bfeb7e8
(re_match_2_internal): Properly match raw 8-bit bytes
Andreas Schwab <schwab@suse.de>
parents:
93006
diff
changeset
|
5688 else |
408f1bfeb7e8
(re_match_2_internal): Properly match raw 8-bit bytes
Andreas Schwab <schwab@suse.de>
parents:
93006
diff
changeset
|
5689 unibyte_char = true; |
90757
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
5690 } |
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
5691 |
93006
72213c342fe7
(re_match_2_internal): Correct matching of a charset
Andreas Schwab <schwab@suse.de>
parents:
92979
diff
changeset
|
5692 if (unibyte_char && c < (1 << BYTEWIDTH)) |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5693 { /* Lookup bitmap. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5694 /* Cast to `unsigned' instead of `unsigned char' in |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5695 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
|
5696 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
|
5697 && 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
|
5698 not = !not; |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5699 } |
25440
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
5700 #ifdef emacs |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5701 else if (range_table_exists) |
25440
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
5702 { |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
5703 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
|
5704 |
31360
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
5705 if ( (class_bits & BIT_LOWER && ISLOWER (c)) |
b8513fe83893
(WIDE_CHAR_SUPPORT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31312
diff
changeset
|
5706 | (class_bits & BIT_MULTIBYTE) |
25440
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
5707 | (class_bits & BIT_PUNCT && ISPUNCT (c)) |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
5708 | (class_bits & BIT_SPACE && ISSPACE (c)) |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
5709 | (class_bits & BIT_UPPER && ISUPPER (c)) |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
5710 | (class_bits & BIT_WORD && ISWORD (c))) |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
5711 not = !not; |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
5712 else |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
5713 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
|
5714 } |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
5715 #endif /* emacs */ |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
5716 |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
5717 if (range_table_exists) |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
5718 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
|
5719 else |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
5720 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
|
5721 |
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 if (!not) goto fail; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5723 |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5724 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
|
5725 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
|
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 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5728 |
18262 | 5729 /* 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
|
5730 The argument is the register number. The text |
18262 | 5731 matched within the group is recorded (in the internal |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
5732 registers data structure) under the register number. */ |
18262 | 5733 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
|
5734 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
|
5735 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5736 /* 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
|
5737 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
|
5738 |
18262 | 5739 regstart[*p] = d; |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
5740 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
|
5741 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
|
5742 |
18262 | 5743 /* 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
|
5744 p += 1; |
18262 | 5745 break; |
5746 | |
5747 | |
5748 /* 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
|
5749 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
|
5750 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
|
5751 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
|
5752 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5753 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
|
5754 /* Strictly speaking, there should be code such as: |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49276
diff
changeset
|
5755 |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
5756 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
|
5757 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
|
5758 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5759 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
|
5760 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
|
5761 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
|
5762 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
|
5763 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
|
5764 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
|
5765 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
|
5766 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
|
5767 |
18262 | 5768 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
|
5769 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
|
5770 |
18262 | 5771 /* 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
|
5772 p += 1; |
18262 | 5773 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
|
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 |
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 /* \<digit> has been turned into a `duplicate' command which is |
18262 | 5777 followed by the numeric value of <digit> as the register number. */ |
5778 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
|
5779 { |
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
|
5780 register re_char *d2, *dend2; |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
5781 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
|
5782 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
|
5783 |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
5784 /* Can't back reference a group which we've never matched. */ |
18262 | 5785 if (REG_UNSET (regstart[regno]) || REG_UNSET (regend[regno])) |
5786 goto fail; | |
5787 | |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
5788 /* Where in input to try to start matching. */ |
18262 | 5789 d2 = regstart[regno]; |
5790 | |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
5791 /* 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
|
5792 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
|
5793 |
18262 | 5794 /* Where to stop matching; if both the place to start and |
5795 the place to stop matching are in the same string, then | |
5796 set to the place to stop, otherwise, for now have to use | |
5797 the end of the first string. */ | |
5798 | |
5799 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
|
5800 == 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
|
5801 ? 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
|
5802 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
|
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 necessary, advance to next segment in register |
18262 | 5805 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
|
5806 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
|
5807 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5808 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
|
5809 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
|
5810 |
18262 | 5811 /* End of string1 => advance to string2. */ |
5812 d2 = string2; | |
5813 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
|
5814 } |
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 /* 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
|
5816 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
|
5817 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5818 /* 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
|
5819 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
|
5820 |
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 /* 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
|
5822 mcnt = dend - d; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5823 |
11864
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 /* Want how many consecutive characters we can match in |
18262 | 5825 one shot, so, if necessary, adjust the count. */ |
5826 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
|
5827 mcnt = dend2 - d2; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5828 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5829 /* Compare that many; failure if mismatch, else move |
18262 | 5830 past them. */ |
21562
afd0a04106ec
Use RE_TRANSLATE_P to check whether translation is
Andreas Schwab <schwab@suse.de>
parents:
21558
diff
changeset
|
5831 if (RE_TRANSLATE_P (translate) |
90764
324e371fbbe5
(GET_CHAR_BEFORE_2, GET_CHAR_AFTER): Check the variable
Kenichi Handa <handa@m17n.org>
parents:
90757
diff
changeset
|
5832 ? bcmp_translate (d, d2, mcnt, translate, target_multibyte) |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
5833 : 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
|
5834 { |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
5835 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
|
5836 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
|
5837 } |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5838 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
|
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 } |
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 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
|
5842 |
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 |
18262 | 5844 /* 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
|
5845 (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
|
5846 case begline: |
18262 | 5847 DEBUG_PRINT1 ("EXECUTING begline.\n"); |
5848 | |
5849 if (AT_STRINGS_BEG (d)) | |
5850 { | |
5851 if (!bufp->not_bol) break; | |
5852 } | |
28662
d40a7f046efe
(re_match_2_internal): Don't shorten the strings anymore,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28473
diff
changeset
|
5853 else |
18262 | 5854 { |
89061
9a9b54d06f3d
* regex.c (RE_TARGET_MULTIBYTE_P): New macro.
Kenichi Handa <handa@m17n.org>
parents:
88387
diff
changeset
|
5855 unsigned c; |
28662
d40a7f046efe
(re_match_2_internal): Don't shorten the strings anymore,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28473
diff
changeset
|
5856 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
|
5857 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
|
5858 break; |
18262 | 5859 } |
5860 /* In all other cases, we fail. */ | |
5861 goto fail; | |
5862 | |
5863 | |
5864 /* 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
|
5865 case endline: |
18262 | 5866 DEBUG_PRINT1 ("EXECUTING endline.\n"); |
5867 | |
5868 if (AT_STRINGS_END (d)) | |
5869 { | |
5870 if (!bufp->not_eol) break; | |
5871 } | |
29296
b2c75746a989
(PREFETCH_NOLIMIT): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29194
diff
changeset
|
5872 else |
18262 | 5873 { |
29296
b2c75746a989
(PREFETCH_NOLIMIT): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29194
diff
changeset
|
5874 PREFETCH_NOLIMIT (); |
31312
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
5875 if (*d == '\n') |
29296
b2c75746a989
(PREFETCH_NOLIMIT): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29194
diff
changeset
|
5876 break; |
18262 | 5877 } |
5878 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
|
5879 |
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 /* Match at the very beginning of the data. */ |
18262 | 5882 case begbuf: |
5883 DEBUG_PRINT1 ("EXECUTING begbuf.\n"); | |
5884 if (AT_STRINGS_BEG (d)) | |
5885 break; | |
5886 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
|
5887 |
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 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5889 /* Match at the very end of the data. */ |
18262 | 5890 case endbuf: |
5891 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
|
5892 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
|
5893 break; |
18262 | 5894 goto fail; |
5895 | |
5896 | |
5897 /* on_failure_keep_string_jump is used to optimize `.*\n'. It | |
5898 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
|
5899 `POP_FAILURE_POINT' will keep the current value for the |
18262 | 5900 string, instead of restoring it. To see why, consider |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
5901 matching `foo\nbar' against `.*\n'. The .* matches the foo; |
18262 | 5902 then the . fails against the \n. But the next thing we want |
5903 to do is match the \n against the \n; if we restored the | |
5904 string value, we would be back at the foo. | |
5905 | |
5906 Because this is used only in specific cases, we don't need to | |
5907 check all the things that `on_failure_jump' does, to make | |
5908 sure the right things get saved on the stack. Hence we don't | |
5909 share its code. The only reason to push anything on the | |
5910 stack at all is that otherwise we would have to change | |
5911 `anychar's code to do something besides goto fail in this | |
5912 case; that seems worse than this. */ | |
5913 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
|
5914 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
|
5915 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
|
5916 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
|
5917 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5918 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
|
5919 break; |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5920 |
28342
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
5921 /* 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
|
5922 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
|
5923 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
|
5924 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
|
5925 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
|
5926 detect a cycle (between different instantiations of the same |
47368
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
5927 loop). |
28342
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
5928 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
|
5929 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
|
5930 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
|
5931 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
|
5932 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
|
5933 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
|
5934 the loop. */ |
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
5935 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
|
5936 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
|
5937 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
|
5938 mcnt, p + mcnt); |
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
5939 |
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
5940 assert ((re_opcode_t)p[-4] == no_op); |
47368
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
5941 { |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
5942 int cycle = 0; |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
5943 CHECK_INFINITE_LOOP (p - 4, d); |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
5944 if (!cycle) |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
5945 /* If there's a cycle, just continue without pushing |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
5946 this failure point. The failure point is the "try again" |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
5947 option, which shouldn't be tried. |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
5948 We want (x?)*?y\1z to match both xxyz and xxyxz. */ |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
5949 PUSH_FAILURE_POINT (p - 3, d); |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
5950 } |
28342
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
5951 break; |
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
5952 |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
5953 /* 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
|
5954 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
|
5955 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
|
5956 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
|
5957 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
|
5958 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
|
5959 mcnt, p + mcnt); |
47368
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
5960 { |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
5961 int cycle = 0; |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
5962 CHECK_INFINITE_LOOP (p - 3, d); |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
5963 if (cycle) |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
5964 /* If there's a cycle, get out of the loop, as if the matching |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
5965 had failed. We used to just `goto fail' here, but that was |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
5966 aborting the search a bit too early: we want to keep the |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
5967 empty-loop-match and keep matching after the loop. |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
5968 We want (x?)*y\1z to match both xxyz and xxyxz. */ |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
5969 p += mcnt; |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
5970 else |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
5971 PUSH_FAILURE_POINT (p - 3, d); |
3f5cad2781e7
(DISCARD_FAILURE_REG_OR_COUNT): Delete.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47337
diff
changeset
|
5972 } |
18262 | 5973 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
|
5974 |
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 |
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 /* Uses of on_failure_jump: |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5977 |
18262 | 5978 Each alternative starts with an on_failure_jump that points |
5979 to the beginning of the next alternative. Each alternative | |
5980 except the last ends with a jump that in effect jumps past | |
5981 the rest of the alternatives. (They really jump to the | |
5982 ending jump of the following alternative, because tensioning | |
5983 these jumps is a hassle.) | |
5984 | |
5985 Repeats start with an on_failure_jump that points past both | |
5986 the repetition text and either the following jump or | |
5987 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
|
5988 case on_failure_jump: |
18262 | 5989 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
|
5990 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
|
5991 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
|
5992 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5993 PUSH_FAILURE_POINT (p -3, d); |
18262 | 5994 break; |
5995 | |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
5996 /* 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
|
5997 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
|
5998 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
|
5999 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
|
6000 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
|
6001 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
|
6002 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
|
6003 case on_failure_jump_smart: |
18262 | 6004 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
|
6005 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
|
6006 mcnt, p + mcnt); |
18262 | 6007 { |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
6008 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
|
6009 /* 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
|
6010 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
|
6011 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
|
6012 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
6013 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
|
6014 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
|
6015 |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
6016 EXTRACT_NUMBER (mcnt, p2 - 2); |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
6017 |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
6018 /* 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
|
6019 we are expecting. */ |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
6020 assert (skip_one_char (p1) == p2 - 3); |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
6021 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
|
6022 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
|
6023 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
|
6024 { |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
6025 /* 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
|
6026 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
|
6027 *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
|
6028 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
|
6029 } |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
6030 else |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
6031 { |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
6032 /* 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
|
6033 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
|
6034 *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
|
6035 } |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
6036 DEBUG_STATEMENT (debug -= 2); |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6037 } |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
6038 break; |
18262 | 6039 |
6040 /* Unconditionally jump (without popping any failure points). */ | |
6041 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
|
6042 unconditional_jump: |
32823
2a7f61d7ae12
(IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
Andrew Innes <andrewi@gnu.org>
parents:
32805
diff
changeset
|
6043 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
|
6044 EXTRACT_NUMBER_AND_INCR (mcnt, p); /* Get the amount to jump. */ |
18262 | 6045 DEBUG_PRINT2 ("EXECUTING jump %d ", mcnt); |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
6046 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
|
6047 DEBUG_PRINT2 ("(to %p).\n", p); |
18262 | 6048 break; |
6049 | |
6050 | |
6051 /* Have to succeed matching what follows at least n times. | |
6052 After that, handle like `on_failure_jump'. */ | |
6053 case succeed_n: | |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
6054 /* Signedness doesn't matter since we only compare MCNT to 0. */ |
18262 | 6055 EXTRACT_NUMBER (mcnt, p + 2); |
6056 DEBUG_PRINT2 ("EXECUTING succeed_n %d.\n", mcnt); | |
6057 | |
31172
0ee53ec2081a
(PUSH_FAILURE_COUNT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30752
diff
changeset
|
6058 /* 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
|
6059 if (mcnt != 0) |
18262 | 6060 { |
32954
f77e6c51dd07
(POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32891
diff
changeset
|
6061 /* 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
|
6062 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
|
6063 mcnt--; |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
6064 p += 4; |
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
6065 PUSH_NUMBER (p2, mcnt); |
18262 | 6066 } |
31172
0ee53ec2081a
(PUSH_FAILURE_COUNT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30752
diff
changeset
|
6067 else |
0ee53ec2081a
(PUSH_FAILURE_COUNT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30752
diff
changeset
|
6068 /* 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
|
6069 goto on_failure; |
18262 | 6070 break; |
6071 | |
6072 case jump_n: | |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
6073 /* Signedness doesn't matter since we only compare MCNT to 0. */ |
18262 | 6074 EXTRACT_NUMBER (mcnt, p + 2); |
6075 DEBUG_PRINT2 ("EXECUTING jump_n %d.\n", mcnt); | |
6076 | |
6077 /* 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
|
6078 if (mcnt != 0) |
18262 | 6079 { |
32954
f77e6c51dd07
(POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32891
diff
changeset
|
6080 /* 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
|
6081 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
|
6082 mcnt--; |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
6083 PUSH_NUMBER (p2, mcnt); |
31172
0ee53ec2081a
(PUSH_FAILURE_COUNT): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30752
diff
changeset
|
6084 goto unconditional_jump; |
18262 | 6085 } |
6086 /* 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
|
6087 else |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
6088 p += 4; |
18262 | 6089 break; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
6090 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6091 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
|
6092 { |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
6093 unsigned char *p2; /* Location of the counter. */ |
18262 | 6094 DEBUG_PRINT1 ("EXECUTING set_number_at.\n"); |
6095 | |
6096 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
|
6097 /* 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
|
6098 p2 = (unsigned char*) p + mcnt; |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
6099 /* Signedness doesn't matter since we only copy MCNT's bits . */ |
18262 | 6100 EXTRACT_NUMBER_AND_INCR (mcnt, p); |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
6101 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
|
6102 PUSH_NUMBER (p2, mcnt); |
18262 | 6103 break; |
6104 } | |
13722
e2669b8a46e2
(AT_WORD_BOUNDARY): Disable macro.
Karl Heuer <kwzh@gnu.org>
parents:
13565
diff
changeset
|
6105 |
e2669b8a46e2
(AT_WORD_BOUNDARY): Disable macro.
Karl Heuer <kwzh@gnu.org>
parents:
13565
diff
changeset
|
6106 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
|
6107 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
|
6108 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
|
6109 DEBUG_PRINT2 ("EXECUTING %swordbound.\n", not?"not":""); |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6110 |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
6111 /* 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
|
6112 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6113 /* 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
|
6114 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
|
6115 not = !not; |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6116 else |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6117 { |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6118 /* 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
|
6119 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
|
6120 re_wchar_t c1, c2; |
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
6121 int s1, s2; |
89061
9a9b54d06f3d
* regex.c (RE_TARGET_MULTIBYTE_P): New macro.
Kenichi Handa <handa@m17n.org>
parents:
88387
diff
changeset
|
6122 int dummy; |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6123 #ifdef emacs |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
6124 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
|
6125 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
|
6126 UPDATE_SYNTAX_TABLE (charpos); |
18262 | 6127 #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
|
6128 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
|
6129 s1 = SYNTAX (c1); |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6130 #ifdef emacs |
20633
063756386696
(re_search_2): Fix call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20455
diff
changeset
|
6131 UPDATE_SYNTAX_TABLE_FORWARD (charpos + 1); |
18262 | 6132 #endif |
29296
b2c75746a989
(PREFETCH_NOLIMIT): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29194
diff
changeset
|
6133 PREFETCH_NOLIMIT (); |
89455
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
6134 GET_CHAR_AFTER (c2, d, dummy); |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6135 s2 = SYNTAX (c2); |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6136 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6137 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
|
6138 ((s1 == Sword) != (s2 == Sword)) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6139 /* Case 3: Both of S1 and S2 are Sword, and macro |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
6140 WORD_BOUNDARY_P (C1, C2) returns nonzero. */ |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6141 || ((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
|
6142 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
|
6143 } |
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
|
6144 if (not) |
13722
e2669b8a46e2
(AT_WORD_BOUNDARY): Disable macro.
Karl Heuer <kwzh@gnu.org>
parents:
13565
diff
changeset
|
6145 break; |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6146 else |
13722
e2669b8a46e2
(AT_WORD_BOUNDARY): Disable macro.
Karl Heuer <kwzh@gnu.org>
parents:
13565
diff
changeset
|
6147 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
|
6148 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6149 case wordbeg: |
18262 | 6150 DEBUG_PRINT1 ("EXECUTING wordbeg.\n"); |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6151 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6152 /* We FAIL in one of the following cases: */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6153 |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
6154 /* 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
|
6155 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
|
6156 goto fail; |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6157 else |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6158 { |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6159 /* 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
|
6160 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
|
6161 re_wchar_t c1, c2; |
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
6162 int s1, s2; |
89061
9a9b54d06f3d
* regex.c (RE_TARGET_MULTIBYTE_P): New macro.
Kenichi Handa <handa@m17n.org>
parents:
88387
diff
changeset
|
6163 int dummy; |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6164 #ifdef emacs |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
6165 int offset = PTR_TO_OFFSET (d); |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
6166 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
|
6167 UPDATE_SYNTAX_TABLE (charpos); |
18262 | 6168 #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
|
6169 PREFETCH (); |
89455
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
6170 GET_CHAR_AFTER (c2, d, dummy); |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6171 s2 = SYNTAX (c2); |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49276
diff
changeset
|
6172 |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6173 /* Case 2: S2 is not Sword. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6174 if (s2 != Sword) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6175 goto fail; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6176 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6177 /* 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
|
6178 if (!AT_STRINGS_BEG (d)) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6179 { |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6180 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
|
6181 #ifdef emacs |
20633
063756386696
(re_search_2): Fix call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20455
diff
changeset
|
6182 UPDATE_SYNTAX_TABLE_BACKWARD (charpos - 1); |
18262 | 6183 #endif |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6184 s1 = SYNTAX (c1); |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6185 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6186 /* ... and S1 is Sword, and WORD_BOUNDARY_P (C1, C2) |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
6187 returns 0. */ |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6188 if ((s1 == Sword) && !WORD_BOUNDARY_P (c1, c2)) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6189 goto fail; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6190 } |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6191 } |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6192 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
|
6193 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6194 case wordend: |
18262 | 6195 DEBUG_PRINT1 ("EXECUTING wordend.\n"); |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6196 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6197 /* We FAIL in one of the following cases: */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6198 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6199 /* 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
|
6200 if (AT_STRINGS_BEG (d)) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6201 goto fail; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6202 else |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6203 { |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6204 /* 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
|
6205 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
|
6206 re_wchar_t c1, c2; |
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
6207 int s1, s2; |
89061
9a9b54d06f3d
* regex.c (RE_TARGET_MULTIBYTE_P): New macro.
Kenichi Handa <handa@m17n.org>
parents:
88387
diff
changeset
|
6208 int dummy; |
20633
063756386696
(re_search_2): Fix call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20455
diff
changeset
|
6209 #ifdef emacs |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
6210 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
|
6211 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
|
6212 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
|
6213 #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
|
6214 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
|
6215 s1 = SYNTAX (c1); |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6216 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6217 /* Case 2: S1 is not Sword. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6218 if (s1 != Sword) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6219 goto fail; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6220 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6221 /* 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
|
6222 if (!AT_STRINGS_END (d)) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6223 { |
29296
b2c75746a989
(PREFETCH_NOLIMIT): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29194
diff
changeset
|
6224 PREFETCH_NOLIMIT (); |
89455
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
6225 GET_CHAR_AFTER (c2, d, dummy); |
20633
063756386696
(re_search_2): Fix call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20455
diff
changeset
|
6226 #ifdef emacs |
063756386696
(re_search_2): Fix call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20455
diff
changeset
|
6227 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
|
6228 #endif |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6229 s2 = SYNTAX (c2); |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6230 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6231 /* ... and S2 is Sword, and WORD_BOUNDARY_P (C1, C2) |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
6232 returns 0. */ |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6233 if ((s2 == Sword) && !WORD_BOUNDARY_P (c1, c2)) |
18262 | 6234 goto fail; |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6235 } |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6236 } |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6237 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
|
6238 |
55690
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6239 case symbeg: |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6240 DEBUG_PRINT1 ("EXECUTING symbeg.\n"); |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6241 |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6242 /* We FAIL in one of the following cases: */ |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6243 |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
6244 /* Case 1: D is at the end of string. */ |
55690
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6245 if (AT_STRINGS_END (d)) |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6246 goto fail; |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6247 else |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6248 { |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6249 /* C1 is the character before D, S1 is the syntax of C1, C2 |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6250 is the character at D, and S2 is the syntax of C2. */ |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6251 re_wchar_t c1, c2; |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6252 int s1, s2; |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6253 #ifdef emacs |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6254 int offset = PTR_TO_OFFSET (d); |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6255 int charpos = SYNTAX_TABLE_BYTE_TO_CHAR (offset); |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6256 UPDATE_SYNTAX_TABLE (charpos); |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6257 #endif |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6258 PREFETCH (); |
90757
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
6259 c2 = RE_STRING_CHAR (d, dend - d, target_multibyte); |
55690
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6260 s2 = SYNTAX (c2); |
74143
c4cd6820a92e
Whitespace/tab mixups.
Juanma Barranquero <lekktu@gmail.com>
parents:
73229
diff
changeset
|
6261 |
55690
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6262 /* Case 2: S2 is neither Sword nor Ssymbol. */ |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6263 if (s2 != Sword && s2 != Ssymbol) |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6264 goto fail; |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6265 |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6266 /* Case 3: D is not at the beginning of string ... */ |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6267 if (!AT_STRINGS_BEG (d)) |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6268 { |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6269 GET_CHAR_BEFORE_2 (c1, d, string1, end1, string2, end2); |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6270 #ifdef emacs |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6271 UPDATE_SYNTAX_TABLE_BACKWARD (charpos - 1); |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6272 #endif |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6273 s1 = SYNTAX (c1); |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6274 |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6275 /* ... and S1 is Sword or Ssymbol. */ |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6276 if (s1 == Sword || s1 == Ssymbol) |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6277 goto fail; |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6278 } |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6279 } |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6280 break; |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6281 |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6282 case symend: |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6283 DEBUG_PRINT1 ("EXECUTING symend.\n"); |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6284 |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6285 /* We FAIL in one of the following cases: */ |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6286 |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6287 /* Case 1: D is at the beginning of string. */ |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6288 if (AT_STRINGS_BEG (d)) |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6289 goto fail; |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6290 else |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6291 { |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6292 /* C1 is the character before D, S1 is the syntax of C1, C2 |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6293 is the character at D, and S2 is the syntax of C2. */ |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6294 re_wchar_t c1, c2; |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6295 int s1, s2; |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6296 #ifdef emacs |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6297 int offset = PTR_TO_OFFSET (d) - 1; |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6298 int charpos = SYNTAX_TABLE_BYTE_TO_CHAR (offset); |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6299 UPDATE_SYNTAX_TABLE (charpos); |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6300 #endif |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6301 GET_CHAR_BEFORE_2 (c1, d, string1, end1, string2, end2); |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6302 s1 = SYNTAX (c1); |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6303 |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6304 /* Case 2: S1 is neither Ssymbol nor Sword. */ |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6305 if (s1 != Sword && s1 != Ssymbol) |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6306 goto fail; |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6307 |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6308 /* Case 3: D is not at the end of string ... */ |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6309 if (!AT_STRINGS_END (d)) |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6310 { |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6311 PREFETCH_NOLIMIT (); |
90757
8780137cabbc
(RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
6312 c2 = RE_STRING_CHAR (d, dend - d, target_multibyte); |
55690
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6313 #ifdef emacs |
59039
2e087371b9ff
(re_match_2_internal) <symend, wordend>:
Richard M. Stallman <rms@gnu.org>
parents:
58784
diff
changeset
|
6314 UPDATE_SYNTAX_TABLE_FORWARD (charpos + 1); |
55690
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6315 #endif |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6316 s2 = SYNTAX (c2); |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6317 |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6318 /* ... and S2 is Sword or Ssymbol. */ |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6319 if (s2 == Sword || s2 == Ssymbol) |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6320 goto fail; |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6321 } |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6322 } |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6323 break; |
daeeb5ef2d95
Add support for new '\_<' and '\_>' regexp operators, matching the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55530
diff
changeset
|
6324 |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
6325 case syntaxspec: |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
6326 case notsyntaxspec: |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
6327 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
|
6328 mcnt = *p++; |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
6329 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
|
6330 PREFETCH (); |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
6331 #ifdef emacs |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
6332 { |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
6333 int offset = PTR_TO_OFFSET (d); |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
6334 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
|
6335 UPDATE_SYNTAX_TABLE (pos1); |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
6336 } |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
6337 #endif |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
6338 { |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
6339 int len; |
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
6340 re_wchar_t c; |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
6341 |
89455
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
6342 GET_CHAR_AFTER (c, d, len); |
28279
24a23e27dac6
(enum syntaxcode): Provide default for non-Emacs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28268
diff
changeset
|
6343 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
|
6344 goto fail; |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
6345 d += len; |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
6346 } |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
6347 break; |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
6348 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6349 #ifdef emacs |
18262 | 6350 case before_dot: |
6351 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
|
6352 if (PTR_BYTE_POS (d) >= PT_BYTE) |
18262 | 6353 goto fail; |
6354 break; | |
6355 | |
6356 case at_dot: | |
6357 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
|
6358 if (PTR_BYTE_POS (d) != PT_BYTE) |
18262 | 6359 goto fail; |
6360 break; | |
6361 | |
6362 case after_dot: | |
6363 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
|
6364 if (PTR_BYTE_POS (d) <= PT_BYTE) |
18262 | 6365 goto fail; |
6366 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
|
6367 |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
6368 case categoryspec: |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
6369 case notcategoryspec: |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
6370 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
|
6371 mcnt = *p++; |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
6372 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
|
6373 PREFETCH (); |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6374 { |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
6375 int len; |
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
6376 re_wchar_t c; |
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
6377 |
89455
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
6378 GET_CHAR_AFTER (c, d, len); |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
6379 if ((!CHAR_HAS_CATEGORY (c, mcnt)) ^ not) |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6380 goto fail; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6381 d += len; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6382 } |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6383 break; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6384 |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
6385 #endif /* emacs */ |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
6386 |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
6387 default: |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
6388 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
|
6389 } |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6390 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
|
6391 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6392 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6393 /* 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
|
6394 fail: |
32823
2a7f61d7ae12
(IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
Andrew Innes <andrewi@gnu.org>
parents:
32805
diff
changeset
|
6395 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
|
6396 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
|
6397 { |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
6398 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
|
6399 /* 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
|
6400 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
|
6401 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
|
6402 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
|
6403 { |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
6404 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
|
6405 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
|
6406 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
|
6407 |
28342
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
6408 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
|
6409 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
|
6410 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
|
6411 /* Fallthrough */ |
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
6412 |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
6413 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
|
6414 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
|
6415 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
|
6416 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
|
6417 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
|
6418 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
|
6419 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
|
6420 break; |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
6421 |
28342
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
6422 case no_op: |
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
6423 /* 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
|
6424 goto fail; |
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
6425 |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
6426 default: |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
6427 abort(); |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
6428 } |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
6429 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
6430 assert (p >= bufp->buffer && p <= pend); |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6431 |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
6432 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
|
6433 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
|
6434 } |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6435 else |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
6436 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
|
6437 } /* 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
|
6438 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6439 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
|
6440 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
|
6441 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6442 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
|
6443 |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6444 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
|
6445 } /* 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
|
6446 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6447 /* 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
|
6448 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6449 /* 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
|
6450 bytes; nonzero otherwise. */ |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
6451 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6452 static int |
90764
324e371fbbe5
(GET_CHAR_BEFORE_2, GET_CHAR_AFTER): Check the variable
Kenichi Handa <handa@m17n.org>
parents:
90757
diff
changeset
|
6453 bcmp_translate (s1, s2, len, translate, target_multibyte) |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
6454 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
|
6455 register int len; |
13250
52e053f46f76
(TRANSLATE, PATFETCH): Cast elt of `translate'.
Richard M. Stallman <rms@gnu.org>
parents:
13100
diff
changeset
|
6456 RE_TRANSLATE_TYPE translate; |
90764
324e371fbbe5
(GET_CHAR_BEFORE_2, GET_CHAR_AFTER): Check the variable
Kenichi Handa <handa@m17n.org>
parents:
90757
diff
changeset
|
6457 const int target_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
|
6458 { |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
6459 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
|
6460 re_char *p1_end = s1 + len; |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
6461 re_char *p2_end = s2 + len; |
21348
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
6462 |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
6463 /* 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
|
6464 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
|
6465 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
|
6466 { |
21348
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
6467 int p1_charlen, p2_charlen; |
32891
56a4ce418f35
More `unsigned char' -> `re_char' changes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32823
diff
changeset
|
6468 re_wchar_t p1_ch, p2_ch; |
21348
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
6469 |
89455
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
6470 GET_CHAR_AFTER (p1_ch, p1, p1_charlen); |
ba48a280779d
(GET_CHAR_BEFORE_2): Check multibyte, not
Kenichi Handa <handa@m17n.org>
parents:
89176
diff
changeset
|
6471 GET_CHAR_AFTER (p2_ch, p2, p2_charlen); |
21348
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
6472 |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
6473 if (RE_TRANSLATE (translate, p1_ch) |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
6474 != 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
|
6475 return 1; |
21348
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
6476 |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
6477 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
|
6478 } |
21348
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
6479 |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
6480 if (p1 != p1_end || p2 != p2_end) |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
6481 return 1; |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
6482 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6483 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
|
6484 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6485 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6486 /* 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
|
6487 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6488 /* 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
|
6489 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
|
6490 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
|
6491 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6492 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
|
6493 are set in BUFP on entry. |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
6494 |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6495 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
|
6496 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6497 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
|
6498 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
|
6499 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
|
6500 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
|
6501 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
|
6502 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6503 reg_errcode_t ret; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
6504 |
72925
e47e040fc9da
(re_compile_pattern): Set gl_state.current_syntax_table.
Richard M. Stallman <rms@gnu.org>
parents:
69073
diff
changeset
|
6505 #ifdef emacs |
e47e040fc9da
(re_compile_pattern): Set gl_state.current_syntax_table.
Richard M. Stallman <rms@gnu.org>
parents:
69073
diff
changeset
|
6506 gl_state.current_syntax_table = current_buffer->syntax_table; |
e47e040fc9da
(re_compile_pattern): Set gl_state.current_syntax_table.
Richard M. Stallman <rms@gnu.org>
parents:
69073
diff
changeset
|
6507 #endif |
e47e040fc9da
(re_compile_pattern): Set gl_state.current_syntax_table.
Richard M. Stallman <rms@gnu.org>
parents:
69073
diff
changeset
|
6508 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6509 /* 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
|
6510 (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
|
6511 bufp->regs_allocated = REGS_UNALLOCATED; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
6512 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6513 /* 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
|
6514 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
|
6515 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
|
6516 bufp->no_sub = 0; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
6517 |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
6518 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
|
6519 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6520 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
|
6521 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
|
6522 return gettext (re_error_msgid[(int) ret]); |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
6523 } |
31312
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
6524 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
|
6525 |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6526 /* 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
|
6527 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
|
6528 |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
6529 #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
|
6530 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6531 /* 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
|
6532 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
|
6533 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6534 char * |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
6535 # 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
|
6536 /* 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
|
6537 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
|
6538 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
|
6539 weak_function |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
6540 # 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
|
6541 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
|
6542 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
|
6543 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6544 reg_errcode_t ret; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
6545 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6546 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
|
6547 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6548 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
|
6549 /* 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
|
6550 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
|
6551 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
|
6552 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6553 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6554 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
|
6555 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6556 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
|
6557 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
|
6558 /* 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
|
6559 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
|
6560 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
|
6561 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6562 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
|
6563 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
|
6564 /* 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
|
6565 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
|
6566 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6567 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6568 /* 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
|
6569 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
|
6570 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6571 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
|
6572 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6573 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
|
6574 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
|
6575 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6576 /* 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
|
6577 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
|
6578 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6579 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6580 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6581 int |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
6582 # 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
|
6583 weak_function |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
6584 # 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
|
6585 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
|
6586 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
|
6587 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6588 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
|
6589 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
|
6590 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
|
6591 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6592 #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
|
6593 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6594 /* 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
|
6595 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6596 #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
|
6597 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6598 /* 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
|
6599 |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6600 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
|
6601 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
|
6602 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6603 `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
|
6604 `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
|
6605 `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
|
6606 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
|
6607 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
|
6608 `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
|
6609 `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
|
6610 `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
|
6611 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6612 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
|
6613 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6614 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
|
6615 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6616 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
|
6617 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
|
6618 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6619 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
|
6620 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
|
6621 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6622 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
|
6623 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
|
6624 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6625 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
|
6626 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
|
6627 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
|
6628 |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6629 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
|
6630 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
|
6631 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6632 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
|
6633 regcomp (preg, pattern, cflags) |
40650
ded4aa3c81b2
(re_wctype): Try to fix some warnings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39718
diff
changeset
|
6634 regex_t *__restrict preg; |
ded4aa3c81b2
(re_wctype): Try to fix some warnings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39718
diff
changeset
|
6635 const char *__restrict 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
|
6636 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
|
6637 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6638 reg_errcode_t ret; |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
6639 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
|
6640 = (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
|
6641 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
|
6642 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6643 /* 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
|
6644 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
|
6645 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
|
6646 preg->used = 0; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
6647 |
31312
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
6648 /* Try to allocate space for the fastmap. */ |
69039
f717c65a39d7
* regex.c: Revert 2006-02-19 change.
Chong Yidong <cyd@stupidchicken.com>
parents:
69038
diff
changeset
|
6649 preg->fastmap = (char *) malloc (1 << BYTEWIDTH); |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
6650 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6651 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
|
6652 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6653 unsigned i; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
6654 |
13250
52e053f46f76
(TRANSLATE, PATFETCH): Cast elt of `translate'.
Richard M. Stallman <rms@gnu.org>
parents:
13100
diff
changeset
|
6655 preg->translate |
69039
f717c65a39d7
* regex.c: Revert 2006-02-19 change.
Chong Yidong <cyd@stupidchicken.com>
parents:
69038
diff
changeset
|
6656 = (RE_TRANSLATE_TYPE) malloc (CHAR_SET_SIZE |
69073 | 6657 * 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
|
6658 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
|
6659 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
|
6660 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6661 /* 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
|
6662 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
|
6663 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
|
6664 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6665 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
|
6666 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
|
6667 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6668 /* 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
|
6669 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
|
6670 { /* 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
|
6671 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
|
6672 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
|
6673 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6674 else |
31312
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
6675 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
|
6676 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6677 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
|
6678 |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
6679 /* 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
|
6680 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
|
6681 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
|
6682 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6683 /* 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
|
6684 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
|
6685 if (ret == REG_ERPAREN) |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
6686 ret = REG_EPAREN; |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
6687 |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
6688 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
|
6689 { /* 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
|
6690 buffer. */ |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
6691 re_compile_fastmap (preg); |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
6692 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
|
6693 { /* 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
|
6694 free (preg->fastmap); |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
6695 preg->fastmap = NULL; |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
6696 } |
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
6697 } |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6698 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
|
6699 } |
31312
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
6700 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
|
6701 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6702 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6703 /* 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
|
6704 string STRING. |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
6705 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6706 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
|
6707 `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
|
6708 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
|
6709 corresponding matched substrings. |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
6710 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6711 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
|
6712 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
|
6713 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
|
6714 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6715 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
|
6716 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6717 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
|
6718 regexec (preg, string, nmatch, pmatch, eflags) |
40650
ded4aa3c81b2
(re_wctype): Try to fix some warnings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39718
diff
changeset
|
6719 const regex_t *__restrict preg; |
ded4aa3c81b2
(re_wctype): Try to fix some warnings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39718
diff
changeset
|
6720 const char *__restrict string; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
6721 size_t nmatch; |
48205
b8b2159aed5e
(regexec): Fix pmatch declaration.
Dave Love <fx@gnu.org>
parents:
47368
diff
changeset
|
6722 regmatch_t pmatch[__restrict_arr]; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6723 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
|
6724 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6725 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
|
6726 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
|
6727 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
|
6728 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
|
6729 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
|
6730 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6731 private_preg = *preg; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
6732 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6733 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
|
6734 private_preg.not_eol = !!(eflags & REG_NOTEOL); |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
6735 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6736 /* 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
|
6737 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
|
6738 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
|
6739 private_preg.regs_allocated = REGS_FIXED; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
6740 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6741 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
|
6742 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6743 regs.num_regs = nmatch; |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
6744 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
|
6745 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
|
6746 return (int) REG_NOMATCH; |
31299
34c25566aab3
Merge some changes from GNU libc. Add prototypes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31213
diff
changeset
|
6747 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
|
6748 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6749 |
31312
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
6750 /* 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
|
6751 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
|
6752 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
|
6753 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
|
6754 '\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
|
6755 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
|
6756 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
|
6757 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
|
6758 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6759 /* 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
|
6760 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
|
6761 /* 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
|
6762 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
|
6763 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6764 /* 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
|
6765 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
|
6766 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6767 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
|
6768 { |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
6769 unsigned r; |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
6770 |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
6771 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
|
6772 { |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
6773 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
|
6774 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
|
6775 } |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
6776 } |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6777 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
6778 /* 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
|
6779 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
|
6780 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6781 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6782 /* 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
|
6783 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
|
6784 } |
31312
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
6785 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
|
6786 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6787 |
74955
0b7286cbaf0c
(regerror): Change parameter name err_code.
Jason Rumney <jasonr@gnu.org>
parents:
74323
diff
changeset
|
6788 /* Returns a message corresponding to an error code, ERR_CODE, returned |
0b7286cbaf0c
(regerror): Change parameter name err_code.
Jason Rumney <jasonr@gnu.org>
parents:
74323
diff
changeset
|
6789 from either regcomp or regexec. We don't use PREG here. |
0b7286cbaf0c
(regerror): Change parameter name err_code.
Jason Rumney <jasonr@gnu.org>
parents:
74323
diff
changeset
|
6790 |
0b7286cbaf0c
(regerror): Change parameter name err_code.
Jason Rumney <jasonr@gnu.org>
parents:
74323
diff
changeset
|
6791 ERR_CODE was previously called ERRCODE, but that name causes an |
0b7286cbaf0c
(regerror): Change parameter name err_code.
Jason Rumney <jasonr@gnu.org>
parents:
74323
diff
changeset
|
6792 error with msvc8 compiler. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6793 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6794 size_t |
74955
0b7286cbaf0c
(regerror): Change parameter name err_code.
Jason Rumney <jasonr@gnu.org>
parents:
74323
diff
changeset
|
6795 regerror (err_code, preg, errbuf, errbuf_size) |
0b7286cbaf0c
(regerror): Change parameter name err_code.
Jason Rumney <jasonr@gnu.org>
parents:
74323
diff
changeset
|
6796 int err_code; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6797 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
|
6798 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
|
6799 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
|
6800 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6801 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
|
6802 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
|
6803 |
74955
0b7286cbaf0c
(regerror): Change parameter name err_code.
Jason Rumney <jasonr@gnu.org>
parents:
74323
diff
changeset
|
6804 if (err_code < 0 |
0b7286cbaf0c
(regerror): Change parameter name err_code.
Jason Rumney <jasonr@gnu.org>
parents:
74323
diff
changeset
|
6805 || err_code >= (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
|
6806 /* 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
|
6807 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
|
6808 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
|
6809 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
|
6810 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
|
6811 |
74955
0b7286cbaf0c
(regerror): Change parameter name err_code.
Jason Rumney <jasonr@gnu.org>
parents:
74323
diff
changeset
|
6812 msg = gettext (re_error_msgid[err_code]); |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6813 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6814 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
|
6815 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6816 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
|
6817 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6818 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
|
6819 { |
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
6820 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
|
6821 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
|
6822 } |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6823 else |
31213
9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31172
diff
changeset
|
6824 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
|
6825 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6826 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6827 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
|
6828 } |
31312
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
6829 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
|
6830 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6831 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6832 /* 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
|
6833 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6834 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
|
6835 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
|
6836 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
|
6837 { |
95479
9588c3703f38
remove useless if-before-free tests
Jim Meyering <jim@meyering.net>
parents:
93266
diff
changeset
|
6838 free (preg->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
|
6839 preg->buffer = NULL; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
6840 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6841 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
|
6842 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
|
6843 |
95479
9588c3703f38
remove useless if-before-free tests
Jim Meyering <jim@meyering.net>
parents:
93266
diff
changeset
|
6844 free (preg->fastmap); |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6845 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
|
6846 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
|
6847 |
95479
9588c3703f38
remove useless if-before-free tests
Jim Meyering <jim@meyering.net>
parents:
93266
diff
changeset
|
6848 free (preg->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
|
6849 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
|
6850 } |
31312
e6b19a60e035
* regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31299
diff
changeset
|
6851 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
|
6852 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
6853 #endif /* not emacs */ |
52401 | 6854 |
6855 /* arch-tag: 4ffd68ba-2a9e-435b-a21a-018990f9eeb2 | |
6856 (do not change this comment) */ |