Mercurial > emacs
annotate src/regex.c @ 29404:5b490e305c65
comment
author | Dave Love <fx@gnu.org> |
---|---|
date | Sat, 03 Jun 2000 18:53:11 +0000 |
parents | b2c75746a989 |
children | fbe764633971 |
rev | line source |
---|---|
16010 | 1 /* Extended regular expression matching and search library, version |
2 0.12. (Implements POSIX draft P10003.2/D11.2, except for | |
1155 | 3 internationalization features.) |
4 | |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5 Copyright (C) 1993,94,95,96,97,98,2000 Free Software Foundation, Inc. |
1155 | 6 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
7 This program is free software; you can redistribute it and/or modify |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
8 it under the terms of the GNU General Public License as published by |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
9 the Free Software Foundation; either version 2, or (at your option) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
10 any later version. |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
11 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
12 This program is distributed in the hope that it will be useful, |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
13 but WITHOUT ANY WARRANTY; without even the implied warranty of |
18262 | 14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
15 GNU General Public License for more details. |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
16 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
17 You should have received a copy of the GNU General Public License |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
18 along with this program; if not, write to the Free Software |
14414 | 19 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
18262 | 20 USA. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
21 |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
22 /* TODO: |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
23 - structure the opcode space into opcode+flag. |
28380
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
24 - merge with glibc's regex.[ch] |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
25 */ |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
26 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
27 /* AIX requires this to be the first thing in the file. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
28 #if defined (_AIX) && !defined (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
|
29 #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
|
30 #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
|
31 |
13517
e50cebfd1d7a
(NUM_FAILURE_ITEMS, POP_FAILURE_POINT, PUSH_FAILURE_POINT):
Richard M. Stallman <rms@gnu.org>
parents:
13323
diff
changeset
|
32 #undef _GNU_SOURCE |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
33 #define _GNU_SOURCE |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
34 |
22411
6e7a11ac850d
(PTR_TO_OFFSET): Alternate definition if not `emacs'.
Richard M. Stallman <rms@gnu.org>
parents:
22372
diff
changeset
|
35 #ifdef emacs |
18262 | 36 /* Converts the pointer to the char to BEG-based offset from the start. */ |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
37 #define PTR_TO_OFFSET(d) POS_AS_IN_BUFFER (POINTER_TO_OFFSET (d)) |
22372
ffea5f2dd01b
(POS_AS_IN_BUFFER): Add 1 only if operating on a buffer.
Richard M. Stallman <rms@gnu.org>
parents:
22237
diff
changeset
|
38 #define POS_AS_IN_BUFFER(p) ((p) + (NILP (re_match_object) || BUFFERP (re_match_object))) |
22411
6e7a11ac850d
(PTR_TO_OFFSET): Alternate definition if not `emacs'.
Richard M. Stallman <rms@gnu.org>
parents:
22372
diff
changeset
|
39 #endif |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
40 |
11864
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 #ifdef HAVE_CONFIG_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
|
42 #include <config.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
|
43 #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
|
44 |
18262 | 45 /* We need this for `regex.h', and perhaps for the Emacs include files. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
46 #include <sys/types.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
|
47 |
18262 | 48 /* This is for other GNU distributions with internationalized messages. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
49 #if HAVE_LIBINTL_H || defined (_LIBC) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
50 # 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
|
51 #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
|
52 # 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
|
53 #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
|
54 |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
55 #ifndef gettext_noop |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
56 /* 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
|
57 strings. */ |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
58 #define gettext_noop(String) String |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
59 #endif |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
60 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
61 /* 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
|
62 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
|
63 #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
|
64 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
65 #include "lisp.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
|
66 #include "buffer.h" |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
67 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
68 /* Make syntax table lookup grant data in gl_state. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
69 #define SYNTAX_ENTRY_VIA_PROPERTY |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
70 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
71 #include "syntax.h" |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
72 #include "charset.h" |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
73 #include "category.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
|
74 |
16537
f47030b411f9
[emacs] (malloc, free): Define as xmalloc, and xfree.
Richard M. Stallman <rms@gnu.org>
parents:
16239
diff
changeset
|
75 #define malloc xmalloc |
21558
7b8df67bf037
(realloc) <emacs>: Define to xrealloc.
Andreas Schwab <schwab@suse.de>
parents:
21482
diff
changeset
|
76 #define realloc xrealloc |
16537
f47030b411f9
[emacs] (malloc, free): Define as xmalloc, and xfree.
Richard M. Stallman <rms@gnu.org>
parents:
16239
diff
changeset
|
77 #define free xfree |
f47030b411f9
[emacs] (malloc, free): Define as xmalloc, and xfree.
Richard M. Stallman <rms@gnu.org>
parents:
16239
diff
changeset
|
78 |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
79 #define RE_MULTIBYTE_P(bufp) ((bufp)->multibyte) |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
80 #define RE_STRING_CHAR(p, s) \ |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
81 (multibyte ? (STRING_CHAR (p, s)) : (*(p))) |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
82 #define RE_STRING_CHAR_AND_LENGTH(p, s, len) \ |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
83 (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
|
84 |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
85 /* Set C a (possibly multibyte) character before P. P points into a |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
86 string which is the virtual concatenation of STR1 (which ends at |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
87 END1) or STR2 (which ends at END2). */ |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
88 #define GET_CHAR_BEFORE_2(c, p, str1, end1, str2, end2) \ |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
89 do { \ |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
90 if (multibyte) \ |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
91 { \ |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
92 re_char *dtemp = (p) == (str2) ? (end1) : (p); \ |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
93 re_char *dlimit = ((p) > (str2) && (p) <= (end2)) ? (str2) : (str1); \ |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
94 while (dtemp-- > dlimit && !CHAR_HEAD_P (*dtemp)); \ |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
95 c = STRING_CHAR (dtemp, (p) - dtemp); \ |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
96 } \ |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
97 else \ |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
98 (c = ((p) == (str2) ? (end1) : (p))[-1]); \ |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
99 } while (0) |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
100 |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
101 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
102 #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
|
103 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
104 /* 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
|
105 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
|
106 even if config.h says that we 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
|
107 #undef REL_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
|
108 |
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 #if defined (STDC_HEADERS) || defined (_LIBC) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
110 #include <stdlib.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
|
111 #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
|
112 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
|
113 char *realloc (); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
114 #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
|
115 |
12065
094636c759bf
Undefined INHIBIT_STRING_HEADER when we have no
Karl Heuer <kwzh@gnu.org>
parents:
11974
diff
changeset
|
116 /* When used in Emacs's lib-src, we need to get bzero and bcopy somehow. |
18262 | 117 If nothing else has been done, use the method below. */ |
12065
094636c759bf
Undefined INHIBIT_STRING_HEADER when we have no
Karl Heuer <kwzh@gnu.org>
parents:
11974
diff
changeset
|
118 #ifdef INHIBIT_STRING_HEADER |
094636c759bf
Undefined INHIBIT_STRING_HEADER when we have no
Karl Heuer <kwzh@gnu.org>
parents:
11974
diff
changeset
|
119 #if !(defined (HAVE_BZERO) && defined (HAVE_BCOPY)) |
094636c759bf
Undefined INHIBIT_STRING_HEADER when we have no
Karl Heuer <kwzh@gnu.org>
parents:
11974
diff
changeset
|
120 #if !defined (bzero) && !defined (bcopy) |
094636c759bf
Undefined INHIBIT_STRING_HEADER when we have no
Karl Heuer <kwzh@gnu.org>
parents:
11974
diff
changeset
|
121 #undef INHIBIT_STRING_HEADER |
094636c759bf
Undefined INHIBIT_STRING_HEADER when we have no
Karl Heuer <kwzh@gnu.org>
parents:
11974
diff
changeset
|
122 #endif |
094636c759bf
Undefined INHIBIT_STRING_HEADER when we have no
Karl Heuer <kwzh@gnu.org>
parents:
11974
diff
changeset
|
123 #endif |
094636c759bf
Undefined INHIBIT_STRING_HEADER when we have no
Karl Heuer <kwzh@gnu.org>
parents:
11974
diff
changeset
|
124 #endif |
094636c759bf
Undefined INHIBIT_STRING_HEADER when we have no
Karl Heuer <kwzh@gnu.org>
parents:
11974
diff
changeset
|
125 |
094636c759bf
Undefined INHIBIT_STRING_HEADER when we have no
Karl Heuer <kwzh@gnu.org>
parents:
11974
diff
changeset
|
126 /* This is the normal way of making sure we have a bcopy and a bzero. |
094636c759bf
Undefined INHIBIT_STRING_HEADER when we have no
Karl Heuer <kwzh@gnu.org>
parents:
11974
diff
changeset
|
127 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
|
128 by defining INHIBIT_STRING_HEADER. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
129 #ifndef INHIBIT_STRING_HEADER |
12331
444c5079cb22
Use `defined' to test HAVE_STRING_H and STDC_HEADERS.
Richard M. Stallman <rms@gnu.org>
parents:
12065
diff
changeset
|
130 #if defined (HAVE_STRING_H) || defined (STDC_HEADERS) || 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
|
131 #include <string.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
|
132 #ifndef bcmp |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
133 #define bcmp(s1, s2, n) memcmp ((s1), (s2), (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
|
134 #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
|
135 #ifndef bcopy |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
136 #define bcopy(s, d, n) memcpy ((d), (s), (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
|
137 #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
|
138 #ifndef bzero |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
139 #define bzero(s, n) memset ((s), 0, (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
|
140 #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
|
141 #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
|
142 #include <strings.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
|
143 #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
|
144 #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
|
145 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
146 /* 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
|
147 |
28279
24a23e27dac6
(enum syntaxcode): Provide default for non-Emacs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28268
diff
changeset
|
148 /* Sword must be nonzero for the wordchar pattern commands in re_match_2. */ |
24a23e27dac6
(enum syntaxcode): Provide default for non-Emacs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28268
diff
changeset
|
149 enum syntaxcode { Swhitespace = 0, Sword = 1 }; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
150 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
151 #ifdef SWITCH_ENUM_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
|
152 #define SWITCH_ENUM_CAST(x) ((int)(x)) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
153 #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
|
154 #define SWITCH_ENUM_CAST(x) (x) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
155 #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
|
156 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
157 #ifdef 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
|
158 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
159 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
|
160 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
161 #else /* not 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
|
162 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
163 /* How many characters in the character 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
|
164 #define CHAR_SET_SIZE 256 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
165 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
166 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
|
167 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
168 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
|
169 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
|
170 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
171 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
|
172 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
|
173 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
174 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
|
175 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
|
176 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
177 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
|
178 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
179 for (c = 'a'; c <= 'z'; 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
|
180 re_syntax_table[c] = 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
|
181 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
182 for (c = 'A'; c <= 'Z'; 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
|
183 re_syntax_table[c] = 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
|
184 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
185 for (c = '0'; c <= '9'; 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
|
186 re_syntax_table[c] = 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
|
187 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
188 re_syntax_table['_'] = Sword; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
189 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
190 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
|
191 } |
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 #endif /* not 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
|
194 |
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 #define SYNTAX(c) re_syntax_table[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
|
196 |
21348
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
197 /* Dummy macros for non-Emacs environments. */ |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
198 #define BASE_LEADING_CODE_P(c) (0) |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
199 #define CHAR_CHARSET(c) 0 |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
200 #define CHARSET_LEADING_CODE_BASE(c) 0 |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
201 #define MAX_MULTIBYTE_LENGTH 1 |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
202 #define RE_MULTIBYTE_P(x) 0 |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
203 #define WORD_BOUNDARY_P(c1, c2) (0) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
204 #define CHAR_HEAD_P(p) (1) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
205 #define SINGLE_BYTE_CHAR_P(c) (1) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
206 #define SAME_CHARSET_P(c1, c2) (1) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
207 #define MULTIBYTE_FORM_LENGTH(p, s) (1) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
208 #define STRING_CHAR(p, s) (*(p)) |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
209 #define RE_STRING_CHAR STRING_CHAR |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
210 #define CHAR_STRING(c, s) (*(s) = (c), 1) |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
211 #define STRING_CHAR_AND_LENGTH(p, s, actual_len) ((actual_len) = 1, *(p)) |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
212 #define RE_STRING_CHAR_AND_LENGTH STRING_CHAR_AND_LENGTH |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
213 #define GET_CHAR_BEFORE_2(c, p, str1, end1, str2, end2) \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
214 (c = ((p) == (str2) ? *((end1) - 1) : *((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
|
215 #endif /* not emacs */ |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
216 |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
217 #ifndef RE_TRANSLATE |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
218 #define RE_TRANSLATE(TBL, C) ((unsigned char)(TBL)[C]) |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
219 #define RE_TRANSLATE_P(TBL) (TBL) |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
220 #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
|
221 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
222 /* Get the interface, including the syntax bits. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
223 #include "regex.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
|
224 |
25877
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
225 /* isalpha etc. are used for the character classes. */ |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
226 #include <ctype.h> |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
227 |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
228 #ifdef emacs |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
229 |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
230 /* 1 if C is an ASCII character. */ |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
231 #define IS_REAL_ASCII(c) ((c) < 0200) |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
232 |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
233 /* 1 if C is a unibyte character. */ |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
234 #define ISUNIBYTE(c) (SINGLE_BYTE_CHAR_P ((c))) |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
235 |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
236 /* The Emacs definitions should not be directly affected by locales. */ |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
237 |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
238 /* In Emacs, these are only used for single-byte characters. */ |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
239 #define ISDIGIT(c) ((c) >= '0' && (c) <= '9') |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
240 #define ISCNTRL(c) ((c) < ' ') |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
241 #define ISXDIGIT(c) (((c) >= '0' && (c) <= '9') \ |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
242 || ((c) >= 'a' && (c) <= 'f') \ |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
243 || ((c) >= 'A' && (c) <= 'F')) |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
244 |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
245 /* This is only used for single-byte characters. */ |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
246 #define ISBLANK(c) ((c) == ' ' || (c) == '\t') |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
247 |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
248 /* The rest must handle multibyte characters. */ |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
249 |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
250 #define ISGRAPH(c) (SINGLE_BYTE_CHAR_P (c) \ |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
251 ? (c) > ' ' && !((c) >= 0177 && (c) <= 0237) \ |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
252 : 1) |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
253 |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
254 #define ISPRINT(c) (SINGLE_BYTE_CHAR_P (c) \ |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
255 ? (c) >= ' ' && !((c) >= 0177 && (c) <= 0237) \ |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
256 : 1) |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
257 |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
258 #define ISALNUM(c) (IS_REAL_ASCII (c) \ |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
259 ? (((c) >= 'a' && (c) <= 'z') \ |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
260 || ((c) >= 'A' && (c) <= 'Z') \ |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
261 || ((c) >= '0' && (c) <= '9')) \ |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
262 : SYNTAX (c) == Sword) |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
263 |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
264 #define ISALPHA(c) (IS_REAL_ASCII (c) \ |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
265 ? (((c) >= 'a' && (c) <= 'z') \ |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
266 || ((c) >= 'A' && (c) <= 'Z')) \ |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
267 : SYNTAX (c) == Sword) |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
268 |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
269 #define ISLOWER(c) (LOWERCASEP (c)) |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
270 |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
271 #define ISPUNCT(c) (IS_REAL_ASCII (c) \ |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
272 ? ((c) > ' ' && (c) < 0177 \ |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
273 && !(((c) >= 'a' && (c) <= 'z') \ |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
274 || ((c) >= 'A' && (c) <= 'Z') \ |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
275 || ((c) >= '0' && (c) <= '9'))) \ |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
276 : SYNTAX (c) != Sword) |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
277 |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
278 #define ISSPACE(c) (SYNTAX (c) == Swhitespace) |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
279 |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
280 #define ISUPPER(c) (UPPERCASEP (c)) |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
281 |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
282 #define ISWORD(c) (SYNTAX (c) == Sword) |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
283 |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
284 #else /* not emacs */ |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
285 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
286 /* Jim Meyering writes: |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
287 |
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 "... Some ctype macros are valid only for character codes 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
|
289 isascii says are ASCII (SGI's IRIX-4.0.5 is one such system --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
|
290 using /bin/cc or gcc but without giving an ansi option). So, all |
18262 | 291 ctype uses should be through macros like ISPRINT... If |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
292 STDC_HEADERS is defined, then autoconf has verified that the ctype |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
293 macros don't need to be guarded with references to isascii. ... |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
294 Defining isascii to 1 should let any compiler worth its salt |
18262 | 295 eliminate the && through constant folding." */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
296 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
297 #if defined (STDC_HEADERS) || (!defined (isascii) && !defined (HAVE_ISASCII)) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
298 #define ISASCII(c) 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
|
299 #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
|
300 #define ISASCII(c) isascii(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
|
301 #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
|
302 |
25877
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
303 /* 1 if C is an ASCII character. */ |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
304 #define IS_REAL_ASCII(c) ((c) < 0200) |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
305 |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
306 /* This distinction is not meaningful, except in Emacs. */ |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
307 #define ISUNIBYTE(c) 1 |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
308 |
25440
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
309 #define ISDIGIT(c) (ISASCII (c) && isdigit (c)) |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
310 #define ISCNTRL(c) (ISASCII (c) && iscntrl (c)) |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
311 #define ISXDIGIT(c) (ISASCII (c) && isxdigit (c)) |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
312 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
313 #ifdef isblank |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
314 #define ISBLANK(c) (ISASCII (c) && isblank (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
|
315 #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
|
316 #define ISBLANK(c) ((c) == ' ' || (c) == '\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
|
317 #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
|
318 #ifdef isgraph |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
319 #define ISGRAPH(c) (ISASCII (c) && isgraph (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
|
320 #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
|
321 #define ISGRAPH(c) (ISASCII (c) && isprint (c) && !isspace (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
|
322 #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
|
323 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
324 #define ISPRINT(c) (ISASCII (c) && isprint (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
|
325 #define ISDIGIT(c) (ISASCII (c) && isdigit (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
|
326 #define ISALNUM(c) (ISASCII (c) && isalnum (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
|
327 #define ISALPHA(c) (ISASCII (c) && isalpha (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
|
328 #define ISCNTRL(c) (ISASCII (c) && iscntrl (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
|
329 #define ISLOWER(c) (ISASCII (c) && islower (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
|
330 #define ISPUNCT(c) (ISASCII (c) && ispunct (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
|
331 #define ISSPACE(c) (ISASCII (c) && isspace (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
|
332 #define ISUPPER(c) (ISASCII (c) && isupper (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
|
333 #define ISXDIGIT(c) (ISASCII (c) && isxdigit (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
|
334 |
25440
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
335 #define ISWORD(c) ISALPHA(c) |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
336 |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
337 #endif /* not emacs */ |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
338 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
339 #ifndef NULL |
11952 | 340 #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
|
341 #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
|
342 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
343 /* 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
|
344 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
|
345 machines, compilers, `char' and `unsigned char' argument types. |
18262 | 346 (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
|
347 #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
|
348 #if __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
|
349 #define SIGN_EXTEND_CHAR(c) ((signed 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
|
350 #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
|
351 /* As in Harbison and Steele. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
352 #define SIGN_EXTEND_CHAR(c) ((((unsigned char) (c)) ^ 128) - 128) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
353 #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
|
354 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
355 /* 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
|
356 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
|
357 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
|
358 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
|
359 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
|
360 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
361 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
|
362 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
|
363 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
|
364 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
365 #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
|
366 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
367 #define REGEX_ALLOCATE 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
|
368 #define REGEX_REALLOCATE(source, osize, nsize) realloc (source, nsize) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
369 #define REGEX_FREE free |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
370 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
371 #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
|
372 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
373 /* Emacs already defines alloca, sometimes. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
374 #ifndef 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
|
375 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
376 /* Make alloca work the best possible way. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
377 #ifdef __GNUC__ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
378 #define alloca __builtin_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
|
379 #else /* not __GNUC__ */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
380 #if HAVE_ALLOCA_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
|
381 #include <alloca.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
|
382 #else /* not __GNUC__ or HAVE_ALLOCA_H */ |
13273 | 383 #if 0 /* It is a bad idea to declare alloca. We always cast the result. */ |
18262 | 384 #ifndef _AIX /* Already did AIX, up at the top. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
385 char *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
|
386 #endif /* not _AIX */ |
13273 | 387 #endif |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
388 #endif /* not HAVE_ALLOCA_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
|
389 #endif /* not __GNUC__ */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
390 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
391 #endif /* not 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
|
392 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
393 #define REGEX_ALLOCATE 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
|
394 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
395 /* Assumes a `char *destination' variable. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
396 #define REGEX_REALLOCATE(source, osize, nsize) \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
397 (destination = (char *) alloca (nsize), \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
398 bcopy (source, destination, osize), \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
399 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
|
400 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
401 /* No need to do anything to free, after alloca. */ |
11865
5e83aee9e412
[REGEX_FREE]: Use ((void)0) instead of just (0).
Jim Meyering <jim@meyering.net>
parents:
11864
diff
changeset
|
402 #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
|
403 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
404 #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
|
405 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
406 /* 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
|
407 |
12570 | 408 #if defined (REL_ALLOC) && defined (REGEX_MALLOC) |
12478
533b6d02cf04
Don't use relocatable allocator.
Richard M. Stallman <rms@gnu.org>
parents:
12331
diff
changeset
|
409 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
410 #define REGEX_ALLOCATE_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
|
411 r_alloc (&failure_stack_ptr, (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
|
412 #define REGEX_REALLOCATE_STACK(source, osize, nsize) \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
413 r_re_alloc (&failure_stack_ptr, (nsize)) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
414 #define REGEX_FREE_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
|
415 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
|
416 |
12478
533b6d02cf04
Don't use relocatable allocator.
Richard M. Stallman <rms@gnu.org>
parents:
12331
diff
changeset
|
417 #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
|
418 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
419 #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
|
420 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
421 #define REGEX_ALLOCATE_STACK 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
|
422 #define REGEX_REALLOCATE_STACK(source, osize, nsize) realloc (source, nsize) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
423 #define REGEX_FREE_STACK free |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
424 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
425 #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
|
426 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
427 #define REGEX_ALLOCATE_STACK 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
|
428 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
429 #define REGEX_REALLOCATE_STACK(source, osize, nsize) \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
430 REGEX_REALLOCATE (source, osize, nsize) |
18262 | 431 /* No need to explicitly free anything. */ |
28372
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
432 #define REGEX_FREE_STACK(arg) ((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
|
433 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
434 #endif /* not REGEX_MALLOC */ |
12478
533b6d02cf04
Don't use relocatable allocator.
Richard M. Stallman <rms@gnu.org>
parents:
12331
diff
changeset
|
435 #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
|
436 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
437 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
438 /* 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
|
439 `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
|
440 a good thing. */ |
18262 | 441 #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
|
442 (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
|
443 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
444 /* (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
|
445 #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
|
446 #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
|
447 #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
|
448 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
|
449 #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
|
450 |
18262 | 451 #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
|
452 |
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 #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
|
454 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
455 #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
|
456 #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
|
457 #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
|
458 #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
|
459 |
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
|
460 /* Type of source-pattern and string chars. */ |
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28062
diff
changeset
|
461 typedef const unsigned char re_char; |
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28062
diff
changeset
|
462 |
11864
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 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
|
464 #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
|
465 #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
|
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 static int 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
|
468 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
469 /* These are the command codes that appear in compiled regular |
18262 | 470 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
|
471 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
|
472 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
|
473 |
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 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
|
475 { |
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 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
|
477 |
18262 | 478 /* 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
|
479 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
|
480 |
18262 | 481 /* 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
|
482 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
|
483 |
18262 | 484 /* 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
|
485 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
|
486 |
18262 | 487 /* Matches any one char belonging to specified set. First |
488 following byte is number of bitmap bytes. Then come bytes | |
489 for a bitmap saying which chars are in. Bits in each byte | |
490 are ordered low-bit-first. A character is in the set if its | |
491 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
|
492 automatically not in the set. |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
493 |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
494 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
|
495 is followed by a range table: |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
496 2 bytes of flags for character sets (low 8 bits, high 8 bits) |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
497 See RANGE_TABLE_WORK_BITS below. |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
498 2 bytes, the number of pairs that follow |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
499 pairs, each 2 multibyte characters, |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
500 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
|
501 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
|
502 |
18262 | 503 /* Same parameters as charset, but match any character that is |
504 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
|
505 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
|
506 |
18262 | 507 /* Start remembering the text that is matched, for storing in a |
508 register. Followed by one byte with the register number, in | |
509 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
|
510 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
|
511 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
|
512 |
18262 | 513 /* Stop remembering the text that is matched and store it in a |
514 memory register. Followed by one byte with the register | |
515 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
|
516 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
|
517 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
|
518 |
18262 | 519 /* Match a duplicate of something remembered. Followed by one |
520 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
|
521 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
|
522 |
18262 | 523 /* 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
|
524 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
|
525 |
18262 | 526 /* 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
|
527 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
|
528 |
18262 | 529 /* Succeeds if at beginning of buffer (if emacs) or at beginning |
530 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
|
531 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
|
532 |
18262 | 533 /* 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
|
534 endbuf, |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
535 |
18262 | 536 /* 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
|
537 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
|
538 |
18262 | 539 /* Followed by two-byte relative address of place to resume at |
540 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
|
541 on_failure_jump, |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
542 |
18262 | 543 /* Like on_failure_jump, but pushes a placeholder instead of the |
544 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
|
545 on_failure_keep_string_jump, |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
546 |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
547 /* 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
|
548 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
|
549 indefinitely). */ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
550 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
|
551 |
28342
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
552 /* 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
|
553 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
|
554 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
|
555 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
|
556 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
|
557 |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
558 /* A smart `on_failure_jump' used for greedy * and + operators. |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
559 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
|
560 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
|
561 `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
|
562 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
|
563 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
|
564 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
|
565 |
18262 | 566 /* 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
|
567 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
|
568 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
|
569 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
|
570 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
|
571 |
18262 | 572 /* Followed by two-byte relative address, and two-byte number n. |
573 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
|
574 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
|
575 |
18262 | 576 /* Set the following two-byte relative address to the |
577 subsequent two-byte number. The address *includes* the two | |
578 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
|
579 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
|
580 |
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 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
|
582 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
|
583 |
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 wordbound, /* Succeeds if at a word boundary. */ |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
585 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
|
586 |
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 /* Matches any character whose syntax is specified. Followed by |
18262 | 588 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
|
589 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
|
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 /* 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
|
592 notsyntaxspec |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
593 |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
594 #ifdef emacs |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
595 ,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
|
596 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
|
597 after_dot, /* Succeeds if after point. */ |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
598 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
599 /* Matches any character whose category-set contains the specified |
18262 | 600 category. The operator is followed by a byte which contains a |
601 category code (mnemonic ASCII character). */ | |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
602 categoryspec, |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
603 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
604 /* 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
|
605 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
|
606 contains the category code (mnemonic ASCII character). */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
607 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
|
608 #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
|
609 } 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
|
610 |
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 /* 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
|
612 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
613 /* 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
|
614 |
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 #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
|
616 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
|
617 (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
|
618 (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
|
619 } 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
|
620 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
621 /* 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
|
622 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
|
623 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
|
624 |
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 #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
|
626 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
|
627 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
|
628 (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
|
629 } 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
|
630 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
631 /* 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
|
632 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
|
633 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
634 #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
|
635 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
|
636 (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
|
637 (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
|
638 } 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
|
639 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
640 #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
|
641 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
|
642 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
|
643 int *dest; |
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 unsigned char *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
|
645 { |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
646 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
|
647 *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
|
648 *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
|
649 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
650 |
18262 | 651 #ifndef EXTRACT_MACROS /* To debug the 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
|
652 #undef EXTRACT_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
|
653 #define EXTRACT_NUMBER(dest, src) extract_number (&dest, src) |
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 #endif /* not EXTRACT_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
|
655 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
656 #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
|
657 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
658 /* 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
|
659 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
|
660 |
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 #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
|
662 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
|
663 EXTRACT_NUMBER (destination, source); \ |
18262 | 664 (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
|
665 } 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
|
666 |
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 #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
|
668 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
|
669 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
|
670 int *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
|
671 unsigned char **source; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
672 { |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
673 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
|
674 *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
|
675 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
676 |
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 #ifndef EXTRACT_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
|
678 #undef EXTRACT_NUMBER_AND_INCR |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
679 #define EXTRACT_NUMBER_AND_INCR(dest, src) \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
680 extract_number_and_incr (&dest, &src) |
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 #endif /* not EXTRACT_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
|
682 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
683 #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
|
684 |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
685 /* 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
|
686 DESTINATION, and increment DESTINATION to the byte after where the |
18262 | 687 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
|
688 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
689 #define STORE_CHARACTER_AND_INCR(destination, character) \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
690 do { \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
691 (destination)[0] = (character) & 0377; \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
692 (destination)[1] = ((character) >> 8) & 0377; \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
693 (destination)[2] = (character) >> 16; \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
694 (destination) += 3; \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
695 } while (0) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
696 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
697 /* Put into DESTINATION a character stored in three contiguous bytes |
18262 | 698 starting at SOURCE. */ |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
699 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
700 #define EXTRACT_CHARACTER(destination, source) \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
701 do { \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
702 (destination) = ((source)[0] \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
703 | ((source)[1] << 8) \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
704 | ((source)[2] << 16)); \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
705 } while (0) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
706 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
707 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
708 /* Macros for charset. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
709 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
710 /* 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
|
711 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
|
712 #define CHARSET_BITMAP_SIZE(p) ((p)[1] & 0x7F) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
713 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
714 /* Nonzero if charset P has range table. */ |
18262 | 715 #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
|
716 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
717 /* 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
|
718 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
|
719 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
|
720 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
|
721 #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
|
722 |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
723 /* 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
|
724 #define CHARSET_RANGE_TABLE_BITS(p) \ |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
725 ((p)[2 + CHARSET_BITMAP_SIZE (p)] \ |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
726 + (p)[3 + CHARSET_BITMAP_SIZE (p)] * 0x100) |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
727 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
728 /* 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
|
729 #define CHARSET_LOOKUP_BITMAP(p, c) \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
730 ((c) < CHARSET_BITMAP_SIZE (p) * BYTEWIDTH \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
731 && (p)[2 + (c) / BYTEWIDTH] & (1 << ((c) % BYTEWIDTH))) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
732 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
733 /* Return the address of end of RANGE_TABLE. COUNT is number of |
18262 | 734 ranges (which is a pair of (start, end)) in the RANGE_TABLE. `* 2' |
735 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
|
736 and end. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
737 #define CHARSET_RANGE_TABLE_END(range_table, count) \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
738 ((range_table) + (count) * 2 * 3) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
739 |
18262 | 740 /* 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
|
741 COUNT is number of ranges in RANGE_TABLE. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
742 #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
|
743 do \ |
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 int range_start, range_end; \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
746 unsigned char *p; \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
747 unsigned char *range_table_end \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
748 = CHARSET_RANGE_TABLE_END ((range_table), (count)); \ |
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 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
|
751 { \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
752 EXTRACT_CHARACTER (range_start, p); \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
753 EXTRACT_CHARACTER (range_end, p + 3); \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
754 \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
755 if (range_start <= (c) && (c) <= range_end) \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
756 { \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
757 (not) = !(not); \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
758 break; \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
759 } \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
760 } \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
761 } \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
762 while (0) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
763 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
764 /* 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
|
765 C is listed in it. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
766 #define CHARSET_LOOKUP_RANGE_TABLE(not, c, charset) \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
767 do \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
768 { \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
769 /* Number of ranges in range table. */ \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
770 int count; \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
771 unsigned char *range_table = CHARSET_RANGE_TABLE (charset); \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
772 \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
773 EXTRACT_NUMBER_AND_INCR (count, range_table); \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
774 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
|
775 } \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
776 while (0) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
777 |
11864
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 /* 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
|
779 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
|
780 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
|
781 interactively. And if linked with the main program in `main.c' and |
18262 | 782 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
|
783 |
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 #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
|
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 /* We use standard I/O for debugging. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
787 #include <stdio.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
|
788 |
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 /* It is useful to test things that ``must'' be true when debugging. */ |
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 #include <assert.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
|
791 |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
792 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
|
793 |
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 #define DEBUG_STATEMENT(e) 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
|
795 #define DEBUG_PRINT1(x) if (debug > 0) printf (x) |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
796 #define DEBUG_PRINT2(x1, x2) if (debug > 0) printf (x1, x2) |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
797 #define DEBUG_PRINT3(x1, x2, x3) if (debug > 0) printf (x1, x2, x3) |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
798 #define DEBUG_PRINT4(x1, x2, x3, x4) if (debug > 0) printf (x1, x2, x3, x4) |
18262 | 799 #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
|
800 if (debug > 0) print_partial_compiled_pattern (s, e) |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
801 #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
|
802 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
|
803 |
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 /* 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
|
806 |
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 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
|
808 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
|
809 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
|
810 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
811 unsigned was_a_range = 0; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
812 unsigned i = 0; |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
813 |
11864
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 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
|
815 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
816 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
|
817 { |
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 was_a_range = 0; |
18262 | 819 putchar (i - 1); |
820 while (i < (1 << BYTEWIDTH) && fastmap[i]) | |
821 { | |
822 was_a_range = 1; | |
823 i++; | |
824 } | |
11864
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 if (was_a_range) |
18262 | 826 { |
827 printf ("-"); | |
828 putchar (i - 1); | |
829 } | |
830 } | |
11864
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 } |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
832 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
|
833 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
834 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
835 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
836 /* 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
|
837 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
|
838 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
839 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
|
840 print_partial_compiled_pattern (start, 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
|
841 unsigned char *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
|
842 unsigned char *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
|
843 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
844 int mcnt, mcnt2; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
845 unsigned char *p = start; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
846 unsigned char *pend = 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
|
847 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
848 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
|
849 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
850 printf ("(null)\n"); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
851 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
|
852 } |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
853 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
854 /* 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
|
855 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
|
856 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
857 printf ("%d:\t", p - start); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
858 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
859 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
|
860 { |
18262 | 861 case no_op: |
862 printf ("/no_op"); | |
863 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
|
864 |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
865 case succeed: |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
866 printf ("/succeed"); |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
867 break; |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
868 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
869 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
|
870 mcnt = *p++; |
18262 | 871 printf ("/exactn/%d", mcnt); |
872 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
|
873 { |
18262 | 874 putchar ('/'); |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
875 putchar (*p++); |
18262 | 876 } |
877 while (--mcnt); | |
878 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
|
879 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
880 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
|
881 printf ("/start_memory/%d", *p++); |
18262 | 882 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
|
883 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
884 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
|
885 printf ("/stop_memory/%d", *p++); |
18262 | 886 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
|
887 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
888 case duplicate: |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
889 printf ("/duplicate/%d", *p++); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
890 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
|
891 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
892 case anychar: |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
893 printf ("/anychar"); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
894 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
|
895 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
896 case charset: |
18262 | 897 case charset_not: |
898 { | |
899 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
|
900 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
|
901 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
|
902 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
|
903 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
904 printf ("/charset [%s", |
18262 | 905 (re_opcode_t) *(p - 1) == charset_not ? "^" : ""); |
906 | |
907 assert (p + *p < pend); | |
908 | |
909 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
|
910 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
|
911 && (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
|
912 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
913 /* 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
|
914 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
|
915 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
916 putchar ('-'); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
917 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
|
918 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
919 /* 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
|
920 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
|
921 { |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
922 putchar (last); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
923 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
|
924 } |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
925 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
926 if (! in_range) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
927 putchar (c); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
928 |
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 last = c; |
18262 | 930 } |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
931 |
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 if (in_range) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
933 putchar (last); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
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 putchar (']'); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
936 |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
937 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
|
938 |
25440
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
939 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
|
940 { |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
941 int count; |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
942 printf ("has-range-table"); |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
943 |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
944 /* ??? 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
|
945 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
|
946 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
|
947 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
|
948 } |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
949 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
950 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
|
951 |
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 case begline: |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
953 printf ("/begline"); |
18262 | 954 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
|
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 case endline: |
18262 | 957 printf ("/endline"); |
958 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
|
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 case on_failure_jump: |
18262 | 961 extract_number_and_incr (&mcnt, &p); |
962 printf ("/on_failure_jump to %d", p + mcnt - start); | |
963 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
|
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 case on_failure_keep_string_jump: |
18262 | 966 extract_number_and_incr (&mcnt, &p); |
967 printf ("/on_failure_keep_string_jump to %d", p + mcnt - start); | |
968 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
|
969 |
28342
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
970 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
|
971 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
|
972 printf ("/on_failure_jump_nastyloop to %d", p + mcnt - start); |
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
973 break; |
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
974 |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
975 case on_failure_jump_loop: |
18262 | 976 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
|
977 printf ("/on_failure_jump_loop to %d", p + mcnt - start); |
18262 | 978 break; |
979 | |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
980 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
|
981 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
|
982 printf ("/on_failure_jump_smart to %d", p + mcnt - start); |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
983 break; |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
984 |
18262 | 985 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
|
986 extract_number_and_incr (&mcnt, &p); |
18262 | 987 printf ("/jump to %d", p + mcnt - start); |
16010 | 988 break; |
989 | |
18262 | 990 case succeed_n: |
991 extract_number_and_incr (&mcnt, &p); | |
992 extract_number_and_incr (&mcnt2, &p); | |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
993 printf ("/succeed_n to %d, %d times", p - 2 + mcnt - start, mcnt2); |
18262 | 994 break; |
995 | |
996 case jump_n: | |
997 extract_number_and_incr (&mcnt, &p); | |
998 extract_number_and_incr (&mcnt2, &p); | |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
999 printf ("/jump_n to %d, %d times", p - 2 + mcnt - start, mcnt2); |
18262 | 1000 break; |
1001 | |
1002 case set_number_at: | |
1003 extract_number_and_incr (&mcnt, &p); | |
1004 extract_number_and_incr (&mcnt2, &p); | |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
1005 printf ("/set_number_at location %d to %d", p - 2 + mcnt - start, mcnt2); |
18262 | 1006 break; |
1007 | |
1008 case wordbound: | |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1009 printf ("/wordbound"); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1010 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
|
1011 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1012 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
|
1013 printf ("/notwordbound"); |
18262 | 1014 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
|
1015 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1016 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
|
1017 printf ("/wordbeg"); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1018 break; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1019 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1020 case wordend: |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1021 printf ("/wordend"); |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1022 |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
1023 case syntaxspec: |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
1024 printf ("/syntaxspec"); |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
1025 mcnt = *p++; |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
1026 printf ("/%d", mcnt); |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
1027 break; |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
1028 |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
1029 case notsyntaxspec: |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
1030 printf ("/notsyntaxspec"); |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
1031 mcnt = *p++; |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
1032 printf ("/%d", mcnt); |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
1033 break; |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
1034 |
11864
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 #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
|
1036 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
|
1037 printf ("/before_dot"); |
18262 | 1038 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
|
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 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
|
1041 printf ("/at_dot"); |
18262 | 1042 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
|
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 after_dot: |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1045 printf ("/after_dot"); |
18262 | 1046 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
|
1047 |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
1048 case categoryspec: |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
1049 printf ("/categoryspec"); |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1050 mcnt = *p++; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1051 printf ("/%d", mcnt); |
18262 | 1052 break; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1053 |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
1054 case notcategoryspec: |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
1055 printf ("/notcategoryspec"); |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1056 mcnt = *p++; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1057 printf ("/%d", mcnt); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1058 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
|
1059 #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
|
1060 |
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 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
|
1062 printf ("/begbuf"); |
18262 | 1063 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
|
1064 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1065 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
|
1066 printf ("/endbuf"); |
18262 | 1067 break; |
1068 | |
1069 default: | |
1070 printf ("?%d", *(p-1)); | |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1071 } |
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 |
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 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
|
1074 } |
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 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1076 printf ("%d:\tend of pattern.\n", p - start); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
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 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1079 |
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 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
|
1081 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
|
1082 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
|
1083 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1084 unsigned char *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
|
1085 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1086 print_partial_compiled_pattern (buffer, 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
|
1087 printf ("%ld bytes used/%ld bytes allocated.\n", 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
|
1088 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1089 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
|
1090 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1091 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
|
1092 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
|
1093 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1094 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1095 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
|
1096 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
|
1097 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
|
1098 printf ("newline_anchor: %d\n", bufp->newline_anchor); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1099 printf ("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
|
1100 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
|
1101 printf ("not_eol: %d\t", bufp->not_eol); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1102 printf ("syntax: %d\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
|
1103 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
|
1104 /* 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
|
1105 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1106 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1107 |
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 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
|
1109 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
|
1110 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
|
1111 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
|
1112 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
|
1113 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
|
1114 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
|
1115 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1116 unsigned this_char; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1117 |
11864
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 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
|
1119 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
|
1120 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
|
1121 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1122 if (FIRST_STRING_P (where)) |
18262 | 1123 { |
1124 for (this_char = where - string1; this_char < size1; this_char++) | |
1125 putchar (string1[this_char]); | |
1126 | |
1127 where = string2; | |
1128 } | |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1129 |
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 for (this_char = where - string2; this_char < size2; this_char++) |
18262 | 1131 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
|
1132 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1133 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1134 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1135 #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
|
1136 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1137 #undef assert |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1138 #define assert(e) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1139 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1140 #define DEBUG_STATEMENT(e) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1141 #define DEBUG_PRINT1(x) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1142 #define DEBUG_PRINT2(x1, x2) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1143 #define DEBUG_PRINT3(x1, x2, x3) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1144 #define DEBUG_PRINT4(x1, x2, x3, x4) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1145 #define DEBUG_PRINT_COMPILED_PATTERN(p, s, e) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1146 #define DEBUG_PRINT_DOUBLE_STRING(w, s1, sz1, s2, sz2) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1147 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1148 #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
|
1149 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1150 /* 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
|
1151 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
|
1152 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
|
1153 /* 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
|
1154 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
|
1155 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
|
1156 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1157 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1158 /* 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
|
1159 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
|
1160 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
|
1161 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1162 The argument SYNTAX is a bit mask comprised of the various bits |
18262 | 1163 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
|
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 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
|
1166 re_set_syntax (syntax) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1167 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
|
1168 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1169 reg_syntax_t ret = re_syntax_options; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1170 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1171 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
|
1172 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
|
1173 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1174 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1175 /* This table gives an error message for each of the error codes listed |
18262 | 1176 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
|
1177 POSIX doesn't require that we do anything for REG_NOERROR, |
18262 | 1178 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
|
1179 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1180 static const char *re_error_msgid[] = |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1181 { |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1182 gettext_noop ("Success"), /* REG_NOERROR */ |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1183 gettext_noop ("No match"), /* REG_NOMATCH */ |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1184 gettext_noop ("Invalid regular expression"), /* REG_BADPAT */ |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1185 gettext_noop ("Invalid collation character"), /* REG_ECOLLATE */ |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1186 gettext_noop ("Invalid character class name"), /* REG_ECTYPE */ |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1187 gettext_noop ("Trailing backslash"), /* REG_EESCAPE */ |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1188 gettext_noop ("Invalid back reference"), /* REG_ESUBREG */ |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1189 gettext_noop ("Unmatched [ or [^"), /* REG_EBRACK */ |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1190 gettext_noop ("Unmatched ( or \\("), /* REG_EPAREN */ |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1191 gettext_noop ("Unmatched \\{"), /* REG_EBRACE */ |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1192 gettext_noop ("Invalid content of \\{\\}"), /* REG_BADBR */ |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1193 gettext_noop ("Invalid range end"), /* REG_ERANGE */ |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1194 gettext_noop ("Memory exhausted"), /* REG_ESPACE */ |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1195 gettext_noop ("Invalid preceding regular expression"), /* REG_BADRPT */ |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1196 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
|
1197 gettext_noop ("Regular expression too big"), /* REG_ESIZE */ |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1198 gettext_noop ("Unmatched ) or \\)"), /* REG_ERPAREN */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1199 }; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1200 |
18262 | 1201 /* 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
|
1202 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1203 /* 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
|
1204 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
|
1205 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
|
1206 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
|
1207 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
|
1208 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
|
1209 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
|
1210 |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1211 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
|
1212 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
|
1213 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
|
1214 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
|
1215 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
|
1216 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
|
1217 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
|
1218 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
|
1219 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1220 /* 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
|
1221 #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
|
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 /* When using GNU C, we are not REALLY using the C alloca, no matter |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1224 what config.h may say. So don't take precautions for it. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1225 #ifdef __GNUC__ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1226 #undef C_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
|
1227 #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
|
1228 |
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 /* 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
|
1230 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
|
1231 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
|
1232 failure stack, but we would still use it for the register vectors; |
18262 | 1233 so REL_ALLOC should not affect 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
|
1234 #if (defined (C_ALLOCA) || defined (REGEX_MALLOC)) && defined (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
|
1235 #undef 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
|
1236 #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
|
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 |
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 /* 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
|
1240 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
|
1241 REGEX_ALLOCATE_STACK. */ |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1242 |
11864
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 |
20449
fc965930c738
(TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents:
19184
diff
changeset
|
1244 /* 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
|
1245 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
|
1246 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
|
1247 #ifndef INIT_FAILURE_ALLOC |
20449
fc965930c738
(TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents:
19184
diff
changeset
|
1248 #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
|
1249 #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
|
1250 |
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 /* 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
|
1252 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
|
1253 This is a variable only so users of regex can assign to it; we never |
18262 | 1254 change it ourselves. */ |
11864
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 #if defined (MATCH_MAY_ALLOCATE) |
20449
fc965930c738
(TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents:
19184
diff
changeset
|
1256 /* Note that 4400 is enough to cause a crash on Alpha OSF/1, |
fc965930c738
(TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents:
19184
diff
changeset
|
1257 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
|
1258 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
|
1259 with the process stack limit. */ |
fc965930c738
(TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents:
19184
diff
changeset
|
1260 int re_max_failures = 40000; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1261 #else |
20449
fc965930c738
(TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents:
19184
diff
changeset
|
1262 int re_max_failures = 4000; |
11864
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 #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
|
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 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
|
1266 { |
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
|
1267 const unsigned char *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
|
1268 unsigned int 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
|
1269 }; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1270 |
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 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
|
1272 |
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 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
|
1274 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1275 fail_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
|
1276 unsigned size; |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1277 unsigned avail; /* Offset of next open position. */ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1278 unsigned 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
|
1279 } 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
|
1280 |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1281 #define PATTERN_STACK_EMPTY() (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
|
1282 #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
|
1283 #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
|
1284 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1285 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1286 /* 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
|
1287 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
|
1288 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1289 #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
|
1290 #define INIT_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
|
1291 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
|
1292 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
|
1293 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
|
1294 * 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
|
1295 \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1296 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
|
1297 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
|
1298 \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1299 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
|
1300 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
|
1301 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
|
1302 } 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
|
1303 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1304 #define RESET_FAIL_STACK() 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
|
1305 #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
|
1306 #define INIT_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
|
1307 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
|
1308 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
|
1309 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
|
1310 } 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
|
1311 |
28372
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
1312 #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
|
1313 #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
|
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 |
20449
fc965930c738
(TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents:
19184
diff
changeset
|
1316 /* 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
|
1317 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
|
1318 |
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 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
|
1320 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
|
1321 |
18262 | 1322 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
|
1323 |
20449
fc965930c738
(TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents:
19184
diff
changeset
|
1324 /* 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
|
1325 when we increase it. |
fc965930c738
(TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents:
19184
diff
changeset
|
1326 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
|
1327 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
|
1328 were as ultimate, maximum-size stack. */ |
fc965930c738
(TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents:
19184
diff
changeset
|
1329 #define FAIL_STACK_GROWTH_FACTOR 4 |
fc965930c738
(TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents:
19184
diff
changeset
|
1330 |
fc965930c738
(TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents:
19184
diff
changeset
|
1331 #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
|
1332 (((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
|
1333 >= 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
|
1334 ? 0 \ |
20449
fc965930c738
(TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents:
19184
diff
changeset
|
1335 : ((fail_stack).stack \ |
fc965930c738
(TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents:
19184
diff
changeset
|
1336 = (fail_stack_elt_t *) \ |
18262 | 1337 REGEX_REALLOCATE_STACK ((fail_stack).stack, \ |
1338 (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
|
1339 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
|
1340 ((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
|
1341 * 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
|
1342 \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1343 (fail_stack).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
|
1344 ? 0 \ |
20450
8f05356e9dc3
(GROW_FAIL_STACK): Fix previous change:
Karl Heuer <kwzh@gnu.org>
parents:
20449
diff
changeset
|
1345 : ((fail_stack).size \ |
8f05356e9dc3
(GROW_FAIL_STACK): Fix previous change:
Karl Heuer <kwzh@gnu.org>
parents:
20449
diff
changeset
|
1346 = (MIN (re_max_failures * TYPICAL_FAILURE_SIZE, \ |
8f05356e9dc3
(GROW_FAIL_STACK): Fix previous change:
Karl Heuer <kwzh@gnu.org>
parents:
20449
diff
changeset
|
1347 ((fail_stack).size * sizeof (fail_stack_elt_t) \ |
8f05356e9dc3
(GROW_FAIL_STACK): Fix previous change:
Karl Heuer <kwzh@gnu.org>
parents:
20449
diff
changeset
|
1348 * FAIL_STACK_GROWTH_FACTOR)) \ |
8f05356e9dc3
(GROW_FAIL_STACK): Fix previous change:
Karl Heuer <kwzh@gnu.org>
parents:
20449
diff
changeset
|
1349 / sizeof (fail_stack_elt_t)), \ |
18262 | 1350 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
|
1351 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1352 |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1353 /* Push pointer POINTER on FAIL_STACK. |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1354 Return 1 if was able to do so and 0 if ran out of memory allocating |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1355 space to do so. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1356 #define PUSH_PATTERN_OP(POINTER, 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
|
1357 ((FAIL_STACK_FULL () \ |
20449
fc965930c738
(TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents:
19184
diff
changeset
|
1358 && !GROW_FAIL_STACK (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
|
1359 ? 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
|
1360 : ((FAIL_STACK).stack[(FAIL_STACK).avail++].pointer = 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
|
1361 1)) |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1362 #define POP_PATTERN_OP() POP_FAILURE_POINTER () |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1363 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1364 /* 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
|
1365 Assumes the variable `fail_stack'. Probably should only |
18262 | 1366 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
|
1367 #define PUSH_FAILURE_POINTER(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
|
1368 fail_stack.stack[fail_stack.avail++].pointer = (unsigned char *) (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
|
1369 |
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 /* 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
|
1371 Assumes the variable `fail_stack'. Probably should only |
18262 | 1372 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
|
1373 #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
|
1374 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
|
1375 |
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 /* 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
|
1377 Assumes the variable `fail_stack'. Probably should only |
18262 | 1378 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
|
1379 #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
|
1380 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
|
1381 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1382 /* 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
|
1383 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
|
1384 #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
|
1385 #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
|
1386 #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
|
1387 |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1388 /* 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
|
1389 #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
|
1390 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1391 /* 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
|
1392 #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
|
1393 #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
|
1394 #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
|
1395 #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
|
1396 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1397 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1398 #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
|
1399 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
|
1400 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
|
1401 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
|
1402 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
|
1403 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
|
1404 } |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1405 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1406 /* 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
|
1407 #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
|
1408 do { \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1409 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
|
1410 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
|
1411 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
|
1412 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
|
1413 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
|
1414 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
|
1415 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
|
1416 } 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
|
1417 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1418 /* Pop a saved register off 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
|
1419 #define POP_FAILURE_REG() \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1420 do { \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1421 int reg = 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
|
1422 regend[reg] = POP_FAILURE_POINTER (); \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1423 regstart[reg] = POP_FAILURE_POINTER (); \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1424 DEBUG_PRINT4 (" Pop 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
|
1425 reg, regstart[reg], regend[reg]); \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1426 } 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
|
1427 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1428 /* 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
|
1429 #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
|
1430 do { \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1431 int failure = TOP_FAILURE_HANDLE(); \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1432 /* Check for infinite matching loops */ \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1433 while (failure > 0 && \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1434 (FAILURE_STR (failure) == string_place \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1435 || FAILURE_STR (failure) == NULL)) \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1436 { \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1437 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
|
1438 && 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
|
1439 if (FAILURE_PAT (failure) == pat_cur) \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1440 goto fail; \ |
28138
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28062
diff
changeset
|
1441 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
|
1442 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
|
1443 } \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1444 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
|
1445 } 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
|
1446 |
11864
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 /* 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
|
1448 if we ever fail back to it. |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1449 |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1450 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
|
1451 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
|
1452 declared. |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1453 |
11864
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 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
|
1455 |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1456 #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
|
1457 do { \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1458 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
|
1459 /* 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
|
1460 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
|
1461 \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1462 DEBUG_STATEMENT (failure_id++); \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1463 DEBUG_STATEMENT (nfailure_points_pushed++); \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1464 DEBUG_PRINT2 ("\nPUSH_FAILURE_POINT #%u:\n", failure_id); \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1465 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
|
1466 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
|
1467 \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1468 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
|
1469 \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1470 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
|
1471 \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1472 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
|
1473 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
|
1474 \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1475 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
|
1476 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
|
1477 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
|
1478 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
|
1479 \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1480 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
|
1481 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
|
1482 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
|
1483 \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1484 /* 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
|
1485 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
|
1486 } 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
|
1487 |
20449
fc965930c738
(TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents:
19184
diff
changeset
|
1488 /* 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
|
1489 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
|
1490 is to choose a limit for how big to make the failure stack. */ |
fc965930c738
(TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents:
19184
diff
changeset
|
1491 |
fc965930c738
(TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents:
19184
diff
changeset
|
1492 #define TYPICAL_FAILURE_SIZE 20 |
fc965930c738
(TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents:
19184
diff
changeset
|
1493 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1494 /* 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
|
1495 #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
|
1496 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1497 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1498 /* 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
|
1499 |
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 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
|
1501 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
|
1502 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
|
1503 REGSTART, REGEND -- arrays of string positions. |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1504 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1505 Also assumes the variables `fail_stack' and (if debugging), `bufp', |
18262 | 1506 `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
|
1507 |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1508 #define 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
|
1509 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
|
1510 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
|
1511 \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1512 /* 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
|
1513 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
|
1514 DEBUG_PRINT2 (" Before pop, next avail: %d\n", fail_stack.avail); \ |
18262 | 1515 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
|
1516 \ |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1517 /* 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
|
1518 while (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
|
1519 POP_FAILURE_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
|
1520 \ |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1521 pat = (unsigned char *) POP_FAILURE_POINTER (); \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1522 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
|
1523 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
|
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 /* 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
|
1526 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
|
1527 saved NULL, thus retaining our current position in the 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
|
1528 str = (re_char *) 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
|
1529 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
|
1530 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
|
1531 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
|
1532 \ |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1533 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
|
1534 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
|
1535 \ |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1536 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
|
1537 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
|
1538 \ |
11864
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 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
|
1540 } 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
|
1541 |
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 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1543 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1544 /* Registers are set to a sentinel when they haven't yet matched. */ |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1545 #define REG_UNSET_VALUE 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
|
1546 #define REG_UNSET(e) ((e) == REG_UNSET_VALUE) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1547 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1548 /* 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
|
1549 |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
1550 static void store_op1 _RE_ARGS((re_opcode_t op, unsigned char *loc, int arg)); |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
1551 static void store_op2 _RE_ARGS((re_opcode_t op, unsigned char *loc, |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
1552 int arg1, int arg2)); |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
1553 static void insert_op1 _RE_ARGS((re_opcode_t op, unsigned char *loc, |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
1554 int arg, unsigned char *end)); |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
1555 static void insert_op2 _RE_ARGS((re_opcode_t op, unsigned char *loc, |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
1556 int arg1, int arg2, unsigned char *end)); |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
1557 static boolean at_begline_loc_p _RE_ARGS((const unsigned char *pattern, |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
1558 const unsigned char *p, |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
1559 reg_syntax_t syntax)); |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
1560 static boolean at_endline_loc_p _RE_ARGS((const unsigned char *p, |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
1561 const unsigned char *pend, |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
1562 reg_syntax_t syntax)); |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
1563 static unsigned char *skip_one_char _RE_ARGS((unsigned char *p)); |
28380
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
1564 static int analyse_first _RE_ARGS((unsigned char *p, unsigned char *pend, |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
1565 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
|
1566 |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1567 /* Fetch the next character in the uncompiled pattern---translating it |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1568 if necessary. Also cast from a signed character in the constant |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1569 string passed to us by the user to an unsigned char that we can 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
|
1570 as an array index (in, e.g., `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
|
1571 #define PATFETCH(c) \ |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
1572 do { \ |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
1573 PATFETCH_RAW (c); \ |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
1574 c = TRANSLATE (c); \ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1575 } 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
|
1576 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1577 /* Fetch the next character in the uncompiled pattern, with no |
18262 | 1578 translation. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1579 #define PATFETCH_RAW(c) \ |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
1580 do { \ |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
1581 int len; \ |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
1582 if (p == pend) return REG_EEND; \ |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
1583 c = RE_STRING_CHAR_AND_LENGTH (p, pend - p, len); \ |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
1584 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
|
1585 } 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
|
1586 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1587 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1588 /* 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
|
1589 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
|
1590 `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
|
1591 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
|
1592 #ifndef TRANSLATE |
52e053f46f76
(TRANSLATE, PATFETCH): Cast elt of `translate'.
Richard M. Stallman <rms@gnu.org>
parents:
13100
diff
changeset
|
1593 #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
|
1594 (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
|
1595 #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
|
1596 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1597 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1598 /* 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
|
1599 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1600 /* 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
|
1601 #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
|
1602 |
18262 | 1603 /* 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
|
1604 #define GET_BUFFER_SPACE(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
|
1605 while (b - bufp->buffer + (n) > bufp->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
|
1606 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
|
1607 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1608 /* 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
|
1609 #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
|
1610 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
|
1611 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
|
1612 *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
|
1613 } 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
|
1614 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1615 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1616 /* 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
|
1617 #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
|
1618 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
|
1619 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
|
1620 *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
|
1621 *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
|
1622 } 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
|
1623 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1624 |
18262 | 1625 /* 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
|
1626 #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
|
1627 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
|
1628 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
|
1629 *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
|
1630 *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
|
1631 *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
|
1632 } 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
|
1633 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1634 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1635 /* Store a jump with opcode OP at LOC to location TO. We store a |
18262 | 1636 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
|
1637 #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
|
1638 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
|
1639 |
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 /* 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
|
1641 #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
|
1642 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
|
1643 |
18262 | 1644 /* 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
|
1645 #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
|
1646 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
|
1647 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1648 /* 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
|
1649 #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
|
1650 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
|
1651 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1652 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1653 /* This is not an arbitrary limit: the arguments which represent offsets |
18262 | 1654 into the pattern are two bytes long. So if 2^16 bytes turns out to |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1655 be too small, many things would have to change. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1656 #define MAX_BUF_SIZE (1L << 16) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1657 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1658 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1659 /* 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
|
1660 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
|
1661 correct places in the new one. If extending the buffer results in it |
18262 | 1662 being larger than MAX_BUF_SIZE, then flag memory exhausted. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1663 #define EXTEND_BUFFER() \ |
18262 | 1664 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
|
1665 unsigned char *old_buffer = bufp->buffer; \ |
18262 | 1666 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
|
1667 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
|
1668 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
|
1669 if (bufp->allocated > MAX_BUF_SIZE) \ |
18262 | 1670 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
|
1671 bufp->buffer = (unsigned char *) realloc (bufp->buffer, bufp->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
|
1672 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
|
1673 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
|
1674 /* 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
|
1675 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
|
1676 { \ |
18262 | 1677 b = (b - old_buffer) + bufp->buffer; \ |
1678 begalt = (begalt - old_buffer) + bufp->buffer; \ | |
1679 if (fixup_alt_jump) \ | |
1680 fixup_alt_jump = (fixup_alt_jump - old_buffer) + bufp->buffer;\ | |
1681 if (laststart) \ | |
1682 laststart = (laststart - old_buffer) + bufp->buffer; \ | |
1683 if (pending_exact) \ | |
1684 pending_exact = (pending_exact - old_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
|
1685 } \ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1686 } 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
|
1687 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1688 |
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 /* 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
|
1690 {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
|
1691 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
|
1692 #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
|
1693 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1694 /* 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
|
1695 ignore the excess. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1696 typedef unsigned regnum_t; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1697 |
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 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1699 /* 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
|
1700 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1701 /* Since offsets can go either forwards or backwards, this type needs to |
18262 | 1702 be able to hold values from -(MAX_BUF_SIZE - 1) to MAX_BUF_SIZE - 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
|
1703 typedef int pattern_offset_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
|
1704 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1705 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
|
1706 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1707 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
|
1708 pattern_offset_t fixup_alt_jump; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1709 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
|
1710 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
|
1711 } 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
|
1712 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1713 |
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 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
|
1715 { |
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 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
|
1717 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
|
1718 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
|
1719 } 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
|
1720 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1721 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1722 #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
|
1723 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1724 #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
|
1725 #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
|
1726 |
18262 | 1727 /* 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
|
1728 #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
|
1729 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1730 |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1731 /* Structure to manage work area for range table. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1732 struct range_table_work_area |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1733 { |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1734 int *table; /* actual work area. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1735 int allocated; /* allocated size for work area in bytes. */ |
18262 | 1736 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
|
1737 int bits; /* flag to record character classes */ |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1738 }; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1739 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1740 /* Make sure that WORK_AREA can hold more N multibyte characters. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1741 #define EXTEND_RANGE_TABLE_WORK_AREA(work_area, n) \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1742 do { \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1743 if (((work_area).used + (n)) * sizeof (int) > (work_area).allocated) \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1744 { \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1745 (work_area).allocated += 16 * sizeof (int); \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1746 if ((work_area).table) \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1747 (work_area).table \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1748 = (int *) realloc ((work_area).table, (work_area).allocated); \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1749 else \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1750 (work_area).table \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1751 = (int *) malloc ((work_area).allocated); \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1752 if ((work_area).table == 0) \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1753 FREE_STACK_RETURN (REG_ESPACE); \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1754 } \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1755 } while (0) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1756 |
25440
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
1757 #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
|
1758 (work_area).bits |= (bit) |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
1759 |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
1760 /* These bits represent the various character classes such as [:alnum:] |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
1761 in a charset's range table. */ |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
1762 #define BIT_ALNUM 0x1 |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
1763 #define BIT_ALPHA 0x2 |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
1764 #define BIT_WORD 0x4 |
25877
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
1765 #define BIT_ASCII 0x8 |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
1766 #define BIT_NONASCII 0x10 |
25440
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
1767 #define BIT_GRAPH 0x20 |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
1768 #define BIT_LOWER 0x40 |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
1769 #define BIT_PRINT 0x80 |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
1770 #define BIT_PUNCT 0x100 |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
1771 #define BIT_SPACE 0x200 |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
1772 #define BIT_UPPER 0x400 |
25877
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
1773 #define BIT_UNIBYTE 0x800 |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
1774 #define BIT_MULTIBYTE 0x1000 |
25440
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
1775 |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1776 /* 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
|
1777 #define SET_RANGE_TABLE_WORK_AREA(work_area, range_start, range_end) \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1778 do { \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1779 EXTEND_RANGE_TABLE_WORK_AREA ((work_area), 2); \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1780 (work_area).table[(work_area).used++] = (range_start); \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1781 (work_area).table[(work_area).used++] = (range_end); \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1782 } while (0) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1783 |
18262 | 1784 /* Free allocated memory for WORK_AREA. */ |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1785 #define FREE_RANGE_TABLE_WORK_AREA(work_area) \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1786 do { \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1787 if ((work_area).table) \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1788 free ((work_area).table); \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1789 } while (0) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1790 |
25440
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
1791 #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
|
1792 #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
|
1793 #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
|
1794 #define RANGE_TABLE_WORK_ELT(work_area, i) ((work_area).table[i]) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1795 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1796 |
11864
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 /* Set the bit for character C in a list. */ |
18262 | 1798 #define SET_LIST_BIT(c) \ |
1799 (b[((unsigned char) (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
|
1800 |= 1 << (((unsigned char) c) % 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
|
1801 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1802 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1803 /* Get the next unsigned number in the uncompiled pattern. */ |
18262 | 1804 #define GET_UNSIGNED_NUMBER(num) \ |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
1805 do { if (p != pend) \ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1806 { \ |
18262 | 1807 PATFETCH (c); \ |
1808 while (ISDIGIT (c)) \ | |
1809 { \ | |
1810 if (num < 0) \ | |
1811 num = 0; \ | |
1812 num = num * 10 + c - '0'; \ | |
1813 if (p == pend) \ | |
1814 break; \ | |
1815 PATFETCH (c); \ | |
1816 } \ | |
1817 } \ | |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
1818 } 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
|
1819 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1820 #define CHAR_CLASS_MAX_LENGTH 6 /* Namely, `xdigit'. */ |
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 |
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 #define IS_CHAR_CLASS(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
|
1823 (STREQ (string, "alpha") || STREQ (string, "upper") \ |
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 || STREQ (string, "lower") || STREQ (string, "digit") \ |
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 || STREQ (string, "alnum") || STREQ (string, "xdigit") \ |
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 || STREQ (string, "space") || STREQ (string, "print") \ |
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 || STREQ (string, "punct") || STREQ (string, "graph") \ |
25440
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
1828 || STREQ (string, "cntrl") || STREQ (string, "blank") \ |
25877
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
1829 || STREQ (string, "word") \ |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
1830 || STREQ (string, "ascii") || STREQ (string, "nonascii") \ |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
1831 || STREQ (string, "unibyte") || STREQ (string, "multibyte")) |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
1832 |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
1833 /* QUIT is only used on NTemacs. */ |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
1834 #if !defined (WINDOWSNT) || !defined (emacs) |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
1835 #undef QUIT |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
1836 #define QUIT |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
1837 #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
|
1838 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1839 #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
|
1840 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1841 /* 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
|
1842 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
|
1843 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
|
1844 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
|
1845 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
|
1846 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
|
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 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
|
1849 |
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 /* 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
|
1851 That is so we can make them bigger as needed, |
18262 | 1852 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
|
1853 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
|
1854 |
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
|
1855 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
|
1856 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
|
1857 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1858 /* Make the register vectors big enough for NUM_REGS registers, |
18262 | 1859 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
|
1860 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1861 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
|
1862 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
|
1863 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
|
1864 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1865 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
|
1866 { |
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
|
1867 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
|
1868 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
|
1869 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
|
1870 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
|
1871 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1872 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
|
1873 } |
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 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1875 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1876 #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
|
1877 |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
1878 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
|
1879 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
|
1880 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
|
1881 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1882 /* `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
|
1883 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
|
1884 |
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 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
|
1886 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
|
1887 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1888 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
|
1889 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
|
1890 `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
|
1891 `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
|
1892 `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
|
1893 `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
|
1894 `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
|
1895 `not_bol' and `not_eol' are zero; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1896 |
11864
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 The `fastmap' and `newline_anchor' fields are neither |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1898 examined nor 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
|
1899 |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1900 /* 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
|
1901 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
|
1902 #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
|
1903 do { \ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1904 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
|
1905 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
|
1906 } 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
|
1907 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
1908 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1909 /* 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
|
1910 #define FREE_STACK_RETURN(value) \ |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1911 do { \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1912 FREE_RANGE_TABLE_WORK_AREA (range_table_work); \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1913 free (compile_stack.stack); \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1914 return value; \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1915 } 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
|
1916 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1917 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
|
1918 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
|
1919 re_char *pattern; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1920 int 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
|
1921 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
|
1922 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
|
1923 { |
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 /* We fetch characters from PATTERN here. Even though 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
|
1925 `char *' (i.e., signed), we declare these variables as unsigned, so |
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 they can be reliably used as array indices. */ |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1927 register unsigned int c, c1; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1928 |
11864
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 /* 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
|
1930 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
|
1931 |
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 /* 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
|
1933 register unsigned char *b; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1934 |
11864
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 /* 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
|
1936 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
|
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 /* 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
|
1939 #ifdef AIX |
dc8ce74d8633
(regex_compile): Declare p with non-const type on AIX.
Richard M. Stallman <rms@gnu.org>
parents:
22411
diff
changeset
|
1940 /* `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
|
1941 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
|
1942 #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
|
1943 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
|
1944 #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
|
1945 re_char *pend = pattern + size; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1946 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1947 /* 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
|
1948 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
|
1949 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1950 /* 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
|
1951 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
|
1952 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
|
1953 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
|
1954 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
|
1955 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1956 /* 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
|
1957 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
|
1958 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
|
1959 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
|
1960 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1961 /* 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
|
1962 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
|
1963 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1964 /* 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
|
1965 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
|
1966 re_char *beg_interval; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1967 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1968 /* Address of the place where a forward jump should go to the end of |
18262 | 1969 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
|
1970 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
|
1971 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
|
1972 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1973 /* Counts open-groups as they are encountered. Remembered for the |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1974 matching close-group on the compile stack, so the same register |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1975 number is put in the stop_memory as the start_memory. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1976 regnum_t regnum = 0; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1977 |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1978 /* Work area for range table of charset. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1979 struct range_table_work_area range_table_work; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
1980 |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
1981 /* 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
|
1982 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
|
1983 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1984 #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
|
1985 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
|
1986 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
|
1987 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
|
1988 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1989 unsigned debug_count; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
1990 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1991 for (debug_count = 0; debug_count < size; debug_count++) |
18262 | 1992 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
|
1993 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
|
1994 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1995 #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
|
1996 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
1997 /* 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
|
1998 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
|
1999 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
|
2000 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
|
2001 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2002 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
|
2003 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
|
2004 |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2005 range_table_work.table = 0; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2006 range_table_work.allocated = 0; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2007 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2008 /* 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
|
2009 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
|
2010 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
|
2011 bufp->not_bol = bufp->not_eol = 0; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2012 |
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 `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
|
2014 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
|
2015 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
|
2016 bufp->used = 0; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
2017 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2018 /* 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
|
2019 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
|
2020 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2021 #if !defined (emacs) && !defined (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
|
2022 /* 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
|
2023 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
|
2024 #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
|
2025 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2026 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
|
2027 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2028 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
|
2029 { /* If zero allocated, but buffer is non-null, try to realloc |
18262 | 2030 enough space. This loses if buffer's address is bogus, but |
2031 that is the user's responsibility. */ | |
2032 RETALLOC (bufp->buffer, INIT_BUF_SIZE, unsigned char); | |
2033 } | |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2034 else |
18262 | 2035 { /* Caller did not allocate a buffer. Do it for them. */ |
2036 bufp->buffer = TALLOC (INIT_BUF_SIZE, unsigned char); | |
2037 } | |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2038 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
|
2039 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2040 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
|
2041 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2042 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2043 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
|
2044 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2045 /* Loop through the uncompiled pattern until we're at the end. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2046 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
|
2047 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2048 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
|
2049 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2050 switch (c) |
18262 | 2051 { |
2052 case '^': | |
2053 { | |
2054 if ( /* If at start of pattern, it's an operator. */ | |
2055 p == pattern + 1 | |
2056 /* If context independent, it's an operator. */ | |
2057 || syntax & RE_CONTEXT_INDEP_ANCHORS | |
2058 /* Otherwise, depends on what's come before. */ | |
2059 || at_begline_loc_p (pattern, p, syntax)) | |
2060 BUF_PUSH (begline); | |
2061 else | |
2062 goto normal_char; | |
2063 } | |
2064 break; | |
2065 | |
2066 | |
2067 case '$': | |
2068 { | |
2069 if ( /* If at end of pattern, it's an operator. */ | |
2070 p == pend | |
2071 /* If context independent, it's an operator. */ | |
2072 || syntax & RE_CONTEXT_INDEP_ANCHORS | |
2073 /* Otherwise, depends on what's next. */ | |
2074 || at_endline_loc_p (p, pend, syntax)) | |
2075 BUF_PUSH (endline); | |
2076 else | |
2077 goto normal_char; | |
2078 } | |
2079 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
|
2080 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2081 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2082 case '+': |
18262 | 2083 case '?': |
2084 if ((syntax & RE_BK_PLUS_QM) | |
2085 || (syntax & RE_LIMITED_OPS)) | |
2086 goto normal_char; | |
2087 handle_plus: | |
2088 case '*': | |
2089 /* If there is no previous pattern... */ | |
2090 if (!laststart) | |
2091 { | |
2092 if (syntax & RE_CONTEXT_INVALID_OPS) | |
2093 FREE_STACK_RETURN (REG_BADRPT); | |
2094 else if (!(syntax & RE_CONTEXT_INDEP_OPS)) | |
2095 goto normal_char; | |
2096 } | |
2097 | |
2098 { | |
2099 /* 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
|
2100 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
|
2101 boolean greedy = 1; |
18262 | 2102 |
2103 /* If there is a sequence of repetition chars, collapse it | |
2104 down to just one (the right one). We can't combine | |
2105 interval operators with these because of, e.g., `a{2}*', | |
2106 which should only match an even number of `a's. */ | |
2107 | |
2108 for (;;) | |
2109 { | |
26906
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2110 if (!(syntax & RE_ALL_GREEDY) |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2111 && 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
|
2112 greedy = 0; |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2113 else |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2114 { |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2115 zero_times_ok |= c != '+'; |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2116 many_times_ok |= c != '?'; |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2117 } |
18262 | 2118 |
2119 if (p == pend) | |
2120 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
|
2121 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
|
2122 || (!(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
|
2123 && (*p == '+' || *p == '?'))) |
18262 | 2124 ; |
28372
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2125 else if (syntax & RE_BK_PLUS_QM && *p == '\\') |
18262 | 2126 { |
28372
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2127 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
|
2128 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
|
2129 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
|
2130 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
|
2131 else |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2132 break; |
18262 | 2133 } |
2134 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
|
2135 break; |
18262 | 2136 /* 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
|
2137 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
|
2138 } |
18262 | 2139 |
2140 /* Star, etc. applied to an empty pattern is equivalent | |
2141 to an empty pattern. */ | |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2142 if (!laststart || laststart == b) |
18262 | 2143 break; |
2144 | |
2145 /* Now we know whether or not zero matches is allowed | |
2146 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
|
2147 if (greedy) |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2148 { |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2149 if (many_times_ok) |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2150 { |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2151 boolean simple = skip_one_char (laststart) == b; |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2152 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
|
2153 re_opcode_t ofj = |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
2154 (simple || !analyse_first (laststart, b, NULL, 0)) ? |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
2155 on_failure_jump : on_failure_jump_loop; |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2156 assert (skip_one_char (laststart) <= b); |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2157 |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2158 if (!zero_times_ok && simple) |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2159 { /* 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
|
2160 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
|
2161 into PP* if P is simple. */ |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2162 unsigned char *p1, *p2; |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2163 startoffset = b - laststart; |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2164 GET_BUFFER_SPACE (startoffset); |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2165 p1 = b; p2 = laststart; |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2166 while (p2 < p1) |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2167 *b++ = *p2++; |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2168 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
|
2169 } |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2170 |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2171 GET_BUFFER_SPACE (6); |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2172 if (!zero_times_ok) |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2173 /* A + loop. */ |
28380
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
2174 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
|
2175 else |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2176 /* 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
|
2177 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
|
2178 that yet, we leave the decision up to |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2179 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
|
2180 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
|
2181 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
|
2182 b += 3; |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2183 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
|
2184 b += 3; |
18262 | 2185 } |
2186 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
|
2187 { |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2188 /* A simple ? pattern. */ |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2189 assert (zero_times_ok); |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2190 GET_BUFFER_SPACE (3); |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2191 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
|
2192 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
|
2193 } |
26906
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2194 } |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2195 else /* not greedy */ |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2196 { /* 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
|
2197 |
28342
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
2198 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
|
2199 if (many_times_ok) |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2200 { |
28380
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
2201 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
|
2202 |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2203 /* The non-greedy multiple match looks like a repeat..until: |
26906
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2204 we only need a conditional jump at the end of the loop */ |
28380
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
2205 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
|
2206 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
|
2207 : 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
|
2208 b += 3; |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2209 if (zero_times_ok) |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2210 { |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2211 /* 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
|
2212 To also match zero times, we need to first jump to |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2213 the end of the loop (its conditional jump). */ |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2214 INSERT_JUMP (jump, laststart, b); |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2215 b += 3; |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2216 } |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2217 } |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2218 else |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2219 { |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2220 /* non-greedy a?? */ |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2221 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
|
2222 b += 3; |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2223 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
|
2224 b += 3; |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2225 } |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2226 } |
5eb1e428de28
1999-12-15 Kenichi Handa <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
26237
diff
changeset
|
2227 } |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
2228 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
|
2229 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
|
2230 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2231 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2232 case '.': |
18262 | 2233 laststart = b; |
2234 BUF_PUSH (anychar); | |
2235 break; | |
2236 | |
2237 | |
2238 case '[': | |
2239 { | |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2240 CLEAR_RANGE_TABLE_WORK_USED (range_table_work); |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2241 |
18262 | 2242 if (p == pend) FREE_STACK_RETURN (REG_EBRACK); |
2243 | |
2244 /* Ensure that we have enough space to push a charset: the | |
2245 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
|
2246 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
|
2247 |
18262 | 2248 laststart = b; |
2249 | |
2250 /* We test `*p == '^' twice, instead of using an if | |
2251 statement, so we only need one BUF_PUSH. */ | |
2252 BUF_PUSH (*p == '^' ? charset_not : charset); | |
2253 if (*p == '^') | |
2254 p++; | |
2255 | |
2256 /* Remember the first position in the bracket expression. */ | |
2257 p1 = p; | |
2258 | |
2259 /* Push the number of bytes in the bitmap. */ | |
2260 BUF_PUSH ((1 << BYTEWIDTH) / BYTEWIDTH); | |
2261 | |
2262 /* Clear the whole map. */ | |
2263 bzero (b, (1 << BYTEWIDTH) / BYTEWIDTH); | |
2264 | |
2265 /* charset_not matches newline according to a syntax bit. */ | |
2266 if ((re_opcode_t) b[-2] == charset_not | |
2267 && (syntax & RE_HAT_LISTS_NOT_NEWLINE)) | |
2268 SET_LIST_BIT ('\n'); | |
2269 | |
2270 /* Read in characters and ranges, setting map bits. */ | |
2271 for (;;) | |
2272 { | |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2273 boolean escaped_char = false; |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
2274 const unsigned char *p2 = p; |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2275 |
18262 | 2276 if (p == pend) FREE_STACK_RETURN (REG_EBRACK); |
2277 | |
2278 PATFETCH (c); | |
2279 | |
2280 /* \ might escape characters inside [...] and [^...]. */ | |
2281 if ((syntax & RE_BACKSLASH_ESCAPE_IN_LISTS) && c == '\\') | |
2282 { | |
2283 if (p == pend) FREE_STACK_RETURN (REG_EESCAPE); | |
16010 | 2284 |
2285 PATFETCH (c); | |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2286 escaped_char = true; |
18262 | 2287 } |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2288 else |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2289 { |
19184 | 2290 /* Could be the end of the bracket expression. If it's |
2291 not (i.e., when the bracket expression is `[]' so | |
2292 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
|
2293 if (c == ']' && p2 != p1) |
19184 | 2294 break; |
18262 | 2295 } |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2296 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2297 /* What should we do for the character which is |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2298 greater than 0x7F, but not BASE_LEADING_CODE_P? |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2299 XXX */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2300 |
18262 | 2301 /* See if we're at the beginning of a possible character |
2302 class. */ | |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2303 |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
2304 if (!escaped_char && |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
2305 syntax & RE_CHAR_CLASSES && c == '[' && *p == ':') |
19184 | 2306 { |
2307 /* Leave room for the null. */ | |
18262 | 2308 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
|
2309 const unsigned char *class_beg; |
18262 | 2310 |
2311 PATFETCH (c); | |
2312 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
|
2313 class_beg = p; |
18262 | 2314 |
2315 /* If pattern is `[[:'. */ | |
2316 if (p == pend) FREE_STACK_RETURN (REG_EBRACK); | |
2317 | |
2318 for (;;) | |
2319 { | |
2320 PATFETCH (c); | |
2321 if (c == ':' || c == ']' || p == pend | |
2322 || c1 == CHAR_CLASS_MAX_LENGTH) | |
2323 break; | |
2324 str[c1++] = c; | |
2325 } | |
2326 str[c1] = '\0'; | |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2327 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2328 /* If isn't a word bracketed by `[:' and `:]': |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2329 undo the ending character, the letters, and |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2330 leave the leading `:' and `[' (but set bits for |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2331 them). */ |
18262 | 2332 if (c == ':' && *p == ']') |
2333 { | |
2334 int ch; | |
2335 boolean is_alnum = STREQ (str, "alnum"); | |
2336 boolean is_alpha = STREQ (str, "alpha"); | |
25877
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
2337 boolean is_ascii = STREQ (str, "ascii"); |
18262 | 2338 boolean is_blank = STREQ (str, "blank"); |
2339 boolean is_cntrl = STREQ (str, "cntrl"); | |
2340 boolean is_digit = STREQ (str, "digit"); | |
2341 boolean is_graph = STREQ (str, "graph"); | |
2342 boolean is_lower = STREQ (str, "lower"); | |
25877
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
2343 boolean is_multibyte = STREQ (str, "multibyte"); |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
2344 boolean is_nonascii = STREQ (str, "nonascii"); |
18262 | 2345 boolean is_print = STREQ (str, "print"); |
2346 boolean is_punct = STREQ (str, "punct"); | |
2347 boolean is_space = STREQ (str, "space"); | |
25877
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
2348 boolean is_unibyte = STREQ (str, "unibyte"); |
18262 | 2349 boolean is_upper = STREQ (str, "upper"); |
25877
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
2350 boolean is_word = STREQ (str, "word"); |
18262 | 2351 boolean is_xdigit = STREQ (str, "xdigit"); |
2352 | |
2353 if (!IS_CHAR_CLASS (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
|
2354 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
|
2355 |
18262 | 2356 /* Throw away the ] at the end of the character |
2357 class. */ | |
2358 PATFETCH (c); | |
2359 | |
2360 if (p == pend) FREE_STACK_RETURN (REG_EBRACK); | |
2361 | |
25440
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
2362 /* 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
|
2363 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
|
2364 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
|
2365 they can only match ASCII characters. We |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
2366 don't need to handle them for multibyte. */ |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
2367 |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
2368 if (multibyte) |
25440
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
2369 { |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
2370 int bit = 0; |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
2371 |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
2372 if (is_alnum) bit = BIT_ALNUM; |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
2373 if (is_alpha) bit = BIT_ALPHA; |
25877
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
2374 if (is_ascii) bit = BIT_ASCII; |
25440
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
2375 if (is_graph) bit = BIT_GRAPH; |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
2376 if (is_lower) bit = BIT_LOWER; |
25877
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
2377 if (is_multibyte) bit = BIT_MULTIBYTE; |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
2378 if (is_nonascii) bit = BIT_NONASCII; |
25440
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
2379 if (is_print) bit = BIT_PRINT; |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
2380 if (is_punct) bit = BIT_PUNCT; |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
2381 if (is_space) bit = BIT_SPACE; |
25877
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
2382 if (is_unibyte) bit = BIT_UNIBYTE; |
25440
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
2383 if (is_upper) bit = BIT_UPPER; |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
2384 if (is_word) bit = BIT_WORD; |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
2385 if (bit) |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
2386 SET_RANGE_TABLE_WORK_AREA_BIT (range_table_work, |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
2387 bit); |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
2388 } |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
2389 |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
2390 /* Handle character classes for ASCII characters. */ |
18262 | 2391 for (ch = 0; ch < 1 << BYTEWIDTH; ch++) |
2392 { | |
16239
c196d1ded35c
(regex_compile): Use TRANSLATE before calling SET_LIST_BIT.
Richard M. Stallman <rms@gnu.org>
parents:
16034
diff
changeset
|
2393 int translated = TRANSLATE (ch); |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2394 /* This was split into 3 if's 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
|
2395 avoid an arbitrary limit in some compiler. */ |
18262 | 2396 if ( (is_alnum && ISALNUM (ch)) |
2397 || (is_alpha && ISALPHA (ch)) | |
2398 || (is_blank && ISBLANK (ch)) | |
2399 || (is_cntrl && ISCNTRL (ch))) | |
16239
c196d1ded35c
(regex_compile): Use TRANSLATE before calling SET_LIST_BIT.
Richard M. Stallman <rms@gnu.org>
parents:
16034
diff
changeset
|
2400 SET_LIST_BIT (translated); |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2401 if ( (is_digit && ISDIGIT (ch)) |
18262 | 2402 || (is_graph && ISGRAPH (ch)) |
2403 || (is_lower && ISLOWER (ch)) | |
2404 || (is_print && ISPRINT (ch))) | |
16239
c196d1ded35c
(regex_compile): Use TRANSLATE before calling SET_LIST_BIT.
Richard M. Stallman <rms@gnu.org>
parents:
16034
diff
changeset
|
2405 SET_LIST_BIT (translated); |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2406 if ( (is_punct && ISPUNCT (ch)) |
18262 | 2407 || (is_space && ISSPACE (ch)) |
2408 || (is_upper && ISUPPER (ch)) | |
2409 || (is_xdigit && ISXDIGIT (ch))) | |
16239
c196d1ded35c
(regex_compile): Use TRANSLATE before calling SET_LIST_BIT.
Richard M. Stallman <rms@gnu.org>
parents:
16034
diff
changeset
|
2410 SET_LIST_BIT (translated); |
25877
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
2411 if ( (is_ascii && IS_REAL_ASCII (ch)) |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
2412 || (is_nonascii && !IS_REAL_ASCII (ch)) |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
2413 || (is_unibyte && ISUNIBYTE (ch)) |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
2414 || (is_multibyte && !ISUNIBYTE (ch))) |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
2415 SET_LIST_BIT (translated); |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
2416 |
25440
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
2417 if ( (is_word && ISWORD (ch))) |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
2418 SET_LIST_BIT (translated); |
18262 | 2419 } |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2420 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2421 /* Repeat the loop. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2422 continue; |
18262 | 2423 } |
2424 else | |
2425 { | |
28372
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2426 /* 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
|
2427 p = class_beg; |
18262 | 2428 SET_LIST_BIT ('['); |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2429 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2430 /* Because the `:' may starts the range, we |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2431 can't simply set bit and repeat the loop. |
18262 | 2432 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
|
2433 c = ':'; |
18262 | 2434 } |
2435 } | |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2436 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2437 if (p < pend && p[0] == '-' && p[1] != ']') |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2438 { |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2439 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2440 /* Discard the `-'. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2441 PATFETCH (c1); |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2442 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2443 /* Fetch the character which ends the range. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2444 PATFETCH (c1); |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2445 |
21348
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
2446 if (SINGLE_BYTE_CHAR_P (c) |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
2447 && ! SINGLE_BYTE_CHAR_P (c1)) |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
2448 { |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
2449 /* Handle a range such as \177-\377 in multibyte mode. |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
2450 Split that into two ranges,, |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
2451 the low one ending at 0237, and the high one |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
2452 starting at ...040. */ |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2453 /* Unless I'm missing something, |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2454 this line is useless. -sm |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2455 int c1_base = (c1 & ~0177) | 040; */ |
21348
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
2456 SET_RANGE_TABLE_WORK_AREA (range_table_work, c, c1); |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
2457 c1 = 0237; |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
2458 } |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
2459 else if (!SAME_CHARSET_P (c, c1)) |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2460 FREE_STACK_RETURN (REG_ERANGE); |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2461 } |
18262 | 2462 else |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2463 /* Range from C to C. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2464 c1 = c; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2465 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2466 /* Set the range ... */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2467 if (SINGLE_BYTE_CHAR_P (c)) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2468 /* ... into bitmap. */ |
18262 | 2469 { |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2470 unsigned this_char; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2471 int range_start = c, range_end = c1; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2472 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2473 /* If the start is after the end, the range is empty. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2474 if (range_start > range_end) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2475 { |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2476 if (syntax & RE_NO_EMPTY_RANGES) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2477 FREE_STACK_RETURN (REG_ERANGE); |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2478 /* Else, repeat the loop. */ |
16010 | 2479 } |
2480 else | |
2481 { | |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2482 for (this_char = range_start; this_char <= range_end; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2483 this_char++) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2484 SET_LIST_BIT (TRANSLATE (this_char)); |
21348
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
2485 } |
18262 | 2486 } |
16010 | 2487 else |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2488 /* ... into range table. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2489 SET_RANGE_TABLE_WORK_AREA (range_table_work, c, c1); |
16010 | 2490 } |
2491 | |
18262 | 2492 /* Discard any (non)matching list bytes that are all 0 at the |
2493 end of the map. Decrease the map-length byte too. */ | |
2494 while ((int) b[-1] > 0 && b[b[-1] - 1] == 0) | |
2495 b[-1]--; | |
2496 b += b[-1]; | |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2497 |
25440
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
2498 /* 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
|
2499 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
|
2500 || RANGE_TABLE_WORK_BITS (range_table_work)) |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2501 { |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2502 int i; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2503 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
|
2504 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2505 /* 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
|
2506 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
|
2507 each character. */ |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
2508 GET_BUFFER_SPACE (4 + used * 3); |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2509 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2510 /* Indicate the existence of range table. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2511 laststart[1] |= 0x80; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2512 |
25440
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
2513 /* 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
|
2514 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
|
2515 *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
|
2516 *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
|
2517 |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2518 STORE_NUMBER_AND_INCR (b, used / 2); |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2519 for (i = 0; i < used; i++) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2520 STORE_CHARACTER_AND_INCR |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2521 (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
|
2522 } |
18262 | 2523 } |
2524 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
|
2525 |
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 |
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 case '(': |
18262 | 2528 if (syntax & RE_NO_BK_PARENS) |
2529 goto handle_open; | |
2530 else | |
2531 goto normal_char; | |
2532 | |
2533 | |
2534 case ')': | |
2535 if (syntax & RE_NO_BK_PARENS) | |
2536 goto handle_close; | |
2537 else | |
2538 goto normal_char; | |
2539 | |
2540 | |
2541 case '\n': | |
2542 if (syntax & RE_NEWLINE_ALT) | |
2543 goto handle_alt; | |
2544 else | |
2545 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
|
2546 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2547 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2548 case '|': |
18262 | 2549 if (syntax & RE_NO_BK_VBAR) |
2550 goto handle_alt; | |
2551 else | |
2552 goto normal_char; | |
2553 | |
2554 | |
2555 case '{': | |
2556 if (syntax & RE_INTERVALS && syntax & RE_NO_BK_BRACES) | |
2557 goto handle_interval; | |
2558 else | |
2559 goto normal_char; | |
2560 | |
2561 | |
2562 case '\\': | |
2563 if (p == pend) FREE_STACK_RETURN (REG_EESCAPE); | |
2564 | |
2565 /* Do not translate the character after the \, so that we can | |
2566 distinguish, e.g., \B from \b, even if we normally would | |
2567 translate, e.g., B to b. */ | |
2568 PATFETCH_RAW (c); | |
2569 | |
2570 switch (c) | |
2571 { | |
2572 case '(': | |
2573 if (syntax & RE_NO_BK_PARENS) | |
2574 goto normal_backslash; | |
2575 | |
2576 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
|
2577 { |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2578 int shy = 0; |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2579 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
|
2580 { |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2581 /* 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
|
2582 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
|
2583 { |
28372
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2584 PATFETCH (c); /* Gobble up the '?'. */ |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2585 PATFETCH (c); |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2586 switch (c) |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2587 { |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2588 case ':': shy = 1; break; |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2589 default: |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2590 /* Only (?:...) is supported right now. */ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2591 FREE_STACK_RETURN (REG_BADPAT); |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2592 } |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2593 } |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2594 } |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2595 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2596 if (!shy) |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2597 { |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2598 bufp->re_nsub++; |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2599 regnum++; |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2600 } |
18262 | 2601 |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2602 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
|
2603 { |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2604 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
|
2605 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
|
2606 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
|
2607 |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2608 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
|
2609 } |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2610 |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2611 /* These are the values to restore when we hit end of this |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2612 group. They are all relative offsets, so that if the |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2613 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
|
2614 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
|
2615 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
|
2616 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
|
2617 = 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
|
2618 COMPILE_STACK_TOP.laststart_offset = b - bufp->buffer; |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2619 COMPILE_STACK_TOP.regnum = shy ? -regnum : regnum; |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2620 |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2621 /* Do not push a |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2622 start_memory for groups beyond the last one we can |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2623 represent in the compiled pattern. */ |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2624 if (regnum <= MAX_REGNUM && !shy) |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2625 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
|
2626 |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2627 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
|
2628 |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
2629 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
|
2630 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
|
2631 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
|
2632 /* 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
|
2633 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
|
2634 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
|
2635 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
|
2636 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
|
2637 } |
18262 | 2638 |
2639 case ')': | |
2640 if (syntax & RE_NO_BK_PARENS) goto normal_backslash; | |
2641 | |
2642 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
|
2643 { |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2644 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
|
2645 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
|
2646 else |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2647 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
|
2648 } |
18262 | 2649 |
2650 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
|
2651 FIXUP_ALT_JUMP (); |
18262 | 2652 |
2653 /* See similar code for backslashed left paren above. */ | |
2654 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
|
2655 { |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2656 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
|
2657 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
|
2658 else |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2659 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
|
2660 } |
18262 | 2661 |
2662 /* Since we just checked for an empty stack above, this | |
2663 ``can't happen''. */ | |
2664 assert (compile_stack.avail != 0); | |
2665 { | |
2666 /* We don't just want to restore into `regnum', because | |
2667 later groups should continue to be numbered higher, | |
2668 as in `(ab)c(de)' -- the second group is #2. */ | |
2669 regnum_t this_group_regnum; | |
2670 | |
2671 compile_stack.avail--; | |
2672 begalt = bufp->buffer + COMPILE_STACK_TOP.begalt_offset; | |
2673 fixup_alt_jump | |
2674 = COMPILE_STACK_TOP.fixup_alt_jump | |
2675 ? bufp->buffer + COMPILE_STACK_TOP.fixup_alt_jump - 1 | |
2676 : 0; | |
2677 laststart = bufp->buffer + COMPILE_STACK_TOP.laststart_offset; | |
2678 this_group_regnum = COMPILE_STACK_TOP.regnum; | |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2679 /* 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
|
2680 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
|
2681 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
|
2682 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
|
2683 |
18262 | 2684 /* We're at the end of the group, so now we know how many |
2685 groups were inside this one. */ | |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2686 if (this_group_regnum <= MAX_REGNUM && this_group_regnum > 0) |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2687 BUF_PUSH_2 (stop_memory, this_group_regnum); |
18262 | 2688 } |
2689 break; | |
2690 | |
2691 | |
2692 case '|': /* `\|'. */ | |
2693 if (syntax & RE_LIMITED_OPS || syntax & RE_NO_BK_VBAR) | |
2694 goto normal_backslash; | |
2695 handle_alt: | |
2696 if (syntax & RE_LIMITED_OPS) | |
2697 goto normal_char; | |
2698 | |
2699 /* Insert before the previous alternative a jump which | |
2700 jumps to this alternative if the former fails. */ | |
2701 GET_BUFFER_SPACE (3); | |
2702 INSERT_JUMP (on_failure_jump, begalt, b + 6); | |
2703 pending_exact = 0; | |
2704 b += 3; | |
2705 | |
2706 /* The alternative before this one has a jump after it | |
2707 which gets executed if it gets matched. Adjust that | |
2708 jump so it will jump to this alternative's analogous | |
2709 jump (put in below, which in turn will jump to the next | |
2710 (if any) alternative's such jump, etc.). The last such | |
2711 jump jumps to the correct final destination. A picture: | |
2712 _____ _____ | |
2713 | | | | | |
2714 | v | v | |
2715 a | b | c | |
2716 | |
2717 If we are at `b', then fixup_alt_jump right now points to a | |
2718 three-byte space after `a'. We'll put in the jump, set | |
2719 fixup_alt_jump to right after `b', and leave behind three | |
2720 bytes which we'll fill in when we get to after `c'. */ | |
2721 | |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
2722 FIXUP_ALT_JUMP (); |
18262 | 2723 |
2724 /* Mark and leave space for a jump after this alternative, | |
2725 to be filled in later either by next alternative or | |
2726 when know we're at the end of a series of alternatives. */ | |
2727 fixup_alt_jump = b; | |
2728 GET_BUFFER_SPACE (3); | |
2729 b += 3; | |
2730 | |
2731 laststart = 0; | |
2732 begalt = b; | |
2733 break; | |
2734 | |
2735 | |
2736 case '{': | |
2737 /* If \{ is a literal. */ | |
2738 if (!(syntax & RE_INTERVALS) | |
2739 /* If we're at `\{' and it's not the open-interval | |
2740 operator. */ | |
28372
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2741 || (syntax & RE_NO_BK_BRACES) |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2742 /* What is that? -sm */ |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2743 /* || (p - 2 == pattern && p == pend) */) |
18262 | 2744 goto normal_backslash; |
2745 | |
2746 handle_interval: | |
2747 { | |
2748 /* If got here, then the syntax allows intervals. */ | |
2749 | |
2750 /* 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
|
2751 int lower_bound = 0, upper_bound = -1; |
18262 | 2752 |
28372
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2753 beg_interval = p; |
18262 | 2754 |
2755 if (p == pend) | |
2756 { | |
2757 if (syntax & RE_NO_BK_BRACES) | |
2758 goto unfetch_interval; | |
2759 else | |
2760 FREE_STACK_RETURN (REG_EBRACE); | |
2761 } | |
2762 | |
2763 GET_UNSIGNED_NUMBER (lower_bound); | |
2764 | |
2765 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
|
2766 GET_UNSIGNED_NUMBER (upper_bound); |
18262 | 2767 else |
2768 /* Interval such as `{1}' => match exactly once. */ | |
2769 upper_bound = lower_bound; | |
2770 | |
2771 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
|
2772 || (upper_bound >= 0 && lower_bound > upper_bound)) |
18262 | 2773 { |
2774 if (syntax & RE_NO_BK_BRACES) | |
2775 goto unfetch_interval; | |
2776 else | |
2777 FREE_STACK_RETURN (REG_BADBR); | |
2778 } | |
2779 | |
2780 if (!(syntax & RE_NO_BK_BRACES)) | |
2781 { | |
2782 if (c != '\\') FREE_STACK_RETURN (REG_EBRACE); | |
2783 | |
2784 PATFETCH (c); | |
2785 } | |
2786 | |
2787 if (c != '}') | |
2788 { | |
2789 if (syntax & RE_NO_BK_BRACES) | |
2790 goto unfetch_interval; | |
2791 else | |
2792 FREE_STACK_RETURN (REG_BADBR); | |
2793 } | |
2794 | |
2795 /* We just parsed a valid interval. */ | |
2796 | |
2797 /* If it's invalid to have no preceding re. */ | |
2798 if (!laststart) | |
2799 { | |
2800 if (syntax & RE_CONTEXT_INVALID_OPS) | |
2801 FREE_STACK_RETURN (REG_BADRPT); | |
2802 else if (syntax & RE_CONTEXT_INDEP_OPS) | |
2803 laststart = b; | |
2804 else | |
2805 goto unfetch_interval; | |
2806 } | |
2807 | |
2808 if (upper_bound == 0) | |
28372
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2809 /* If the upper bound is zero, just drop the sub pattern |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2810 altogether. */ |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2811 b = laststart; |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2812 else if (lower_bound == 1 && upper_bound == 1) |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2813 /* Just match it once: nothing to do here. */ |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2814 ; |
18262 | 2815 |
2816 /* Otherwise, we have a nontrivial interval. When | |
2817 we're all done, the pattern will look like: | |
2818 set_number_at <jump count> <upper bound> | |
2819 set_number_at <succeed_n count> <lower bound> | |
2820 succeed_n <after jump addr> <succeed_n count> | |
2821 <body of loop> | |
2822 jump_n <succeed_n addr> <jump count> | |
2823 (The upper bound and `jump_n' are omitted if | |
2824 `upper_bound' is 1, though.) */ | |
2825 else | |
2826 { /* If the upper bound is > 1, we need to insert | |
2827 more at the end of the loop. */ | |
28372
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2828 unsigned int nbytes = (upper_bound < 0 ? 3 |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2829 : upper_bound > 1 ? 5 : 0); |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2830 unsigned int startoffset = 0; |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2831 |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2832 GET_BUFFER_SPACE (20); /* We might use less. */ |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2833 |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2834 if (lower_bound == 0) |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2835 { |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2836 /* A succeed_n that starts with 0 is really a |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2837 a simple on_failure_jump_loop. */ |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2838 INSERT_JUMP (on_failure_jump_loop, laststart, |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2839 b + 3 + nbytes); |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2840 b += 3; |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2841 } |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2842 else |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2843 { |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2844 /* Initialize lower bound of the `succeed_n', even |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2845 though it will be set during matching by its |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2846 attendant `set_number_at' (inserted next), |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2847 because `re_compile_fastmap' needs to know. |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2848 Jump to the `jump_n' we might insert below. */ |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2849 INSERT_JUMP2 (succeed_n, laststart, |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2850 b + 5 + nbytes, |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2851 lower_bound); |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2852 b += 5; |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2853 |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2854 /* Code to initialize the lower bound. Insert |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2855 before the `succeed_n'. The `5' is the last two |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2856 bytes of this `set_number_at', plus 3 bytes of |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2857 the following `succeed_n'. */ |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2858 insert_op2 (set_number_at, laststart, 5, lower_bound, b); |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2859 b += 5; |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2860 startoffset += 5; |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2861 } |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2862 |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2863 if (upper_bound < 0) |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2864 { |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2865 /* A negative upper bound stands for infinity, |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2866 in which case it degenerates to a plain jump. */ |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2867 STORE_JUMP (jump, b, laststart + startoffset); |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2868 b += 3; |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2869 } |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2870 else if (upper_bound > 1) |
18262 | 2871 { /* More than one repetition is allowed, so |
2872 append a backward jump to the `succeed_n' | |
2873 that starts this interval. | |
2874 | |
2875 When we've reached this during matching, | |
2876 we'll have matched the interval once, so | |
2877 jump back only `upper_bound - 1' times. */ | |
28372
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2878 STORE_JUMP2 (jump_n, b, laststart + startoffset, |
18262 | 2879 upper_bound - 1); |
2880 b += 5; | |
2881 | |
2882 /* The location we want to set is the second | |
2883 parameter of the `jump_n'; that is `b-2' as | |
2884 an absolute address. `laststart' will be | |
2885 the `set_number_at' we're about to insert; | |
2886 `laststart+3' the number to set, the source | |
2887 for the relative address. But we are | |
2888 inserting into the middle of the pattern -- | |
2889 so everything is getting moved up by 5. | |
2890 Conclusion: (b - 2) - (laststart + 3) + 5, | |
2891 i.e., b - laststart. | |
2892 | |
2893 We insert this at the beginning of the loop | |
2894 so that if we fail during matching, we'll | |
2895 reinitialize the bounds. */ | |
2896 insert_op2 (set_number_at, laststart, b - laststart, | |
2897 upper_bound - 1, b); | |
2898 b += 5; | |
2899 } | |
2900 } | |
2901 pending_exact = 0; | |
2902 beg_interval = NULL; | |
2903 } | |
2904 break; | |
2905 | |
2906 unfetch_interval: | |
2907 /* If an invalid interval, match the characters as literals. */ | |
2908 assert (beg_interval); | |
2909 p = beg_interval; | |
2910 beg_interval = NULL; | |
2911 | |
2912 /* 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
|
2913 c = '{'; |
18262 | 2914 |
2915 if (!(syntax & RE_NO_BK_BRACES)) | |
2916 { | |
28372
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2917 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
|
2918 goto normal_backslash; |
18262 | 2919 } |
28372
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2920 else |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
2921 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
|
2922 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2923 #ifdef emacs |
18262 | 2924 /* There is no way to specify the before_dot and after_dot |
2925 operators. rms says this is ok. --karl */ | |
2926 case '=': | |
2927 BUF_PUSH (at_dot); | |
2928 break; | |
2929 | |
2930 case 's': | |
2931 laststart = b; | |
2932 PATFETCH (c); | |
2933 BUF_PUSH_2 (syntaxspec, syntax_spec_code[c]); | |
2934 break; | |
2935 | |
2936 case 'S': | |
2937 laststart = b; | |
2938 PATFETCH (c); | |
2939 BUF_PUSH_2 (notsyntaxspec, syntax_spec_code[c]); | |
2940 break; | |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2941 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2942 case 'c': |
16010 | 2943 laststart = b; |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2944 PATFETCH_RAW (c); |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2945 BUF_PUSH_2 (categoryspec, c); |
16010 | 2946 break; |
2947 | |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2948 case 'C': |
16010 | 2949 laststart = b; |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2950 PATFETCH_RAW (c); |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
2951 BUF_PUSH_2 (notcategoryspec, c); |
16010 | 2952 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
|
2953 #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
|
2954 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
2955 |
18262 | 2956 case 'w': |
2957 laststart = b; | |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
2958 BUF_PUSH_2 (syntaxspec, Sword); |
18262 | 2959 break; |
2960 | |
2961 | |
2962 case 'W': | |
2963 laststart = b; | |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
2964 BUF_PUSH_2 (notsyntaxspec, Sword); |
18262 | 2965 break; |
2966 | |
2967 | |
2968 case '<': | |
2969 BUF_PUSH (wordbeg); | |
2970 break; | |
2971 | |
2972 case '>': | |
2973 BUF_PUSH (wordend); | |
2974 break; | |
2975 | |
2976 case 'b': | |
2977 BUF_PUSH (wordbound); | |
2978 break; | |
2979 | |
2980 case 'B': | |
2981 BUF_PUSH (notwordbound); | |
2982 break; | |
2983 | |
2984 case '`': | |
2985 BUF_PUSH (begbuf); | |
2986 break; | |
2987 | |
2988 case '\'': | |
2989 BUF_PUSH (endbuf); | |
2990 break; | |
2991 | |
2992 case '1': case '2': case '3': case '4': case '5': | |
2993 case '6': case '7': case '8': case '9': | |
2994 if (syntax & RE_NO_BK_REFS) | |
2995 goto normal_char; | |
2996 | |
2997 c1 = c - '0'; | |
2998 | |
2999 if (c1 > regnum) | |
3000 FREE_STACK_RETURN (REG_ESUBREG); | |
3001 | |
3002 /* Can't back reference to a subexpression if inside of it. */ | |
3003 if (group_in_compile_stack (compile_stack, c1)) | |
3004 goto normal_char; | |
3005 | |
3006 laststart = b; | |
3007 BUF_PUSH_2 (duplicate, c1); | |
3008 break; | |
3009 | |
3010 | |
3011 case '+': | |
3012 case '?': | |
3013 if (syntax & RE_BK_PLUS_QM) | |
3014 goto handle_plus; | |
3015 else | |
3016 goto normal_backslash; | |
3017 | |
3018 default: | |
3019 normal_backslash: | |
3020 /* You might think it would be useful for \ to mean | |
3021 not to translate; but if we don't translate it | |
3022 it will never match anything. */ | |
3023 c = TRANSLATE (c); | |
3024 goto normal_char; | |
3025 } | |
3026 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
|
3027 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3028 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3029 default: |
18262 | 3030 /* 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
|
3031 normal_char: |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3032 /* If no exactn currently being built. */ |
18262 | 3033 if (!pending_exact |
3034 | |
3035 /* If last exactn not at current position. */ | |
3036 || pending_exact + *pending_exact + 1 != b | |
3037 | |
3038 /* 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
|
3039 || *pending_exact >= (1 << BYTEWIDTH) - MAX_MULTIBYTE_LENGTH |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3040 |
18262 | 3041 /* If followed by a repetition operator. */ |
21963
b717a61747c5
(regex_compile): When checking after exactn
Richard M. Stallman <rms@gnu.org>
parents:
21838
diff
changeset
|
3042 || (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
|
3043 || ((syntax & RE_BK_PLUS_QM) |
21963
b717a61747c5
(regex_compile): When checking after exactn
Richard M. Stallman <rms@gnu.org>
parents:
21838
diff
changeset
|
3044 ? 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
|
3045 : 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
|
3046 || ((syntax & RE_INTERVALS) |
18262 | 3047 && ((syntax & RE_NO_BK_BRACES) |
21963
b717a61747c5
(regex_compile): When checking after exactn
Richard M. Stallman <rms@gnu.org>
parents:
21838
diff
changeset
|
3048 ? p != pend && *p == '{' |
b717a61747c5
(regex_compile): When checking after exactn
Richard M. Stallman <rms@gnu.org>
parents:
21838
diff
changeset
|
3049 : 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
|
3050 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3051 /* Start building a new exactn. */ |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
3052 |
18262 | 3053 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
|
3054 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3055 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
|
3056 pending_exact = b - 1; |
18262 | 3057 } |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3058 |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
3059 GET_BUFFER_SPACE (MAX_MULTIBYTE_LENGTH); |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
3060 { |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
3061 int len = CHAR_STRING (c, b); |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
3062 b += len; |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
3063 (*pending_exact) += len; |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
3064 } |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
3065 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3066 break; |
18262 | 3067 } /* 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
|
3068 } /* 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
|
3069 |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
3070 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3071 /* Through the pattern now. */ |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
3072 |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3073 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
|
3074 |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
3075 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
|
3076 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
|
3077 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3078 /* 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
|
3079 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
|
3080 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
|
3081 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
|
3082 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3083 free (compile_stack.stack); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3084 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3085 /* 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
|
3086 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
|
3087 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3088 #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
|
3089 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
|
3090 { |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3091 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
|
3092 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
|
3093 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
|
3094 } |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
3095 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
|
3096 #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
|
3097 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3098 #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
|
3099 /* 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
|
3100 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
|
3101 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
|
3102 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3103 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
|
3104 |
20449
fc965930c738
(TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents:
19184
diff
changeset
|
3105 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
|
3106 { |
21352
b9275822b6f5
(regex_compile) [!MATCH_MAY_ALLOCATE]: Fix paren error.
Richard M. Stallman <rms@gnu.org>
parents:
21348
diff
changeset
|
3107 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
|
3108 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3109 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
|
3110 fail_stack.stack |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
3111 = (fail_stack_elt_t *) malloc (fail_stack.size |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3112 * sizeof (fail_stack_elt_t)); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3113 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
|
3114 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
|
3115 = (fail_stack_elt_t *) realloc (fail_stack.stack, |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3116 (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
|
3117 * sizeof (fail_stack_elt_t))); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3118 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3119 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3120 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
|
3121 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3122 #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
|
3123 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3124 return REG_NOERROR; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3125 } /* 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
|
3126 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3127 /* 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
|
3128 |
18262 | 3129 /* 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
|
3130 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3131 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
|
3132 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
|
3133 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
|
3134 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
|
3135 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
|
3136 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3137 *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
|
3138 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
|
3139 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3140 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3141 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3142 /* 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
|
3143 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3144 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
|
3145 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
|
3146 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
|
3147 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
|
3148 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
|
3149 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3150 *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
|
3151 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
|
3152 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
|
3153 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3154 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3155 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3156 /* 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
|
3157 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
|
3158 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3159 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
|
3160 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
|
3161 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
|
3162 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
|
3163 int arg; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
3164 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
|
3165 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3166 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
|
3167 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
|
3168 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3169 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
|
3170 *--pto = *--pfrom; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
3171 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3172 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
|
3173 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3174 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3175 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3176 /* 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
|
3177 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3178 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
|
3179 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
|
3180 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
|
3181 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
|
3182 int arg1, arg2; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
3183 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
|
3184 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3185 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
|
3186 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
|
3187 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3188 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
|
3189 *--pto = *--pfrom; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
3190 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3191 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
|
3192 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3193 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3194 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3195 /* 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
|
3196 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
|
3197 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
|
3198 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3199 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
|
3200 at_begline_loc_p (pattern, p, syntax) |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
3201 const unsigned 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
|
3202 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
|
3203 { |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
3204 const unsigned 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
|
3205 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
|
3206 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3207 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
|
3208 /* 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
|
3209 (*prev == '(' && (syntax & RE_NO_BK_PARENS || prev_prev_backslash)) |
18262 | 3210 /* After an alternative? */ |
29194
fe06affca294
(at_begline_loc_p): Also recognize the \\(?:^ case
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28662
diff
changeset
|
3211 || (*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
|
3212 /* After a shy subexpression? */ |
fe06affca294
(at_begline_loc_p): Also recognize the \\(?:^ case
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28662
diff
changeset
|
3213 || ((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
|
3214 && prev[-1] == '?' && prev[-2] == '(' |
fe06affca294
(at_begline_loc_p): Also recognize the \\(?:^ case
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28662
diff
changeset
|
3215 && (syntax & RE_NO_BK_PARENS |
fe06affca294
(at_begline_loc_p): Also recognize the \\(?:^ case
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28662
diff
changeset
|
3216 || (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
|
3217 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3218 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3219 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3220 /* 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
|
3221 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
|
3222 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3223 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
|
3224 at_endline_loc_p (p, pend, syntax) |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
3225 const unsigned char *p, *pend; |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
3226 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
|
3227 { |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
3228 const unsigned 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
|
3229 boolean next_backslash = *next == '\\'; |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
3230 const unsigned 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
|
3231 |
11864
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 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
|
3233 /* 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
|
3234 (syntax & RE_NO_BK_PARENS ? *next == ')' |
18262 | 3235 : 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
|
3236 /* 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
|
3237 || (syntax & RE_NO_BK_VBAR ? *next == '|' |
18262 | 3238 : 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
|
3239 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3240 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3241 |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
3242 /* 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
|
3243 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
|
3244 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3245 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
|
3246 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
|
3247 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
|
3248 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
|
3249 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3250 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
|
3251 |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
3252 for (this_element = compile_stack.avail - 1; |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
3253 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
|
3254 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
|
3255 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
|
3256 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
|
3257 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3258 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
|
3259 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3260 |
28380
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3261 /* analyse_first. |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3262 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
|
3263 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
|
3264 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
|
3265 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
|
3266 |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3267 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
|
3268 Return 0 if p..pend matches at least one char. |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3269 Return -1 if p..pend matches at least one char, but fastmap was not |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3270 updated accurately. |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3271 Return -2 if an error occurred. */ |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3272 |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3273 static int |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3274 analyse_first (p, pend, fastmap, multibyte) |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3275 unsigned char *p, *pend; |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3276 char *fastmap; |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3277 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
|
3278 { |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3279 int j, k; |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3280 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
|
3281 #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
|
3282 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
|
3283 #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
|
3284 #ifndef 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
|
3285 char *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
|
3286 #endif |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
3287 |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
3288 #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
|
3289 /* 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
|
3290 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
|
3291 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
|
3292 #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
|
3293 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3294 /* Assume that each path through the pattern can be null until |
18262 | 3295 proven otherwise. We set this false at the bottom of switch |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3296 statement, to which we get only if a particular path doesn'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
|
3297 match the empty 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
|
3298 boolean path_can_be_null = 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
|
3299 |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3300 /* If all elements for base leading-codes in fastmap is set, this |
18262 | 3301 flag is set true. */ |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3302 boolean match_any_multibyte_characters = false; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3303 |
28380
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3304 assert (p); |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
3305 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3306 INIT_FAIL_STACK (); |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
3307 |
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 /* 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
|
3309 - 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
|
3310 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
|
3311 - 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
|
3312 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
|
3313 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
|
3314 - 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
|
3315 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
|
3316 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
|
3317 (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
|
3318 worklist. |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3319 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
|
3320 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
|
3321 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
|
3322 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3323 /* If can_be_null is set, then the fastmap will not be used anyway. */ |
28380
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3324 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
|
3325 { |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3326 /* `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
|
3327 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
|
3328 (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
|
3329 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
|
3330 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
|
3331 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
|
3332 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
|
3333 as used for the *? operator. */ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3334 unsigned char *p1 = p; |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3335 |
28380
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3336 if (p >= pend) |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3337 { |
28380
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3338 if (path_can_be_null) |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3339 return (RESET_FAIL_STACK (), 1); |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3340 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3341 /* We have reached the (effective) end of pattern. */ |
28380
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3342 if (PATTERN_STACK_EMPTY ()) |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3343 return (RESET_FAIL_STACK (), 0); |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3344 |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3345 p = (unsigned char*) POP_PATTERN_OP (); |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3346 path_can_be_null = true; |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3347 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
|
3348 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3349 |
18262 | 3350 /* We should never be about to go beyond the end of the 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
|
3351 assert (p < pend); |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
3352 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3353 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
|
3354 { |
28380
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3355 case succeed: |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3356 p = pend; |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3357 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
|
3358 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3359 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
|
3360 /* 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
|
3361 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
|
3362 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
|
3363 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
|
3364 p++; |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3365 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
|
3366 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3367 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3368 /* Following are the cases which match a character. These end |
18262 | 3369 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
|
3370 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3371 case exactn: |
28380
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3372 if (fastmap) fastmap[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
|
3373 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
|
3374 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3375 |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3376 case anychar: |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3377 /* 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
|
3378 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
|
3379 if (!fastmap) break; |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3380 return (RESET_FAIL_STACK (), -1); |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3381 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3382 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3383 case charset_not: |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3384 /* Chars beyond end of bitmap are possible matches. |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3385 All the single-byte codes can occur in multibyte buffers. |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3386 So any that are not listed in the charset |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3387 are possible matches, even in multibyte buffers. */ |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3388 if (!fastmap) break; |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3389 for (j = CHARSET_BITMAP_SIZE (&p[-1]) * BYTEWIDTH; |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3390 j < (1 << BYTEWIDTH); j++) |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3391 fastmap[j] = 1; |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3392 /* Fallthrough */ |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3393 case charset: |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3394 if (!fastmap) break; |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3395 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
|
3396 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
|
3397 j >= 0; j--) |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3398 if (!!(p[j / BYTEWIDTH] & (1 << (j % BYTEWIDTH))) ^ not) |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3399 fastmap[j] = 1; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3400 |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3401 if ((not && multibyte) |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3402 /* Any character set can possibly contain a character |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3403 which doesn't match the specified set of characters. */ |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3404 || (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
|
3405 && CHARSET_RANGE_TABLE_BITS (&p[-2]) != 0)) |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3406 /* If we can match a character class, we can match |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3407 any character set. */ |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3408 { |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3409 set_fastmap_for_multibyte_characters: |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3410 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
|
3411 { |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3412 for (j = 0x80; j < 0xA0; j++) /* XXX */ |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3413 if (BASE_LEADING_CODE_P (j)) |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3414 fastmap[j] = 1; |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3415 match_any_multibyte_characters = true; |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3416 } |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3417 } |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3418 |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3419 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
|
3420 && match_any_multibyte_characters == false) |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3421 { |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3422 /* Set fastmap[I] 1 where I is a base leading code of each |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3423 multibyte character in the range table. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3424 int c, count; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3425 |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3426 /* Make P points the range table. `+ 2' is to skip flag |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3427 bits for a character class. */ |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3428 p += CHARSET_BITMAP_SIZE (&p[-2]) + 2; |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3429 |
25877
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
3430 /* 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
|
3431 EXTRACT_NUMBER_AND_INCR (count, p); |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3432 for (; count > 0; count--, p += 2 * 3) /* XXX */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3433 { |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3434 /* Extract the start of each range. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3435 EXTRACT_CHARACTER (c, p); |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3436 j = CHAR_CHARSET (c); |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3437 fastmap[CHARSET_LEADING_CODE_BASE (j)] = 1; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3438 } |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3439 } |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3440 break; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3441 |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3442 case syntaxspec: |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3443 case notsyntaxspec: |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3444 if (!fastmap) break; |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3445 #ifndef emacs |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3446 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
|
3447 k = *p++; |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3448 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
|
3449 if ((SYNTAX (j) == (enum syntaxcode) k) ^ not) |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3450 fastmap[j] = 1; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3451 break; |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3452 #else /* emacs */ |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3453 /* 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
|
3454 aborting optimizations. */ |
28380
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3455 return (RESET_FAIL_STACK (), -1); |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3456 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3457 case categoryspec: |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3458 case notcategoryspec: |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3459 if (!fastmap) break; |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3460 not = (re_opcode_t)p[-1] == notcategoryspec; |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3461 k = *p++; |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3462 for (j = 0; j < (1 << BYTEWIDTH); j++) |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3463 if ((CHAR_HAS_CATEGORY (j, k)) ^ not) |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3464 fastmap[j] = 1; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3465 |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3466 if (multibyte) |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3467 /* Any character set can possibly contain a character |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3468 whose category is K (or not). */ |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3469 goto set_fastmap_for_multibyte_characters; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3470 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
|
3471 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3472 /* All cases after this match the empty string. These end with |
18262 | 3473 `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
|
3474 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3475 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
|
3476 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
|
3477 case after_dot: |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
3478 #endif /* !emacs */ |
18262 | 3479 case no_op: |
3480 case begline: | |
3481 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
|
3482 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
|
3483 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
|
3484 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
|
3485 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
|
3486 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
|
3487 case wordend: |
18262 | 3488 continue; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3489 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3490 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3491 case jump: |
18262 | 3492 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
|
3493 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
|
3494 /* 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
|
3495 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
|
3496 break; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
3497 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
|
3498 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
|
3499 { |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3500 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
|
3501 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
|
3502 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
|
3503 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
|
3504 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
|
3505 p++; |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3506 break; |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3507 default: |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3508 continue; |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3509 }; |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
3510 /* 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
|
3511 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
|
3512 /* Fallthrough */ |
18262 | 3513 |
3514 case on_failure_jump: | |
3515 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
|
3516 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
|
3517 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
|
3518 case on_failure_jump_smart: |
18262 | 3519 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
|
3520 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
|
3521 ; /* Backward jump to be ignored. */ |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
3522 else if (!PUSH_PATTERN_OP (p + j, fail_stack)) |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
3523 return (RESET_FAIL_STACK (), -2); |
18262 | 3524 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
|
3525 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3526 |
28372
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
3527 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
|
3528 /* 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
|
3529 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
|
3530 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
|
3531 /* 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
|
3532 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
|
3533 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
|
3534 continue; |
bc86be15099e
(REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as an expression.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28342
diff
changeset
|
3535 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3536 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
|
3537 /* 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
|
3538 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
|
3539 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
|
3540 /* 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
|
3541 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
|
3542 on_failure_jump. */ |
18262 | 3543 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
|
3544 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3545 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3546 case set_number_at: |
18262 | 3547 p += 4; |
3548 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
|
3549 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3550 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3551 case start_memory: |
18262 | 3552 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
|
3553 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
|
3554 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
|
3555 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3556 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3557 default: |
18262 | 3558 abort (); /* We have listed all the cases. */ |
3559 } /* 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
|
3560 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3561 /* Getting here means we have found the possible starting |
18262 | 3562 characters for one path of the pattern -- and that the empty |
3563 string does not match. We need not follow this path further. | |
3564 Instead, look at the next alternative (remembered on the | |
3565 stack), or quit if no more. The test at the top of the loop | |
3566 does these things. */ | |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3567 path_can_be_null = 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
|
3568 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
|
3569 } /* 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
|
3570 |
28380
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3571 return (RESET_FAIL_STACK (), 0); |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3572 } /* analyse_first */ |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3573 |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3574 /* 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
|
3575 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
|
3576 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
|
3577 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
|
3578 |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3579 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
|
3580 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
|
3581 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
|
3582 |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3583 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
|
3584 area as BUFP->fastmap. |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3585 |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3586 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
|
3587 the pattern buffer. |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3588 |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3589 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
|
3590 |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3591 int |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3592 re_compile_fastmap (bufp) |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3593 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
|
3594 { |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3595 char *fastmap = bufp->fastmap; |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3596 int analysis; |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3597 |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3598 assert (fastmap && bufp->buffer); |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3599 |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3600 bzero (fastmap, 1 << BYTEWIDTH); /* Assume nothing's valid. */ |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3601 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
|
3602 |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3603 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
|
3604 fastmap, RE_MULTIBYTE_P (bufp)); |
28380
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3605 if (analysis < -1) |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3606 return analysis; |
5478842aea4c
(analyse_first): New function obtained by ripping out most
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28372
diff
changeset
|
3607 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
|
3608 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
|
3609 } /* 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
|
3610 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3611 /* 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
|
3612 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
|
3613 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
|
3614 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
|
3615 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
|
3616 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3617 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
|
3618 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
|
3619 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3620 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
|
3621 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
|
3622 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
|
3623 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3624 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
|
3625 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
|
3626 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
|
3627 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
|
3628 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
|
3629 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
|
3630 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3631 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
|
3632 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3633 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
|
3634 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
|
3635 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
|
3636 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
|
3637 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3638 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
|
3639 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3640 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
|
3641 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
|
3642 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
|
3643 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3644 } |
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 |
18262 | 3646 /* 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
|
3647 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3648 /* 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
|
3649 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
|
3650 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3651 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
|
3652 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
|
3653 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
|
3654 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
|
3655 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
|
3656 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
|
3657 { |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
3658 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
|
3659 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
|
3660 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3661 |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3662 /* End address of virtual concatenation of string. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3663 #define STOP_ADDR_VSTRING(P) \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3664 (((P) >= size1 ? string2 + size2 : string1 + size1)) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3665 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3666 /* 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
|
3667 #define POS_ADDR_VSTRING(POS) \ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3668 (((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
|
3669 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3670 /* 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
|
3671 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
|
3672 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
|
3673 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3674 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
|
3675 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3676 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
|
3677 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
|
3678 RANGE. |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
3679 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3680 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
|
3681 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
|
3682 subexpressions. |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
3683 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3684 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
|
3685 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
|
3686 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3687 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
|
3688 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
|
3689 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
|
3690 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3691 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
|
3692 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
|
3693 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
|
3694 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
|
3695 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
|
3696 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
|
3697 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
|
3698 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
|
3699 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
|
3700 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3701 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
|
3702 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
|
3703 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
|
3704 register char *fastmap = bufp->fastmap; |
13250
52e053f46f76
(TRANSLATE, PATFETCH): Cast elt of `translate'.
Richard M. Stallman <rms@gnu.org>
parents:
13100
diff
changeset
|
3705 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
|
3706 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
|
3707 int endpos = startpos + range; |
16009
2a4da819f152
(re_search_2): Optimize regexp that starts with ^.
Richard M. Stallman <rms@gnu.org>
parents:
16008
diff
changeset
|
3708 int anchored_start = 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
|
3709 |
18262 | 3710 /* Nonzero if we have to concern multibyte character. */ |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
3711 const boolean multibyte = RE_MULTIBYTE_P (bufp); |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3712 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3713 /* 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
|
3714 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
|
3715 return -1; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
3716 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3717 /* 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
|
3718 the virtual concatenation of STRING1 and STRING2. |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
3719 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
|
3720 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
|
3721 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
|
3722 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
|
3723 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
|
3724 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3725 /* 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
|
3726 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
|
3727 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
|
3728 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3729 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
|
3730 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
|
3731 else |
21760
f97c01dfd603
(re_search_2): Fix handling of at_dot.
Richard M. Stallman <rms@gnu.org>
parents:
21562
diff
changeset
|
3732 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
|
3733 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3734 |
12983
ed39ba26313b
(re_search_2): If pattern starts with \=, optimize search.
Richard M. Stallman <rms@gnu.org>
parents:
12931
diff
changeset
|
3735 #ifdef emacs |
ed39ba26313b
(re_search_2): If pattern starts with \=, optimize search.
Richard M. Stallman <rms@gnu.org>
parents:
12931
diff
changeset
|
3736 /* 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
|
3737 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
|
3738 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
|
3739 { |
21760
f97c01dfd603
(re_search_2): Fix handling of at_dot.
Richard M. Stallman <rms@gnu.org>
parents:
21562
diff
changeset
|
3740 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
|
3741 if (range < 0) |
12983
ed39ba26313b
(re_search_2): If pattern starts with \=, optimize search.
Richard M. Stallman <rms@gnu.org>
parents:
12931
diff
changeset
|
3742 return -1; |
ed39ba26313b
(re_search_2): If pattern starts with \=, optimize search.
Richard M. Stallman <rms@gnu.org>
parents:
12931
diff
changeset
|
3743 } |
ed39ba26313b
(re_search_2): If pattern starts with \=, optimize search.
Richard M. Stallman <rms@gnu.org>
parents:
12931
diff
changeset
|
3744 #endif /* emacs */ |
ed39ba26313b
(re_search_2): If pattern starts with \=, optimize search.
Richard M. Stallman <rms@gnu.org>
parents:
12931
diff
changeset
|
3745 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3746 /* 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
|
3747 if (fastmap && !bufp->fastmap_accurate) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3748 if (re_compile_fastmap (bufp) == -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
|
3749 return -2; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
3750 |
16009
2a4da819f152
(re_search_2): Optimize regexp that starts with ^.
Richard M. Stallman <rms@gnu.org>
parents:
16008
diff
changeset
|
3751 /* See whether the pattern is anchored. */ |
2a4da819f152
(re_search_2): Optimize regexp that starts with ^.
Richard M. Stallman <rms@gnu.org>
parents:
16008
diff
changeset
|
3752 if (bufp->buffer[0] == begline) |
2a4da819f152
(re_search_2): Optimize regexp that starts with ^.
Richard M. Stallman <rms@gnu.org>
parents:
16008
diff
changeset
|
3753 anchored_start = 1; |
2a4da819f152
(re_search_2): Optimize regexp that starts with ^.
Richard M. Stallman <rms@gnu.org>
parents:
16008
diff
changeset
|
3754 |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3755 #ifdef emacs |
21482
9898a4994a12
(re_match_2, re_search_2): Convert position to a charpos,
Karl Heuer <kwzh@gnu.org>
parents:
21404
diff
changeset
|
3756 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
|
3757 { |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
3758 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
|
3759 |
9898a4994a12
(re_match_2, re_search_2): Convert position to a charpos,
Karl Heuer <kwzh@gnu.org>
parents:
21404
diff
changeset
|
3760 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
|
3761 } |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3762 #endif |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3763 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3764 /* 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
|
3765 for (;;) |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
3766 { |
16009
2a4da819f152
(re_search_2): Optimize regexp that starts with ^.
Richard M. Stallman <rms@gnu.org>
parents:
16008
diff
changeset
|
3767 /* If the pattern is anchored, |
2a4da819f152
(re_search_2): Optimize regexp that starts with ^.
Richard M. Stallman <rms@gnu.org>
parents:
16008
diff
changeset
|
3768 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
|
3769 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
|
3770 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
|
3771 if (anchored_start && startpos > 0) |
2a4da819f152
(re_search_2): Optimize regexp that starts with ^.
Richard M. Stallman <rms@gnu.org>
parents:
16008
diff
changeset
|
3772 { |
2a4da819f152
(re_search_2): Optimize regexp that starts with ^.
Richard M. Stallman <rms@gnu.org>
parents:
16008
diff
changeset
|
3773 if (! (bufp->newline_anchor |
2a4da819f152
(re_search_2): Optimize regexp that starts with ^.
Richard M. Stallman <rms@gnu.org>
parents:
16008
diff
changeset
|
3774 && ((startpos <= size1 ? string1[startpos - 1] |
2a4da819f152
(re_search_2): Optimize regexp that starts with ^.
Richard M. Stallman <rms@gnu.org>
parents:
16008
diff
changeset
|
3775 : string2[startpos - size1 - 1]) |
2a4da819f152
(re_search_2): Optimize regexp that starts with ^.
Richard M. Stallman <rms@gnu.org>
parents:
16008
diff
changeset
|
3776 == '\n'))) |
2a4da819f152
(re_search_2): Optimize regexp that starts with ^.
Richard M. Stallman <rms@gnu.org>
parents:
16008
diff
changeset
|
3777 goto advance; |
2a4da819f152
(re_search_2): Optimize regexp that starts with ^.
Richard M. Stallman <rms@gnu.org>
parents:
16008
diff
changeset
|
3778 } |
2a4da819f152
(re_search_2): Optimize regexp that starts with ^.
Richard M. Stallman <rms@gnu.org>
parents:
16008
diff
changeset
|
3779 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3780 /* If a fastmap is supplied, skip quickly over characters that |
18262 | 3781 cannot be the start of a match. If the pattern can match the |
3782 null string, however, we don't need to skip characters; we want | |
3783 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
|
3784 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
|
3785 { |
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
|
3786 register re_char *d; |
21348
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
3787 register unsigned int buf_ch; |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
3788 |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
3789 d = POS_ADDR_VSTRING (startpos); |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
3790 |
18262 | 3791 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
|
3792 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3793 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
|
3794 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
|
3795 |
18262 | 3796 if (startpos < size1 && startpos + range >= size1) |
3797 lim = range - (size1 - startpos); | |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3798 |
18262 | 3799 /* Written out as an if-else to avoid testing `translate' |
3800 inside the loop. */ | |
21838
1d93b782b983
(re_search_2): Fix indentation.
Andreas Schwab <schwab@suse.de>
parents:
21760
diff
changeset
|
3801 if (RE_TRANSLATE_P (translate)) |
1d93b782b983
(re_search_2): Fix indentation.
Andreas Schwab <schwab@suse.de>
parents:
21760
diff
changeset
|
3802 { |
21348
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
3803 if (multibyte) |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
3804 while (range > lim) |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
3805 { |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
3806 int buf_charlen; |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
3807 |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
3808 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
|
3809 buf_charlen); |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
3810 |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
3811 buf_ch = RE_TRANSLATE (translate, buf_ch); |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
3812 if (buf_ch >= 0400 |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
3813 || fastmap[buf_ch]) |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
3814 break; |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
3815 |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
3816 range -= buf_charlen; |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
3817 d += buf_charlen; |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
3818 } |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
3819 else |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
3820 while (range > lim |
28138
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28062
diff
changeset
|
3821 && !fastmap[RE_TRANSLATE (translate, *d)]) |
22237
566c88b62de6
(re_search_2): Don't use ++ inside RE_TRANSLATE.
Richard M. Stallman <rms@gnu.org>
parents:
21963
diff
changeset
|
3822 { |
566c88b62de6
(re_search_2): Don't use ++ inside RE_TRANSLATE.
Richard M. Stallman <rms@gnu.org>
parents:
21963
diff
changeset
|
3823 d++; |
566c88b62de6
(re_search_2): Don't use ++ inside RE_TRANSLATE.
Richard M. Stallman <rms@gnu.org>
parents:
21963
diff
changeset
|
3824 range--; |
566c88b62de6
(re_search_2): Don't use ++ inside RE_TRANSLATE.
Richard M. Stallman <rms@gnu.org>
parents:
21963
diff
changeset
|
3825 } |
21348
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
3826 } |
11864
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 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
|
3828 while (range > lim && !fastmap[*d]) |
22237
566c88b62de6
(re_search_2): Don't use ++ inside RE_TRANSLATE.
Richard M. Stallman <rms@gnu.org>
parents:
21963
diff
changeset
|
3829 { |
566c88b62de6
(re_search_2): Don't use ++ inside RE_TRANSLATE.
Richard M. Stallman <rms@gnu.org>
parents:
21963
diff
changeset
|
3830 d++; |
566c88b62de6
(re_search_2): Don't use ++ inside RE_TRANSLATE.
Richard M. Stallman <rms@gnu.org>
parents:
21963
diff
changeset
|
3831 range--; |
566c88b62de6
(re_search_2): Don't use ++ inside RE_TRANSLATE.
Richard M. Stallman <rms@gnu.org>
parents:
21963
diff
changeset
|
3832 } |
11864
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 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3834 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
|
3835 } |
18262 | 3836 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
|
3837 { |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
3838 int room = (startpos >= size1 |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
3839 ? size2 + size1 - startpos |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
3840 : size1 - startpos); |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
3841 buf_ch = RE_STRING_CHAR (d, room); |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
3842 buf_ch = TRANSLATE (buf_ch); |
21348
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
3843 |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
3844 if (! (buf_ch >= 0400 |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
3845 || fastmap[buf_ch])) |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3846 goto advance; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
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 } |
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 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3850 /* 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
|
3851 if (range >= 0 && startpos == total_size && fastmap |
18262 | 3852 && !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
|
3853 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
|
3854 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3855 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
|
3856 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
|
3857 #ifndef 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
|
3858 #ifdef C_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
|
3859 alloca (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
|
3860 #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
|
3861 #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
|
3862 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3863 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
|
3864 return startpos; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
3865 |
11864
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 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
|
3867 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
|
3868 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3869 advance: |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
3870 if (!range) |
18262 | 3871 break; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
3872 else if (range > 0) |
18262 | 3873 { |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3874 /* Update STARTPOS to the next character boundary. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3875 if (multibyte) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3876 { |
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
|
3877 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
|
3878 re_char *pend = STOP_ADDR_VSTRING (startpos); |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3879 int len = MULTIBYTE_FORM_LENGTH (p, pend - p); |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3880 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3881 range -= len; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3882 if (range < 0) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3883 break; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3884 startpos += len; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3885 } |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3886 else |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3887 { |
18532
488df9d19f5e
(re_search_2): Cast result of POS_ADDR_VSTRING.
Richard M. Stallman <rms@gnu.org>
parents:
18263
diff
changeset
|
3888 range--; |
488df9d19f5e
(re_search_2): Cast result of POS_ADDR_VSTRING.
Richard M. Stallman <rms@gnu.org>
parents:
18263
diff
changeset
|
3889 startpos++; |
488df9d19f5e
(re_search_2): Cast result of POS_ADDR_VSTRING.
Richard M. Stallman <rms@gnu.org>
parents:
18263
diff
changeset
|
3890 } |
16010 | 3891 } |
11864
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 else |
18262 | 3893 { |
3894 range++; | |
3895 startpos--; | |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3896 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3897 /* Update STARTPOS to the previous character boundary. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3898 if (multibyte) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3899 { |
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
|
3900 re_char *p = POS_ADDR_VSTRING (startpos); |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3901 int len = 0; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3902 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3903 /* Find the head of multibyte form. */ |
20633
063756386696
(re_search_2): Fix call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20455
diff
changeset
|
3904 while (!CHAR_HEAD_P (*p)) |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3905 p--, len++; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3906 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3907 /* Adjust it. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3908 #if 0 /* XXX */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3909 if (MULTIBYTE_FORM_LENGTH (p, len + 1) != (len + 1)) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3910 ; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3911 else |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3912 #endif |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3913 { |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3914 range += len; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3915 if (range > 0) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3916 break; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3917 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3918 startpos -= len; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3919 } |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3920 } |
18262 | 3921 } |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3922 } |
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 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
|
3924 } /* re_search_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
|
3925 |
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 /* 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
|
3927 |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
3928 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
|
3929 register int len, |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
3930 RE_TRANSLATE_TYPE translate, |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
3931 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
|
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 /* 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
|
3934 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
|
3935 #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
|
3936 (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
|
3937 ? ((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
|
3938 : ((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
|
3939 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3940 /* 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
|
3941 string2 if necessary. |
d40a7f046efe
(re_match_2_internal): Don't shorten the strings anymore,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28473
diff
changeset
|
3942 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
|
3943 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
|
3944 #define PREFETCH() \ |
18262 | 3945 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
|
3946 { \ |
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 /* End of string2 => fail. */ \ |
18262 | 3948 if (dend == end_match_2) \ |
3949 goto fail; \ | |
3950 /* End of string1 => advance to string2. */ \ | |
3951 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
|
3952 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
|
3953 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3954 |
29296
b2c75746a989
(PREFETCH_NOLIMIT): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29194
diff
changeset
|
3955 /* 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
|
3956 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
|
3957 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
|
3958 outside of the LIMITs (i.e past `stop'). */ |
b2c75746a989
(PREFETCH_NOLIMIT): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29194
diff
changeset
|
3959 #define PREFETCH_NOLIMIT() \ |
b2c75746a989
(PREFETCH_NOLIMIT): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29194
diff
changeset
|
3960 if (d == end1) \ |
b2c75746a989
(PREFETCH_NOLIMIT): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29194
diff
changeset
|
3961 { \ |
b2c75746a989
(PREFETCH_NOLIMIT): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29194
diff
changeset
|
3962 d = string2; \ |
b2c75746a989
(PREFETCH_NOLIMIT): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29194
diff
changeset
|
3963 dend = end_match_2; \ |
b2c75746a989
(PREFETCH_NOLIMIT): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29194
diff
changeset
|
3964 } \ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3965 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
3966 /* Test if at very beginning or at very end of the virtual concatenation |
18262 | 3967 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
|
3968 #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
|
3969 #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
|
3970 |
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 |
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 /* 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
|
3973 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
|
3974 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
|
3975 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
|
3976 #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
|
3977 (SYNTAX ((d) == end1 ? *string2 \ |
18262 | 3978 : (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
|
3979 == 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
|
3980 |
13722
e2669b8a46e2
(AT_WORD_BOUNDARY): Disable macro.
Karl Heuer <kwzh@gnu.org>
parents:
13565
diff
changeset
|
3981 /* 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
|
3982 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3983 /* 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
|
3984 AT_WORD_BOUNDARY anymore to support multibyte form. |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3985 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
3986 The DEC Alpha C compiler 3.x generates incorrect code for the |
18262 | 3987 test WORDCHAR_P (d - 1) != WORDCHAR_P (d) in the expansion of |
3988 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
|
3989 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
|
3990 |
13722
e2669b8a46e2
(AT_WORD_BOUNDARY): Disable macro.
Karl Heuer <kwzh@gnu.org>
parents:
13565
diff
changeset
|
3991 #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
|
3992 /* 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
|
3993 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
|
3994 #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
|
3995 (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
|
3996 || WORDCHAR_P (d - 1) != WORDCHAR_P (d)) |
13722
e2669b8a46e2
(AT_WORD_BOUNDARY): Disable macro.
Karl Heuer <kwzh@gnu.org>
parents:
13565
diff
changeset
|
3997 #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
|
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 /* 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
|
4000 #ifdef MATCH_MAY_ALLOCATE |
18263 | 4001 #define FREE_VAR(var) if (var) { REGEX_FREE (var); var = NULL; } 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
|
4002 #define 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
|
4003 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
|
4004 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
|
4005 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
|
4006 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
|
4007 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
|
4008 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
|
4009 } 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
|
4010 #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
|
4011 #define FREE_VARIABLES() ((void)0) /* Do nothing! But inhibit gcc warning. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4012 #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
|
4013 |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4014 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4015 /* 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
|
4016 |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4017 /* 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
|
4018 return a pointer to the next operation, else return NULL. */ |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4019 static unsigned char * |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4020 skip_one_char (p) |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4021 unsigned char *p; |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4022 { |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4023 switch (SWITCH_ENUM_CAST (*p++)) |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4024 { |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4025 case anychar: |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4026 break; |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4027 |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4028 case exactn: |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4029 p += *p + 1; |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4030 break; |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4031 |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4032 case charset_not: |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4033 case charset: |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4034 if (CHARSET_RANGE_TABLE_EXISTS_P (p - 1)) |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4035 { |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4036 int mcnt; |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4037 p = CHARSET_RANGE_TABLE (p - 1); |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4038 EXTRACT_NUMBER_AND_INCR (mcnt, p); |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4039 p = CHARSET_RANGE_TABLE_END (p, mcnt); |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4040 } |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4041 else |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4042 p += 1 + CHARSET_BITMAP_SIZE (p - 1); |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4043 break; |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4044 |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4045 case syntaxspec: |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4046 case notsyntaxspec: |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
4047 #ifdef emacs |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4048 case categoryspec: |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4049 case notcategoryspec: |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4050 #endif /* emacs */ |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4051 p++; |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4052 break; |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4053 |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4054 default: |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4055 p = NULL; |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4056 } |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4057 return p; |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4058 } |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4059 |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4060 |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4061 /* Jump over non-matching operations. */ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4062 static unsigned char * |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4063 skip_noops (p, pend) |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4064 unsigned char *p, *pend; |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4065 { |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4066 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
|
4067 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
|
4068 { |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4069 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
|
4070 { |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4071 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
|
4072 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
|
4073 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
|
4074 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
|
4075 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
|
4076 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
|
4077 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
|
4078 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
|
4079 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
|
4080 break; |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4081 default: |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4082 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
|
4083 } |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4084 } |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4085 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
|
4086 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
|
4087 } |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4088 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4089 /* 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
|
4090 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
|
4091 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
|
4092 struct re_pattern_buffer *bufp; |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4093 unsigned char *p1, *p2; |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4094 { |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4095 re_opcode_t op2; |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
4096 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
|
4097 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
|
4098 |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4099 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
|
4100 && 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
|
4101 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4102 /* 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
|
4103 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
|
4104 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
|
4105 match at least one of that. */ |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4106 p2 = skip_noops (p2, pend); |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4107 /* 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
|
4108 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
|
4109 /* p1 = skip_noops (p1, pend); */ |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4110 |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4111 assert (p1 >= bufp->buffer && p1 < pend |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4112 && p2 >= bufp->buffer && p2 <= pend); |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4113 |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4114 op2 = p2 == pend ? succeed : *p2; |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4115 |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4116 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
|
4117 { |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4118 case succeed: |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4119 case endbuf: |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4120 /* 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
|
4121 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
|
4122 { |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4123 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
|
4124 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
|
4125 } |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4126 break; |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4127 |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4128 case endline: |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4129 if (!bufp->newline_anchor) |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4130 break; |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4131 /* Fallthrough */ |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4132 case exactn: |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4133 { |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4134 register unsigned int c |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4135 = (re_opcode_t) *p2 == endline ? '\n' |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4136 : RE_STRING_CHAR(p2 + 2, pend - p2 - 2); |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4137 |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4138 if ((re_opcode_t) *p1 == exactn) |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4139 { |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4140 if (c != RE_STRING_CHAR (p1 + 2, pend - p1 - 2)) |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4141 { |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4142 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
|
4143 return 1; |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4144 } |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4145 } |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4146 |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4147 else if ((re_opcode_t) *p1 == charset |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4148 || (re_opcode_t) *p1 == charset_not) |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4149 { |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4150 int not = (re_opcode_t) *p1 == charset_not; |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4151 |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4152 /* 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
|
4153 at `p1'. */ |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4154 if (SINGLE_BYTE_CHAR_P (c)) |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4155 { |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4156 if (c < CHARSET_BITMAP_SIZE (p1) * BYTEWIDTH |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4157 && p1[2 + c / BYTEWIDTH] & (1 << (c % BYTEWIDTH))) |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4158 not = !not; |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4159 } |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4160 else if (CHARSET_RANGE_TABLE_EXISTS_P (p1)) |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4161 CHARSET_LOOKUP_RANGE_TABLE (not, c, p1); |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4162 |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4163 /* `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
|
4164 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
|
4165 if (!not) |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4166 { |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4167 DEBUG_PRINT1 (" No match => fast loop.\n"); |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4168 return 1; |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4169 } |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4170 } |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4171 else if ((re_opcode_t) *p1 == anychar |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4172 && c == '\n') |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4173 { |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4174 DEBUG_PRINT1 (" . != \\n => fast loop.\n"); |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4175 return 1; |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4176 } |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4177 } |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4178 break; |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4179 |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4180 case charset: |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4181 case charset_not: |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4182 { |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4183 if ((re_opcode_t) *p1 == exactn) |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4184 /* Reuse the code above. */ |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4185 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
|
4186 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4187 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4188 /* 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
|
4189 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
|
4190 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
|
4191 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
|
4192 { |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4193 /* 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
|
4194 So, for the size of bitmap in P2, `p2[1]' is |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4195 enough. But P1 may have range table, so the |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4196 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
|
4197 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
|
4198 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4199 Since we know that all the character listed in |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4200 P2 is ASCII, it is enough to test only bitmap |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4201 table of P1. */ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4202 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4203 if (*p1 == *p2) |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4204 { |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4205 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
|
4206 /* 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
|
4207 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
|
4208 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
|
4209 (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
|
4210 && 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
|
4211 idx++) |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4212 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
|
4213 break; |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4214 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4215 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
|
4216 || 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
|
4217 { |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4218 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
|
4219 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
|
4220 } |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4221 } |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4222 else if ((re_opcode_t) *p1 == charset |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4223 || (re_opcode_t) *p1 == charset_not) |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4224 { |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4225 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
|
4226 /* We win if the charset_not inside the loop lists |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4227 every character listed in the charset after. */ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4228 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
|
4229 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
|
4230 || (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
|
4231 && ((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
|
4232 break; |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4233 |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4234 if (idx == p2[1]) |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4235 { |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4236 DEBUG_PRINT1 (" No match => fast loop.\n"); |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4237 return 1; |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4238 } |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4239 } |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4240 } |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4241 } |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4242 |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4243 case wordend: |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4244 case notsyntaxspec: |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4245 return ((re_opcode_t) *p1 == syntaxspec |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4246 && p1[1] == (op2 == wordend ? Sword : p2[1])); |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4247 |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4248 case wordbeg: |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4249 case syntaxspec: |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4250 return ((re_opcode_t) *p1 == notsyntaxspec |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4251 && p1[1] == (op2 == wordend ? Sword : p2[1])); |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4252 |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4253 case wordbound: |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4254 return (((re_opcode_t) *p1 == notsyntaxspec |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4255 || (re_opcode_t) *p1 == syntaxspec) |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4256 && p1[1] == Sword); |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4257 |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
4258 #ifdef emacs |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4259 case categoryspec: |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4260 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
|
4261 case notcategoryspec: |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4262 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
|
4263 #endif /* emacs */ |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4264 |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4265 default: |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
4266 ; |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4267 } |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4268 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4269 /* 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
|
4270 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
|
4271 } |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
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 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4274 /* 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
|
4275 |
18262 | 4276 #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
|
4277 /* 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
|
4278 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4279 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
|
4280 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
|
4281 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
|
4282 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
|
4283 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
|
4284 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
|
4285 { |
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 int result = re_match_2_internal (bufp, NULL, 0, string, 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
|
4287 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
|
4288 alloca (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
|
4289 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
|
4290 } |
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 #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
|
4292 |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4293 #ifdef emacs |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4294 /* In Emacs, this is the string or buffer in which we |
18262 | 4295 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
|
4296 Lisp_Object re_match_object; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4297 #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
|
4298 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4299 /* 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
|
4300 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
|
4301 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
|
4302 matching at STOP. |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
4303 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4304 If REGS is non-null and the `no_sub' field of BUFP is nonzero, we |
18262 | 4305 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
|
4306 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
|
4307 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4308 We return -1 if no match, -2 if an internal error (such as the |
18262 | 4309 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
|
4310 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
|
4311 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4312 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
|
4313 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
|
4314 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
|
4315 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
|
4316 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
|
4317 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
|
4318 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
|
4319 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
|
4320 { |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4321 int result; |
18262 | 4322 |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4323 #ifdef emacs |
21482
9898a4994a12
(re_match_2, re_search_2): Convert position to a charpos,
Karl Heuer <kwzh@gnu.org>
parents:
21404
diff
changeset
|
4324 int charpos; |
9898a4994a12
(re_match_2, re_search_2): Convert position to a charpos,
Karl Heuer <kwzh@gnu.org>
parents:
21404
diff
changeset
|
4325 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
|
4326 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
|
4327 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
|
4328 #endif |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4329 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4330 result = re_match_2_internal (bufp, string1, size1, string2, size2, |
21482
9898a4994a12
(re_match_2, re_search_2): Convert position to a charpos,
Karl Heuer <kwzh@gnu.org>
parents:
21404
diff
changeset
|
4331 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
|
4332 alloca (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
|
4333 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
|
4334 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4335 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4336 /* This is a separate function so that we can force an alloca cleanup |
18262 | 4337 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
|
4338 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
|
4339 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
|
4340 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
|
4341 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
|
4342 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
|
4343 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
|
4344 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
|
4345 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
|
4346 { |
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 /* 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
|
4348 int mcnt; |
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
|
4349 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
|
4350 unsigned char *p1; |
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 |
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 /* 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
|
4353 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
|
4354 |
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 /* Pointers into string1 and string2, just past the last characters in |
18262 | 4356 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
|
4357 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
|
4358 |
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 /* 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
|
4360 re_char *d, *dend; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
4361 |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
4362 /* 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
|
4363 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
|
4364 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
|
4365 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
|
4366 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
|
4367 |
11864
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 /* Where we are in the pattern, and the end of 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
|
4369 unsigned char *p = 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
|
4370 register unsigned char *pend = p + bufp->used; |
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 |
18262 | 4372 /* 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
|
4373 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
|
4374 |
18262 | 4375 /* Nonzero if we have to concern multibyte character. */ |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
4376 const boolean multibyte = RE_MULTIBYTE_P (bufp); |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4377 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4378 /* 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
|
4379 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
|
4380 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
|
4381 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
|
4382 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
|
4383 to resume scanning the pattern; the second one is where to resume |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4384 scanning the strings. */ |
18262 | 4385 #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
|
4386 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
|
4387 #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
|
4388 #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
|
4389 static unsigned failure_id = 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
|
4390 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
|
4391 #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
|
4392 |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
4393 #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
|
4394 /* 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
|
4395 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
|
4396 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
|
4397 #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
|
4398 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4399 /* We fill all the registers internally, independent of what we |
18262 | 4400 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
|
4401 an element for register 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
|
4402 unsigned num_regs = bufp->re_nsub + 1; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
4403 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4404 /* 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
|
4405 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
|
4406 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
|
4407 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
|
4408 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
|
4409 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
|
4410 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
|
4411 #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
|
4412 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
|
4413 #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
|
4414 |
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 /* 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
|
4416 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
|
4417 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
|
4418 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
|
4419 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
|
4420 #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
|
4421 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
|
4422 #endif |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
4423 |
11864
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 /* 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
|
4425 allocate space for that if we're not allocating space for anything |
18262 | 4426 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
|
4427 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
|
4428 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
|
4429 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
|
4430 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
|
4431 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
|
4432 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
|
4433 |
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 #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
|
4435 /* Counts the total number of registers pushed. */ |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
4436 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
|
4437 #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
|
4438 |
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 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
|
4440 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4441 INIT_FAIL_STACK (); |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
4442 |
11864
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 #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
|
4444 /* 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
|
4445 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
|
4446 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
|
4447 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
|
4448 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
|
4449 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
|
4450 { |
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
|
4451 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
|
4452 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
|
4453 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
|
4454 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
|
4455 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4456 if (!(regstart && regend && best_regstart && best_regend)) |
18262 | 4457 { |
4458 FREE_VARIABLES (); | |
4459 return -2; | |
4460 } | |
11864
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 } |
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 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
|
4463 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4464 /* We must initialize all our variables to NULL, so that |
18262 | 4465 `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
|
4466 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
|
4467 } |
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 #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
|
4469 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4470 /* 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
|
4471 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
|
4472 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4473 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
|
4474 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
|
4475 } |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
4476 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4477 /* 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
|
4478 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
|
4479 register information 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
|
4480 for (mcnt = 1; mcnt < num_regs; 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
|
4481 regstart[mcnt] = regend[mcnt] = REG_UNSET_VALUE; |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
4482 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4483 /* We move `string1' into `string2' if the latter's empty -- but not if |
18262 | 4484 `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
|
4485 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
|
4486 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4487 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
|
4488 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
|
4489 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
|
4490 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
|
4491 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4492 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
|
4493 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
|
4494 |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
4495 /* `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
|
4496 `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
|
4497 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
|
4498 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
|
4499 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
|
4500 equal `string2'. */ |
28662
d40a7f046efe
(re_match_2_internal): Don't shorten the strings anymore,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28473
diff
changeset
|
4501 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
|
4502 { |
28662
d40a7f046efe
(re_match_2_internal): Don't shorten the strings anymore,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28473
diff
changeset
|
4503 /* 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
|
4504 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
|
4505 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
|
4506 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
|
4507 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4508 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
|
4509 { |
29296
b2c75746a989
(PREFETCH_NOLIMIT): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29194
diff
changeset
|
4510 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
|
4511 { |
d40a7f046efe
(re_match_2_internal): Don't shorten the strings anymore,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28473
diff
changeset
|
4512 /* 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
|
4513 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
|
4514 /* BEWARE! |
d40a7f046efe
(re_match_2_internal): Don't shorten the strings anymore,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28473
diff
changeset
|
4515 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
|
4516 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
|
4517 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
|
4518 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
|
4519 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
|
4520 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
|
4521 end_match_2). */ |
d40a7f046efe
(re_match_2_internal): Don't shorten the strings anymore,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28473
diff
changeset
|
4522 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
|
4523 } |
d40a7f046efe
(re_match_2_internal): Don't shorten the strings anymore,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28473
diff
changeset
|
4524 else |
29296
b2c75746a989
(PREFETCH_NOLIMIT): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29194
diff
changeset
|
4525 { /* 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
|
4526 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
|
4527 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
|
4528 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
|
4529 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
|
4530 } |
d40a7f046efe
(re_match_2_internal): Don't shorten the strings anymore,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28473
diff
changeset
|
4531 d = string1 + pos; |
d40a7f046efe
(re_match_2_internal): Don't shorten the strings anymore,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28473
diff
changeset
|
4532 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
|
4533 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4534 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4535 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
|
4536 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
|
4537 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
|
4538 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
|
4539 DEBUG_PRINT1 ("'\n"); |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
4540 |
18262 | 4541 /* 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
|
4542 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
|
4543 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
|
4544 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
|
4545 { |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4546 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
|
4547 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4548 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
|
4549 { /* End of pattern means we might have succeeded. */ |
18262 | 4550 DEBUG_PRINT1 ("end of pattern ... "); |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
4551 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4552 /* If we haven't matched the entire string, and we want the |
18262 | 4553 longest match, try backtracking. */ |
4554 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
|
4555 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4556 /* 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
|
4557 as the best previous match. */ |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
4558 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
|
4559 == 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
|
4560 /* 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
|
4561 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
|
4562 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4563 /* AIX compiler got confused when this was combined |
18262 | 4564 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
|
4565 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
|
4566 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
|
4567 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
|
4568 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
|
4569 |
18262 | 4570 DEBUG_PRINT1 ("backtracking.\n"); |
4571 | |
4572 if (!FAIL_STACK_EMPTY ()) | |
4573 { /* More failure points to try. */ | |
4574 | |
4575 /* If exceeds best match so far, save it. */ | |
4576 if (!best_regs_set || best_match_p) | |
4577 { | |
4578 best_regs_set = true; | |
4579 match_end = d; | |
4580 | |
4581 DEBUG_PRINT1 ("\nSAVING match as best so far.\n"); | |
4582 | |
4583 for (mcnt = 1; mcnt < num_regs; mcnt++) | |
4584 { | |
4585 best_regstart[mcnt] = regstart[mcnt]; | |
4586 best_regend[mcnt] = regend[mcnt]; | |
4587 } | |
4588 } | |
4589 goto fail; | |
4590 } | |
4591 | |
4592 /* If no failure points, don't restore garbage. And if | |
4593 last match is real best match, don't restore second | |
4594 best one. */ | |
4595 else if (best_regs_set && !best_match_p) | |
4596 { | |
4597 restore_best_regs: | |
4598 /* Restore best match. It may happen that `dend == | |
4599 end_match_1' while the restored d is in string2. | |
4600 For example, the pattern `x.*y.*z' against the | |
4601 strings `x-' and `y-z-', if the two strings are | |
4602 not consecutive in memory. */ | |
4603 DEBUG_PRINT1 ("Restoring best registers.\n"); | |
4604 | |
4605 d = match_end; | |
4606 dend = ((d >= string1 && d <= end1) | |
4607 ? 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
|
4608 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4609 for (mcnt = 1; mcnt < num_regs; 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
|
4610 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4611 regstart[mcnt] = best_regstart[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
|
4612 regend[mcnt] = best_regend[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
|
4613 } |
18262 | 4614 } |
4615 } /* 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
|
4616 |
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 succeed_label: |
18262 | 4618 DEBUG_PRINT1 ("Accepting match.\n"); |
4619 | |
4620 /* If caller wants register contents data back, do it. */ | |
4621 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
|
4622 { |
18262 | 4623 /* Have the register data arrays been allocated? */ |
4624 if (bufp->regs_allocated == REGS_UNALLOCATED) | |
4625 { /* No. So allocate them with malloc. We need one | |
4626 extra element beyond `num_regs' for the `-1' marker | |
4627 GNU code uses. */ | |
4628 regs->num_regs = MAX (RE_NREGS, num_regs + 1); | |
4629 regs->start = TALLOC (regs->num_regs, regoff_t); | |
4630 regs->end = TALLOC (regs->num_regs, regoff_t); | |
4631 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
|
4632 { |
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 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
|
4634 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
|
4635 } |
18262 | 4636 bufp->regs_allocated = REGS_REALLOCATE; |
4637 } | |
4638 else if (bufp->regs_allocated == REGS_REALLOCATE) | |
4639 { /* Yes. If we need more elements than were already | |
4640 allocated, reallocate them. If we need fewer, just | |
4641 leave it alone. */ | |
4642 if (regs->num_regs < num_regs + 1) | |
4643 { | |
4644 regs->num_regs = num_regs + 1; | |
4645 RETALLOC (regs->start, regs->num_regs, regoff_t); | |
4646 RETALLOC (regs->end, regs->num_regs, regoff_t); | |
4647 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
|
4648 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4649 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
|
4650 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
|
4651 } |
18262 | 4652 } |
4653 } | |
4654 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
|
4655 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4656 /* These braces fend off a "empty body in an else-statement" |
18262 | 4657 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
|
4658 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
|
4659 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4660 |
18262 | 4661 /* Convert the pointer data in `regstart' and `regend' to |
4662 indices. Register zero has to be set differently, | |
4663 since we haven't kept track of any info for it. */ | |
4664 if (regs->num_regs > 0) | |
4665 { | |
4666 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
|
4667 regs->end[0] = POINTER_TO_OFFSET (d); |
18262 | 4668 } |
4669 | |
4670 /* Go through the first `min (num_regs, regs->num_regs)' | |
4671 registers, since that is all we 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
|
4672 for (mcnt = 1; mcnt < MIN (num_regs, regs->num_regs); 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
|
4673 { |
18262 | 4674 if (REG_UNSET (regstart[mcnt]) || REG_UNSET (regend[mcnt])) |
4675 regs->start[mcnt] = regs->end[mcnt] = -1; | |
4676 else | |
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 regs->start[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
|
4679 = (regoff_t) POINTER_TO_OFFSET (regstart[mcnt]); |
18262 | 4680 regs->end[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
|
4681 = (regoff_t) POINTER_TO_OFFSET (regend[mcnt]); |
18262 | 4682 } |
11864
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 } |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
4684 |
18262 | 4685 /* If the regs structure we return has more elements than |
4686 were in the pattern, set the extra elements to -1. If | |
4687 we (re)allocated the registers, this is the case, | |
4688 because we always allocate enough to have at least one | |
4689 -1 at the end. */ | |
4690 for (mcnt = num_regs; mcnt < regs->num_regs; mcnt++) | |
4691 regs->start[mcnt] = regs->end[mcnt] = -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
|
4692 } /* 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
|
4693 |
18262 | 4694 DEBUG_PRINT4 ("%u failure points pushed, %u popped (%u remain).\n", |
4695 nfailure_points_pushed, nfailure_points_popped, | |
4696 nfailure_points_pushed - nfailure_points_popped); | |
4697 DEBUG_PRINT2 ("%u registers pushed.\n", num_regs_pushed); | |
4698 | |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
4699 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
|
4700 |
18262 | 4701 DEBUG_PRINT2 ("Returning %d from re_match_2.\n", mcnt); |
4702 | |
4703 FREE_VARIABLES (); | |
4704 return mcnt; | |
4705 } | |
4706 | |
4707 /* 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
|
4708 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
|
4709 { |
18262 | 4710 /* Ignore these. Used to ignore the n of succeed_n's which |
4711 currently have n == 0. */ | |
4712 case no_op: | |
4713 DEBUG_PRINT1 ("EXECUTING no_op.\n"); | |
4714 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
|
4715 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4716 case succeed: |
18262 | 4717 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
|
4718 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
|
4719 |
18262 | 4720 /* Match the next n pattern characters exactly. The following |
4721 byte in the pattern defines n, and the n bytes after that | |
4722 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
|
4723 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
|
4724 mcnt = *p++; |
18262 | 4725 DEBUG_PRINT2 ("EXECUTING exactn %d.\n", mcnt); |
4726 | |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
4727 /* 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
|
4728 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
|
4729 |
18262 | 4730 /* This is written out as an if-else so we don't waste time |
4731 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
|
4732 if (RE_TRANSLATE_P (translate)) |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4733 { |
21348
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4734 if (multibyte) |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4735 do |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4736 { |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4737 int pat_charlen, buf_charlen; |
21401
7afa39c82ea2
(re_match_2_internal): Declare buf_ch unsigned int.
Richard M. Stallman <rms@gnu.org>
parents:
21352
diff
changeset
|
4738 unsigned int pat_ch, buf_ch; |
21348
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4739 |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4740 PREFETCH (); |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4741 pat_ch = STRING_CHAR_AND_LENGTH (p, pend - p, pat_charlen); |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4742 buf_ch = STRING_CHAR_AND_LENGTH (d, dend - d, buf_charlen); |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4743 |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4744 if (RE_TRANSLATE (translate, buf_ch) |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4745 != pat_ch) |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
4746 { |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
4747 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
|
4748 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
|
4749 } |
21348
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4750 |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4751 p += pat_charlen; |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4752 d += buf_charlen; |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4753 mcnt -= pat_charlen; |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4754 } |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4755 while (mcnt > 0); |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4756 else |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4757 do |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4758 { |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4759 PREFETCH (); |
28138
d2e19a90c9ef
* regex.c: Declare a new type `re_char' used throughout the code for the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28062
diff
changeset
|
4760 if (RE_TRANSLATE (translate, *d) != *p++) |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
4761 { |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
4762 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
|
4763 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
|
4764 } |
22237
566c88b62de6
(re_search_2): Don't use ++ inside RE_TRANSLATE.
Richard M. Stallman <rms@gnu.org>
parents:
21963
diff
changeset
|
4765 d++; |
21348
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4766 } |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4767 while (--mcnt); |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4768 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4769 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
|
4770 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4771 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
|
4772 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4773 PREFETCH (); |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
4774 if (*d++ != *p++) |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
4775 { |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
4776 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
|
4777 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
|
4778 } |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4779 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4780 while (--mcnt); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4781 } |
18262 | 4782 break; |
4783 | |
4784 | |
4785 /* 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
|
4786 case anychar: |
21348
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4787 { |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4788 int buf_charlen; |
21401
7afa39c82ea2
(re_match_2_internal): Declare buf_ch unsigned int.
Richard M. Stallman <rms@gnu.org>
parents:
21352
diff
changeset
|
4789 unsigned int buf_ch; |
21348
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4790 |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4791 DEBUG_PRINT1 ("EXECUTING anychar.\n"); |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4792 |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4793 PREFETCH (); |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
4794 buf_ch = RE_STRING_CHAR_AND_LENGTH (d, dend - d, buf_charlen); |
21348
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4795 buf_ch = TRANSLATE (buf_ch); |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4796 |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4797 if ((!(bufp->syntax & RE_DOT_NEWLINE) |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4798 && buf_ch == '\n') |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4799 || ((bufp->syntax & RE_DOT_NOT_NULL) |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4800 && buf_ch == '\000')) |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4801 goto fail; |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4802 |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4803 DEBUG_PRINT2 (" Matched `%d'.\n", *d); |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4804 d += buf_charlen; |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
4805 } |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4806 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
|
4807 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4808 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4809 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
|
4810 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
|
4811 { |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4812 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
|
4813 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
|
4814 int len; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4815 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4816 /* 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
|
4817 range table. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4818 unsigned char *range_table; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4819 |
25440
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
4820 /* Nonzero if there is a range table. */ |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4821 int range_table_exists; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4822 |
25440
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
4823 /* 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
|
4824 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
|
4825 int count = 0; |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4826 |
18262 | 4827 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
|
4828 |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4829 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
|
4830 |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4831 if (range_table_exists) |
25440
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
4832 { |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
4833 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
|
4834 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
|
4835 } |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4836 |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
4837 PREFETCH (); |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
4838 c = RE_STRING_CHAR_AND_LENGTH (d, dend - d, len); |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
4839 c = TRANSLATE (c); /* The character to match. */ |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4840 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4841 if (SINGLE_BYTE_CHAR_P (c)) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4842 { /* Lookup bitmap. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4843 /* Cast to `unsigned' instead of `unsigned char' in |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4844 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
|
4845 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
|
4846 && 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
|
4847 not = !not; |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4848 } |
25440
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
4849 #ifdef emacs |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4850 else if (range_table_exists) |
25440
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
4851 { |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
4852 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
|
4853 |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
4854 if ( (class_bits & BIT_ALNUM && ISALNUM (c)) |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
4855 | (class_bits & BIT_ALPHA && ISALPHA (c)) |
25877
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
4856 | (class_bits & BIT_ASCII && IS_REAL_ASCII (c)) |
25440
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
4857 | (class_bits & BIT_GRAPH && ISGRAPH (c)) |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
4858 | (class_bits & BIT_LOWER && ISLOWER (c)) |
25877
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
4859 | (class_bits & BIT_MULTIBYTE && !ISUNIBYTE (c)) |
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
4860 | (class_bits & BIT_NONASCII && !IS_REAL_ASCII (c)) |
25440
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
4861 | (class_bits & BIT_PRINT && ISPRINT (c)) |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
4862 | (class_bits & BIT_PUNCT && ISPUNCT (c)) |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
4863 | (class_bits & BIT_SPACE && ISSPACE (c)) |
25877
9a7d8b436a5d
1999-09-04 Richard Stallman <rms@gnu.org>
Dave Love <fx@gnu.org>
parents:
25440
diff
changeset
|
4864 | (class_bits & BIT_UNIBYTE && ISUNIBYTE (c)) |
25440
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
4865 | (class_bits & BIT_UPPER && ISUPPER (c)) |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
4866 | (class_bits & BIT_WORD && ISWORD (c))) |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
4867 not = !not; |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
4868 else |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
4869 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
|
4870 } |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
4871 #endif /* emacs */ |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
4872 |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
4873 if (range_table_exists) |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
4874 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
|
4875 else |
0a1099580297
[emacs]: Handle character classes for multibyte chars:
Richard M. Stallman <rms@gnu.org>
parents:
24119
diff
changeset
|
4876 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
|
4877 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4878 if (!not) goto fail; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
4879 |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
4880 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
|
4881 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
|
4882 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4883 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4884 |
18262 | 4885 /* 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
|
4886 The argument is the register number. The text |
18262 | 4887 matched within the group is recorded (in the internal |
4888 registers data structure) under the register number. */ | |
4889 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
|
4890 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
|
4891 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4892 /* 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
|
4893 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
|
4894 |
18262 | 4895 regstart[*p] = d; |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4896 regend[*p] = REG_UNSET_VALUE; /* 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
|
4897 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
|
4898 |
18262 | 4899 /* 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
|
4900 p += 1; |
18262 | 4901 break; |
4902 | |
4903 | |
4904 /* 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
|
4905 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
|
4906 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
|
4907 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
|
4908 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4909 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
|
4910 /* Strictly speaking, there should be code such as: |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4911 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4912 assert (REG_UNSET (regend[*p])); |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4913 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
|
4914 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
4915 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
|
4916 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
|
4917 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
|
4918 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
|
4919 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
|
4920 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
|
4921 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
|
4922 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
|
4923 |
18262 | 4924 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
|
4925 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
|
4926 |
18262 | 4927 /* 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
|
4928 p += 1; |
18262 | 4929 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
|
4930 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4931 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4932 /* \<digit> has been turned into a `duplicate' command which is |
18262 | 4933 followed by the numeric value of <digit> as the register number. */ |
4934 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
|
4935 { |
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
|
4936 register re_char *d2, *dend2; |
18262 | 4937 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
|
4938 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
|
4939 |
18262 | 4940 /* Can't back reference a group which we've never matched. */ |
4941 if (REG_UNSET (regstart[regno]) || REG_UNSET (regend[regno])) | |
4942 goto fail; | |
4943 | |
4944 /* Where in input to try to start matching. */ | |
4945 d2 = regstart[regno]; | |
4946 | |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
4947 /* 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
|
4948 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
|
4949 |
18262 | 4950 /* Where to stop matching; if both the place to start and |
4951 the place to stop matching are in the same string, then | |
4952 set to the place to stop, otherwise, for now have to use | |
4953 the end of the first string. */ | |
4954 | |
4955 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
|
4956 == 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
|
4957 ? 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
|
4958 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
|
4959 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4960 /* If necessary, advance to next segment in register |
18262 | 4961 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
|
4962 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
|
4963 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4964 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
|
4965 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
|
4966 |
18262 | 4967 /* End of string1 => advance to string2. */ |
4968 d2 = string2; | |
4969 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
|
4970 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4971 /* 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
|
4972 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
|
4973 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4974 /* 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
|
4975 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
|
4976 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4977 /* 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
|
4978 mcnt = dend - d; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
4979 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4980 /* Want how many consecutive characters we can match in |
18262 | 4981 one shot, so, if necessary, adjust the count. */ |
4982 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
|
4983 mcnt = dend2 - d2; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
4984 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4985 /* Compare that many; failure if mismatch, else move |
18262 | 4986 past them. */ |
21562
afd0a04106ec
Use RE_TRANSLATE_P to check whether translation is
Andreas Schwab <schwab@suse.de>
parents:
21558
diff
changeset
|
4987 if (RE_TRANSLATE_P (translate) |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
4988 ? bcmp_translate (d, d2, mcnt, translate, multibyte) |
18262 | 4989 : bcmp (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
|
4990 { |
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
4991 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
|
4992 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
|
4993 } |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4994 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
|
4995 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4996 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4997 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
|
4998 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
4999 |
18262 | 5000 /* begline matches the empty string at the beginning of the string |
5001 (unless `not_bol' is set in `bufp'), and, if | |
5002 `newline_anchor' is set, 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
|
5003 case begline: |
18262 | 5004 DEBUG_PRINT1 ("EXECUTING begline.\n"); |
5005 | |
5006 if (AT_STRINGS_BEG (d)) | |
5007 { | |
5008 if (!bufp->not_bol) break; | |
5009 } | |
28662
d40a7f046efe
(re_match_2_internal): Don't shorten the strings anymore,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28473
diff
changeset
|
5010 else |
18262 | 5011 { |
28662
d40a7f046efe
(re_match_2_internal): Don't shorten the strings anymore,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28473
diff
changeset
|
5012 unsigned char c; |
d40a7f046efe
(re_match_2_internal): Don't shorten the strings anymore,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28473
diff
changeset
|
5013 GET_CHAR_BEFORE_2 (c, d, string1, end1, string2, end2); |
d40a7f046efe
(re_match_2_internal): Don't shorten the strings anymore,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28473
diff
changeset
|
5014 if (c == '\n' && bufp->newline_anchor) |
d40a7f046efe
(re_match_2_internal): Don't shorten the strings anymore,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28473
diff
changeset
|
5015 break; |
18262 | 5016 } |
5017 /* In all other cases, we fail. */ | |
5018 goto fail; | |
5019 | |
5020 | |
5021 /* 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
|
5022 case endline: |
18262 | 5023 DEBUG_PRINT1 ("EXECUTING endline.\n"); |
5024 | |
5025 if (AT_STRINGS_END (d)) | |
5026 { | |
5027 if (!bufp->not_eol) break; | |
5028 } | |
29296
b2c75746a989
(PREFETCH_NOLIMIT): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29194
diff
changeset
|
5029 else |
18262 | 5030 { |
29296
b2c75746a989
(PREFETCH_NOLIMIT): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29194
diff
changeset
|
5031 PREFETCH_NOLIMIT (); |
b2c75746a989
(PREFETCH_NOLIMIT): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29194
diff
changeset
|
5032 if (*d == '\n' && bufp->newline_anchor) |
b2c75746a989
(PREFETCH_NOLIMIT): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29194
diff
changeset
|
5033 break; |
18262 | 5034 } |
5035 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
|
5036 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5037 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5038 /* Match at the very beginning of the data. */ |
18262 | 5039 case begbuf: |
5040 DEBUG_PRINT1 ("EXECUTING begbuf.\n"); | |
5041 if (AT_STRINGS_BEG (d)) | |
5042 break; | |
5043 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
|
5044 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5045 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5046 /* Match at the very end of the data. */ |
18262 | 5047 case endbuf: |
5048 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
|
5049 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
|
5050 break; |
18262 | 5051 goto fail; |
5052 | |
5053 | |
5054 /* on_failure_keep_string_jump is used to optimize `.*\n'. It | |
5055 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
|
5056 `POP_FAILURE_POINT' will keep the current value for the |
18262 | 5057 string, instead of restoring it. To see why, consider |
5058 matching `foo\nbar' against `.*\n'. The .* matches the foo; | |
5059 then the . fails against the \n. But the next thing we want | |
5060 to do is match the \n against the \n; if we restored the | |
5061 string value, we would be back at the foo. | |
5062 | |
5063 Because this is used only in specific cases, we don't need to | |
5064 check all the things that `on_failure_jump' does, to make | |
5065 sure the right things get saved on the stack. Hence we don't | |
5066 share its code. The only reason to push anything on the | |
5067 stack at all is that otherwise we would have to change | |
5068 `anychar's code to do something besides goto fail in this | |
5069 case; that seems worse than this. */ | |
5070 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
|
5071 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
|
5072 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
|
5073 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
|
5074 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5075 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
|
5076 break; |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5077 |
28342
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
5078 /* 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
|
5079 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
|
5080 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
|
5081 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
|
5082 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
|
5083 detect a cycle (between different instantiations of the same |
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
5084 loop. |
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
5085 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
|
5086 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
|
5087 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
|
5088 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
|
5089 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
|
5090 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
|
5091 the loop. */ |
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
5092 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
|
5093 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
|
5094 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
|
5095 mcnt, p + mcnt); |
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
5096 |
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
5097 assert ((re_opcode_t)p[-4] == no_op); |
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
5098 CHECK_INFINITE_LOOP (p - 4, d); |
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
5099 PUSH_FAILURE_POINT (p - 3, d); |
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
5100 break; |
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
5101 |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
5102 |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
5103 /* 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
|
5104 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
|
5105 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
|
5106 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
|
5107 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
|
5108 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
|
5109 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
|
5110 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5111 CHECK_INFINITE_LOOP (p - 3, d); |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5112 PUSH_FAILURE_POINT (p - 3, d); |
18262 | 5113 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
|
5114 |
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 |
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 /* Uses of on_failure_jump: |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5117 |
18262 | 5118 Each alternative starts with an on_failure_jump that points |
5119 to the beginning of the next alternative. Each alternative | |
5120 except the last ends with a jump that in effect jumps past | |
5121 the rest of the alternatives. (They really jump to the | |
5122 ending jump of the following alternative, because tensioning | |
5123 these jumps is a hassle.) | |
5124 | |
5125 Repeats start with an on_failure_jump that points past both | |
5126 the repetition text and either the following jump or | |
5127 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
|
5128 case on_failure_jump: |
24119
aceb3b94328d
(re_match_2_internal) [WINDOWSNT & emacs]: Insert QUIT at various places.
Richard M. Stallman <rms@gnu.org>
parents:
23964
diff
changeset
|
5129 QUIT; |
18262 | 5130 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
|
5131 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
|
5132 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
|
5133 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5134 PUSH_FAILURE_POINT (p -3, d); |
18262 | 5135 break; |
5136 | |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
5137 /* 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
|
5138 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
|
5139 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
|
5140 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
|
5141 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
|
5142 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
|
5143 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
|
5144 case on_failure_jump_smart: |
24119
aceb3b94328d
(re_match_2_internal) [WINDOWSNT & emacs]: Insert QUIT at various places.
Richard M. Stallman <rms@gnu.org>
parents:
23964
diff
changeset
|
5145 QUIT; |
18262 | 5146 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
|
5147 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
|
5148 mcnt, p + mcnt); |
18262 | 5149 { |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5150 unsigned char *p1 = p; /* Next operation. */ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5151 unsigned char *p2 = p + mcnt; /* Destination of the jump. */ |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5152 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5153 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
|
5154 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
|
5155 |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
5156 EXTRACT_NUMBER (mcnt, p2 - 2); |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
5157 |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
5158 /* 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
|
5159 we are expecting. */ |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
5160 assert (skip_one_char (p1) == p2 - 3); |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
5161 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
|
5162 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
|
5163 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
|
5164 { |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5165 /* 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
|
5166 DEBUG_PRINT1 (" smart exclusive => fast loop.\n"); |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
5167 *p = (unsigned char) on_failure_keep_string_jump; |
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
5168 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
|
5169 } |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5170 else |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5171 { |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5172 /* 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
|
5173 DEBUG_PRINT1 (" smart default => slow loop.\n"); |
28203
c10ee0e6982b
(RE_STRING_CHAR): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28163
diff
changeset
|
5174 *p = (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
|
5175 } |
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 DEBUG_STATEMENT (debug -= 2); |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5177 } |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5178 break; |
18262 | 5179 |
5180 /* Unconditionally jump (without popping any failure points). */ | |
5181 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
|
5182 unconditional_jump: |
24119
aceb3b94328d
(re_match_2_internal) [WINDOWSNT & emacs]: Insert QUIT at various places.
Richard M. Stallman <rms@gnu.org>
parents:
23964
diff
changeset
|
5183 QUIT; |
11864
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 EXTRACT_NUMBER_AND_INCR (mcnt, p); /* Get the amount to jump. */ |
18262 | 5185 DEBUG_PRINT2 ("EXECUTING jump %d ", mcnt); |
5186 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
|
5187 DEBUG_PRINT2 ("(to %p).\n", p); |
18262 | 5188 break; |
5189 | |
5190 | |
5191 /* Have to succeed matching what follows at least n times. | |
5192 After that, handle like `on_failure_jump'. */ | |
5193 case succeed_n: | |
5194 EXTRACT_NUMBER (mcnt, p + 2); | |
5195 DEBUG_PRINT2 ("EXECUTING succeed_n %d.\n", mcnt); | |
5196 | |
5197 assert (mcnt >= 0); | |
5198 /* Originally, this is how many times we HAVE to succeed. */ | |
5199 if (mcnt > 0) | |
5200 { | |
5201 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
|
5202 p += 2; |
18262 | 5203 STORE_NUMBER_AND_INCR (p, mcnt); |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5204 DEBUG_PRINT3 (" Setting %p to %d.\n", p, mcnt); |
18262 | 5205 } |
11864
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 else if (mcnt == 0) |
18262 | 5207 { |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5208 DEBUG_PRINT2 (" Setting two bytes from %p to no_op.\n", 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
|
5209 p[2] = (unsigned char) no_op; |
18262 | 5210 p[3] = (unsigned char) no_op; |
5211 goto on_failure; | |
5212 } | |
5213 break; | |
5214 | |
5215 case jump_n: | |
5216 EXTRACT_NUMBER (mcnt, p + 2); | |
5217 DEBUG_PRINT2 ("EXECUTING jump_n %d.\n", mcnt); | |
5218 | |
5219 /* Originally, this is how many times we CAN jump. */ | |
5220 if (mcnt) | |
5221 { | |
5222 mcnt--; | |
5223 STORE_NUMBER (p + 2, mcnt); | |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5224 goto unconditional_jump; |
18262 | 5225 } |
5226 /* 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
|
5227 else |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5228 p += 4; |
18262 | 5229 break; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5230 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5231 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
|
5232 { |
18262 | 5233 DEBUG_PRINT1 ("EXECUTING set_number_at.\n"); |
5234 | |
5235 EXTRACT_NUMBER_AND_INCR (mcnt, p); | |
5236 p1 = p + mcnt; | |
5237 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
|
5238 DEBUG_PRINT3 (" Setting %p to %d.\n", p1, 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
|
5239 STORE_NUMBER (p1, mcnt); |
18262 | 5240 break; |
5241 } | |
13722
e2669b8a46e2
(AT_WORD_BOUNDARY): Disable macro.
Karl Heuer <kwzh@gnu.org>
parents:
13565
diff
changeset
|
5242 |
e2669b8a46e2
(AT_WORD_BOUNDARY): Disable macro.
Karl Heuer <kwzh@gnu.org>
parents:
13565
diff
changeset
|
5243 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
|
5244 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
|
5245 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
|
5246 DEBUG_PRINT2 ("EXECUTING %swordbound.\n", not?"not":""); |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5247 |
28163
c314d747a819
(re_match_2): Fix string shortening (to fit `stop') to make sure
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28138
diff
changeset
|
5248 /* 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
|
5249 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5250 /* 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
|
5251 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
|
5252 not = !not; |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5253 else |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5254 { |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5255 /* 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
|
5256 is the character at D, and S2 is the syntax of C2. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5257 int c1, c2, s1, s2; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5258 #ifdef emacs |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
5259 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
|
5260 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
|
5261 UPDATE_SYNTAX_TABLE (charpos); |
18262 | 5262 #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
|
5263 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
|
5264 s1 = SYNTAX (c1); |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5265 #ifdef emacs |
20633
063756386696
(re_search_2): Fix call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20455
diff
changeset
|
5266 UPDATE_SYNTAX_TABLE_FORWARD (charpos + 1); |
18262 | 5267 #endif |
29296
b2c75746a989
(PREFETCH_NOLIMIT): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29194
diff
changeset
|
5268 PREFETCH_NOLIMIT (); |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
5269 c2 = RE_STRING_CHAR (d, dend - d); |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5270 s2 = SYNTAX (c2); |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5271 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5272 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
|
5273 ((s1 == Sword) != (s2 == Sword)) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5274 /* Case 3: Both of S1 and S2 are Sword, and macro |
18262 | 5275 WORD_BOUNDARY_P (C1, C2) returns nonzero. */ |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5276 || ((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
|
5277 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
|
5278 } |
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
|
5279 if (not) |
13722
e2669b8a46e2
(AT_WORD_BOUNDARY): Disable macro.
Karl Heuer <kwzh@gnu.org>
parents:
13565
diff
changeset
|
5280 break; |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5281 else |
13722
e2669b8a46e2
(AT_WORD_BOUNDARY): Disable macro.
Karl Heuer <kwzh@gnu.org>
parents:
13565
diff
changeset
|
5282 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
|
5283 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5284 case wordbeg: |
18262 | 5285 DEBUG_PRINT1 ("EXECUTING wordbeg.\n"); |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5286 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5287 /* We FAIL in one of the following cases: */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5288 |
18262 | 5289 /* 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
|
5290 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
|
5291 goto fail; |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5292 else |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5293 { |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5294 /* 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
|
5295 is the character at D, and S2 is the syntax of C2. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5296 int c1, c2, s1, s2; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5297 #ifdef emacs |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
5298 int offset = PTR_TO_OFFSET (d); |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
5299 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
|
5300 UPDATE_SYNTAX_TABLE (charpos); |
18262 | 5301 #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
|
5302 PREFETCH (); |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
5303 c2 = RE_STRING_CHAR (d, dend - d); |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5304 s2 = SYNTAX (c2); |
18262 | 5305 |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5306 /* Case 2: S2 is not Sword. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5307 if (s2 != Sword) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5308 goto fail; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5309 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5310 /* 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
|
5311 if (!AT_STRINGS_BEG (d)) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5312 { |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5313 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
|
5314 #ifdef emacs |
20633
063756386696
(re_search_2): Fix call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20455
diff
changeset
|
5315 UPDATE_SYNTAX_TABLE_BACKWARD (charpos - 1); |
18262 | 5316 #endif |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5317 s1 = SYNTAX (c1); |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5318 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5319 /* ... and S1 is Sword, and WORD_BOUNDARY_P (C1, C2) |
18262 | 5320 returns 0. */ |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5321 if ((s1 == Sword) && !WORD_BOUNDARY_P (c1, c2)) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5322 goto fail; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5323 } |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5324 } |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5325 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
|
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 case wordend: |
18262 | 5328 DEBUG_PRINT1 ("EXECUTING wordend.\n"); |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5329 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5330 /* We FAIL in one of the following cases: */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5331 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5332 /* 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
|
5333 if (AT_STRINGS_BEG (d)) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5334 goto fail; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5335 else |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5336 { |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5337 /* 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
|
5338 is the character at D, and S2 is the syntax of C2. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5339 int c1, c2, s1, s2; |
20633
063756386696
(re_search_2): Fix call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20455
diff
changeset
|
5340 #ifdef emacs |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
5341 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
|
5342 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
|
5343 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
|
5344 #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
|
5345 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
|
5346 s1 = SYNTAX (c1); |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5347 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5348 /* Case 2: S1 is not Sword. */ |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5349 if (s1 != Sword) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5350 goto fail; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5351 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5352 /* 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
|
5353 if (!AT_STRINGS_END (d)) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5354 { |
29296
b2c75746a989
(PREFETCH_NOLIMIT): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29194
diff
changeset
|
5355 PREFETCH_NOLIMIT (); |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
5356 c2 = RE_STRING_CHAR (d, dend - d); |
20633
063756386696
(re_search_2): Fix call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20455
diff
changeset
|
5357 #ifdef emacs |
063756386696
(re_search_2): Fix call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20455
diff
changeset
|
5358 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
|
5359 #endif |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5360 s2 = SYNTAX (c2); |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5361 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5362 /* ... and S2 is Sword, and WORD_BOUNDARY_P (C1, C2) |
18262 | 5363 returns 0. */ |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5364 if ((s2 == Sword) && !WORD_BOUNDARY_P (c1, c2)) |
18262 | 5365 goto fail; |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5366 } |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5367 } |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5368 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
|
5369 |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
5370 case syntaxspec: |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
5371 case notsyntaxspec: |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
5372 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
|
5373 mcnt = *p++; |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
5374 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
|
5375 PREFETCH (); |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
5376 #ifdef emacs |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
5377 { |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
5378 int offset = PTR_TO_OFFSET (d); |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
5379 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
|
5380 UPDATE_SYNTAX_TABLE (pos1); |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
5381 } |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
5382 #endif |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
5383 { |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
5384 int c, len; |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
5385 |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
5386 c = RE_STRING_CHAR_AND_LENGTH (d, dend - d, len); |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
5387 |
28279
24a23e27dac6
(enum syntaxcode): Provide default for non-Emacs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28268
diff
changeset
|
5388 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
|
5389 goto fail; |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
5390 d += len; |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
5391 } |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
5392 break; |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
5393 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5394 #ifdef emacs |
18262 | 5395 case before_dot: |
5396 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
|
5397 if (PTR_BYTE_POS (d) >= PT_BYTE) |
18262 | 5398 goto fail; |
5399 break; | |
5400 | |
5401 case at_dot: | |
5402 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
|
5403 if (PTR_BYTE_POS (d) != PT_BYTE) |
18262 | 5404 goto fail; |
5405 break; | |
5406 | |
5407 case after_dot: | |
5408 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
|
5409 if (PTR_BYTE_POS (d) <= PT_BYTE) |
18262 | 5410 goto fail; |
5411 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
|
5412 |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
5413 case categoryspec: |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
5414 case notcategoryspec: |
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
5415 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
|
5416 mcnt = *p++; |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
5417 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
|
5418 PREFETCH (); |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5419 { |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5420 int c, len; |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
5421 c = RE_STRING_CHAR_AND_LENGTH (d, dend - d, len); |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5422 |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
5423 if ((!CHAR_HAS_CATEGORY (c, mcnt)) ^ not) |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5424 goto fail; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5425 d += len; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5426 } |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5427 break; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5428 |
28261
f955117a1fcd
(CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28203
diff
changeset
|
5429 #endif /* emacs */ |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5430 |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5431 default: |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5432 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
|
5433 } |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5434 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
|
5435 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5436 |
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 /* 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
|
5438 fail: |
24119
aceb3b94328d
(re_match_2_internal) [WINDOWSNT & emacs]: Insert QUIT at various places.
Richard M. Stallman <rms@gnu.org>
parents:
23964
diff
changeset
|
5439 QUIT; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5440 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
|
5441 { |
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
|
5442 re_char *str; |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5443 unsigned char *pat; |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5444 /* A restart point is known. Restore to that state. */ |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5445 DEBUG_PRINT1 ("\nFAIL:\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
|
5446 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
|
5447 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
|
5448 { |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5449 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
|
5450 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
|
5451 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
|
5452 |
28342
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
5453 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
|
5454 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
|
5455 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
|
5456 /* Fallthrough */ |
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
5457 |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5458 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
|
5459 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
|
5460 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
|
5461 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
|
5462 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
|
5463 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
|
5464 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
|
5465 break; |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5466 |
28342
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
5467 case no_op: |
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
5468 /* 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
|
5469 goto fail; |
9761cf2351fa
(enum re_opcode_t): New opcode on_failure_jump_nastyloop.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28279
diff
changeset
|
5470 |
28062
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5471 default: |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5472 abort(); |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5473 } |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5474 |
26edef632c89
This is a big redesign of failure-stack and register handling, prompted
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27359
diff
changeset
|
5475 assert (p >= bufp->buffer && p <= pend); |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5476 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5477 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
|
5478 dend = end_match_1; |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5479 } |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5480 else |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5481 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
|
5482 } /* 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
|
5483 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5484 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
|
5485 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
|
5486 |
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 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
|
5488 |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5489 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
|
5490 } /* 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
|
5491 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5492 /* 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
|
5493 |
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 /* 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
|
5495 bytes; nonzero otherwise. */ |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5496 |
11864
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 static int |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
5498 bcmp_translate (s1, s2, len, translate, multibyte) |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
5499 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
|
5500 register int len; |
13250
52e053f46f76
(TRANSLATE, PATFETCH): Cast elt of `translate'.
Richard M. Stallman <rms@gnu.org>
parents:
13100
diff
changeset
|
5501 RE_TRANSLATE_TYPE translate; |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
5502 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
|
5503 { |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
5504 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
|
5505 re_char *p1_end = s1 + len; |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
5506 re_char *p2_end = s2 + len; |
21348
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
5507 |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
5508 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
|
5509 { |
21348
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
5510 int p1_charlen, p2_charlen; |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
5511 int p1_ch, p2_ch; |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
5512 |
28473
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
5513 p1_ch = RE_STRING_CHAR_AND_LENGTH (p1, p1_end - p1, p1_charlen); |
975fe3d8922e
* regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28380
diff
changeset
|
5514 p2_ch = RE_STRING_CHAR_AND_LENGTH (p2, p2_end - p2, p2_charlen); |
21348
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
5515 |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
5516 if (RE_TRANSLATE (translate, p1_ch) |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
5517 != 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
|
5518 return 1; |
21348
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
5519 |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
5520 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
|
5521 } |
21348
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
5522 |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
5523 if (p1 != p1_end || p2 != p2_end) |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
5524 return 1; |
64590f10c605
(compile_range): Unused function deleted.
Richard M. Stallman <rms@gnu.org>
parents:
20650
diff
changeset
|
5525 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5526 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
|
5527 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5528 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5529 /* 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
|
5530 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5531 /* 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
|
5532 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
|
5533 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
|
5534 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5535 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
|
5536 are set in BUFP on entry. |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5537 |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5538 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
|
5539 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5540 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
|
5541 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
|
5542 const char *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
|
5543 int length; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5544 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
|
5545 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5546 reg_errcode_t ret; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5547 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5548 /* 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
|
5549 (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
|
5550 bufp->regs_allocated = REGS_UNALLOCATED; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5551 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5552 /* 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
|
5553 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
|
5554 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
|
5555 bufp->no_sub = 0; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5556 |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5557 /* Match anchors at newline. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5558 bufp->newline_anchor = 1; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5559 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5560 ret = regex_compile (pattern, length, re_syntax_options, 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
|
5561 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5562 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
|
5563 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
|
5564 return gettext (re_error_msgid[(int) ret]); |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5565 } |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5566 |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5567 /* 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
|
5568 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
|
5569 |
15285
c2b4f8533c55
Tue May 21 19:18:05 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
Roland McGrath <roland@gnu.org>
parents:
15224
diff
changeset
|
5570 #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
|
5571 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5572 /* 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
|
5573 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
|
5574 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5575 char * |
15635
89f7ba4ccd22
[_LIBC] (re_comp, re_exec): Use `weak_function' keyword in defn instead of
Roland McGrath <roland@gnu.org>
parents:
15516
diff
changeset
|
5576 #ifdef _LIBC |
89f7ba4ccd22
[_LIBC] (re_comp, re_exec): Use `weak_function' keyword in defn instead of
Roland McGrath <roland@gnu.org>
parents:
15516
diff
changeset
|
5577 /* 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
|
5578 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
|
5579 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
|
5580 weak_function |
89f7ba4ccd22
[_LIBC] (re_comp, re_exec): Use `weak_function' keyword in defn instead of
Roland McGrath <roland@gnu.org>
parents:
15516
diff
changeset
|
5581 #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
|
5582 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
|
5583 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
|
5584 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5585 reg_errcode_t ret; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5586 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5587 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
|
5588 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5589 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
|
5590 return gettext ("No previous 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
|
5591 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
|
5592 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5593 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5594 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
|
5595 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5596 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
|
5597 if (re_comp_buf.buffer == NULL) |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5598 return 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
|
5599 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
|
5600 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5601 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
|
5602 if (re_comp_buf.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
|
5603 return gettext (re_error_msgid[(int) 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
|
5604 } |
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 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5606 /* 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
|
5607 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
|
5608 |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5609 /* Match anchors at 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
|
5610 re_comp_buf.newline_anchor = 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
|
5611 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5612 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
|
5613 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5614 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
|
5615 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
|
5616 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5617 /* 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
|
5618 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
|
5619 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5620 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5621 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5622 int |
15635
89f7ba4ccd22
[_LIBC] (re_comp, re_exec): Use `weak_function' keyword in defn instead of
Roland McGrath <roland@gnu.org>
parents:
15516
diff
changeset
|
5623 #ifdef _LIBC |
89f7ba4ccd22
[_LIBC] (re_comp, re_exec): Use `weak_function' keyword in defn instead of
Roland McGrath <roland@gnu.org>
parents:
15516
diff
changeset
|
5624 weak_function |
89f7ba4ccd22
[_LIBC] (re_comp, re_exec): Use `weak_function' keyword in defn instead of
Roland McGrath <roland@gnu.org>
parents:
15516
diff
changeset
|
5625 #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
|
5626 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
|
5627 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
|
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 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
|
5630 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
|
5631 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
|
5632 } |
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 #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
|
5634 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5635 /* 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
|
5636 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5637 #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
|
5638 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5639 /* 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
|
5640 |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5641 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
|
5642 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
|
5643 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5644 `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
|
5645 `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
|
5646 `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
|
5647 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
|
5648 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
|
5649 `newline_anchor' to REG_NEWLINE being set in 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
|
5650 `fastmap' and `fastmap_accurate' to 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
|
5651 `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
|
5652 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5653 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
|
5654 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5655 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
|
5656 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5657 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
|
5658 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
|
5659 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5660 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
|
5661 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
|
5662 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5663 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
|
5664 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
|
5665 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5666 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
|
5667 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
|
5668 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
|
5669 |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5670 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
|
5671 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
|
5672 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5673 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
|
5674 regcomp (preg, pattern, cflags) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5675 regex_t *preg; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5676 const char *pattern; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5677 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
|
5678 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5679 reg_errcode_t 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
|
5680 unsigned 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
|
5681 = (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
|
5682 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
|
5683 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5684 /* 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
|
5685 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
|
5686 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
|
5687 preg->used = 0; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5688 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5689 /* Don't bother to use a fastmap when searching. This 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
|
5690 REG_NEWLINE case: if we used a fastmap, we'd have to put all 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
|
5691 characters after newlines into the fastmap. This way, we just 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
|
5692 every character. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5693 preg->fastmap = 0; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5694 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5695 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
|
5696 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5697 unsigned i; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5698 |
13250
52e053f46f76
(TRANSLATE, PATFETCH): Cast elt of `translate'.
Richard M. Stallman <rms@gnu.org>
parents:
13100
diff
changeset
|
5699 preg->translate |
52e053f46f76
(TRANSLATE, PATFETCH): Cast elt of `translate'.
Richard M. Stallman <rms@gnu.org>
parents:
13100
diff
changeset
|
5700 = (RE_TRANSLATE_TYPE) malloc (CHAR_SET_SIZE |
52e053f46f76
(TRANSLATE, PATFETCH): Cast elt of `translate'.
Richard M. Stallman <rms@gnu.org>
parents:
13100
diff
changeset
|
5701 * 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
|
5702 if (preg->translate == NULL) |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5703 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
|
5704 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5705 /* 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
|
5706 for (i = 0; i < CHAR_SET_SIZE; i++) |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5707 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
|
5708 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5709 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
|
5710 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
|
5711 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5712 /* 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
|
5713 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
|
5714 { /* 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
|
5715 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
|
5716 syntax |= RE_HAT_LISTS_NOT_NEWLINE; |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5717 /* It also changes the matching behavior. */ |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5718 preg->newline_anchor = 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
|
5719 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5720 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
|
5721 preg->newline_anchor = 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
|
5722 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5723 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
|
5724 |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5725 /* 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
|
5726 can use strlen here in compiling 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
|
5727 ret = regex_compile (pattern, strlen (pattern), syntax, preg); |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5728 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5729 /* 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
|
5730 unmatched close-group: both are 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
|
5731 if (ret == REG_ERPAREN) ret = REG_EPAREN; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5732 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5733 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
|
5734 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5735 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5736 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5737 /* 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
|
5738 string STRING. |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5739 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5740 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
|
5741 `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
|
5742 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
|
5743 corresponding matched substrings. |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5744 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5745 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
|
5746 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
|
5747 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
|
5748 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5749 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
|
5750 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5751 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
|
5752 regexec (preg, string, nmatch, pmatch, eflags) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5753 const regex_t *preg; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5754 const char *string; |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5755 size_t nmatch; |
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5756 regmatch_t pmatch[]; |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5757 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
|
5758 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5759 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
|
5760 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
|
5761 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
|
5762 int len = strlen (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
|
5763 boolean want_reg_info = !preg->no_sub && nmatch > 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
|
5764 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5765 private_preg = *preg; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5766 |
11864
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 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
|
5768 private_preg.not_eol = !!(eflags & REG_NOTEOL); |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5769 |
11864
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 /* 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
|
5771 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
|
5772 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
|
5773 private_preg.regs_allocated = REGS_FIXED; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5774 |
11864
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 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
|
5776 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5777 regs.num_regs = nmatch; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5778 regs.start = TALLOC (nmatch, regoff_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
|
5779 regs.end = TALLOC (nmatch, regoff_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
|
5780 if (regs.start == NULL || regs.end == NULL) |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5781 return (int) REG_NOMATCH; |
11864
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 } |
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 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5784 /* 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
|
5785 ret = re_search (&private_preg, string, len, |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5786 /* start: */ 0, /* range: */ len, |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5787 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
|
5788 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5789 /* 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
|
5790 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
|
5791 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5792 if (ret >= 0) |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5793 { |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5794 unsigned r; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5795 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5796 for (r = 0; r < nmatch; r++) |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5797 { |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5798 pmatch[r].rm_so = regs.start[r]; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5799 pmatch[r].rm_eo = regs.end[r]; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5800 } |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5801 } |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5802 |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5803 /* 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
|
5804 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
|
5805 free (regs.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
|
5806 } |
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 /* 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
|
5809 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
|
5810 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5811 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5812 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5813 /* Returns a message corresponding to an error code, ERRCODE, returned |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5814 from either regcomp or regexec. We don't use PREG here. */ |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5815 |
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 size_t |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5817 regerror (errcode, preg, errbuf, errbuf_size) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5818 int errcode; |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5819 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
|
5820 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
|
5821 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
|
5822 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5823 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
|
5824 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
|
5825 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5826 if (errcode < 0 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5827 || errcode >= (sizeof (re_error_msgid) / sizeof (re_error_msgid[0]))) |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5828 /* 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
|
5829 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
|
5830 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
|
5831 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
|
5832 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
|
5833 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5834 msg = gettext (re_error_msgid[errcode]); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5835 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5836 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
|
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 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
|
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 if (msg_size > errbuf_size) |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5841 { |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5842 strncpy (errbuf, msg, errbuf_size - 1); |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5843 errbuf[errbuf_size - 1] = 0; |
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5844 } |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5845 else |
18260
a642c99198ec
(PTR_TO_OFFSET): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
16537
diff
changeset
|
5846 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
|
5847 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5848 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5849 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
|
5850 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5851 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5852 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5853 /* 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
|
5854 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5855 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
|
5856 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
|
5857 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
|
5858 { |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5859 if (preg->buffer != NULL) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5860 free (preg->buffer); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5861 preg->buffer = NULL; |
13565
c66885b6330c
(gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents:
13517
diff
changeset
|
5862 |
11864
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5863 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
|
5864 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
|
5865 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5866 if (preg->fastmap != NULL) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5867 free (preg->fastmap); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5868 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
|
5869 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
|
5870 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5871 if (preg->translate != NULL) |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5872 free (preg->translate); |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5873 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
|
5874 } |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5875 |
620c7195b48f
Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents:
11843
diff
changeset
|
5876 #endif /* not emacs */ |