annotate src/regex.c @ 131:869e1851236b xemacs-20-1p4

Import from CVS: tag xemacs-20-1p4
author cvs
date Mon, 13 Aug 2007 09:29:07 +0200
parents 1370575f1259
children 6b37e6ddd302
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 /* Extended regular expression matching and search library,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 version 0.12, extended for XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 (Implements POSIX draft P10003.2/D11.2, except for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 internationalization features.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 Copyright (C) 1993, 1994, 1995 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 Copyright (C) 1995 Sun Microsystems, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 Copyright (C) 1995 Ben Wing.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 This program is free software; you can redistribute it and/or modify
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 it under the terms of the GNU General Public License as published by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 the Free Software Foundation; either version 2, or (at your option)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 any later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 This program is distributed in the hope that it will be useful,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 GNU General Public License for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 along with this program; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 Boston, MA 02111-1307, USA. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 /* Synched up with: FSF 19.29. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 /* Changes made for XEmacs:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 (1) the REGEX_BEGLINE_CHECK code from the XEmacs v18 regex routines
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 was added. This causes a huge speedup in font-locking.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 (2) Rel-alloc is disabled when the MMAP version of rel-alloc is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 being used, because it's too slow -- all those calls to mmap()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 add humongous overhead.
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
34 (3) Lots and lots of changes for Mule. They are bracketed by
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
35 `#ifdef MULE' or with comments that have `XEmacs' in them.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 /* AIX requires this to be the first thing in the file. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 #if defined (_AIX) && !defined (REGEX_MALLOC)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 #pragma alloca
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 #define _GNU_SOURCE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 #ifdef HAVE_CONFIG_H
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 #include <config.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
49 /* We assume non-Mule if emacs isn't defined. */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
50 #ifndef emacs
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
51 #undef MULE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
52 #endif
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
53
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 /* We need this for `regex.h', and perhaps for the Emacs include files. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 #include <sys/types.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 /* This is for other GNU distributions with internationalized messages. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 #if defined (I18N3) && (defined (HAVE_LIBINTL_H) || defined (_LIBC))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 # include <libintl.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 # define gettext(msgid) (msgid)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 /* XEmacs: define this to add in a speedup for patterns anchored at
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 the beginning of a line. Keep the ifdefs so that it's easier to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 tell where/why this code has diverged from v19. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 #define REGEX_BEGLINE_CHECK
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 /* XEmacs: the current mmap-based ralloc handles small blocks very
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 poorly, so we disable it here. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 #if defined (REL_ALLOC) && defined (HAVE_MMAP)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 # undef REL_ALLOC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 /* The `emacs' switch turns on certain matching commands
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 that make sense only in Emacs. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 #ifdef emacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 #include "lisp.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 #include "buffer.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 #include "syntax.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 #if (defined (DEBUG_XEMACS) && !defined (DEBUG))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 #define DEBUG
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
88 #ifdef MULE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
89
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
90 Lisp_Object Vthe_lisp_rangetab;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
91
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
92 void
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
93 complex_vars_of_regex (void)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
94 {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
95 Vthe_lisp_rangetab = Fmake_range_table ();
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
96 staticpro (&Vthe_lisp_rangetab);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
97 }
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
98
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
99 #else /* not MULE */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
100
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 complex_vars_of_regex (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
106 #endif /* not MULE */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
107
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 #else /* not emacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 /* If we are not linking with Emacs proper,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 we can't use the relocating allocator
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 even if config.h says that we can. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 #undef REL_ALLOC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 #if defined (STDC_HEADERS) || defined (_LIBC)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 #include <stdlib.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 char *malloc ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 char *realloc ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 #define charptr_emchar(str) ((Emchar) (str)[0])
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 #if (LONGBITS > INTBITS)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 # define EMACS_INT long
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 # define EMACS_INT int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 typedef int Emchar;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 #define INC_CHARPTR(p) ((p)++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 #define DEC_CHARPTR(p) ((p)--)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 /* When used in Emacs's lib-src, we need to get bzero and bcopy somehow.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 If nothing else has been done, use the method below. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 #ifdef INHIBIT_STRING_HEADER
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 #if !(defined (HAVE_BZERO) && defined (HAVE_BCOPY))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 #if !defined (bzero) && !defined (bcopy)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 #undef INHIBIT_STRING_HEADER
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 /* This is the normal way of making sure we have a bcopy and a bzero.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 This is used in most programs--a few other programs avoid this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 by defining INHIBIT_STRING_HEADER. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 #ifndef INHIBIT_STRING_HEADER
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 #if defined (HAVE_STRING_H) || defined (STDC_HEADERS) || defined (_LIBC)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 #include <string.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 #ifndef bcmp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 #define bcmp(s1, s2, n) memcmp ((s1), (s2), (n))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 #ifndef bcopy
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 #define bcopy(s, d, n) memcpy ((d), (s), (n))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 #ifndef bzero
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 #define bzero(s, n) memset ((s), 0, (n))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 #include <strings.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 /* Define the syntax stuff for \<, \>, etc. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 /* This must be nonzero for the wordchar and notwordchar pattern
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 commands in re_match_2. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 #ifndef Sword
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 #define Sword 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 #ifdef SYNTAX_TABLE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 extern char *re_syntax_table;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 #else /* not SYNTAX_TABLE */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 /* How many characters in the character set. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 #define CHAR_SET_SIZE 256
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 static char re_syntax_table[CHAR_SET_SIZE];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 init_syntax_once (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 register int c;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 static int done = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 if (done)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 bzero (re_syntax_table, sizeof re_syntax_table);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 for (c = 'a'; c <= 'z'; c++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 re_syntax_table[c] = Sword;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 for (c = 'A'; c <= 'Z'; c++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200 re_syntax_table[c] = Sword;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 for (c = '0'; c <= '9'; c++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 re_syntax_table[c] = Sword;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205 re_syntax_table['_'] = Sword;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 done = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 #endif /* not SYNTAX_TABLE */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 #define SYNTAX_UNSAFE(ignored, c) re_syntax_table[c]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 #endif /* not emacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 /* Under XEmacs, this is needed because we don't define it elsewhere. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 #ifdef SWITCH_ENUM_BUG
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 #define SWITCH_ENUM_CAST(x) ((int)(x))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 #define SWITCH_ENUM_CAST(x) (x)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 /* Get the interface, including the syntax bits. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 #include "regex.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 /* isalpha etc. are used for the character classes. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228 #include <ctype.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230 /* Jim Meyering writes:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 "... Some ctype macros are valid only for character codes that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 isascii says are ASCII (SGI's IRIX-4.0.5 is one such system --when
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234 using /bin/cc or gcc but without giving an ansi option). So, all
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235 ctype uses should be through macros like ISPRINT... If
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236 STDC_HEADERS is defined, then autoconf has verified that the ctype
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237 macros don't need to be guarded with references to isascii. ...
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 Defining isascii to 1 should let any compiler worth its salt
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 eliminate the && through constant folding." */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 #if defined (STDC_HEADERS) || (!defined (isascii) && !defined (HAVE_ISASCII))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 #define ISASCII_1(c) 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 #define ISASCII_1(c) isascii(c)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
247 #ifdef MULE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
248 /* The IS*() macros can be passed any character, including an extended
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
249 one. We need to make sure there are no crashes, which would occur
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
250 otherwise due to out-of-bounds array references. */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
251 #define ISASCII(c) (((unsigned EMACS_INT) (c)) < 0x100 && ISASCII_1 (c))
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
252 #else
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253 #define ISASCII(c) ISASCII_1 (c)
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
254 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256 #ifdef isblank
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257 #define ISBLANK(c) (ISASCII (c) && isblank (c))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 #define ISBLANK(c) ((c) == ' ' || (c) == '\t')
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 #ifdef isgraph
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 #define ISGRAPH(c) (ISASCII (c) && isgraph (c))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264 #define ISGRAPH(c) (ISASCII (c) && isprint (c) && !isspace (c))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267 #define ISPRINT(c) (ISASCII (c) && isprint (c))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 #define ISDIGIT(c) (ISASCII (c) && isdigit (c))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 #define ISALNUM(c) (ISASCII (c) && isalnum (c))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270 #define ISALPHA(c) (ISASCII (c) && isalpha (c))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271 #define ISCNTRL(c) (ISASCII (c) && iscntrl (c))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 #define ISLOWER(c) (ISASCII (c) && islower (c))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273 #define ISPUNCT(c) (ISASCII (c) && ispunct (c))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274 #define ISSPACE(c) (ISASCII (c) && isspace (c))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 #define ISUPPER(c) (ISASCII (c) && isupper (c))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276 #define ISXDIGIT(c) (ISASCII (c) && isxdigit (c))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278 #ifndef NULL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279 #define NULL (void *)0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282 /* We remove any previous definition of `SIGN_EXTEND_CHAR',
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283 since ours (we hope) works properly with all combinations of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284 machines, compilers, `char' and `unsigned char' argument types.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285 (Per Bothner suggested the basic approach.) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286 #undef SIGN_EXTEND_CHAR
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 #if __STDC__
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 #define SIGN_EXTEND_CHAR(c) ((signed char) (c))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289 #else /* not __STDC__ */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 /* As in Harbison and Steele. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291 #define SIGN_EXTEND_CHAR(c) ((((unsigned char) (c)) ^ 128) - 128)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 /* Should we use malloc or alloca? If REGEX_MALLOC is not defined, we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295 use `alloca' instead of `malloc'. This is because using malloc in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296 re_search* or re_match* could cause memory leaks when C-g is used in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 Emacs; also, malloc is slower and causes storage fragmentation. On
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 the other hand, malloc is more portable, and easier to debug.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300 Because we sometimes use alloca, some routines have to be macros,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 not functions -- `alloca'-allocated space disappears at the end of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302 function it is called in. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304 #ifdef REGEX_MALLOC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306 #define REGEX_ALLOCATE malloc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 #define REGEX_REALLOCATE(source, osize, nsize) realloc (source, nsize)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 #define REGEX_FREE free
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 #else /* not REGEX_MALLOC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 /* Emacs already defines alloca, sometimes. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313 #ifndef alloca
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315 /* Make alloca work the best possible way. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 #ifdef __GNUC__
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317 #define alloca __builtin_alloca
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318 #else /* not __GNUC__ */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319 #if HAVE_ALLOCA_H
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320 #include <alloca.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321 #else /* not __GNUC__ or HAVE_ALLOCA_H */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322 #ifndef _AIX /* Already did AIX, up at the top. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323 char *alloca ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324 #endif /* not _AIX */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 #endif /* not HAVE_ALLOCA_H */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326 #endif /* not __GNUC__ */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328 #endif /* not alloca */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330 #define REGEX_ALLOCATE alloca
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332 /* Assumes a `char *destination' variable. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333 #define REGEX_REALLOCATE(source, osize, nsize) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 (destination = (char *) alloca (nsize), \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335 memmove (destination, source, osize), \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336 destination)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338 /* No need to do anything to free, after alloca. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339 #define REGEX_FREE(arg) ((void)0) /* Do nothing! But inhibit gcc warning. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341 #endif /* not REGEX_MALLOC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343 /* Define how to allocate the failure stack. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 #ifdef REL_ALLOC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346 #define REGEX_ALLOCATE_STACK(size) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347 r_alloc ((char **) &failure_stack_ptr, (size))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348 #define REGEX_REALLOCATE_STACK(source, osize, nsize) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349 r_re_alloc ((char **) &failure_stack_ptr, (nsize))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350 #define REGEX_FREE_STACK(ptr) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351 r_alloc_free ((void **) &failure_stack_ptr)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 #else /* not REL_ALLOC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355 #ifdef REGEX_MALLOC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357 #define REGEX_ALLOCATE_STACK malloc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358 #define REGEX_REALLOCATE_STACK(source, osize, nsize) realloc (source, nsize)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
359 #define REGEX_FREE_STACK free
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
360
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361 #else /* not REGEX_MALLOC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363 #define REGEX_ALLOCATE_STACK alloca
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365 #define REGEX_REALLOCATE_STACK(source, osize, nsize) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366 REGEX_REALLOCATE (source, osize, nsize)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367 /* No need to explicitly free anything. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
368 #define REGEX_FREE_STACK(arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370 #endif /* not REGEX_MALLOC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371 #endif /* not REL_ALLOC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374 /* True if `size1' is non-NULL and PTR is pointing anywhere inside
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375 `string1' or just past its end. This works if PTR is NULL, which is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376 a good thing. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377 #define FIRST_STRING_P(ptr) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378 (size1 && string1 <= (ptr) && (ptr) <= string1 + size1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380 /* (Re)Allocate N items of type T using malloc, or fail. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381 #define TALLOC(n, t) ((t *) malloc ((n) * sizeof (t)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382 #define RETALLOC(addr, n, t) ((addr) = (t *) realloc (addr, (n) * sizeof (t)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383 #define RETALLOC_IF(addr, n, t) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384 if (addr) RETALLOC((addr), (n), t); else (addr) = TALLOC ((n), t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385 #define REGEX_TALLOC(n, t) ((t *) REGEX_ALLOCATE ((n) * sizeof (t)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 #define BYTEWIDTH 8 /* In bits. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389 #define STREQ(s1, s2) ((strcmp (s1, s2) == 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391 #undef MAX
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392 #undef MIN
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393 #define MAX(a, b) ((a) > (b) ? (a) : (b))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394 #define MIN(a, b) ((a) < (b) ? (a) : (b))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396 typedef char boolean;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397 #define false 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398 #define true 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401 /* These are the command codes that appear in compiled regular
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402 expressions. Some opcodes are followed by argument bytes. A
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403 command code can specify any interpretation whatsoever for its
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404 arguments. Zero bytes may appear in the compiled regular expression. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406 typedef enum
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408 no_op = 0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410 /* Succeed right away--no more backtracking. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411 succeed,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
412
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413 /* Followed by one byte giving n, then by n literal bytes. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
414 exactn,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
415
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416 /* Matches any (more or less) character. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417 anychar,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419 /* Matches any one char belonging to specified set. First
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420 following byte is number of bitmap bytes. Then come bytes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421 for a bitmap saying which chars are in. Bits in each byte
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422 are ordered low-bit-first. A character is in the set if its
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423 bit is 1. A character too large to have a bit in the map is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424 automatically not in the set. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425 charset,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427 /* Same parameters as charset, but match any character that is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
428 not one of those specified. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
429 charset_not,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
430
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
431 /* Start remembering the text that is matched, for storing in a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
432 register. Followed by one byte with the register number, in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
433 the range 0 to one less than the pattern buffer's re_nsub
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
434 field. Then followed by one byte with the number of groups
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
435 inner to this one. (This last has to be part of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
436 start_memory only because we need it in the on_failure_jump
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437 of re_match_2.) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
438 start_memory,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
439
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
440 /* Stop remembering the text that is matched and store it in a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441 memory register. Followed by one byte with the register
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
442 number, in the range 0 to one less than `re_nsub' in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
443 pattern buffer, and one byte with the number of inner groups,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
444 just like `start_memory'. (We need the number of inner
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
445 groups here because we don't have any easy way of finding the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446 corresponding start_memory when we're at a stop_memory.) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
447 stop_memory,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
448
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
449 /* Match a duplicate of something remembered. Followed by one
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
450 byte containing the register number. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
451 duplicate,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
452
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
453 /* Fail unless at beginning of line. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
454 begline,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
455
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
456 /* Fail unless at end of line. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
457 endline,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
458
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
459 /* Succeeds if at beginning of buffer (if emacs) or at beginning
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
460 of string to be matched (if not). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
461 begbuf,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
462
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
463 /* Analogously, for end of buffer/string. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
464 endbuf,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
465
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
466 /* Followed by two byte relative address to which to jump. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
467 jump,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
468
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
469 /* Same as jump, but marks the end of an alternative. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
470 jump_past_alt,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
471
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
472 /* Followed by two-byte relative address of place to resume at
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
473 in case of failure. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
474 on_failure_jump,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
475
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
476 /* Like on_failure_jump, but pushes a placeholder instead of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
477 current string position when executed. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
478 on_failure_keep_string_jump,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
479
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
480 /* Throw away latest failure point and then jump to following
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
481 two-byte relative address. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
482 pop_failure_jump,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
483
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
484 /* Change to pop_failure_jump if know won't have to backtrack to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
485 match; otherwise change to jump. This is used to jump
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
486 back to the beginning of a repeat. If what follows this jump
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
487 clearly won't match what the repeat does, such that we can be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
488 sure that there is no use backtracking out of repetitions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
489 already matched, then we change it to a pop_failure_jump.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
490 Followed by two-byte address. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
491 maybe_pop_jump,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
492
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
493 /* Jump to following two-byte address, and push a dummy failure
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
494 point. This failure point will be thrown away if an attempt
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
495 is made to use it for a failure. A `+' construct makes this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
496 before the first repeat. Also used as an intermediary kind
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
497 of jump when compiling an alternative. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
498 dummy_failure_jump,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
499
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
500 /* Push a dummy failure point and continue. Used at the end of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
501 alternatives. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
502 push_dummy_failure,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
503
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
504 /* Followed by two-byte relative address and two-byte number n.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
505 After matching N times, jump to the address upon failure. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
506 succeed_n,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
507
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
508 /* Followed by two-byte relative address, and two-byte number n.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
509 Jump to the address N times, then fail. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
510 jump_n,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
511
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
512 /* Set the following two-byte relative address to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
513 subsequent two-byte number. The address *includes* the two
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
514 bytes of number. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
515 set_number_at,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
516
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
517 wordchar, /* Matches any word-constituent character. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
518 notwordchar, /* Matches any char that is not a word-constituent. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
519
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
520 wordbeg, /* Succeeds if at word beginning. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
521 wordend, /* Succeeds if at word end. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
522
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
523 wordbound, /* Succeeds if at a word boundary. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
524 notwordbound /* Succeeds if not at a word boundary. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
525
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
526 #ifdef emacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
527 ,before_dot, /* Succeeds if before point. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
528 at_dot, /* Succeeds if at point. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
529 after_dot, /* Succeeds if after point. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
530
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
531 /* Matches any character whose syntax is specified. Followed by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
532 a byte which contains a syntax code, e.g., Sword. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
533 syntaxspec,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
534
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
535 /* Matches any character whose syntax is not that specified. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
536 notsyntaxspec
104
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
537
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
538 #endif /* emacs */
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
539
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
540 #ifdef MULE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
541 /* need extra stuff to be able to properly work with XEmacs/Mule
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
542 characters (which may take up more than one byte) */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
543
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
544 ,charset_mule, /* Matches any character belonging to specified set.
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
545 The set is stored in "unified range-table
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
546 format"; see rangetab.c. Unlike the `charset'
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
547 opcode, this can handle arbitrary characters. */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
548
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
549 charset_mule_not /* Same parameters as charset_mule, but match any
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
550 character that is not one of those specified. */
104
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
551
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
552 /* 97/2/17 jhod: The following two were merged back in from the Mule
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
553 2.3 code to enable some language specific processing */
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
554 ,categoryspec, /* Matches entries in the character category tables */
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
555 notcategoryspec /* The opposite of the above */
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
556 #endif
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
557
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
558 } re_opcode_t;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
559
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
560 /* Common operations on the compiled pattern. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
561
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
562 /* Store NUMBER in two contiguous bytes starting at DESTINATION. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
563
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
564 #define STORE_NUMBER(destination, number) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
565 do { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
566 (destination)[0] = (number) & 0377; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
567 (destination)[1] = (number) >> 8; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
568 } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
569
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
570 /* Same as STORE_NUMBER, except increment DESTINATION to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
571 the byte after where the number is stored. Therefore, DESTINATION
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
572 must be an lvalue. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
573
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
574 #define STORE_NUMBER_AND_INCR(destination, number) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
575 do { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
576 STORE_NUMBER (destination, number); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
577 (destination) += 2; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
578 } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
579
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
580 /* Put into DESTINATION a number stored in two contiguous bytes starting
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
581 at SOURCE. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
582
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
583 #define EXTRACT_NUMBER(destination, source) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
584 do { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
585 (destination) = *(source) & 0377; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
586 (destination) += SIGN_EXTEND_CHAR (*((source) + 1)) << 8; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
587 } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
588
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
589 #ifdef DEBUG
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
590 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
591 extract_number (int *dest, unsigned char *source)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
592 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
593 int temp = SIGN_EXTEND_CHAR (*(source + 1));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
594 *dest = *source & 0377;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
595 *dest += temp << 8;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
596 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
597
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
598 #ifndef EXTRACT_MACROS /* To debug the macros. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
599 #undef EXTRACT_NUMBER
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
600 #define EXTRACT_NUMBER(dest, src) extract_number (&dest, src)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
601 #endif /* not EXTRACT_MACROS */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
602
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
603 #endif /* DEBUG */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
604
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
605 /* Same as EXTRACT_NUMBER, except increment SOURCE to after the number.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
606 SOURCE must be an lvalue. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
607
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
608 #define EXTRACT_NUMBER_AND_INCR(destination, source) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
609 do { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
610 EXTRACT_NUMBER (destination, source); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
611 (source) += 2; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
612 } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
613
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
614 #ifdef DEBUG
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
615 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
616 extract_number_and_incr (int *destination, unsigned char **source)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
617 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
618 extract_number (destination, *source);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
619 *source += 2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
620 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
621
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
622 #ifndef EXTRACT_MACROS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
623 #undef EXTRACT_NUMBER_AND_INCR
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
624 #define EXTRACT_NUMBER_AND_INCR(dest, src) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
625 extract_number_and_incr (&dest, &src)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
626 #endif /* not EXTRACT_MACROS */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
627
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
628 #endif /* DEBUG */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
629
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
630 /* If DEBUG is defined, Regex prints many voluminous messages about what
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
631 it is doing (if the variable `debug' is nonzero). If linked with the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
632 main program in `iregex.c', you can enter patterns and strings
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
633 interactively. And if linked with the main program in `main.c' and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
634 the other test files, you can run the already-written tests. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
635
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
636 #if defined (DEBUG)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
637
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
638 /* We use standard I/O for debugging. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
639 #include <stdio.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
640
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
641 #ifndef emacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
642 /* XEmacs provides its own version of assert() */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
643 /* It is useful to test things that ``must'' be true when debugging. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
644 #include <assert.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
645 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
646
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
647 static int debug = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
648
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
649 #define DEBUG_STATEMENT(e) e
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
650 #define DEBUG_PRINT1(x) if (debug) printf (x)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
651 #define DEBUG_PRINT2(x1, x2) if (debug) printf (x1, x2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
652 #define DEBUG_PRINT3(x1, x2, x3) if (debug) printf (x1, x2, x3)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
653 #define DEBUG_PRINT4(x1, x2, x3, x4) if (debug) printf (x1, x2, x3, x4)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
654 #define DEBUG_PRINT_COMPILED_PATTERN(p, s, e) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
655 if (debug) print_partial_compiled_pattern (s, e)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
656 #define DEBUG_PRINT_DOUBLE_STRING(w, s1, sz1, s2, sz2) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
657 if (debug) print_double_string (w, s1, sz1, s2, sz2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
658
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
659
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
660 /* Print the fastmap in human-readable form. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
661
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
662 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
663 print_fastmap (char *fastmap)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
664 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
665 unsigned was_a_range = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
666 unsigned i = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
667
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
668 while (i < (1 << BYTEWIDTH))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
669 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
670 if (fastmap[i++])
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
671 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
672 was_a_range = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
673 putchar (i - 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
674 while (i < (1 << BYTEWIDTH) && fastmap[i])
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
675 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
676 was_a_range = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
677 i++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
678 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
679 if (was_a_range)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
680 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
681 printf ("-");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
682 putchar (i - 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
683 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
684 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
685 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
686 putchar ('\n');
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
687 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
688
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
689
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
690 /* Print a compiled pattern string in human-readable form, starting at
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
691 the START pointer into it and ending just before the pointer END. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
692
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
693 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
694 print_partial_compiled_pattern (unsigned char *start, unsigned char *end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
695 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
696 int mcnt, mcnt2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
697 unsigned char *p = start;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
698 unsigned char *pend = end;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
699
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
700 if (start == NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
701 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
702 printf ("(null)\n");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
703 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
704 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
705
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
706 /* Loop over pattern commands. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
707 while (p < pend)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
708 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
709 printf ("%d:\t", p - start);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
710
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
711 switch ((re_opcode_t) *p++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
712 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
713 case no_op:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
714 printf ("/no_op");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
715 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
716
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
717 case exactn:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
718 mcnt = *p++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
719 printf ("/exactn/%d", mcnt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
720 do
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
721 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
722 putchar ('/');
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
723 putchar (*p++);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
724 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
725 while (--mcnt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
726 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
727
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
728 case start_memory:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
729 mcnt = *p++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
730 printf ("/start_memory/%d/%d", mcnt, *p++);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
731 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
732
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
733 case stop_memory:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
734 mcnt = *p++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
735 printf ("/stop_memory/%d/%d", mcnt, *p++);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
736 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
737
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
738 case duplicate:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
739 printf ("/duplicate/%d", *p++);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
740 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
741
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
742 case anychar:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
743 printf ("/anychar");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
744 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
745
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
746 case charset:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
747 case charset_not:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
748 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
749 register int c, last = -100;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
750 register int in_range = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
751
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
752 printf ("/charset [%s",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
753 (re_opcode_t) *(p - 1) == charset_not ? "^" : "");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
754
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
755 assert (p + *p < pend);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
756
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
757 for (c = 0; c < 256; c++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
758 if (((unsigned char) (c / 8) < *p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
759 && (p[1 + (c/8)] & (1 << (c % 8))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
760 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
761 /* Are we starting a range? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
762 if (last + 1 == c && ! in_range)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
763 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
764 putchar ('-');
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
765 in_range = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
766 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
767 /* Have we broken a range? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
768 else if (last + 1 != c && in_range)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
769 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
770 putchar (last);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
771 in_range = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
772 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
773
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
774 if (! in_range)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
775 putchar (c);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
776
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
777 last = c;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
778 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
779
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
780 if (in_range)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
781 putchar (last);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
782
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
783 putchar (']');
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
784
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
785 p += 1 + *p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
786 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
787 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
788
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
789 #ifdef MULE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
790 case charset_mule:
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
791 case charset_mule_not:
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
792 {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
793 int nentries, i;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
794
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
795 printf ("/charset_mule [%s",
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
796 (re_opcode_t) *(p - 1) == charset_mule_not ? "^" : "");
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
797 nentries = unified_range_table_nentries (p);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
798 for (i = 0; i < nentries; i++)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
799 {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
800 EMACS_INT first, last;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
801 Lisp_Object dummy_val;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
802
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
803 unified_range_table_get_range (p, i, &first, &last,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
804 &dummy_val);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
805 if (first < 0x100)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
806 putchar (first);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
807 else
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
808 printf ("(0x%x)", first);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
809 if (first != last)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
810 {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
811 putchar ('-');
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
812 if (last < 0x100)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
813 putchar (last);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
814 else
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
815 printf ("(0x%x)", last);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
816 }
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
817 }
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
818 putchar (']');
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
819 p += unified_range_table_bytes_used (p);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
820 }
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
821 break;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
822 #endif
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
823
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
824 case begline:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
825 printf ("/begline");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
826 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
827
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
828 case endline:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
829 printf ("/endline");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
830 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
831
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
832 case on_failure_jump:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
833 extract_number_and_incr (&mcnt, &p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
834 printf ("/on_failure_jump to %d", p + mcnt - start);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
835 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
836
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
837 case on_failure_keep_string_jump:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
838 extract_number_and_incr (&mcnt, &p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
839 printf ("/on_failure_keep_string_jump to %d", p + mcnt - start);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
840 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
841
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
842 case dummy_failure_jump:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
843 extract_number_and_incr (&mcnt, &p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
844 printf ("/dummy_failure_jump to %d", p + mcnt - start);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
845 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
846
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
847 case push_dummy_failure:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
848 printf ("/push_dummy_failure");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
849 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
850
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
851 case maybe_pop_jump:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
852 extract_number_and_incr (&mcnt, &p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
853 printf ("/maybe_pop_jump to %d", p + mcnt - start);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
854 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
855
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
856 case pop_failure_jump:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
857 extract_number_and_incr (&mcnt, &p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
858 printf ("/pop_failure_jump to %d", p + mcnt - start);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
859 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
860
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
861 case jump_past_alt:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
862 extract_number_and_incr (&mcnt, &p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
863 printf ("/jump_past_alt to %d", p + mcnt - start);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
864 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
865
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
866 case jump:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
867 extract_number_and_incr (&mcnt, &p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
868 printf ("/jump to %d", p + mcnt - start);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
869 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
870
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
871 case succeed_n:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
872 extract_number_and_incr (&mcnt, &p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
873 extract_number_and_incr (&mcnt2, &p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
874 printf ("/succeed_n to %d, %d times", p + mcnt - start, mcnt2);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
875 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
876
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
877 case jump_n:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
878 extract_number_and_incr (&mcnt, &p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
879 extract_number_and_incr (&mcnt2, &p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
880 printf ("/jump_n to %d, %d times", p + mcnt - start, mcnt2);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
881 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
882
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
883 case set_number_at:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
884 extract_number_and_incr (&mcnt, &p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
885 extract_number_and_incr (&mcnt2, &p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
886 printf ("/set_number_at location %d to %d", p + mcnt - start, mcnt2);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
887 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
888
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
889 case wordbound:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
890 printf ("/wordbound");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
891 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
892
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
893 case notwordbound:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
894 printf ("/notwordbound");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
895 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
896
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
897 case wordbeg:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
898 printf ("/wordbeg");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
899 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
900
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
901 case wordend:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
902 printf ("/wordend");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
903
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
904 #ifdef emacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
905 case before_dot:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
906 printf ("/before_dot");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
907 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
908
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
909 case at_dot:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
910 printf ("/at_dot");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
911 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
912
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
913 case after_dot:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
914 printf ("/after_dot");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
915 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
916
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
917 case syntaxspec:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
918 printf ("/syntaxspec");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
919 mcnt = *p++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
920 printf ("/%d", mcnt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
921 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
922
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
923 case notsyntaxspec:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
924 printf ("/notsyntaxspec");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
925 mcnt = *p++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
926 printf ("/%d", mcnt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
927 break;
104
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
928
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
929 #ifdef MULE
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
930 /* 97/2/17 jhod Mule category patch */
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
931 case categoryspec:
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
932 printf ("/categoryspec");
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
933 mcnt = *p++;
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
934 printf ("/%d", mcnt);
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
935 break;
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
936
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
937 case notcategoryspec:
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
938 printf ("/notcategoryspec");
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
939 mcnt = *p++;
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
940 printf ("/%d", mcnt);
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
941 break;
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
942 /* end of category patch */
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
943 #endif /* MULE */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
944 #endif /* emacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
945
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
946 case wordchar:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
947 printf ("/wordchar");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
948 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
949
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
950 case notwordchar:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
951 printf ("/notwordchar");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
952 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
953
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
954 case begbuf:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
955 printf ("/begbuf");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
956 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
957
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
958 case endbuf:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
959 printf ("/endbuf");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
960 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
961
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
962 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
963 printf ("?%d", *(p-1));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
964 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
965
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
966 putchar ('\n');
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
967 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
968
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
969 printf ("%d:\tend of pattern.\n", p - start);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
970 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
971
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
972
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
973 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
974 print_compiled_pattern (struct re_pattern_buffer *bufp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
975 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
976 unsigned char *buffer = bufp->buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
977
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
978 print_partial_compiled_pattern (buffer, buffer + bufp->used);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
979 printf ("%ld bytes used/%ld bytes allocated.\n", bufp->used,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
980 bufp->allocated);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
981
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
982 if (bufp->fastmap_accurate && bufp->fastmap)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
983 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
984 printf ("fastmap: ");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
985 print_fastmap (bufp->fastmap);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
986 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
987
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
988 printf ("re_nsub: %ld\t", (long)bufp->re_nsub);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
989 printf ("regs_alloc: %d\t", bufp->regs_allocated);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
990 printf ("can_be_null: %d\t", bufp->can_be_null);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
991 printf ("newline_anchor: %d\n", bufp->newline_anchor);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
992 printf ("no_sub: %d\t", bufp->no_sub);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
993 printf ("not_bol: %d\t", bufp->not_bol);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
994 printf ("not_eol: %d\t", bufp->not_eol);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
995 printf ("syntax: %d\n", bufp->syntax);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
996 /* Perhaps we should print the translate table? */
104
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
997 /* and maybe the category table? */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
998 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
999
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1000
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1001 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1002 print_double_string (CONST char *where, CONST char *string1, int size1,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1003 CONST char *string2, int size2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1004 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1005 unsigned this_char;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1006
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1007 if (where == NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1008 printf ("(null)");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1009 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1010 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1011 if (FIRST_STRING_P (where))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1012 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1013 for (this_char = where - string1; this_char < size1; this_char++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1014 putchar (string1[this_char]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1015
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1016 where = string2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1017 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1018
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1019 for (this_char = where - string2; this_char < size2; this_char++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1020 putchar (string2[this_char]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1021 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1022 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1023
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1024 #else /* not DEBUG */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1025
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1026 #undef assert
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1027 #define assert(e)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1028
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1029 #define DEBUG_STATEMENT(e)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1030 #define DEBUG_PRINT1(x)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1031 #define DEBUG_PRINT2(x1, x2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1032 #define DEBUG_PRINT3(x1, x2, x3)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1033 #define DEBUG_PRINT4(x1, x2, x3, x4)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1034 #define DEBUG_PRINT_COMPILED_PATTERN(p, s, e)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1035 #define DEBUG_PRINT_DOUBLE_STRING(w, s1, sz1, s2, sz2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1036
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1037 #endif /* not DEBUG */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1038
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1039 /* Set by `re_set_syntax' to the current regexp syntax to recognize. Can
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1040 also be assigned to arbitrarily: each pattern buffer stores its own
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1041 syntax, so it can be changed between regex compilations. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1042 /* This has no initializer because initialized variables in Emacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1043 become read-only after dumping. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1044 reg_syntax_t re_syntax_options;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1045
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1046
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1047 /* Specify the precise syntax of regexps for compilation. This provides
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1048 for compatibility for various utilities which historically have
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1049 different, incompatible syntaxes.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1050
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1051 The argument SYNTAX is a bit mask comprised of the various bits
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1052 defined in regex.h. We return the old syntax. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1053
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1054 reg_syntax_t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1055 re_set_syntax (reg_syntax_t syntax)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1056 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1057 reg_syntax_t ret = re_syntax_options;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1058
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1059 re_syntax_options = syntax;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1060 return ret;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1061 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1062
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1063 /* This table gives an error message for each of the error codes listed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1064 in regex.h. Obviously the order here has to be same as there.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1065 POSIX doesn't require that we do anything for REG_NOERROR,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1066 but why not be nice? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1067
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1068 static CONST char *re_error_msgid[] =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1069 { "Success", /* REG_NOERROR */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1070 "No match", /* REG_NOMATCH */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1071 "Invalid regular expression", /* REG_BADPAT */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1072 "Invalid collation character", /* REG_ECOLLATE */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1073 "Invalid character class name", /* REG_ECTYPE */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1074 "Trailing backslash", /* REG_EESCAPE */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1075 "Invalid back reference", /* REG_ESUBREG */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1076 "Unmatched [ or [^", /* REG_EBRACK */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1077 "Unmatched ( or \\(", /* REG_EPAREN */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1078 "Unmatched \\{", /* REG_EBRACE */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1079 "Invalid content of \\{\\}", /* REG_BADBR */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1080 "Invalid range end", /* REG_ERANGE */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1081 "Memory exhausted", /* REG_ESPACE */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1082 "Invalid preceding regular expression", /* REG_BADRPT */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1083 "Premature end of regular expression", /* REG_EEND */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1084 "Regular expression too big", /* REG_ESIZE */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1085 "Unmatched ) or \\)", /* REG_ERPAREN */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1086 #ifdef emacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1087 "Invalid syntax designator", /* REG_ESYNTAX */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1088 #endif
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1089 #ifdef MULE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1090 "Ranges may not span charsets", /* REG_ERANGESPAN */
104
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
1091 "Invalid category designator", /* REG_ECATEGORY */
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1092 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1093 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1094
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1095 /* Avoiding alloca during matching, to placate r_alloc. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1096
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1097 /* Define MATCH_MAY_ALLOCATE unless we need to make sure that the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1098 searching and matching functions should not call alloca. On some
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1099 systems, alloca is implemented in terms of malloc, and if we're
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1100 using the relocating allocator routines, then malloc could cause a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1101 relocation, which might (if the strings being searched are in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1102 ralloc heap) shift the data out from underneath the regexp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1103 routines.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1104
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1105 Here's another reason to avoid allocation: Emacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1106 processes input from X in a signal handler; processing X input may
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1107 call malloc; if input arrives while a matching routine is calling
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1108 malloc, then we're scrod. But Emacs can't just block input while
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1109 calling matching routines; then we don't notice interrupts when
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1110 they come in. So, Emacs blocks input around all regexp calls
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1111 except the matching calls, which it leaves unprotected, in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1112 faith that they will not malloc. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1113
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1114 /* Normally, this is fine. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1115 #define MATCH_MAY_ALLOCATE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1116
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1117 /* When using GNU C, we are not REALLY using the C alloca, no matter
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1118 what config.h may say. So don't take precautions for it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1119 #ifdef __GNUC__
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1120 #undef C_ALLOCA
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1121 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1122
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1123 /* The match routines may not allocate if (1) they would do it with malloc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1124 and (2) it's not safe for them to use malloc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1125 Note that if REL_ALLOC is defined, matching would not use malloc for the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1126 failure stack, but we would still use it for the register vectors;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1127 so REL_ALLOC should not affect this. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1128 #if (defined (C_ALLOCA) || defined (REGEX_MALLOC)) && defined (emacs)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1129 #undef MATCH_MAY_ALLOCATE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1130 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1131
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1132
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1133 /* Failure stack declarations and macros; both re_compile_fastmap and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1134 re_match_2 use a failure stack. These have to be macros because of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1135 REGEX_ALLOCATE_STACK. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1136
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1137
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1138 /* Number of failure points for which to initially allocate space
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1139 when matching. If this number is exceeded, we allocate more
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1140 space, so it is not a hard limit. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1141 #ifndef INIT_FAILURE_ALLOC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1142 #define INIT_FAILURE_ALLOC 5
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1143 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1144
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1145 /* Roughly the maximum number of failure points on the stack. Would be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1146 exactly that if always used MAX_FAILURE_SPACE each time we failed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1147 This is a variable only so users of regex can assign to it; we never
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1148 change it ourselves. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1149 #if defined (MATCH_MAY_ALLOCATE)
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1150 /* 4400 was enough to cause a crash on Alpha OSF/1,
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1151 whose default stack limit is 2mb. */
82
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 70
diff changeset
1152 int re_max_failures = 20000;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1153 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1154 int re_max_failures = 2000;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1155 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1156
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1157 union fail_stack_elt
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1158 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1159 unsigned char *pointer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1160 int integer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1161 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1162
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1163 typedef union fail_stack_elt fail_stack_elt_t;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1164
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1165 typedef struct
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1166 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1167 fail_stack_elt_t *stack;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1168 unsigned size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1169 unsigned avail; /* Offset of next open position. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1170 } fail_stack_type;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1171
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1172 #define FAIL_STACK_EMPTY() (fail_stack.avail == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1173 #define FAIL_STACK_PTR_EMPTY() (fail_stack_ptr->avail == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1174 #define FAIL_STACK_FULL() (fail_stack.avail == fail_stack.size)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1175
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1176
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1177 /* Define macros to initialize and free the failure stack.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1178 Do `return -2' if the alloc fails. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1179
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1180 #ifdef MATCH_MAY_ALLOCATE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1181 #define INIT_FAIL_STACK() \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1182 do { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1183 fail_stack.stack = (fail_stack_elt_t *) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1184 REGEX_ALLOCATE_STACK (INIT_FAILURE_ALLOC * sizeof (fail_stack_elt_t)); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1185 \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1186 if (fail_stack.stack == NULL) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1187 return -2; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1188 \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1189 fail_stack.size = INIT_FAILURE_ALLOC; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1190 fail_stack.avail = 0; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1191 } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1192
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1193 #define RESET_FAIL_STACK() REGEX_FREE_STACK (fail_stack.stack)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1194 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1195 #define INIT_FAIL_STACK() \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1196 do { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1197 fail_stack.avail = 0; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1198 } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1199
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1200 #define RESET_FAIL_STACK()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1201 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1202
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1203
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1204 /* Double the size of FAIL_STACK, up to approximately `re_max_failures' items.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1205
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1206 Return 1 if succeeds, and 0 if either ran out of memory
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1207 allocating space for it or it was already too large.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1208
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1209 REGEX_REALLOCATE_STACK requires `destination' be declared. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1210
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1211 #define DOUBLE_FAIL_STACK(fail_stack) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1212 ((fail_stack).size > re_max_failures * MAX_FAILURE_ITEMS \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1213 ? 0 \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1214 : ((fail_stack).stack = (fail_stack_elt_t *) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1215 REGEX_REALLOCATE_STACK ((fail_stack).stack, \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1216 (fail_stack).size * sizeof (fail_stack_elt_t), \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1217 ((fail_stack).size << 1) * sizeof (fail_stack_elt_t)), \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1218 \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1219 (fail_stack).stack == NULL \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1220 ? 0 \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1221 : ((fail_stack).size <<= 1, \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1222 1)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1223
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1224
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1225 /* Push pointer POINTER on FAIL_STACK.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1226 Return 1 if was able to do so and 0 if ran out of memory allocating
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1227 space to do so. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1228 #define PUSH_PATTERN_OP(POINTER, FAIL_STACK) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1229 ((FAIL_STACK_FULL () \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1230 && !DOUBLE_FAIL_STACK (FAIL_STACK)) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1231 ? 0 \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1232 : ((FAIL_STACK).stack[(FAIL_STACK).avail++].pointer = POINTER, \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1233 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1234
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1235 /* Push a pointer value onto the failure stack.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1236 Assumes the variable `fail_stack'. Probably should only
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1237 be called from within `PUSH_FAILURE_POINT'. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1238 #define PUSH_FAILURE_POINTER(item) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1239 fail_stack.stack[fail_stack.avail++].pointer = (unsigned char *) (item)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1240
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1241 /* This pushes an integer-valued item onto the failure stack.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1242 Assumes the variable `fail_stack'. Probably should only
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1243 be called from within `PUSH_FAILURE_POINT'. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1244 #define PUSH_FAILURE_INT(item) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1245 fail_stack.stack[fail_stack.avail++].integer = (item)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1246
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1247 /* Push a fail_stack_elt_t value onto the failure stack.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1248 Assumes the variable `fail_stack'. Probably should only
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1249 be called from within `PUSH_FAILURE_POINT'. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1250 #define PUSH_FAILURE_ELT(item) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1251 fail_stack.stack[fail_stack.avail++] = (item)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1252
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1253 /* These three POP... operations complement the three PUSH... operations.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1254 All assume that `fail_stack' is nonempty. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1255 #define POP_FAILURE_POINTER() fail_stack.stack[--fail_stack.avail].pointer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1256 #define POP_FAILURE_INT() fail_stack.stack[--fail_stack.avail].integer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1257 #define POP_FAILURE_ELT() fail_stack.stack[--fail_stack.avail]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1258
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1259 /* Used to omit pushing failure point id's when we're not debugging. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1260 #ifdef DEBUG
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1261 #define DEBUG_PUSH PUSH_FAILURE_INT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1262 #define DEBUG_POP(item_addr) *(item_addr) = POP_FAILURE_INT ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1263 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1264 #define DEBUG_PUSH(item)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1265 #define DEBUG_POP(item_addr)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1266 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1267
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1268
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1269 /* Push the information about the state we will need
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1270 if we ever fail back to it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1271
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1272 Requires variables fail_stack, regstart, regend, reg_info, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1273 num_regs be declared. DOUBLE_FAIL_STACK requires `destination' be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1274 declared.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1275
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1276 Does `return FAILURE_CODE' if runs out of memory. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1277
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1278 #if !defined (REGEX_MALLOC) && !defined (REL_ALLOC)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1279 #define DECLARE_DESTINATION char *destination;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1280 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1281 #define DECLARE_DESTINATION
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1282 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1283
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1284 #define PUSH_FAILURE_POINT(pattern_place, string_place, failure_code) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1285 do { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1286 DECLARE_DESTINATION \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1287 /* Must be int, so when we don't save any registers, the arithmetic \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1288 of 0 + -1 isn't done as unsigned. */ \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1289 int this_reg; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1290 \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1291 DEBUG_STATEMENT (failure_id++); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1292 DEBUG_STATEMENT (nfailure_points_pushed++); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1293 DEBUG_PRINT2 ("\nPUSH_FAILURE_POINT #%u:\n", failure_id); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1294 DEBUG_PRINT2 (" Before push, next avail: %d\n", (fail_stack).avail);\
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1295 DEBUG_PRINT2 (" size: %d\n", (fail_stack).size);\
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1296 \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1297 DEBUG_PRINT2 (" slots needed: %d\n", NUM_FAILURE_ITEMS); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1298 DEBUG_PRINT2 (" available: %d\n", REMAINING_AVAIL_SLOTS); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1299 \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1300 /* Ensure we have enough space allocated for what we will push. */ \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1301 while (REMAINING_AVAIL_SLOTS < NUM_FAILURE_ITEMS) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1302 { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1303 if (!DOUBLE_FAIL_STACK (fail_stack)) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1304 return failure_code; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1305 \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1306 DEBUG_PRINT2 ("\n Doubled stack; size now: %d\n", \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1307 (fail_stack).size); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1308 DEBUG_PRINT2 (" slots available: %d\n", REMAINING_AVAIL_SLOTS);\
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1309 } \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1310 \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1311 /* Push the info, starting with the registers. */ \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1312 DEBUG_PRINT1 ("\n"); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1313 \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1314 for (this_reg = lowest_active_reg; this_reg <= highest_active_reg; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1315 this_reg++) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1316 { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1317 DEBUG_PRINT2 (" Pushing reg: %d\n", this_reg); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1318 DEBUG_STATEMENT (num_regs_pushed++); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1319 \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1320 DEBUG_PRINT2 (" start: 0x%lx\n", \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1321 (unsigned long) regstart[this_reg]); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1322 PUSH_FAILURE_POINTER (regstart[this_reg]); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1323 \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1324 DEBUG_PRINT2 (" end: 0x%lx\n", \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1325 (unsigned long) regend[this_reg]); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1326 PUSH_FAILURE_POINTER (regend[this_reg]); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1327 \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1328 DEBUG_PRINT2 (" info: 0x%lx\n ", \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1329 * (unsigned long *) (&reg_info[this_reg])); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1330 DEBUG_PRINT2 (" match_null=%d", \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1331 REG_MATCH_NULL_STRING_P (reg_info[this_reg])); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1332 DEBUG_PRINT2 (" active=%d", IS_ACTIVE (reg_info[this_reg])); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1333 DEBUG_PRINT2 (" matched_something=%d", \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1334 MATCHED_SOMETHING (reg_info[this_reg])); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1335 DEBUG_PRINT2 (" ever_matched=%d", \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1336 EVER_MATCHED_SOMETHING (reg_info[this_reg])); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1337 DEBUG_PRINT1 ("\n"); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1338 PUSH_FAILURE_ELT (reg_info[this_reg].word); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1339 } \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1340 \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1341 DEBUG_PRINT2 (" Pushing low active reg: %d\n", lowest_active_reg);\
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1342 PUSH_FAILURE_INT (lowest_active_reg); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1343 \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1344 DEBUG_PRINT2 (" Pushing high active reg: %d\n", highest_active_reg);\
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1345 PUSH_FAILURE_INT (highest_active_reg); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1346 \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1347 DEBUG_PRINT2 (" Pushing pattern 0x%lx: ", \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1348 (unsigned long) pattern_place); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1349 DEBUG_PRINT_COMPILED_PATTERN (bufp, pattern_place, pend); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1350 PUSH_FAILURE_POINTER (pattern_place); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1351 \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1352 DEBUG_PRINT2 (" Pushing string 0x%lx: `", \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1353 (unsigned long) string_place); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1354 DEBUG_PRINT_DOUBLE_STRING (string_place, string1, size1, string2, \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1355 size2); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1356 DEBUG_PRINT1 ("'\n"); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1357 PUSH_FAILURE_POINTER (string_place); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1358 \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1359 DEBUG_PRINT2 (" Pushing failure id: %u\n", failure_id); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1360 DEBUG_PUSH (failure_id); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1361 } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1362
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1363 /* This is the number of items that are pushed and popped on the stack
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1364 for each register. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1365 #define NUM_REG_ITEMS 3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1366
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1367 /* Individual items aside from the registers. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1368 #ifdef DEBUG
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1369 #define NUM_NONREG_ITEMS 5 /* Includes failure point id. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1370 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1371 #define NUM_NONREG_ITEMS 4
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1372 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1373
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1374 /* We push at most this many items on the stack. */
82
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 70
diff changeset
1375 /* We used to use (num_regs - 1), which is the number of registers
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 70
diff changeset
1376 this regexp will save; but that was changed to 5
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 70
diff changeset
1377 to avoid stack overflow for a regexp with lots of parens. */
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 70
diff changeset
1378 #define MAX_FAILURE_ITEMS (5 * NUM_REG_ITEMS + NUM_NONREG_ITEMS)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1379
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1380 /* We actually push this many items. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1381 #define NUM_FAILURE_ITEMS \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1382 ((highest_active_reg - lowest_active_reg + 1) * NUM_REG_ITEMS \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1383 + NUM_NONREG_ITEMS)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1384
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1385 /* How many items can still be added to the stack without overflowing it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1386 #define REMAINING_AVAIL_SLOTS ((fail_stack).size - (fail_stack).avail)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1387
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1388
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1389 /* Pops what PUSH_FAIL_STACK pushes.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1390
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1391 We restore into the parameters, all of which should be lvalues:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1392 STR -- the saved data position.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1393 PAT -- the saved pattern position.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1394 LOW_REG, HIGH_REG -- the highest and lowest active registers.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1395 REGSTART, REGEND -- arrays of string positions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1396 REG_INFO -- array of information about each subexpression.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1397
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1398 Also assumes the variables `fail_stack' and (if debugging), `bufp',
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1399 `pend', `string1', `size1', `string2', and `size2'. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1400
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1401 #define POP_FAILURE_POINT(str, pat, low_reg, high_reg, regstart, regend, reg_info)\
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1402 { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1403 DEBUG_STATEMENT (fail_stack_elt_t ffailure_id;) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1404 int this_reg; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1405 CONST unsigned char *string_temp; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1406 \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1407 assert (!FAIL_STACK_EMPTY ()); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1408 \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1409 /* Remove failure points and point to how many regs pushed. */ \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1410 DEBUG_PRINT1 ("POP_FAILURE_POINT:\n"); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1411 DEBUG_PRINT2 (" Before pop, next avail: %d\n", fail_stack.avail); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1412 DEBUG_PRINT2 (" size: %d\n", fail_stack.size); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1413 \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1414 assert (fail_stack.avail >= NUM_NONREG_ITEMS); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1415 \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1416 DEBUG_POP (&ffailure_id.integer); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1417 DEBUG_PRINT2 (" Popping failure id: %u\n", \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1418 * (unsigned int *) &ffailure_id); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1419 \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1420 /* If the saved string location is NULL, it came from an \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1421 on_failure_keep_string_jump opcode, and we want to throw away the \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1422 saved NULL, thus retaining our current position in the string. */ \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1423 string_temp = POP_FAILURE_POINTER (); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1424 if (string_temp != NULL) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1425 str = (CONST char *) string_temp; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1426 \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1427 DEBUG_PRINT2 (" Popping string 0x%lx: `", (unsigned long) str); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1428 DEBUG_PRINT_DOUBLE_STRING (str, string1, size1, string2, size2); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1429 DEBUG_PRINT1 ("'\n"); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1430 \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1431 pat = (unsigned char *) POP_FAILURE_POINTER (); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1432 DEBUG_PRINT2 (" Popping pattern 0x%lx: ", (unsigned long) pat); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1433 DEBUG_PRINT_COMPILED_PATTERN (bufp, pat, pend); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1434 \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1435 /* Restore register info. */ \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1436 high_reg = (unsigned) POP_FAILURE_INT (); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1437 DEBUG_PRINT2 (" Popping high active reg: %d\n", high_reg); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1438 \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1439 low_reg = (unsigned) POP_FAILURE_INT (); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1440 DEBUG_PRINT2 (" Popping low active reg: %d\n", low_reg); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1441 \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1442 for (this_reg = high_reg; this_reg >= low_reg; this_reg--) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1443 { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1444 DEBUG_PRINT2 (" Popping reg: %d\n", this_reg); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1445 \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1446 reg_info[this_reg].word = POP_FAILURE_ELT (); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1447 DEBUG_PRINT2 (" info: 0x%lx\n", \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1448 * (unsigned long *) &reg_info[this_reg]); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1449 \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1450 regend[this_reg] = (CONST char *) POP_FAILURE_POINTER (); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1451 DEBUG_PRINT2 (" end: 0x%lx\n", \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1452 (unsigned long) regend[this_reg]); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1453 \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1454 regstart[this_reg] = (CONST char *) POP_FAILURE_POINTER (); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1455 DEBUG_PRINT2 (" start: 0x%lx\n", \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1456 (unsigned long) regstart[this_reg]); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1457 } \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1458 \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1459 set_regs_matched_done = 0; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1460 DEBUG_STATEMENT (nfailure_points_popped++); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1461 } /* POP_FAILURE_POINT */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1462
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1463
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1464
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1465 /* Structure for per-register (a.k.a. per-group) information.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1466 Other register information, such as the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1467 starting and ending positions (which are addresses), and the list of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1468 inner groups (which is a bits list) are maintained in separate
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1469 variables.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1470
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1471 We are making a (strictly speaking) nonportable assumption here: that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1472 the compiler will pack our bit fields into something that fits into
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1473 the type of `word', i.e., is something that fits into one item on the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1474 failure stack. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1475
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1476 typedef union
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1477 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1478 fail_stack_elt_t word;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1479 struct
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1480 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1481 /* This field is one if this group can match the empty string,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1482 zero if not. If not yet determined, `MATCH_NULL_UNSET_VALUE'. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1483 #define MATCH_NULL_UNSET_VALUE 3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1484 unsigned match_null_string_p : 2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1485 unsigned is_active : 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1486 unsigned matched_something : 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1487 unsigned ever_matched_something : 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1488 } bits;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1489 } register_info_type;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1490
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1491 #define REG_MATCH_NULL_STRING_P(R) ((R).bits.match_null_string_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1492 #define IS_ACTIVE(R) ((R).bits.is_active)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1493 #define MATCHED_SOMETHING(R) ((R).bits.matched_something)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1494 #define EVER_MATCHED_SOMETHING(R) ((R).bits.ever_matched_something)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1495
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1496
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1497 /* Call this when have matched a real character; it sets `matched' flags
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1498 for the subexpressions which we are currently inside. Also records
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1499 that those subexprs have matched. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1500 #define SET_REGS_MATCHED() \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1501 do \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1502 { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1503 if (!set_regs_matched_done) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1504 { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1505 unsigned r; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1506 set_regs_matched_done = 1; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1507 for (r = lowest_active_reg; r <= highest_active_reg; r++) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1508 { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1509 MATCHED_SOMETHING (reg_info[r]) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1510 = EVER_MATCHED_SOMETHING (reg_info[r]) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1511 = 1; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1512 } \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1513 } \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1514 } \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1515 while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1516
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1517 /* Registers are set to a sentinel when they haven't yet matched. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1518 static char reg_unset_dummy;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1519 #define REG_UNSET_VALUE (&reg_unset_dummy)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1520 #define REG_UNSET(e) ((e) == REG_UNSET_VALUE)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1521
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1522 /* Subroutine declarations and macros for regex_compile. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1523
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1524 /* Fetch the next character in the uncompiled pattern---translating it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1525 if necessary. Also cast from a signed character in the constant
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1526 string passed to us by the user to an unsigned char that we can use
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1527 as an array index (in, e.g., `translate'). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1528 #define PATFETCH(c) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1529 do {if (p == pend) return REG_EEND; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1530 assert (p < pend); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1531 c = (unsigned char) *p++; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1532 if (translate) c = (unsigned char) translate[c]; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1533 } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1534
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1535 /* Fetch the next character in the uncompiled pattern, with no
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1536 translation. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1537 #define PATFETCH_RAW(c) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1538 do {if (p == pend) return REG_EEND; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1539 assert (p < pend); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1540 c = (unsigned char) *p++; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1541 } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1542
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1543 /* Go backwards one character in the pattern. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1544 #define PATUNFETCH p--
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1545
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1546 #ifdef MULE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1547
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1548 #define PATFETCH_EXTENDED(emch) \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1549 do {if (p == pend) return REG_EEND; \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1550 assert (p < pend); \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1551 emch = charptr_emchar ((CONST Bufbyte *) p); \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1552 INC_CHARPTR (p); \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1553 if (translate && emch < 0x80) \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1554 emch = (Emchar) (unsigned char) translate[emch]; \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1555 } while (0)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1556
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1557 #define PATFETCH_RAW_EXTENDED(emch) \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1558 do {if (p == pend) return REG_EEND; \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1559 assert (p < pend); \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1560 emch = charptr_emchar ((CONST Bufbyte *) p); \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1561 INC_CHARPTR (p); \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1562 } while (0)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1563
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1564 #define PATUNFETCH_EXTENDED DEC_CHARPTR (p)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1565
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1566 #define PATFETCH_EITHER(emch) \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1567 do { \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1568 if (has_extended_chars) \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1569 PATFETCH_EXTENDED (emch); \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1570 else \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1571 PATFETCH (emch); \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1572 } while (0)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1573
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1574 #define PATFETCH_RAW_EITHER(emch) \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1575 do { \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1576 if (has_extended_chars) \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1577 PATFETCH_RAW_EXTENDED (emch); \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1578 else \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1579 PATFETCH_RAW (emch); \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1580 } while (0)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1581
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1582 #define PATUNFETCH_EITHER \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1583 do { \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1584 if (has_extended_chars) \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1585 PATUNFETCH_EXTENDED (emch); \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1586 else \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1587 PATUNFETCH (emch); \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1588 } while (0)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1589
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1590 #else /* not MULE */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1591
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1592 #define PATFETCH_EITHER(emch) PATFETCH (emch)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1593 #define PATFETCH_RAW_EITHER(emch) PATFETCH_RAW (emch)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1594 #define PATUNFETCH_EITHER PATUNFETCH
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1595
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1596 #endif /* not MULE */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1597
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1598 /* If `translate' is non-null, return translate[D], else just D. We
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1599 cast the subscript to translate because some data is declared as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1600 `char *', to avoid warnings when a string constant is passed. But
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1601 when we use a character as a subscript we must make it unsigned. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1602 #define TRANSLATE(d) (translate ? translate[(unsigned char) (d)] : (d))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1603
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1604 #ifdef MULE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1605
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1606 #define TRANSLATE_EXTENDED_UNSAFE(emch) \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1607 (translate && emch < 0x80 ? translate[emch] : (emch))
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1608
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1609 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1610
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1611 /* Macros for outputting the compiled pattern into `buffer'. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1612
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1613 /* If the buffer isn't allocated when it comes in, use this. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1614 #define INIT_BUF_SIZE 32
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1615
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1616 /* Make sure we have at least N more bytes of space in buffer. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1617 #define GET_BUFFER_SPACE(n) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1618 while (b - bufp->buffer + (n) > bufp->allocated) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1619 EXTEND_BUFFER ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1620
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1621 /* Make sure we have one more byte of buffer space and then add C to it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1622 #define BUF_PUSH(c) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1623 do { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1624 GET_BUFFER_SPACE (1); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1625 *b++ = (unsigned char) (c); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1626 } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1627
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1628
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1629 /* Ensure we have two more bytes of buffer space and then append C1 and C2. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1630 #define BUF_PUSH_2(c1, c2) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1631 do { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1632 GET_BUFFER_SPACE (2); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1633 *b++ = (unsigned char) (c1); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1634 *b++ = (unsigned char) (c2); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1635 } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1636
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1637
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1638 /* As with BUF_PUSH_2, except for three bytes. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1639 #define BUF_PUSH_3(c1, c2, c3) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1640 do { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1641 GET_BUFFER_SPACE (3); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1642 *b++ = (unsigned char) (c1); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1643 *b++ = (unsigned char) (c2); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1644 *b++ = (unsigned char) (c3); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1645 } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1646
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1647
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1648 /* Store a jump with opcode OP at LOC to location TO. We store a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1649 relative address offset by the three bytes the jump itself occupies. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1650 #define STORE_JUMP(op, loc, to) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1651 store_op1 (op, loc, (to) - (loc) - 3)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1652
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1653 /* Likewise, for a two-argument jump. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1654 #define STORE_JUMP2(op, loc, to, arg) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1655 store_op2 (op, loc, (to) - (loc) - 3, arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1656
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1657 /* Like `STORE_JUMP', but for inserting. Assume `b' is the buffer end. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1658 #define INSERT_JUMP(op, loc, to) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1659 insert_op1 (op, loc, (to) - (loc) - 3, b)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1660
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1661 /* Like `STORE_JUMP2', but for inserting. Assume `b' is the buffer end. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1662 #define INSERT_JUMP2(op, loc, to, arg) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1663 insert_op2 (op, loc, (to) - (loc) - 3, arg, b)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1664
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1665
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1666 /* This is not an arbitrary limit: the arguments which represent offsets
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1667 into the pattern are two bytes long. So if 2^16 bytes turns out to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1668 be too small, many things would have to change. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1669 #define MAX_BUF_SIZE (1L << 16)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1670
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1671
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1672 /* Extend the buffer by twice its current size via realloc and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1673 reset the pointers that pointed into the old block to point to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1674 correct places in the new one. If extending the buffer results in it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1675 being larger than MAX_BUF_SIZE, then flag memory exhausted. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1676 #define EXTEND_BUFFER() \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1677 do { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1678 unsigned char *old_buffer = bufp->buffer; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1679 if (bufp->allocated == MAX_BUF_SIZE) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1680 return REG_ESIZE; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1681 bufp->allocated <<= 1; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1682 if (bufp->allocated > MAX_BUF_SIZE) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1683 bufp->allocated = MAX_BUF_SIZE; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1684 bufp->buffer = (unsigned char *) realloc (bufp->buffer, bufp->allocated);\
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1685 if (bufp->buffer == NULL) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1686 return REG_ESPACE; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1687 /* If the buffer moved, move all the pointers into it. */ \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1688 if (old_buffer != bufp->buffer) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1689 { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1690 b = (b - old_buffer) + bufp->buffer; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1691 begalt = (begalt - old_buffer) + bufp->buffer; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1692 if (fixup_alt_jump) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1693 fixup_alt_jump = (fixup_alt_jump - old_buffer) + bufp->buffer;\
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1694 if (laststart) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1695 laststart = (laststart - old_buffer) + bufp->buffer; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1696 if (pending_exact) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1697 pending_exact = (pending_exact - old_buffer) + bufp->buffer; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1698 } \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1699 } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1700
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1701
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1702 /* Since we have one byte reserved for the register number argument to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1703 {start,stop}_memory, the maximum number of groups we can report
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1704 things about is what fits in that byte. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1705 #define MAX_REGNUM 255
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1706
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1707 /* But patterns can have more than `MAX_REGNUM' registers. We just
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1708 ignore the excess. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1709 typedef unsigned regnum_t;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1710
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1711
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1712 /* Macros for the compile stack. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1713
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1714 /* Since offsets can go either forwards or backwards, this type needs to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1715 be able to hold values from -(MAX_BUF_SIZE - 1) to MAX_BUF_SIZE - 1. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1716 typedef int pattern_offset_t;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1717
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1718 typedef struct
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1719 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1720 pattern_offset_t begalt_offset;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1721 pattern_offset_t fixup_alt_jump;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1722 pattern_offset_t inner_group_offset;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1723 pattern_offset_t laststart_offset;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1724 regnum_t regnum;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1725 } compile_stack_elt_t;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1726
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1727
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1728 typedef struct
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1729 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1730 compile_stack_elt_t *stack;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1731 unsigned size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1732 unsigned avail; /* Offset of next open position. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1733 } compile_stack_type;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1734
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1735
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1736 #define INIT_COMPILE_STACK_SIZE 32
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1737
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1738 #define COMPILE_STACK_EMPTY (compile_stack.avail == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1739 #define COMPILE_STACK_FULL (compile_stack.avail == compile_stack.size)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1740
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1741 /* The next available element. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1742 #define COMPILE_STACK_TOP (compile_stack.stack[compile_stack.avail])
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1743
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1744
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1745 /* Set the bit for character C in a bit vector. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1746 #define SET_LIST_BIT(c) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1747 (b[((unsigned char) (c)) / BYTEWIDTH] \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1748 |= 1 << (((unsigned char) c) % BYTEWIDTH))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1749
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1750 #ifdef MULE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1751
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1752 /* Set the "bit" for character C in a range table. */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1753 #define SET_RANGETAB_BIT(c) put_range_table (rtab, c, c, Qt)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1754
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1755 /* Set the "bit" for character c in the appropriate table. */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1756 #define SET_EITHER_BIT(c) \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1757 do { \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1758 if (has_extended_chars) \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1759 SET_RANGETAB_BIT (c); \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1760 else \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1761 SET_LIST_BIT (c); \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1762 } while (0)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1763
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1764 #else /* not MULE */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1765
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1766 #define SET_EITHER_BIT(c) SET_LIST_BIT (c)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1767
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1768 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1769
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1770
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1771 /* Get the next unsigned number in the uncompiled pattern. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1772 #define GET_UNSIGNED_NUMBER(num) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1773 { if (p != pend) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1774 { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1775 PATFETCH (c); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1776 while (ISDIGIT (c)) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1777 { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1778 if (num < 0) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1779 num = 0; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1780 num = num * 10 + c - '0'; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1781 if (p == pend) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1782 break; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1783 PATFETCH (c); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1784 } \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1785 } \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1786 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1787
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1788 #define CHAR_CLASS_MAX_LENGTH 6 /* Namely, `xdigit'. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1789
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1790 #define IS_CHAR_CLASS(string) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1791 (STREQ (string, "alpha") || STREQ (string, "upper") \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1792 || STREQ (string, "lower") || STREQ (string, "digit") \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1793 || STREQ (string, "alnum") || STREQ (string, "xdigit") \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1794 || STREQ (string, "space") || STREQ (string, "print") \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1795 || STREQ (string, "punct") || STREQ (string, "graph") \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1796 || STREQ (string, "cntrl") || STREQ (string, "blank"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1797
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1798 static void store_op1 (re_opcode_t op, unsigned char *loc, int arg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1799 static void store_op2 (re_opcode_t op, unsigned char *loc, int arg1, int arg2);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1800 static void insert_op1 (re_opcode_t op, unsigned char *loc, int arg,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1801 unsigned char *end);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1802 static void insert_op2 (re_opcode_t op, unsigned char *loc, int arg1, int arg2,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1803 unsigned char *end);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1804 static boolean at_begline_loc_p (CONST char *pattern, CONST char *p,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1805 reg_syntax_t syntax);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1806 static boolean at_endline_loc_p (CONST char *p, CONST char *pend, int syntax);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1807 static boolean group_in_compile_stack (compile_stack_type compile_stack,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1808 regnum_t regnum);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1809 static reg_errcode_t compile_range (CONST char **p_ptr, CONST char *pend,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1810 char *translate, reg_syntax_t syntax,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1811 unsigned char *b);
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1812 #ifdef MULE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1813 static reg_errcode_t compile_extended_range (CONST char **p_ptr,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1814 CONST char *pend,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1815 char *translate,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1816 reg_syntax_t syntax,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1817 Lisp_Object rtab);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1818 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1819 static boolean group_match_null_string_p (unsigned char **p,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1820 unsigned char *end,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1821 register_info_type *reg_info);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1822 static boolean alt_match_null_string_p (unsigned char *p, unsigned char *end,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1823 register_info_type *reg_info);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1824 static boolean common_op_match_null_string_p (unsigned char **p,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1825 unsigned char *end,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1826 register_info_type *reg_info);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1827 static int bcmp_translate (CONST unsigned char *s1, CONST unsigned char *s2,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1828 register int len, char *translate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1829 static int re_match_2_internal (struct re_pattern_buffer *bufp,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1830 CONST char *string1, int size1,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1831 CONST char *string2, int size2, int pos,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1832 struct re_registers *regs, int stop);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1833
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1834 #ifndef MATCH_MAY_ALLOCATE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1835
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1836 /* If we cannot allocate large objects within re_match_2_internal,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1837 we make the fail stack and register vectors global.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1838 The fail stack, we grow to the maximum size when a regexp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1839 is compiled.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1840 The register vectors, we adjust in size each time we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1841 compile a regexp, according to the number of registers it needs. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1842
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1843 static fail_stack_type fail_stack;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1844
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1845 /* Size with which the following vectors are currently allocated.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1846 That is so we can make them bigger as needed,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1847 but never make them smaller. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1848 static int regs_allocated_size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1849
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1850 static CONST char ** regstart, ** regend;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1851 static CONST char ** old_regstart, ** old_regend;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1852 static CONST char **best_regstart, **best_regend;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1853 static register_info_type *reg_info;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1854 static CONST char **reg_dummy;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1855 static register_info_type *reg_info_dummy;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1856
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1857 /* Make the register vectors big enough for NUM_REGS registers,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1858 but don't make them smaller. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1859
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1860 static
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1861 regex_grow_registers (int num_regs)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1862 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1863 if (num_regs > regs_allocated_size)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1864 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1865 RETALLOC_IF (regstart, num_regs, CONST char *);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1866 RETALLOC_IF (regend, num_regs, CONST char *);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1867 RETALLOC_IF (old_regstart, num_regs, CONST char *);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1868 RETALLOC_IF (old_regend, num_regs, CONST char *);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1869 RETALLOC_IF (best_regstart, num_regs, CONST char *);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1870 RETALLOC_IF (best_regend, num_regs, CONST char *);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1871 RETALLOC_IF (reg_info, num_regs, register_info_type);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1872 RETALLOC_IF (reg_dummy, num_regs, CONST char *);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1873 RETALLOC_IF (reg_info_dummy, num_regs, register_info_type);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1874
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1875 regs_allocated_size = num_regs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1876 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1877 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1878
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1879 #endif /* not MATCH_MAY_ALLOCATE */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1880
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1881 /* `regex_compile' compiles PATTERN (of length SIZE) according to SYNTAX.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1882 Returns one of error codes defined in `regex.h', or zero for success.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1883
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1884 Assumes the `allocated' (and perhaps `buffer') and `translate'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1885 fields are set in BUFP on entry.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1886
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1887 If it succeeds, results are put in BUFP (if it returns an error, the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1888 contents of BUFP are undefined):
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1889 `buffer' is the compiled pattern;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1890 `syntax' is set to SYNTAX;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1891 `used' is set to the length of the compiled pattern;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1892 `fastmap_accurate' is zero;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1893 `re_nsub' is the number of subexpressions in PATTERN;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1894 `not_bol' and `not_eol' are zero;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1895
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1896 The `fastmap' and `newline_anchor' fields are neither
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1897 examined nor set. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1898
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1899 /* Return, freeing storage we allocated. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1900 #define FREE_STACK_RETURN(value) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1901 return (free (compile_stack.stack), value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1902
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1903 static reg_errcode_t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1904 regex_compile (CONST char *pattern, int size, reg_syntax_t syntax,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1905 struct re_pattern_buffer *bufp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1906 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1907 /* We fetch characters from PATTERN here. We declare these as int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1908 (or possibly long) so that chars above 127 can be used as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1909 array indices. The macros that fetch a character from the pattern
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1910 make sure to coerce to unsigned char before assigning, so we won't
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1911 get bitten by negative numbers here. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1912 /* XEmacs change: used to be unsigned char. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1913 register EMACS_INT c, c1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1914
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1915 /* A random temporary spot in PATTERN. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1916 CONST char *p1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1917
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1918 /* Points to the end of the buffer, where we should append. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1919 register unsigned char *b;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1920
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1921 /* Keeps track of unclosed groups. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1922 compile_stack_type compile_stack;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1923
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1924 /* Points to the current (ending) position in the pattern. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1925 CONST char *p = pattern;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1926 CONST char *pend = pattern + size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1927
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1928 /* How to translate the characters in the pattern. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1929 char *translate = bufp->translate;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1930
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1931 /* Address of the count-byte of the most recently inserted `exactn'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1932 command. This makes it possible to tell if a new exact-match
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1933 character can be added to that command or if the character requires
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1934 a new `exactn' command. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1935 unsigned char *pending_exact = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1936
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1937 /* Address of start of the most recently finished expression.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1938 This tells, e.g., postfix * where to find the start of its
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1939 operand. Reset at the beginning of groups and alternatives. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1940 unsigned char *laststart = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1941
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1942 /* Address of beginning of regexp, or inside of last group. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1943 unsigned char *begalt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1944
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1945 /* Place in the uncompiled pattern (i.e., the {) to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1946 which to go back if the interval is invalid. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1947 CONST char *beg_interval;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1948
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1949 /* Address of the place where a forward jump should go to the end of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1950 the containing expression. Each alternative of an `or' -- except the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1951 last -- ends with a forward jump of this sort. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1952 unsigned char *fixup_alt_jump = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1953
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1954 /* Counts open-groups as they are encountered. Remembered for the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1955 matching close-group on the compile stack, so the same register
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1956 number is put in the stop_memory as the start_memory. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1957 regnum_t regnum = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1958
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1959 #ifdef DEBUG
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1960 DEBUG_PRINT1 ("\nCompiling pattern: ");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1961 if (debug)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1962 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1963 unsigned debug_count;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1964
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1965 for (debug_count = 0; debug_count < size; debug_count++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1966 putchar (pattern[debug_count]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1967 putchar ('\n');
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1968 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1969 #endif /* DEBUG */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1970
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1971 /* Initialize the compile stack. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1972 compile_stack.stack = TALLOC (INIT_COMPILE_STACK_SIZE, compile_stack_elt_t);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1973 if (compile_stack.stack == NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1974 return REG_ESPACE;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1975
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1976 compile_stack.size = INIT_COMPILE_STACK_SIZE;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1977 compile_stack.avail = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1978
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1979 /* Initialize the pattern buffer. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1980 bufp->syntax = syntax;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1981 bufp->fastmap_accurate = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1982 bufp->not_bol = bufp->not_eol = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1983
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1984 /* Set `used' to zero, so that if we return an error, the pattern
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1985 printer (for debugging) will think there's no pattern. We reset it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1986 at the end. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1987 bufp->used = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1988
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1989 /* Always count groups, whether or not bufp->no_sub is set. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1990 bufp->re_nsub = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1991
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1992 #if !defined (emacs) && !defined (SYNTAX_TABLE)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1993 /* Initialize the syntax table. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1994 init_syntax_once ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1995 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1996
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1997 if (bufp->allocated == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1998 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1999 if (bufp->buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2000 { /* If zero allocated, but buffer is non-null, try to realloc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2001 enough space. This loses if buffer's address is bogus, but
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2002 that is the user's responsibility. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2003 RETALLOC (bufp->buffer, INIT_BUF_SIZE, unsigned char);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2004 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2005 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2006 { /* Caller did not allocate a buffer. Do it for them. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2007 bufp->buffer = TALLOC (INIT_BUF_SIZE, unsigned char);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2008 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2009 if (!bufp->buffer) FREE_STACK_RETURN (REG_ESPACE);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2010
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2011 bufp->allocated = INIT_BUF_SIZE;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2012 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2013
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2014 begalt = b = bufp->buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2015
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2016 /* Loop through the uncompiled pattern until we're at the end. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2017 while (p != pend)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2018 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2019 PATFETCH (c);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2020
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2021 switch (c)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2022 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2023 case '^':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2024 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2025 if ( /* If at start of pattern, it's an operator. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2026 p == pattern + 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2027 /* If context independent, it's an operator. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2028 || syntax & RE_CONTEXT_INDEP_ANCHORS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2029 /* Otherwise, depends on what's come before. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2030 || at_begline_loc_p (pattern, p, syntax))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2031 BUF_PUSH (begline);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2032 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2033 goto normal_char;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2034 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2035 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2036
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2037
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2038 case '$':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2039 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2040 if ( /* If at end of pattern, it's an operator. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2041 p == pend
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2042 /* If context independent, it's an operator. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2043 || syntax & RE_CONTEXT_INDEP_ANCHORS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2044 /* Otherwise, depends on what's next. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2045 || at_endline_loc_p (p, pend, syntax))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2046 BUF_PUSH (endline);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2047 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2048 goto normal_char;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2049 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2050 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2051
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2052
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2053 case '+':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2054 case '?':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2055 if ((syntax & RE_BK_PLUS_QM)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2056 || (syntax & RE_LIMITED_OPS))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2057 goto normal_char;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2058 handle_plus:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2059 case '*':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2060 /* If there is no previous pattern... */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2061 if (!laststart)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2062 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2063 if (syntax & RE_CONTEXT_INVALID_OPS)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2064 FREE_STACK_RETURN (REG_BADRPT);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2065 else if (!(syntax & RE_CONTEXT_INDEP_OPS))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2066 goto normal_char;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2067 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2068
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2069 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2070 /* Are we optimizing this jump? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2071 boolean keep_string_p = false;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2072
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2073 /* 1 means zero (many) matches is allowed. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2074 char zero_times_ok = 0, many_times_ok = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2075
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2076 /* If there is a sequence of repetition chars, collapse it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2077 down to just one (the right one). We can't combine
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2078 interval operators with these because of, e.g., `a{2}*',
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2079 which should only match an even number of `a's. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2080
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2081 for (;;)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2082 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2083 zero_times_ok |= c != '+';
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2084 many_times_ok |= c != '?';
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2085
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2086 if (p == pend)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2087 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2088
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2089 PATFETCH (c);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2090
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2091 if (c == '*'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2092 || (!(syntax & RE_BK_PLUS_QM) && (c == '+' || c == '?')))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2093 ;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2094
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2095 else if (syntax & RE_BK_PLUS_QM && c == '\\')
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2096 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2097 if (p == pend) FREE_STACK_RETURN (REG_EESCAPE);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2098
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2099 PATFETCH (c1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2100 if (!(c1 == '+' || c1 == '?'))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2101 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2102 PATUNFETCH;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2103 PATUNFETCH;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2104 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2105 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2106
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2107 c = c1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2108 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2109 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2110 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2111 PATUNFETCH;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2112 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2113 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2114
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2115 /* If we get here, we found another repeat character. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2116 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2117
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2118 /* Star, etc. applied to an empty pattern is equivalent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2119 to an empty pattern. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2120 if (!laststart)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2121 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2122
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2123 /* Now we know whether or not zero matches is allowed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2124 and also whether or not two or more matches is allowed. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2125 if (many_times_ok)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2126 { /* More than one repetition is allowed, so put in at the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2127 end a backward relative jump from `b' to before the next
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2128 jump we're going to put in below (which jumps from
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2129 laststart to after this jump).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2130
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2131 But if we are at the `*' in the exact sequence `.*\n',
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2132 insert an unconditional jump backwards to the .,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2133 instead of the beginning of the loop. This way we only
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2134 push a failure point once, instead of every time
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2135 through the loop. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2136 assert (p - 1 > pattern);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2137
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2138 /* Allocate the space for the jump. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2139 GET_BUFFER_SPACE (3);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2140
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2141 /* We know we are not at the first character of the pattern,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2142 because laststart was nonzero. And we've already
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2143 incremented `p', by the way, to be the character after
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2144 the `*'. Do we have to do something analogous here
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2145 for null bytes, because of RE_DOT_NOT_NULL? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2146 if (TRANSLATE (*(p - 2)) == TRANSLATE ('.')
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2147 && zero_times_ok
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2148 && p < pend && TRANSLATE (*p) == TRANSLATE ('\n')
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2149 && !(syntax & RE_DOT_NEWLINE))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2150 { /* We have .*\n. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2151 STORE_JUMP (jump, b, laststart);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2152 keep_string_p = true;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2153 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2154 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2155 /* Anything else. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2156 STORE_JUMP (maybe_pop_jump, b, laststart - 3);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2157
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2158 /* We've added more stuff to the buffer. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2159 b += 3;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2160 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2161
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2162 /* On failure, jump from laststart to b + 3, which will be the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2163 end of the buffer after this jump is inserted. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2164 GET_BUFFER_SPACE (3);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2165 INSERT_JUMP (keep_string_p ? on_failure_keep_string_jump
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2166 : on_failure_jump,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2167 laststart, b + 3);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2168 pending_exact = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2169 b += 3;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2170
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2171 if (!zero_times_ok)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2172 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2173 /* At least one repetition is required, so insert a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2174 `dummy_failure_jump' before the initial
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2175 `on_failure_jump' instruction of the loop. This
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2176 effects a skip over that instruction the first time
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2177 we hit that loop. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2178 GET_BUFFER_SPACE (3);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2179 INSERT_JUMP (dummy_failure_jump, laststart, laststart + 6);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2180 b += 3;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2181 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2182 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2183 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2184
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2185
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2186 case '.':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2187 laststart = b;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2188 BUF_PUSH (anychar);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2189 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2190
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2191
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2192 case '[':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2193 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2194 /* XEmacs change: this whole section */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2195 boolean had_char_class = false;
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2196 #ifdef MULE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2197 boolean has_extended_chars = false;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2198 REGISTER Lisp_Object rtab = Qnil;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2199 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2200
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2201 if (p == pend) FREE_STACK_RETURN (REG_EBRACK);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2202
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2203 /* Ensure that we have enough space to push a charset: the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2204 opcode, the length count, and the bitset; 34 bytes in all. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2205 GET_BUFFER_SPACE (34);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2206
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2207 laststart = b;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2208
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2209 /* We test `*p == '^' twice, instead of using an if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2210 statement, so we only need one BUF_PUSH. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2211 BUF_PUSH (*p == '^' ? charset_not : charset);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2212 if (*p == '^')
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2213 p++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2214
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2215 /* Remember the first position in the bracket expression. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2216 p1 = p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2217
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2218 /* Push the number of bytes in the bitmap. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2219 BUF_PUSH ((1 << BYTEWIDTH) / BYTEWIDTH);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2220
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2221 /* Clear the whole map. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2222 bzero (b, (1 << BYTEWIDTH) / BYTEWIDTH);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2223
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2224 /* charset_not matches newline according to a syntax bit. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2225 if ((re_opcode_t) b[-2] == charset_not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2226 && (syntax & RE_HAT_LISTS_NOT_NEWLINE))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2227 SET_LIST_BIT ('\n');
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2228
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2229 #ifdef MULE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2230 start_over_with_extended:
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2231 if (has_extended_chars)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2232 {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2233 /* There are extended chars here, which means we need to start
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2234 over and shift to unified range-table format. */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2235 if (b[-2] == charset)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2236 b[-2] = charset_mule;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2237 else
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2238 b[-2] = charset_mule_not;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2239 b--;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2240 p = p1; /* go back to the beginning of the charset, after
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2241 a possible ^. */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2242 rtab = Vthe_lisp_rangetab;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2243 Fclear_range_table (rtab);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2244
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2245 /* charset_not matches newline according to a syntax bit. */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2246 if ((re_opcode_t) b[-1] == charset_mule_not
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2247 && (syntax & RE_HAT_LISTS_NOT_NEWLINE))
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2248 SET_EITHER_BIT ('\n');
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2249 }
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2250 #endif /* MULE */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2251
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2252 /* Read in characters and ranges, setting map bits. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2253 for (;;)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2254 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2255 if (p == pend) FREE_STACK_RETURN (REG_EBRACK);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2256
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2257 PATFETCH_EITHER (c);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2258
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2259 #ifdef MULE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2260 if (c >= 0x80 && !has_extended_chars)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2261 {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2262 has_extended_chars = 1;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2263 /* Frumble-bumble, we've found some extended chars.
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2264 Need to start over, process everything using
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2265 the general extended-char mechanism, and need
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2266 to use charset_mule and charset_mule_not instead
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2267 of charset and charset_not. */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2268 goto start_over_with_extended;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2269 }
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2270 #endif /* MULE */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2271 /* \ might escape characters inside [...] and [^...]. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2272 if ((syntax & RE_BACKSLASH_ESCAPE_IN_LISTS) && c == '\\')
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2273 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2274 if (p == pend) FREE_STACK_RETURN (REG_EESCAPE);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2275
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2276 PATFETCH_EITHER (c1);
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2277 #ifdef MULE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2278 if (c1 >= 0x80 && !has_extended_chars)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2279 {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2280 has_extended_chars = 1;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2281 goto start_over_with_extended;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2282 }
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2283 #endif /* MULE */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2284 SET_EITHER_BIT (c1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2285 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2286 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2287
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2288 /* Could be the end of the bracket expression. If it's
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2289 not (i.e., when the bracket expression is `[]' so
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2290 far), the ']' character bit gets set way below. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2291 if (c == ']' && p != p1 + 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2292 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2293
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2294 /* Look ahead to see if it's a range when the last thing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2295 was a character class. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2296 if (had_char_class && c == '-' && *p != ']')
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2297 FREE_STACK_RETURN (REG_ERANGE);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2298
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2299 /* Look ahead to see if it's a range when the last thing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2300 was a character: if this is a hyphen not at the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2301 beginning or the end of a list, then it's the range
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2302 operator. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2303 if (c == '-'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2304 && !(p - 2 >= pattern && p[-2] == '[')
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2305 && !(p - 3 >= pattern && p[-3] == '[' && p[-2] == '^')
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2306 && *p != ']')
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2307 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2308 reg_errcode_t ret;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2309
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2310 #ifdef MULE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2311 if (* (unsigned char *) p >= 0x80 && !has_extended_chars)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2312 {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2313 has_extended_chars = 1;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2314 goto start_over_with_extended;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2315 }
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2316 if (has_extended_chars)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2317 ret = compile_extended_range (&p, pend, translate,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2318 syntax, rtab);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2319 else
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2320 #endif /* MULE */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2321 ret = compile_range (&p, pend, translate, syntax, b);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2322 if (ret != REG_NOERROR) FREE_STACK_RETURN (ret);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2323 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2324
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2325 else if (p[0] == '-' && p[1] != ']')
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2326 { /* This handles ranges made up of characters only. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2327 reg_errcode_t ret;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2328
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2329 /* Move past the `-'. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2330 PATFETCH (c1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2331
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2332 #ifdef MULE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2333 if (* (unsigned char *) p >= 0x80 && !has_extended_chars)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2334 {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2335 has_extended_chars = 1;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2336 goto start_over_with_extended;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2337 }
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2338 if (has_extended_chars)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2339 ret = compile_extended_range (&p, pend, translate,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2340 syntax, rtab);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2341 else
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2342 #endif /* MULE */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2343 ret = compile_range (&p, pend, translate, syntax, b);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2344 if (ret != REG_NOERROR) FREE_STACK_RETURN (ret);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2345 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2346
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2347 /* See if we're at the beginning of a possible character
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2348 class. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2349
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2350 else if (syntax & RE_CHAR_CLASSES && c == '[' && *p == ':')
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2351 { /* Leave room for the null. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2352 char str[CHAR_CLASS_MAX_LENGTH + 1];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2353
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2354 PATFETCH (c);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2355 c1 = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2356
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2357 /* If pattern is `[[:'. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2358 if (p == pend) FREE_STACK_RETURN (REG_EBRACK);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2359
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2360 for (;;)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2361 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2362 /* Do not do PATFETCH_EITHER() here. We want
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2363 to just see if the bytes match particular
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2364 strings, and we put them all back if not.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2365
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2366 #### May need to be changed once trt tables
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2367 are working. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2368 PATFETCH (c);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2369 if (c == ':' || c == ']' || p == pend
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2370 || c1 == CHAR_CLASS_MAX_LENGTH)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2371 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2372 str[c1++] = c;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2373 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2374 str[c1] = '\0';
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2375
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2376 /* If isn't a word bracketed by `[:' and:`]':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2377 undo the ending character, the letters, and leave
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2378 the leading `:' and `[' (but set bits for them). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2379 if (c == ':' && *p == ']')
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2380 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2381 int ch;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2382 boolean is_alnum = STREQ (str, "alnum");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2383 boolean is_alpha = STREQ (str, "alpha");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2384 boolean is_blank = STREQ (str, "blank");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2385 boolean is_cntrl = STREQ (str, "cntrl");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2386 boolean is_digit = STREQ (str, "digit");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2387 boolean is_graph = STREQ (str, "graph");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2388 boolean is_lower = STREQ (str, "lower");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2389 boolean is_print = STREQ (str, "print");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2390 boolean is_punct = STREQ (str, "punct");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2391 boolean is_space = STREQ (str, "space");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2392 boolean is_upper = STREQ (str, "upper");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2393 boolean is_xdigit = STREQ (str, "xdigit");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2394
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2395 if (!IS_CHAR_CLASS (str))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2396 FREE_STACK_RETURN (REG_ECTYPE);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2397
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2398 /* Throw away the ] at the end of the character
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2399 class. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2400 PATFETCH (c);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2401
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2402 if (p == pend) FREE_STACK_RETURN (REG_EBRACK);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2403
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2404 for (ch = 0; ch < 1 << BYTEWIDTH; ch++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2405 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2406 /* This was split into 3 if's to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2407 avoid an arbitrary limit in some compiler. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2408 if ( (is_alnum && ISALNUM (ch))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2409 || (is_alpha && ISALPHA (ch))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2410 || (is_blank && ISBLANK (ch))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2411 || (is_cntrl && ISCNTRL (ch)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2412 SET_EITHER_BIT (ch);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2413 if ( (is_digit && ISDIGIT (ch))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2414 || (is_graph && ISGRAPH (ch))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2415 || (is_lower && ISLOWER (ch))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2416 || (is_print && ISPRINT (ch)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2417 SET_EITHER_BIT (ch);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2418 if ( (is_punct && ISPUNCT (ch))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2419 || (is_space && ISSPACE (ch))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2420 || (is_upper && ISUPPER (ch))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2421 || (is_xdigit && ISXDIGIT (ch)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2422 SET_EITHER_BIT (ch);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2423 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2424 had_char_class = true;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2425 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2426 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2427 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2428 c1++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2429 while (c1--)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2430 PATUNFETCH;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2431 SET_EITHER_BIT ('[');
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2432 SET_EITHER_BIT (':');
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2433 had_char_class = false;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2434 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2435 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2436 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2437 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2438 had_char_class = false;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2439 SET_EITHER_BIT (c);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2440 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2441 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2442
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2443 #ifdef MULE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2444 if (has_extended_chars)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2445 {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2446 /* We have a range table, not a bit vector. */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2447 int bytes_needed =
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2448 unified_range_table_bytes_needed (rtab);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2449 GET_BUFFER_SPACE (bytes_needed);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2450 unified_range_table_copy_data (rtab, b);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2451 b += unified_range_table_bytes_used (b);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2452 break;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2453 }
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2454 #endif /* MULE */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2455 /* Discard any (non)matching list bytes that are all 0 at the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2456 end of the map. Decrease the map-length byte too. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2457 while ((int) b[-1] > 0 && b[b[-1] - 1] == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2458 b[-1]--;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2459 b += b[-1];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2460 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2461 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2462
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2463
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2464 case '(':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2465 if (syntax & RE_NO_BK_PARENS)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2466 goto handle_open;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2467 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2468 goto normal_char;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2469
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2470
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2471 case ')':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2472 if (syntax & RE_NO_BK_PARENS)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2473 goto handle_close;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2474 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2475 goto normal_char;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2476
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2477
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2478 case '\n':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2479 if (syntax & RE_NEWLINE_ALT)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2480 goto handle_alt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2481 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2482 goto normal_char;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2483
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2484
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2485 case '|':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2486 if (syntax & RE_NO_BK_VBAR)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2487 goto handle_alt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2488 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2489 goto normal_char;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2490
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2491
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2492 case '{':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2493 if (syntax & RE_INTERVALS && syntax & RE_NO_BK_BRACES)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2494 goto handle_interval;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2495 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2496 goto normal_char;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2497
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2498
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2499 case '\\':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2500 if (p == pend) FREE_STACK_RETURN (REG_EESCAPE);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2501
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2502 /* Do not translate the character after the \, so that we can
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2503 distinguish, e.g., \B from \b, even if we normally would
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2504 translate, e.g., B to b. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2505 PATFETCH_RAW (c);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2506
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2507 switch (c)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2508 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2509 case '(':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2510 if (syntax & RE_NO_BK_PARENS)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2511 goto normal_backslash;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2512
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2513 handle_open:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2514 bufp->re_nsub++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2515 regnum++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2516
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2517 if (COMPILE_STACK_FULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2518 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2519 RETALLOC (compile_stack.stack, compile_stack.size << 1,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2520 compile_stack_elt_t);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2521 if (compile_stack.stack == NULL) return REG_ESPACE;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2522
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2523 compile_stack.size <<= 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2524 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2525
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2526 /* These are the values to restore when we hit end of this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2527 group. They are all relative offsets, so that if the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2528 whole pattern moves because of realloc, they will still
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2529 be valid. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2530 COMPILE_STACK_TOP.begalt_offset = begalt - bufp->buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2531 COMPILE_STACK_TOP.fixup_alt_jump
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2532 = fixup_alt_jump ? fixup_alt_jump - bufp->buffer + 1 : 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2533 COMPILE_STACK_TOP.laststart_offset = b - bufp->buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2534 COMPILE_STACK_TOP.regnum = regnum;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2535
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2536 /* We will eventually replace the 0 with the number of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2537 groups inner to this one. But do not push a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2538 start_memory for groups beyond the last one we can
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2539 represent in the compiled pattern. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2540 if (regnum <= MAX_REGNUM)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2541 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2542 COMPILE_STACK_TOP.inner_group_offset = b - bufp->buffer + 2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2543 BUF_PUSH_3 (start_memory, regnum, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2544 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2545
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2546 compile_stack.avail++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2547
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2548 fixup_alt_jump = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2549 laststart = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2550 begalt = b;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2551 /* If we've reached MAX_REGNUM groups, then this open
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2552 won't actually generate any code, so we'll have to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2553 clear pending_exact explicitly. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2554 pending_exact = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2555 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2556
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2557
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2558 case ')':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2559 if (syntax & RE_NO_BK_PARENS) goto normal_backslash;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2560
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2561 if (COMPILE_STACK_EMPTY)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2562 if (syntax & RE_UNMATCHED_RIGHT_PAREN_ORD)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2563 goto normal_backslash;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2564 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2565 FREE_STACK_RETURN (REG_ERPAREN);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2566
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2567 handle_close:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2568 if (fixup_alt_jump)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2569 { /* Push a dummy failure point at the end of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2570 alternative for a possible future
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2571 `pop_failure_jump' to pop. See comments at
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2572 `push_dummy_failure' in `re_match_2'. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2573 BUF_PUSH (push_dummy_failure);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2574
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2575 /* We allocated space for this jump when we assigned
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2576 to `fixup_alt_jump', in the `handle_alt' case below. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2577 STORE_JUMP (jump_past_alt, fixup_alt_jump, b - 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2578 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2579
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2580 /* See similar code for backslashed left paren above. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2581 if (COMPILE_STACK_EMPTY)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2582 if (syntax & RE_UNMATCHED_RIGHT_PAREN_ORD)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2583 goto normal_char;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2584 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2585 FREE_STACK_RETURN (REG_ERPAREN);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2586
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2587 /* Since we just checked for an empty stack above, this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2588 ``can't happen''. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2589 assert (compile_stack.avail != 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2590 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2591 /* We don't just want to restore into `regnum', because
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2592 later groups should continue to be numbered higher,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2593 as in `(ab)c(de)' -- the second group is #2. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2594 regnum_t this_group_regnum;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2595
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2596 compile_stack.avail--;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2597 begalt = bufp->buffer + COMPILE_STACK_TOP.begalt_offset;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2598 fixup_alt_jump
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2599 = COMPILE_STACK_TOP.fixup_alt_jump
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2600 ? bufp->buffer + COMPILE_STACK_TOP.fixup_alt_jump - 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2601 : 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2602 laststart = bufp->buffer + COMPILE_STACK_TOP.laststart_offset;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2603 this_group_regnum = COMPILE_STACK_TOP.regnum;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2604 /* If we've reached MAX_REGNUM groups, then this open
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2605 won't actually generate any code, so we'll have to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2606 clear pending_exact explicitly. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2607 pending_exact = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2608
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2609 /* We're at the end of the group, so now we know how many
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2610 groups were inside this one. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2611 if (this_group_regnum <= MAX_REGNUM)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2612 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2613 unsigned char *inner_group_loc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2614 = bufp->buffer + COMPILE_STACK_TOP.inner_group_offset;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2615
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2616 *inner_group_loc = regnum - this_group_regnum;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2617 BUF_PUSH_3 (stop_memory, this_group_regnum,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2618 regnum - this_group_regnum);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2619 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2620 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2621 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2622
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2623
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2624 case '|': /* `\|'. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2625 if (syntax & RE_LIMITED_OPS || syntax & RE_NO_BK_VBAR)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2626 goto normal_backslash;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2627 handle_alt:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2628 if (syntax & RE_LIMITED_OPS)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2629 goto normal_char;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2630
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2631 /* Insert before the previous alternative a jump which
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2632 jumps to this alternative if the former fails. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2633 GET_BUFFER_SPACE (3);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2634 INSERT_JUMP (on_failure_jump, begalt, b + 6);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2635 pending_exact = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2636 b += 3;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2637
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2638 /* The alternative before this one has a jump after it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2639 which gets executed if it gets matched. Adjust that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2640 jump so it will jump to this alternative's analogous
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2641 jump (put in below, which in turn will jump to the next
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2642 (if any) alternative's such jump, etc.). The last such
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2643 jump jumps to the correct final destination. A picture:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2644 _____ _____
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2645 | | | |
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2646 | v | v
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2647 a | b | c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2648
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2649 If we are at `b', then fixup_alt_jump right now points to a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2650 three-byte space after `a'. We'll put in the jump, set
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2651 fixup_alt_jump to right after `b', and leave behind three
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2652 bytes which we'll fill in when we get to after `c'. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2653
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2654 if (fixup_alt_jump)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2655 STORE_JUMP (jump_past_alt, fixup_alt_jump, b);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2656
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2657 /* Mark and leave space for a jump after this alternative,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2658 to be filled in later either by next alternative or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2659 when know we're at the end of a series of alternatives. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2660 fixup_alt_jump = b;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2661 GET_BUFFER_SPACE (3);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2662 b += 3;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2663
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2664 laststart = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2665 begalt = b;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2666 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2667
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2668
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2669 case '{':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2670 /* If \{ is a literal. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2671 if (!(syntax & RE_INTERVALS)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2672 /* If we're at `\{' and it's not the open-interval
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2673 operator. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2674 || ((syntax & RE_INTERVALS) && (syntax & RE_NO_BK_BRACES))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2675 || (p - 2 == pattern && p == pend))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2676 goto normal_backslash;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2677
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2678 handle_interval:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2679 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2680 /* If got here, then the syntax allows intervals. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2681
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2682 /* At least (most) this many matches must be made. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2683 int lower_bound = -1, upper_bound = -1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2684
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2685 beg_interval = p - 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2686
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2687 if (p == pend)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2688 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2689 if (syntax & RE_NO_BK_BRACES)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2690 goto unfetch_interval;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2691 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2692 FREE_STACK_RETURN (REG_EBRACE);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2693 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2694
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2695 GET_UNSIGNED_NUMBER (lower_bound);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2696
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2697 if (c == ',')
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2698 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2699 GET_UNSIGNED_NUMBER (upper_bound);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2700 if (upper_bound < 0) upper_bound = RE_DUP_MAX;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2701 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2702 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2703 /* Interval such as `{1}' => match exactly once. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2704 upper_bound = lower_bound;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2705
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2706 if (lower_bound < 0 || upper_bound > RE_DUP_MAX
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2707 || lower_bound > upper_bound)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2708 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2709 if (syntax & RE_NO_BK_BRACES)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2710 goto unfetch_interval;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2711 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2712 FREE_STACK_RETURN (REG_BADBR);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2713 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2714
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2715 if (!(syntax & RE_NO_BK_BRACES))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2716 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2717 if (c != '\\') FREE_STACK_RETURN (REG_EBRACE);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2718
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2719 PATFETCH (c);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2720 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2721
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2722 if (c != '}')
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2723 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2724 if (syntax & RE_NO_BK_BRACES)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2725 goto unfetch_interval;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2726 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2727 FREE_STACK_RETURN (REG_BADBR);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2728 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2729
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2730 /* We just parsed a valid interval. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2731
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2732 /* If it's invalid to have no preceding re. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2733 if (!laststart)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2734 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2735 if (syntax & RE_CONTEXT_INVALID_OPS)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2736 FREE_STACK_RETURN (REG_BADRPT);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2737 else if (syntax & RE_CONTEXT_INDEP_OPS)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2738 laststart = b;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2739 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2740 goto unfetch_interval;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2741 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2742
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2743 /* If the upper bound is zero, don't want to succeed at
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2744 all; jump from `laststart' to `b + 3', which will be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2745 the end of the buffer after we insert the jump. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2746 if (upper_bound == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2747 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2748 GET_BUFFER_SPACE (3);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2749 INSERT_JUMP (jump, laststart, b + 3);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2750 b += 3;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2751 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2752
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2753 /* Otherwise, we have a nontrivial interval. When
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2754 we're all done, the pattern will look like:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2755 set_number_at <jump count> <upper bound>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2756 set_number_at <succeed_n count> <lower bound>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2757 succeed_n <after jump addr> <succeed_n count>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2758 <body of loop>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2759 jump_n <succeed_n addr> <jump count>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2760 (The upper bound and `jump_n' are omitted if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2761 `upper_bound' is 1, though.) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2762 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2763 { /* If the upper bound is > 1, we need to insert
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2764 more at the end of the loop. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2765 unsigned nbytes = 10 + (upper_bound > 1) * 10;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2766
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2767 GET_BUFFER_SPACE (nbytes);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2768
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2769 /* Initialize lower bound of the `succeed_n', even
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2770 though it will be set during matching by its
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2771 attendant `set_number_at' (inserted next),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2772 because `re_compile_fastmap' needs to know.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2773 Jump to the `jump_n' we might insert below. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2774 INSERT_JUMP2 (succeed_n, laststart,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2775 b + 5 + (upper_bound > 1) * 5,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2776 lower_bound);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2777 b += 5;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2778
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2779 /* Code to initialize the lower bound. Insert
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2780 before the `succeed_n'. The `5' is the last two
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2781 bytes of this `set_number_at', plus 3 bytes of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2782 the following `succeed_n'. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2783 insert_op2 (set_number_at, laststart, 5, lower_bound, b);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2784 b += 5;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2785
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2786 if (upper_bound > 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2787 { /* More than one repetition is allowed, so
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2788 append a backward jump to the `succeed_n'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2789 that starts this interval.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2790
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2791 When we've reached this during matching,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2792 we'll have matched the interval once, so
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2793 jump back only `upper_bound - 1' times. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2794 STORE_JUMP2 (jump_n, b, laststart + 5,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2795 upper_bound - 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2796 b += 5;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2797
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2798 /* The location we want to set is the second
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2799 parameter of the `jump_n'; that is `b-2' as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2800 an absolute address. `laststart' will be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2801 the `set_number_at' we're about to insert;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2802 `laststart+3' the number to set, the source
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2803 for the relative address. But we are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2804 inserting into the middle of the pattern --
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2805 so everything is getting moved up by 5.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2806 Conclusion: (b - 2) - (laststart + 3) + 5,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2807 i.e., b - laststart.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2808
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2809 We insert this at the beginning of the loop
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2810 so that if we fail during matching, we'll
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2811 reinitialize the bounds. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2812 insert_op2 (set_number_at, laststart, b - laststart,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2813 upper_bound - 1, b);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2814 b += 5;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2815 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2816 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2817 pending_exact = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2818 beg_interval = NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2819 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2820 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2821
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2822 unfetch_interval:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2823 /* If an invalid interval, match the characters as literals. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2824 assert (beg_interval);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2825 p = beg_interval;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2826 beg_interval = NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2827
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2828 /* normal_char and normal_backslash need `c'. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2829 PATFETCH (c);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2830
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2831 if (!(syntax & RE_NO_BK_BRACES))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2832 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2833 if (p > pattern && p[-1] == '\\')
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2834 goto normal_backslash;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2835 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2836 goto normal_char;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2837
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2838 #ifdef emacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2839 /* There is no way to specify the before_dot and after_dot
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2840 operators. rms says this is ok. --karl */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2841 case '=':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2842 BUF_PUSH (at_dot);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2843 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2844
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2845 case 's':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2846 laststart = b;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2847 PATFETCH (c);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2848 /* XEmacs addition */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2849 if (c >= 0x80 || syntax_spec_code[c] == 0377)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2850 FREE_STACK_RETURN (REG_ESYNTAX);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2851 BUF_PUSH_2 (syntaxspec, syntax_spec_code[c]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2852 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2853
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2854 case 'S':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2855 laststart = b;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2856 PATFETCH (c);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2857 /* XEmacs addition */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2858 if (c >= 0x80 || syntax_spec_code[c] == 0377)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2859 FREE_STACK_RETURN (REG_ESYNTAX);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2860 BUF_PUSH_2 (notsyntaxspec, syntax_spec_code[c]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2861 break;
104
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
2862
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
2863 #ifdef MULE
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
2864 /* 97.2.17 jhod merged in to XEmacs from mule-2.3 */
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
2865 case 'c':
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
2866 laststart = b;
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
2867 PATFETCH_RAW (c);
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
2868 if (c < 32 || c > 127)
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
2869 FREE_STACK_RETURN (REG_ECATEGORY);
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
2870 BUF_PUSH_2 (categoryspec, c);
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
2871 break;
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
2872
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
2873 case 'C':
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
2874 laststart = b;
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
2875 PATFETCH_RAW (c);
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
2876 if (c < 32 || c > 127)
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
2877 FREE_STACK_RETURN (REG_ECATEGORY);
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
2878 BUF_PUSH_2 (notcategoryspec, c);
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
2879 break;
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
2880 /* end of category patch */
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
2881 #endif /* MULE */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2882 #endif /* emacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2883
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2884
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2885 case 'w':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2886 laststart = b;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2887 BUF_PUSH (wordchar);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2888 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2889
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2890
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2891 case 'W':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2892 laststart = b;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2893 BUF_PUSH (notwordchar);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2894 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2895
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2896
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2897 case '<':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2898 BUF_PUSH (wordbeg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2899 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2900
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2901 case '>':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2902 BUF_PUSH (wordend);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2903 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2904
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2905 case 'b':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2906 BUF_PUSH (wordbound);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2907 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2908
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2909 case 'B':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2910 BUF_PUSH (notwordbound);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2911 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2912
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2913 case '`':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2914 BUF_PUSH (begbuf);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2915 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2916
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2917 case '\'':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2918 BUF_PUSH (endbuf);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2919 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2920
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2921 case '1': case '2': case '3': case '4': case '5':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2922 case '6': case '7': case '8': case '9':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2923 if (syntax & RE_NO_BK_REFS)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2924 goto normal_char;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2925
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2926 c1 = c - '0';
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2927
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2928 if (c1 > regnum)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2929 FREE_STACK_RETURN (REG_ESUBREG);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2930
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2931 /* Can't back reference to a subexpression if inside of it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2932 if (group_in_compile_stack (compile_stack, c1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2933 goto normal_char;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2934
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2935 laststart = b;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2936 BUF_PUSH_2 (duplicate, c1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2937 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2938
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2939
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2940 case '+':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2941 case '?':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2942 if (syntax & RE_BK_PLUS_QM)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2943 goto handle_plus;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2944 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2945 goto normal_backslash;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2946
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2947 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2948 normal_backslash:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2949 /* You might think it would be useful for \ to mean
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2950 not to translate; but if we don't translate it,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2951 it will never match anything. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2952 c = TRANSLATE (c);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2953 goto normal_char;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2954 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2955 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2956
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2957
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2958 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2959 /* Expects the character in `c'. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2960 /* `p' points to the location after where `c' came from. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2961 normal_char:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2962 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2963 /* XEmacs: modifications here for Mule. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2964 /* `q' points to the beginning of the next char. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2965 CONST char *q = p - 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2966 INC_CHARPTR (q);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2967
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2968 /* If no exactn currently being built. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2969 if (!pending_exact
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2970
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2971 /* If last exactn not at current position. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2972 || pending_exact + *pending_exact + 1 != b
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2973
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2974 /* We have only one byte following the exactn for the count. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2975 || ((unsigned int) (*pending_exact + (q - p)) >=
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2976 ((unsigned int) (1 << BYTEWIDTH) - 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2977
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2978 /* If followed by a repetition operator. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2979 || *q == '*' || *q == '^'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2980 || ((syntax & RE_BK_PLUS_QM)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2981 ? *q == '\\' && (q[1] == '+' || q[1] == '?')
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2982 : (*q == '+' || *q == '?'))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2983 || ((syntax & RE_INTERVALS)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2984 && ((syntax & RE_NO_BK_BRACES)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2985 ? *q == '{'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2986 : (q[0] == '\\' && q[1] == '{'))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2987 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2988 /* Start building a new exactn. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2989
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2990 laststart = b;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2991
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2992 BUF_PUSH_2 (exactn, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2993 pending_exact = b - 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2994 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2995
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2996 BUF_PUSH (c);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2997 (*pending_exact)++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2998
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2999 while (p < q)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3000 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3001 PATFETCH (c);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3002 BUF_PUSH (c);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3003 (*pending_exact)++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3004 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3005 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3006 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3007 } /* switch (c) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3008 } /* while p != pend */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3009
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3010
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3011 /* Through the pattern now. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3012
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3013 if (fixup_alt_jump)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3014 STORE_JUMP (jump_past_alt, fixup_alt_jump, b);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3015
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3016 if (!COMPILE_STACK_EMPTY)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3017 FREE_STACK_RETURN (REG_EPAREN);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3018
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3019 /* If we don't want backtracking, force success
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3020 the first time we reach the end of the compiled pattern. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3021 if (syntax & RE_NO_POSIX_BACKTRACKING)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3022 BUF_PUSH (succeed);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3023
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3024 free (compile_stack.stack);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3025
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3026 /* We have succeeded; set the length of the buffer. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3027 bufp->used = b - bufp->buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3028
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3029 #ifdef DEBUG
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3030 if (debug)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3031 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3032 DEBUG_PRINT1 ("\nCompiled pattern: \n");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3033 print_compiled_pattern (bufp);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3034 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3035 #endif /* DEBUG */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3036
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3037 #ifndef MATCH_MAY_ALLOCATE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3038 /* Initialize the failure stack to the largest possible stack. This
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3039 isn't necessary unless we're trying to avoid calling alloca in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3040 the search and match routines. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3041 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3042 int num_regs = bufp->re_nsub + 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3043
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3044 /* Since DOUBLE_FAIL_STACK refuses to double only if the current size
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3045 is strictly greater than re_max_failures, the largest possible stack
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3046 is 2 * re_max_failures failure points. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3047 if (fail_stack.size < (2 * re_max_failures * MAX_FAILURE_ITEMS))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3048 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3049 fail_stack.size = (2 * re_max_failures * MAX_FAILURE_ITEMS);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3050
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3051 #ifdef emacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3052 if (! fail_stack.stack)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3053 fail_stack.stack
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3054 = (fail_stack_elt_t *) xmalloc (fail_stack.size
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3055 * sizeof (fail_stack_elt_t));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3056 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3057 fail_stack.stack
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3058 = (fail_stack_elt_t *) xrealloc (fail_stack.stack,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3059 (fail_stack.size
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3060 * sizeof (fail_stack_elt_t)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3061 #else /* not emacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3062 if (! fail_stack.stack)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3063 fail_stack.stack
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3064 = (fail_stack_elt_t *) malloc (fail_stack.size
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3065 * sizeof (fail_stack_elt_t));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3066 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3067 fail_stack.stack
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3068 = (fail_stack_elt_t *) realloc (fail_stack.stack,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3069 (fail_stack.size
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3070 * sizeof (fail_stack_elt_t)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3071 #endif /* not emacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3072 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3073
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3074 regex_grow_registers (num_regs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3075 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3076 #endif /* not MATCH_MAY_ALLOCATE */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3077
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3078 return REG_NOERROR;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3079 } /* regex_compile */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3080
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3081 /* Subroutines for `regex_compile'. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3082
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3083 /* Store OP at LOC followed by two-byte integer parameter ARG. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3084
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3085 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3086 store_op1 (re_opcode_t op, unsigned char *loc, int arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3087 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3088 *loc = (unsigned char) op;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3089 STORE_NUMBER (loc + 1, arg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3090 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3091
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3092
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3093 /* Like `store_op1', but for two two-byte parameters ARG1 and ARG2. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3094
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3095 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3096 store_op2 (re_opcode_t op, unsigned char *loc, int arg1, int arg2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3097 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3098 *loc = (unsigned char) op;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3099 STORE_NUMBER (loc + 1, arg1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3100 STORE_NUMBER (loc + 3, arg2);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3101 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3102
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3103
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3104 /* Copy the bytes from LOC to END to open up three bytes of space at LOC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3105 for OP followed by two-byte integer parameter ARG. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3106
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3107 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3108 insert_op1 (re_opcode_t op, unsigned char *loc, int arg, unsigned char *end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3109 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3110 register unsigned char *pfrom = end;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3111 register unsigned char *pto = end + 3;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3112
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3113 while (pfrom != loc)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3114 *--pto = *--pfrom;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3115
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3116 store_op1 (op, loc, arg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3117 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3118
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3119
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3120 /* Like `insert_op1', but for two two-byte parameters ARG1 and ARG2. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3121
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3122 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3123 insert_op2 (re_opcode_t op, unsigned char *loc, int arg1, int arg2,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3124 unsigned char *end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3125 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3126 register unsigned char *pfrom = end;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3127 register unsigned char *pto = end + 5;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3128
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3129 while (pfrom != loc)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3130 *--pto = *--pfrom;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3131
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3132 store_op2 (op, loc, arg1, arg2);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3133 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3134
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3135
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3136 /* P points to just after a ^ in PATTERN. Return true if that ^ comes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3137 after an alternative or a begin-subexpression. We assume there is at
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3138 least one character before the ^. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3139
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3140 static boolean
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3141 at_begline_loc_p (CONST char *pattern, CONST char *p, reg_syntax_t syntax)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3142 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3143 CONST char *prev = p - 2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3144 boolean prev_prev_backslash = prev > pattern && prev[-1] == '\\';
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3145
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3146 return
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3147 /* After a subexpression? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3148 (*prev == '(' && (syntax & RE_NO_BK_PARENS || prev_prev_backslash))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3149 /* After an alternative? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3150 || (*prev == '|' && (syntax & RE_NO_BK_VBAR || prev_prev_backslash));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3151 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3152
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3153
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3154 /* The dual of at_begline_loc_p. This one is for $. We assume there is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3155 at least one character after the $, i.e., `P < PEND'. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3156
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3157 static boolean
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3158 at_endline_loc_p (CONST char *p, CONST char *pend, int syntax)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3159 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3160 CONST char *next = p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3161 boolean next_backslash = *next == '\\';
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3162 CONST char *next_next = p + 1 < pend ? p + 1 : 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3163
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3164 return
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3165 /* Before a subexpression? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3166 (syntax & RE_NO_BK_PARENS ? *next == ')'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3167 : next_backslash && next_next && *next_next == ')')
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3168 /* Before an alternative? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3169 || (syntax & RE_NO_BK_VBAR ? *next == '|'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3170 : next_backslash && next_next && *next_next == '|');
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3171 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3172
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3173
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3174 /* Returns true if REGNUM is in one of COMPILE_STACK's elements and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3175 false if it's not. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3176
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3177 static boolean
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3178 group_in_compile_stack (compile_stack_type compile_stack, regnum_t regnum)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3179 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3180 int this_element;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3181
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3182 for (this_element = compile_stack.avail - 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3183 this_element >= 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3184 this_element--)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3185 if (compile_stack.stack[this_element].regnum == regnum)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3186 return true;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3187
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3188 return false;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3189 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3190
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3191
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3192 /* Read the ending character of a range (in a bracket expression) from the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3193 uncompiled pattern *P_PTR (which ends at PEND). We assume the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3194 starting character is in `P[-2]'. (`P[-1]' is the character `-'.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3195 Then we set the translation of all bits between the starting and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3196 ending characters (inclusive) in the compiled pattern B.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3197
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3198 Return an error code.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3199
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3200 We use these short variable names so we can use the same macros as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3201 `regex_compile' itself. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3202
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3203 static reg_errcode_t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3204 compile_range (CONST char **p_ptr, CONST char *pend, char *translate,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3205 reg_syntax_t syntax, unsigned char *b)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3206 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3207 unsigned this_char;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3208
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3209 CONST char *p = *p_ptr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3210 int range_start, range_end;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3211
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3212 if (p == pend)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3213 return REG_ERANGE;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3214
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3215 /* Even though the pattern is a signed `char *', we need to fetch
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3216 with unsigned char *'s; if the high bit of the pattern character
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3217 is set, the range endpoints will be negative if we fetch using a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3218 signed char *.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3219
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3220 We also want to fetch the endpoints without translating them; the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3221 appropriate translation is done in the bit-setting loop below. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3222 /* The SVR4 compiler on the 3B2 had trouble with unsigned CONST char *. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3223 range_start = ((CONST unsigned char *) p)[-2];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3224 range_end = ((CONST unsigned char *) p)[0];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3225
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3226 /* Have to increment the pointer into the pattern string, so the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3227 caller isn't still at the ending character. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3228 (*p_ptr)++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3229
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3230 /* If the start is after the end, the range is empty. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3231 if (range_start > range_end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3232 return syntax & RE_NO_EMPTY_RANGES ? REG_ERANGE : REG_NOERROR;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3233
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3234 /* Here we see why `this_char' has to be larger than an `unsigned
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3235 char' -- the range is inclusive, so if `range_end' == 0xff
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3236 (assuming 8-bit characters), we would otherwise go into an infinite
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3237 loop, since all characters <= 0xff. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3238 for (this_char = range_start; this_char <= range_end; this_char++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3239 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3240 SET_LIST_BIT (TRANSLATE (this_char));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3241 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3242
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3243 return REG_NOERROR;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3244 }
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3245
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3246 #ifdef MULE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3247
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3248 static reg_errcode_t
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3249 compile_extended_range (CONST char **p_ptr, CONST char *pend, char *translate,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3250 reg_syntax_t syntax, Lisp_Object rtab)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3251 {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3252 Emchar this_char;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3253
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3254 CONST char *p = *p_ptr;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3255 EMACS_INT range_start, range_end;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3256
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3257 if (p == pend)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3258 return REG_ERANGE;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3259
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3260 p--; /* back to '-' */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3261 DEC_CHARPTR (p); /* back to start of range */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3262 /* We also want to fetch the endpoints without translating them; the
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3263 appropriate translation is done in the bit-setting loop below. */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3264 range_start = charptr_emchar ((CONST Bufbyte *) p);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3265 range_end = charptr_emchar ((CONST Bufbyte *) (*p_ptr));
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3266 INC_CHARPTR (*p_ptr);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3267
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3268 /* If the start is after the end, the range is empty. */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3269 if (range_start > range_end)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3270 return syntax & RE_NO_EMPTY_RANGES ? REG_ERANGE : REG_NOERROR;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3271
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3272 /* Can't have ranges spanning different charsets, except maybe for
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3273 ranges entirely witin the first 256 chars. */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3274
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3275 if ((range_start >= 0x100 || range_end >= 0x100)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3276 && CHAR_LEADING_BYTE (range_start) !=
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3277 CHAR_LEADING_BYTE (range_end))
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3278 return REG_ERANGESPAN;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3279
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3280 /* As advertised, translations only work over the 0 - 0x7F range.
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3281 Making this kind of stuff work generally is much harder.
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3282 Iterating over the whole range like this would be way efficient
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3283 if the range encompasses 10,000 chars or something. You'd have
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3284 to do something like this:
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3285
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3286 range_table a;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3287 range_table b;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3288 map over translation table in [range_start, range_end] of
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3289 (put the mapped range in a;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3290 put the translation in b)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3291 invert the range in a and truncate to [range_start, range_end]
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3292 compute the union of a, b
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3293 union the result into rtab
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3294 */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3295 for (this_char = range_start;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3296 this_char <= range_end && this_char < 0x80; this_char++)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3297 {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3298 SET_RANGETAB_BIT (TRANSLATE (this_char));
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3299 }
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3300
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3301 if (this_char <= range_end)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3302 put_range_table (rtab, this_char, range_end, Qt);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3303
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3304 return REG_NOERROR;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3305 }
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3306
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3307 #endif /* MULE */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3308
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3309 /* re_compile_fastmap computes a ``fastmap'' for the compiled pattern in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3310 BUFP. A fastmap records which of the (1 << BYTEWIDTH) possible
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3311 characters can start a string that matches the pattern. This fastmap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3312 is used by re_search to skip quickly over impossible starting points.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3313
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3314 The caller must supply the address of a (1 << BYTEWIDTH)-byte data
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3315 area as BUFP->fastmap.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3316
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3317 We set the `fastmap', `fastmap_accurate', and `can_be_null' fields in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3318 the pattern buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3319
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3320 Returns 0 if we succeed, -2 if an internal error. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3321
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3322 int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3323 re_compile_fastmap (struct re_pattern_buffer *bufp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3324 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3325 int j, k;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3326 #ifdef MATCH_MAY_ALLOCATE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3327 fail_stack_type fail_stack;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3328 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3329 DECLARE_DESTINATION
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3330 /* We don't push any register information onto the failure stack. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3331 unsigned num_regs = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3332
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3333 register char *fastmap = bufp->fastmap;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3334 unsigned char *pattern = bufp->buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3335 unsigned long size = bufp->used;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3336 unsigned char *p = pattern;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3337 register unsigned char *pend = pattern + size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3338
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3339 #ifdef REL_ALLOC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3340 /* This holds the pointer to the failure stack, when
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3341 it is allocated relocatably. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3342 fail_stack_elt_t *failure_stack_ptr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3343 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3344
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3345 /* Assume that each path through the pattern can be null until
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3346 proven otherwise. We set this false at the bottom of switch
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3347 statement, to which we get only if a particular path doesn't
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3348 match the empty string. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3349 boolean path_can_be_null = true;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3350
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3351 /* We aren't doing a `succeed_n' to begin with. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3352 boolean succeed_n_p = false;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3353
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3354 assert (fastmap != NULL && p != NULL);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3355
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3356 INIT_FAIL_STACK ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3357 bzero (fastmap, 1 << BYTEWIDTH); /* Assume nothing's valid. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3358 bufp->fastmap_accurate = 1; /* It will be when we're done. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3359 bufp->can_be_null = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3360
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3361 while (1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3362 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3363 if (p == pend || *p == succeed)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3364 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3365 /* We have reached the (effective) end of pattern. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3366 if (!FAIL_STACK_EMPTY ())
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3367 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3368 bufp->can_be_null |= path_can_be_null;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3369
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3370 /* Reset for next path. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3371 path_can_be_null = true;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3372
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3373 p = fail_stack.stack[--fail_stack.avail].pointer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3374
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3375 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3376 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3377 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3378 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3379 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3380
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3381 /* We should never be about to go beyond the end of the pattern. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3382 assert (p < pend);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3383
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3384 switch (SWITCH_ENUM_CAST ((re_opcode_t) *p++))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3385 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3386
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3387 /* I guess the idea here is to simply not bother with a fastmap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3388 if a backreference is used, since it's too hard to figure out
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3389 the fastmap for the corresponding group. Setting
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3390 `can_be_null' stops `re_search_2' from using the fastmap, so
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3391 that is all we do. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3392 case duplicate:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3393 bufp->can_be_null = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3394 goto done;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3395
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3396
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3397 /* Following are the cases which match a character. These end
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3398 with `break'. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3399
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3400 case exactn:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3401 fastmap[p[1]] = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3402 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3403
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3404
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3405 case charset:
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3406 /* XEmacs: Under Mule, these bit vectors will
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3407 only contain values for characters below 0x80. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3408 for (j = *p++ * BYTEWIDTH - 1; j >= 0; j--)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3409 if (p[j / BYTEWIDTH] & (1 << (j % BYTEWIDTH)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3410 fastmap[j] = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3411 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3412
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3413
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3414 case charset_not:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3415 /* Chars beyond end of map must be allowed. */
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3416 #ifdef MULE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3417 for (j = *p * BYTEWIDTH; j < 0x80; j++)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3418 fastmap[j] = 1;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3419 /* And all extended characters must be allowed, too. */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3420 for (j = 0x80; j < 0xA0; j++)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3421 fastmap[j] = 1;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3422 #else
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3423 for (j = *p * BYTEWIDTH; j < (1 << BYTEWIDTH); j++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3424 fastmap[j] = 1;
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3425 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3426
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3427 for (j = *p++ * BYTEWIDTH - 1; j >= 0; j--)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3428 if (!(p[j / BYTEWIDTH] & (1 << (j % BYTEWIDTH))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3429 fastmap[j] = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3430 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3431
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3432 #ifdef MULE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3433 case charset_mule:
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3434 {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3435 int nentries;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3436 int i;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3437
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3438 nentries = unified_range_table_nentries (p);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3439 for (i = 0; i < nentries; i++)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3440 {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3441 EMACS_INT first, last;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3442 Lisp_Object dummy_val;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3443 int jj;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3444 Bufbyte strr[MAX_EMCHAR_LEN];
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3445
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3446 unified_range_table_get_range (p, i, &first, &last,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3447 &dummy_val);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3448 for (jj = first; jj <= last && jj < 0x80; jj++)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3449 fastmap[jj] = 1;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3450 /* Ranges below 0x100 can span charsets, but there
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3451 are only two (Control-1 and Latin-1), and
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3452 either first or last has to be in them. */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3453 set_charptr_emchar (strr, first);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3454 fastmap[*strr] = 1;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3455 if (last < 0x100)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3456 {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3457 set_charptr_emchar (strr, last);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3458 fastmap[*strr] = 1;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3459 }
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3460 }
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3461 }
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3462 break;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3463
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3464 case charset_mule_not:
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3465 {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3466 int nentries;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3467 int i;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3468
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3469 nentries = unified_range_table_nentries (p);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3470 for (i = 0; i < nentries; i++)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3471 {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3472 EMACS_INT first, last;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3473 Lisp_Object dummy_val;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3474 int jj;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3475 int smallest_prev = 0;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3476
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3477 unified_range_table_get_range (p, i, &first, &last,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3478 &dummy_val);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3479 for (jj = smallest_prev; jj < first && jj < 0x80; jj++)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3480 fastmap[jj] = 1;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3481 smallest_prev = last + 1;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3482 if (smallest_prev >= 0x80)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3483 break;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3484 }
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3485 /* Calculating which leading bytes are actually allowed
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3486 here is rather difficult, so we just punt and allow
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3487 all of them. */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3488 for (i = 0x80; i < 0xA0; i++)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3489 fastmap[i] = 1;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3490 }
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3491 break;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3492 #endif /* MULE */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3493
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3494
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3495 case wordchar:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3496 #ifdef emacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3497 k = (int) Sword;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3498 goto matchsyntax;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3499 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3500 for (j = 0; j < (1 << BYTEWIDTH); j++)
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3501 if (SYNTAX_UNSAFE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3502 (XCHAR_TABLE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3503 (regex_emacs_buffer->mirror_syntax_table), j) == Sword)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3504 fastmap[j] = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3505 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3506 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3507
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3508
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3509 case notwordchar:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3510 #ifdef emacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3511 k = (int) Sword;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3512 goto matchnotsyntax;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3513 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3514 for (j = 0; j < (1 << BYTEWIDTH); j++)
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3515 if (SYNTAX_UNSAFE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3516 (XCHAR_TABLE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3517 (regex_emacs_buffer->mirror_syntax_table), j) != Sword)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3518 fastmap[j] = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3519 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3520 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3521
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3522
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3523 case anychar:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3524 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3525 int fastmap_newline = fastmap['\n'];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3526
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3527 /* `.' matches anything ... */
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3528 #ifdef MULE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3529 /* "anything" only includes bytes that can be the
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3530 first byte of a character. */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3531 for (j = 0; j < 0xA0; j++)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3532 fastmap[j] = 1;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3533 #else
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3534 for (j = 0; j < (1 << BYTEWIDTH); j++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3535 fastmap[j] = 1;
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3536 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3537
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3538 /* ... except perhaps newline. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3539 if (!(bufp->syntax & RE_DOT_NEWLINE))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3540 fastmap['\n'] = fastmap_newline;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3541
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3542 /* Return if we have already set `can_be_null'; if we have,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3543 then the fastmap is irrelevant. Something's wrong here. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3544 else if (bufp->can_be_null)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3545 goto done;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3546
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3547 /* Otherwise, have to check alternative paths. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3548 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3549 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3550
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3551 #ifdef emacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3552 case syntaxspec:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3553 k = *p++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3554 matchsyntax:
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3555 #ifdef MULE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3556 for (j = 0; j < 0x80; j++)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3557 if (SYNTAX_UNSAFE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3558 (XCHAR_TABLE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3559 (regex_emacs_buffer->mirror_syntax_table), j) ==
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3560 (enum syntaxcode) k)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3561 fastmap[j] = 1;
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3562 for (j = 0x80; j < 0xA0; j++)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3563 {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3564 if (j == PRE_LEADING_BYTE_PRIVATE_1
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3565 || j == PRE_LEADING_BYTE_PRIVATE_2)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3566 /* too complicated to calculate this right */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3567 fastmap[j] = 1;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3568 else
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3569 {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3570 int multi_p;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3571 Lisp_Object cset;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3572
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3573 cset = CHARSET_BY_LEADING_BYTE (j);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3574 if (CHARSETP (cset))
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3575 {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3576 if (charset_syntax (regex_emacs_buffer, cset,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3577 &multi_p)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3578 == Sword || multi_p)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3579 fastmap[j] = 1;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3580 }
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3581 }
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3582 }
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3583 #else /* ! MULE */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3584 for (j = 0; j < (1 << BYTEWIDTH); j++)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3585 if (SYNTAX_UNSAFE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3586 (XCHAR_TABLE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3587 (regex_emacs_buffer->mirror_syntax_table), j) ==
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3588 (enum syntaxcode) k)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3589 fastmap[j] = 1;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3590 #endif /* ! MULE */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3591 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3592
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3593
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3594 case notsyntaxspec:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3595 k = *p++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3596 matchnotsyntax:
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3597 #ifdef MULE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3598 for (j = 0; j < 0x80; j++)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3599 if (SYNTAX_UNSAFE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3600 (XCHAR_TABLE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3601 (regex_emacs_buffer->mirror_syntax_table), j) !=
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3602 (enum syntaxcode) k)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3603 fastmap[j] = 1;
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3604 for (j = 0x80; j < 0xA0; j++)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3605 {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3606 if (j == PRE_LEADING_BYTE_PRIVATE_1
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3607 || j == PRE_LEADING_BYTE_PRIVATE_2)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3608 /* too complicated to calculate this right */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3609 fastmap[j] = 1;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3610 else
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3611 {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3612 int multi_p;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3613 Lisp_Object cset;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3614
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3615 cset = CHARSET_BY_LEADING_BYTE (j);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3616 if (CHARSETP (cset))
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3617 {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3618 if (charset_syntax (regex_emacs_buffer, cset,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3619 &multi_p)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3620 != Sword || multi_p)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3621 fastmap[j] = 1;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3622 }
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3623 }
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3624 }
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3625 #else /* ! MULE */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3626 for (j = 0; j < (1 << BYTEWIDTH); j++)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3627 if (SYNTAX_UNSAFE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3628 (XCHAR_TABLE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3629 (regex_emacs_buffer->mirror_syntax_table), j) !=
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3630 (enum syntaxcode) k)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3631 fastmap[j] = 1;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
3632 #endif /* ! MULE */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3633 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3634
104
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
3635 #ifdef MULE
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
3636 /* 97/2/17 jhod category patch */
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
3637 case categoryspec:
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
3638 case notcategoryspec:
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
3639 bufp->can_be_null = 1;
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
3640 return;
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
3641 /* end if category patch */
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
3642 #endif /* MULE */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3643
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3644 /* All cases after this match the empty string. These end with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3645 `continue'. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3646
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3647
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3648 case before_dot:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3649 case at_dot:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3650 case after_dot:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3651 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3652 #endif /* not emacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3653
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3654
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3655 case no_op:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3656 case begline:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3657 case endline:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3658 case begbuf:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3659 case endbuf:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3660 case wordbound:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3661 case notwordbound:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3662 case wordbeg:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3663 case wordend:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3664 case push_dummy_failure:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3665 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3666
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3667
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3668 case jump_n:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3669 case pop_failure_jump:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3670 case maybe_pop_jump:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3671 case jump:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3672 case jump_past_alt:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3673 case dummy_failure_jump:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3674 EXTRACT_NUMBER_AND_INCR (j, p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3675 p += j;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3676 if (j > 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3677 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3678
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3679 /* Jump backward implies we just went through the body of a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3680 loop and matched nothing. Opcode jumped to should be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3681 `on_failure_jump' or `succeed_n'. Just treat it like an
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3682 ordinary jump. For a * loop, it has pushed its failure
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3683 point already; if so, discard that as redundant. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3684 if ((re_opcode_t) *p != on_failure_jump
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3685 && (re_opcode_t) *p != succeed_n)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3686 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3687
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3688 p++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3689 EXTRACT_NUMBER_AND_INCR (j, p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3690 p += j;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3691
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3692 /* If what's on the stack is where we are now, pop it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3693 if (!FAIL_STACK_EMPTY ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3694 && fail_stack.stack[fail_stack.avail - 1].pointer == p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3695 fail_stack.avail--;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3696
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3697 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3698
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3699
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3700 case on_failure_jump:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3701 case on_failure_keep_string_jump:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3702 handle_on_failure_jump:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3703 EXTRACT_NUMBER_AND_INCR (j, p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3704
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3705 /* For some patterns, e.g., `(a?)?', `p+j' here points to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3706 end of the pattern. We don't want to push such a point,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3707 since when we restore it above, entering the switch will
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3708 increment `p' past the end of the pattern. We don't need
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3709 to push such a point since we obviously won't find any more
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3710 fastmap entries beyond `pend'. Such a pattern can match
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3711 the null string, though. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3712 if (p + j < pend)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3713 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3714 if (!PUSH_PATTERN_OP (p + j, fail_stack))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3715 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3716 RESET_FAIL_STACK ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3717 return -2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3718 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3719 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3720 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3721 bufp->can_be_null = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3722
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3723 if (succeed_n_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3724 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3725 EXTRACT_NUMBER_AND_INCR (k, p); /* Skip the n. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3726 succeed_n_p = false;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3727 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3728
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3729 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3730
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3731
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3732 case succeed_n:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3733 /* Get to the number of times to succeed. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3734 p += 2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3735
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3736 /* Increment p past the n for when k != 0. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3737 EXTRACT_NUMBER_AND_INCR (k, p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3738 if (k == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3739 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3740 p -= 4;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3741 succeed_n_p = true; /* Spaghetti code alert. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3742 goto handle_on_failure_jump;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3743 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3744 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3745
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3746
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3747 case set_number_at:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3748 p += 4;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3749 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3750
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3751
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3752 case start_memory:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3753 case stop_memory:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3754 p += 2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3755 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3756
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3757
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3758 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3759 abort (); /* We have listed all the cases. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3760 } /* switch *p++ */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3761
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3762 /* Getting here means we have found the possible starting
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3763 characters for one path of the pattern -- and that the empty
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3764 string does not match. We need not follow this path further.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3765 Instead, look at the next alternative (remembered on the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3766 stack), or quit if no more. The test at the top of the loop
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3767 does these things. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3768 path_can_be_null = false;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3769 p = pend;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3770 } /* while p */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3771
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3772 /* Set `can_be_null' for the last path (also the first path, if the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3773 pattern is empty). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3774 bufp->can_be_null |= path_can_be_null;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3775
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3776 done:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3777 RESET_FAIL_STACK ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3778 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3779 } /* re_compile_fastmap */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3780
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3781 /* Set REGS to hold NUM_REGS registers, storing them in STARTS and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3782 ENDS. Subsequent matches using PATTERN_BUFFER and REGS will use
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3783 this memory for recording register information. STARTS and ENDS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3784 must be allocated using the malloc library routine, and must each
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3785 be at least NUM_REGS * sizeof (regoff_t) bytes long.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3786
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3787 If NUM_REGS == 0, then subsequent matches should allocate their own
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3788 register data.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3789
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3790 Unless this function is called, the first search or match using
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3791 PATTERN_BUFFER will allocate its own register data, without
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3792 freeing the old data. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3793
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3794 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3795 re_set_registers (struct re_pattern_buffer *bufp, struct re_registers *regs,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3796 unsigned num_regs, regoff_t *starts, regoff_t *ends)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3797 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3798 if (num_regs)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3799 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3800 bufp->regs_allocated = REGS_REALLOCATE;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3801 regs->num_regs = num_regs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3802 regs->start = starts;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3803 regs->end = ends;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3804 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3805 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3806 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3807 bufp->regs_allocated = REGS_UNALLOCATED;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3808 regs->num_regs = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3809 regs->start = regs->end = (regoff_t *) 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3810 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3811 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3812
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3813 /* Searching routines. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3814
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3815 /* Like re_search_2, below, but only one string is specified, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3816 doesn't let you say where to stop matching. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3817
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3818 int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3819 re_search (struct re_pattern_buffer *bufp, CONST char *string, int size,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3820 int startpos, int range, struct re_registers *regs)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3821 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3822 return re_search_2 (bufp, NULL, 0, string, size, startpos, range,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3823 regs, size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3824 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3825
102
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 82
diff changeset
3826 #ifndef emacs
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 82
diff changeset
3827 /* Snarfed from src/lisp.h, needed for compiling [ce]tags. */
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 82
diff changeset
3828 # define bytecount_to_charcount(ptr, len) (len)
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 82
diff changeset
3829 # define charcount_to_bytecount(ptr, len) (len)
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 82
diff changeset
3830 typedef int Charcount;
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 82
diff changeset
3831 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3832
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3833 /* Using the compiled pattern in BUFP->buffer, first tries to match the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3834 virtual concatenation of STRING1 and STRING2, starting first at index
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3835 STARTPOS, then at STARTPOS + 1, and so on.
102
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 82
diff changeset
3836
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 82
diff changeset
3837 With MULE, STARTPOS is a byte position, not a char position. And the
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 82
diff changeset
3838 search will increment STARTPOS by the width of the current leading
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 82
diff changeset
3839 character.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3840
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3841 STRING1 and STRING2 have length SIZE1 and SIZE2, respectively.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3842
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3843 RANGE is how far to scan while trying to match. RANGE = 0 means try
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3844 only at STARTPOS; in general, the last start tried is STARTPOS +
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3845 RANGE.
102
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 82
diff changeset
3846
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 82
diff changeset
3847 With MULE, RANGE is a byte position, not a char position. The last
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 82
diff changeset
3848 start tried is the character starting <= STARTPOS + RANGE.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3849
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3850 In REGS, return the indices of the virtual concatenation of STRING1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3851 and STRING2 that matched the entire BUFP->buffer and its contained
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3852 subexpressions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3853
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3854 Do not consider matching one past the index STOP in the virtual
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3855 concatenation of STRING1 and STRING2.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3856
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3857 We return either the position in the strings at which the match was
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3858 found, -1 if no match, or -2 if error (such as failure
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3859 stack overflow). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3860
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3861 int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3862 re_search_2 (struct re_pattern_buffer *bufp, CONST char *string1,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3863 int size1, CONST char *string2, int size2, int startpos,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3864 int range, struct re_registers *regs, int stop)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3865 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3866 int val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3867 register char *fastmap = bufp->fastmap;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3868 register char *translate = bufp->translate;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3869 int total_size = size1 + size2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3870 int endpos = startpos + range;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3871 #ifdef REGEX_BEGLINE_CHECK
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3872 int anchored_at_begline = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3873 #endif
104
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
3874 CONST unsigned char *d;
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
3875 Charcount d_size;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3876
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3877 /* Check for out-of-range STARTPOS. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3878 if (startpos < 0 || startpos > total_size)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3879 return -1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3880
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3881 /* Fix up RANGE if it might eventually take us outside
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3882 the virtual concatenation of STRING1 and STRING2. */
102
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 82
diff changeset
3883 if (endpos < 0)
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 82
diff changeset
3884 range = 0 - startpos;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3885 else if (endpos > total_size)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3886 range = total_size - startpos;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3887
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3888 /* If the search isn't to be a backwards one, don't waste time in a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3889 search for a pattern that must be anchored. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3890 if (bufp->used > 0 && (re_opcode_t) bufp->buffer[0] == begbuf && range > 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3891 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3892 if (startpos > 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3893 return -1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3894 else
126
1370575f1259 Import from CVS: tag xemacs-20-1p1
cvs
parents: 110
diff changeset
3895 {
1370575f1259 Import from CVS: tag xemacs-20-1p1
cvs
parents: 110
diff changeset
3896 d = ((CONST unsigned char *)
1370575f1259 Import from CVS: tag xemacs-20-1p1
cvs
parents: 110
diff changeset
3897 (startpos >= size1 ? string2 - size1 : string1) + startpos);
1370575f1259 Import from CVS: tag xemacs-20-1p1
cvs
parents: 110
diff changeset
3898 range = charcount_to_bytecount (d, 1);
1370575f1259 Import from CVS: tag xemacs-20-1p1
cvs
parents: 110
diff changeset
3899 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3900 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3901
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3902 /* Update the fastmap now if not correct already. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3903 if (fastmap && !bufp->fastmap_accurate)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3904 if (re_compile_fastmap (bufp) == -2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3905 return -2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3906
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3907 #ifdef REGEX_BEGLINE_CHECK
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3908 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3909 int i = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3910
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3911 while (i < bufp->used)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3912 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3913 if (bufp->buffer[i] == start_memory ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3914 bufp->buffer[i] == stop_memory)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3915 i += 2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3916 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3917 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3918 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3919 anchored_at_begline = i < bufp->used && bufp->buffer[i] == begline;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3920 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3921 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3922
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3923 /* Loop through the string, looking for a place to start matching. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3924 for (;;)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3925 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3926 #ifdef REGEX_BEGLINE_CHECK
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3927 /* If the regex is anchored at the beginning of a line (i.e. with a ^),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3928 then we can speed things up by skipping to the next beginning-of-
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3929 line. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3930 if (anchored_at_begline && startpos > 0 && startpos != size1 &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3931 range > 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3932 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3933 /* whose stupid idea was it anyway to make this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3934 function take two strings to match?? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3935 int lim = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3936 int irange = range;
102
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 82
diff changeset
3937
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3938 if (startpos < size1 && startpos + range >= size1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3939 lim = range - (size1 - startpos);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3940
102
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 82
diff changeset
3941 d = ((CONST unsigned char *)
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 82
diff changeset
3942 (startpos >= size1 ? string2 - size1 : string1) + startpos);
104
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
3943 DEC_CHARPTR(d); /* Ok, since startpos != size1. */
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
3944 d_size = charcount_to_bytecount (d, 1);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3945
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3946 if (translate)
102
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 82
diff changeset
3947 #ifdef MULE
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 82
diff changeset
3948 while (range > lim && (*d >= 0x80 || translate[*d] != '\n'))
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 82
diff changeset
3949 #else
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 82
diff changeset
3950 while (range > lim && translate[*d] != '\n')
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 82
diff changeset
3951 #endif
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 82
diff changeset
3952 {
104
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
3953 d += d_size; /* Speedier INC_CHARPTR(d) */
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
3954 d_size = charcount_to_bytecount (d, 1);
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
3955 range -= d_size;
102
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 82
diff changeset
3956 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3957 else
102
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 82
diff changeset
3958 while (range > lim && *d != '\n')
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 82
diff changeset
3959 {
104
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
3960 d += d_size; /* Speedier INC_CHARPTR(d) */
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
3961 d_size = charcount_to_bytecount (d, 1);
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
3962 range -= d_size;
102
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 82
diff changeset
3963 }
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 82
diff changeset
3964
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3965 startpos += irange - range;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3966 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3967 #endif /* REGEX_BEGLINE_CHECK */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3968
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3969 /* If a fastmap is supplied, skip quickly over characters that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3970 cannot be the start of a match. If the pattern can match the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3971 null string, however, we don't need to skip characters; we want
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3972 the first null string. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3973 if (fastmap && startpos < total_size && !bufp->can_be_null)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3974 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3975 if (range > 0) /* Searching forwards. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3976 {
104
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
3977 int lim = 0;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3978 int irange = range;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3979
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3980 if (startpos < size1 && startpos + range >= size1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3981 lim = range - (size1 - startpos);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3982
102
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 82
diff changeset
3983 d = ((CONST unsigned char *)
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 82
diff changeset
3984 (startpos >= size1 ? string2 - size1 : string1) + startpos);
104
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
3985
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3986 /* Written out as an if-else to avoid testing `translate'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3987 inside the loop. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3988 if (translate)
102
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 82
diff changeset
3989 #ifdef MULE
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 82
diff changeset
3990 while (range > lim && *d < 0x80 && !fastmap[translate[*d]])
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 82
diff changeset
3991 #else
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 82
diff changeset
3992 while (range > lim && !fastmap[translate[*d]])
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 82
diff changeset
3993 #endif
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 82
diff changeset
3994 {
104
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
3995 d_size = charcount_to_bytecount (d, 1);
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
3996 range -= d_size;
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
3997 d += d_size; /* Speedier INC_CHARPTR(d) */
102
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 82
diff changeset
3998 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3999 else
102
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 82
diff changeset
4000 while (range > lim && !fastmap[*d])
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 82
diff changeset
4001 {
104
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
4002 d_size = charcount_to_bytecount (d, 1);
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
4003 range -= d_size;
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
4004 d += d_size; /* Speedier INC_CHARPTR(d) */
102
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 82
diff changeset
4005 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4006
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4007 startpos += irange - range;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4008 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4009 else /* Searching backwards. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4010 {
104
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
4011 unsigned char c = (size1 == 0 || startpos >= size1
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
4012 ? string2[startpos - size1]
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
4013 : string1[startpos]);
102
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 82
diff changeset
4014 #ifdef MULE
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 82
diff changeset
4015 if (c < 0x80 && !fastmap[(unsigned char) TRANSLATE (c)])
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 82
diff changeset
4016 #else
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4017 if (!fastmap[(unsigned char) TRANSLATE (c)])
102
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 82
diff changeset
4018 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4019 goto advance;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4020 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4021 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4022
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4023 /* If can't match the null string, and that's all we have left, fail. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4024 if (range >= 0 && startpos == total_size && fastmap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4025 && !bufp->can_be_null)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4026 return -1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4027
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4028 #ifdef emacs /* XEmacs added, w/removal of immediate_quit */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4029 if (!no_quit_in_re_search)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4030 QUIT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4031 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4032 val = re_match_2_internal (bufp, string1, size1, string2, size2,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4033 startpos, regs, stop);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4034 #ifndef REGEX_MALLOC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4035 #ifdef C_ALLOCA
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4036 alloca (0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4037 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4038 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4039
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4040 if (val >= 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4041 return startpos;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4042
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4043 if (val == -2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4044 return -2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4045
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4046 advance:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4047 if (!range)
102
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 82
diff changeset
4048 break;
104
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
4049 else if (range > 0)
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
4050 {
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
4051 d = ((CONST unsigned char *)
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
4052 (startpos >= size1 ? string2 - size1 : string1) + startpos);
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
4053 d_size = charcount_to_bytecount (d, 1);
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
4054 range -= d_size;
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
4055 startpos += d_size;
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
4056 }
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
4057 else
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
4058 {
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
4059 /* Note startpos > size1 not >=. If we are on the
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
4060 string1/string2 boundary, we want to backup into string1. */
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
4061 d = ((CONST unsigned char *)
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
4062 (startpos > size1 ? string2 - size1 : string1) + startpos);
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
4063 DEC_CHARPTR(d);
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
4064 d_size = charcount_to_bytecount (d, 1);
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
4065 range += d_size;
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
4066 startpos -= d_size;
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
4067 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4068 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4069 return -1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4070 } /* re_search_2 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4071
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4072 /* Declarations and macros for re_match_2. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4073
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4074 /* This converts PTR, a pointer into one of the search strings `string1'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4075 and `string2' into an offset from the beginning of that string. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4076 #define POINTER_TO_OFFSET(ptr) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4077 (FIRST_STRING_P (ptr) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4078 ? ((regoff_t) ((ptr) - string1)) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4079 : ((regoff_t) ((ptr) - string2 + size1)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4080
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4081 /* Macros for dealing with the split strings in re_match_2. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4082
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4083 #define MATCHING_IN_FIRST_STRING (dend == end_match_1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4084
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4085 /* Call before fetching a character with *d. This switches over to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4086 string2 if necessary. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4087 #define PREFETCH() \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4088 while (d == dend) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4089 { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4090 /* End of string2 => fail. */ \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4091 if (dend == end_match_2) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4092 goto fail; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4093 /* End of string1 => advance to string2. */ \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4094 d = string2; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4095 dend = end_match_2; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4096 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4097
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4098
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4099 /* Test if at very beginning or at very end of the virtual concatenation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4100 of `string1' and `string2'. If only one string, it's `string2'. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4101 #define AT_STRINGS_BEG(d) ((d) == (size1 ? string1 : string2) || !size2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4102 #define AT_STRINGS_END(d) ((d) == end2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4103
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4104 /* XEmacs change:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4105 If the given position straddles the string gap, return the equivalent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4106 position that is before or after the gap, respectively; otherwise,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4107 return the same position. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4108 #define POS_BEFORE_GAP_UNSAFE(d) ((d) == string2 ? end1 : (d))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4109 #define POS_AFTER_GAP_UNSAFE(d) ((d) == end1 ? string2 : (d))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4110
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4111 /* Test if CH is a word-constituent character. (XEmacs change) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4112 #define WORDCHAR_P_UNSAFE(ch) \
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
4113 (SYNTAX_UNSAFE (XCHAR_TABLE (regex_emacs_buffer->mirror_syntax_table), \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
4114 ch) == Sword)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4115
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4116 /* Free everything we malloc. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4117 #ifdef MATCH_MAY_ALLOCATE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4118 #define FREE_VAR(var) if (var) REGEX_FREE (var); var = NULL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4119 #define FREE_VARIABLES() \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4120 do { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4121 REGEX_FREE_STACK (fail_stack.stack); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4122 FREE_VAR (regstart); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4123 FREE_VAR (regend); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4124 FREE_VAR (old_regstart); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4125 FREE_VAR (old_regend); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4126 FREE_VAR (best_regstart); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4127 FREE_VAR (best_regend); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4128 FREE_VAR (reg_info); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4129 FREE_VAR (reg_dummy); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4130 FREE_VAR (reg_info_dummy); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4131 } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4132 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4133 #define FREE_VARIABLES() ((void)0) /* Do nothing! But inhibit gcc warning. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4134 #endif /* not MATCH_MAY_ALLOCATE */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4135
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4136 /* These values must meet several constraints. They must not be valid
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4137 register values; since we have a limit of 255 registers (because
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4138 we use only one byte in the pattern for the register number), we can
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4139 use numbers larger than 255. They must differ by 1, because of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4140 NUM_FAILURE_ITEMS above. And the value for the lowest register must
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4141 be larger than the value for the highest register, so we do not try
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4142 to actually save any registers when none are active. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4143 #define NO_HIGHEST_ACTIVE_REG (1 << BYTEWIDTH)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4144 #define NO_LOWEST_ACTIVE_REG (NO_HIGHEST_ACTIVE_REG + 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4145
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4146 /* Matching routines. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4147
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4148 #ifndef emacs /* Emacs never uses this. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4149 /* re_match is like re_match_2 except it takes only a single string. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4150
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4151 int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4152 re_match (struct re_pattern_buffer *bufp, CONST char *string, int size,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4153 int pos, struct re_registers *regs)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4154 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4155 int result = re_match_2_internal (bufp, NULL, 0, string, size,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4156 pos, regs, size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4157 alloca (0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4158 return result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4159 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4160 #endif /* not emacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4161
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4162
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4163 /* re_match_2 matches the compiled pattern in BUFP against the
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
4164 (virtual) concatenation of STRING1 and STRING2 (of length SIZE1 and
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
4165 SIZE2, respectively). We start matching at POS, and stop matching
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
4166 at STOP.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4167
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4168 If REGS is non-null and the `no_sub' field of BUFP is nonzero, we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4169 store offsets for the substring each group matched in REGS. See the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4170 documentation for exactly how many groups we fill.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4171
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4172 We return -1 if no match, -2 if an internal error (such as the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4173 failure stack overflowing). Otherwise, we return the length of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4174 matched substring. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4175
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4176 int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4177 re_match_2 (struct re_pattern_buffer *bufp, CONST char *string1,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4178 int size1, CONST char *string2, int size2, int pos,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4179 struct re_registers *regs, int stop)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4180 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4181 int result = re_match_2_internal (bufp, string1, size1, string2, size2,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4182 pos, regs, stop);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4183 alloca (0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4184 return result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4185 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4186
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4187 /* This is a separate function so that we can force an alloca cleanup
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4188 afterwards. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4189 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4190 re_match_2_internal (struct re_pattern_buffer *bufp, CONST char *string1,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4191 int size1, CONST char *string2, int size2, int pos,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4192 struct re_registers *regs, int stop)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4193 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4194 /* General temporaries. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4195 int mcnt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4196 unsigned char *p1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4197 int should_succeed; /* XEmacs change */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4198
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4199 /* Just past the end of the corresponding string. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4200 CONST char *end1, *end2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4201
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4202 /* Pointers into string1 and string2, just past the last characters in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4203 each to consider matching. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4204 CONST char *end_match_1, *end_match_2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4205
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4206 /* Where we are in the data, and the end of the current string. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4207 CONST char *d, *dend;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4208
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4209 /* Where we are in the pattern, and the end of the pattern. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4210 unsigned char *p = bufp->buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4211 register unsigned char *pend = p + bufp->used;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4212
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4213 /* Mark the opcode just after a start_memory, so we can test for an
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4214 empty subpattern when we get to the stop_memory. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4215 unsigned char *just_past_start_mem = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4216
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4217 /* We use this to map every character in the string. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4218 char *translate = bufp->translate;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4219
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4220 /* Failure point stack. Each place that can handle a failure further
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4221 down the line pushes a failure point on this stack. It consists of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4222 restart, regend, and reg_info for all registers corresponding to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4223 the subexpressions we're currently inside, plus the number of such
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4224 registers, and, finally, two char *'s. The first char * is where
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4225 to resume scanning the pattern; the second one is where to resume
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4226 scanning the strings. If the latter is zero, the failure point is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4227 a ``dummy''; if a failure happens and the failure point is a dummy,
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
4228 it gets discarded and the next one is tried. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4229 #ifdef MATCH_MAY_ALLOCATE /* otherwise, this is global. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4230 fail_stack_type fail_stack;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4231 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4232 #ifdef DEBUG
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4233 static unsigned failure_id;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4234 unsigned nfailure_points_pushed = 0, nfailure_points_popped = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4235 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4236
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4237 #ifdef REL_ALLOC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4238 /* This holds the pointer to the failure stack, when
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4239 it is allocated relocatably. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4240 fail_stack_elt_t *failure_stack_ptr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4241 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4242
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4243 /* We fill all the registers internally, independent of what we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4244 return, for use in backreferences. The number here includes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4245 an element for register zero. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4246 unsigned num_regs = bufp->re_nsub + 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4247
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4248 /* The currently active registers. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4249 unsigned lowest_active_reg = NO_LOWEST_ACTIVE_REG;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4250 unsigned highest_active_reg = NO_HIGHEST_ACTIVE_REG;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4251
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4252 /* Information on the contents of registers. These are pointers into
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4253 the input strings; they record just what was matched (on this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4254 attempt) by a subexpression part of the pattern, that is, the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4255 regnum-th regstart pointer points to where in the pattern we began
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4256 matching and the regnum-th regend points to right after where we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4257 stopped matching the regnum-th subexpression. (The zeroth register
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4258 keeps track of what the whole pattern matches.) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4259 #ifdef MATCH_MAY_ALLOCATE /* otherwise, these are global. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4260 CONST char **regstart, **regend;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4261 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4262
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4263 /* If a group that's operated upon by a repetition operator fails to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4264 match anything, then the register for its start will need to be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4265 restored because it will have been set to wherever in the string we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4266 are when we last see its open-group operator. Similarly for a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4267 register's end. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4268 #ifdef MATCH_MAY_ALLOCATE /* otherwise, these are global. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4269 CONST char **old_regstart, **old_regend;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4270 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4271
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4272 /* The is_active field of reg_info helps us keep track of which (possibly
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4273 nested) subexpressions we are currently in. The matched_something
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4274 field of reg_info[reg_num] helps us tell whether or not we have
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4275 matched any of the pattern so far this time through the reg_num-th
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4276 subexpression. These two fields get reset each time through any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4277 loop their register is in. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4278 #ifdef MATCH_MAY_ALLOCATE /* otherwise, this is global. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4279 register_info_type *reg_info;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4280 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4281
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4282 /* The following record the register info as found in the above
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4283 variables when we find a match better than any we've seen before.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4284 This happens as we backtrack through the failure points, which in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4285 turn happens only if we have not yet matched the entire string. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4286 unsigned best_regs_set = false;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4287 #ifdef MATCH_MAY_ALLOCATE /* otherwise, these are global. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4288 CONST char **best_regstart, **best_regend;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4289 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4290
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4291 /* Logically, this is `best_regend[0]'. But we don't want to have to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4292 allocate space for that if we're not allocating space for anything
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4293 else (see below). Also, we never need info about register 0 for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4294 any of the other register vectors, and it seems rather a kludge to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4295 treat `best_regend' differently than the rest. So we keep track of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4296 the end of the best match so far in a separate variable. We
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4297 initialize this to NULL so that when we backtrack the first time
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4298 and need to test it, it's not garbage. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4299 CONST char *match_end = NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4300
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4301 /* This helps SET_REGS_MATCHED avoid doing redundant work. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4302 int set_regs_matched_done = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4303
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4304 /* Used when we pop values we don't care about. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4305 #ifdef MATCH_MAY_ALLOCATE /* otherwise, these are global. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4306 CONST char **reg_dummy;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4307 register_info_type *reg_info_dummy;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4308 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4309
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4310 #ifdef DEBUG
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4311 /* Counts the total number of registers pushed. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4312 unsigned num_regs_pushed = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4313 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4314
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4315 DEBUG_PRINT1 ("\n\nEntering re_match_2.\n");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4316
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4317 INIT_FAIL_STACK ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4318
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4319 #ifdef MATCH_MAY_ALLOCATE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4320 /* Do not bother to initialize all the register variables if there are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4321 no groups in the pattern, as it takes a fair amount of time. If
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4322 there are groups, we include space for register 0 (the whole
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4323 pattern), even though we never use it, since it simplifies the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4324 array indexing. We should fix this. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4325 if (bufp->re_nsub)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4326 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4327 regstart = REGEX_TALLOC (num_regs, CONST char *);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4328 regend = REGEX_TALLOC (num_regs, CONST char *);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4329 old_regstart = REGEX_TALLOC (num_regs, CONST char *);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4330 old_regend = REGEX_TALLOC (num_regs, CONST char *);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4331 best_regstart = REGEX_TALLOC (num_regs, CONST char *);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4332 best_regend = REGEX_TALLOC (num_regs, CONST char *);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4333 reg_info = REGEX_TALLOC (num_regs, register_info_type);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4334 reg_dummy = REGEX_TALLOC (num_regs, CONST char *);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4335 reg_info_dummy = REGEX_TALLOC (num_regs, register_info_type);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4336
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4337 if (!(regstart && regend && old_regstart && old_regend && reg_info
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4338 && best_regstart && best_regend && reg_dummy && reg_info_dummy))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4339 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4340 FREE_VARIABLES ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4341 return -2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4342 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4343 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4344 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4345 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4346 /* We must initialize all our variables to NULL, so that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4347 `FREE_VARIABLES' doesn't try to free them. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4348 regstart = regend = old_regstart = old_regend = best_regstart
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4349 = best_regend = reg_dummy = NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4350 reg_info = reg_info_dummy = (register_info_type *) NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4351 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4352 #endif /* MATCH_MAY_ALLOCATE */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4353
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4354 /* The starting position is bogus. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4355 if (pos < 0 || pos > size1 + size2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4356 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4357 FREE_VARIABLES ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4358 return -1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4359 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4360
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4361 /* Initialize subexpression text positions to -1 to mark ones that no
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4362 start_memory/stop_memory has been seen for. Also initialize the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4363 register information struct. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4364 for (mcnt = 1; mcnt < num_regs; mcnt++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4365 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4366 regstart[mcnt] = regend[mcnt]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4367 = old_regstart[mcnt] = old_regend[mcnt] = REG_UNSET_VALUE;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4368
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4369 REG_MATCH_NULL_STRING_P (reg_info[mcnt]) = MATCH_NULL_UNSET_VALUE;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4370 IS_ACTIVE (reg_info[mcnt]) = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4371 MATCHED_SOMETHING (reg_info[mcnt]) = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4372 EVER_MATCHED_SOMETHING (reg_info[mcnt]) = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4373 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4374
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4375 /* We move `string1' into `string2' if the latter's empty -- but not if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4376 `string1' is null. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4377 if (size2 == 0 && string1 != NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4378 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4379 string2 = string1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4380 size2 = size1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4381 string1 = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4382 size1 = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4383 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4384 end1 = string1 + size1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4385 end2 = string2 + size2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4386
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4387 /* Compute where to stop matching, within the two strings. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4388 if (stop <= size1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4389 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4390 end_match_1 = string1 + stop;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4391 end_match_2 = string2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4392 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4393 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4394 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4395 end_match_1 = end1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4396 end_match_2 = string2 + stop - size1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4397 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4398
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4399 /* `p' scans through the pattern as `d' scans through the data.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4400 `dend' is the end of the input string that `d' points within. `d'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4401 is advanced into the following input string whenever necessary, but
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4402 this happens before fetching; therefore, at the beginning of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4403 loop, `d' can be pointing at the end of a string, but it cannot
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4404 equal `string2'. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4405 if (size1 > 0 && pos <= size1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4406 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4407 d = string1 + pos;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4408 dend = end_match_1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4409 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4410 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4411 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4412 d = string2 + pos - size1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4413 dend = end_match_2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4414 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4415
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4416 DEBUG_PRINT1 ("The compiled pattern is: ");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4417 DEBUG_PRINT_COMPILED_PATTERN (bufp, p, pend);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4418 DEBUG_PRINT1 ("The string to match is: `");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4419 DEBUG_PRINT_DOUBLE_STRING (d, string1, size1, string2, size2);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4420 DEBUG_PRINT1 ("'\n");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4421
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4422 /* This loops over pattern commands. It exits by returning from the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4423 function if the match is complete, or it drops through if the match
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4424 fails at this starting point in the input data. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4425 for (;;)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4426 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4427 DEBUG_PRINT2 ("\n0x%lx: ", (unsigned long) p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4428
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4429 if (p == pend)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4430 { /* End of pattern means we might have succeeded. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4431 DEBUG_PRINT1 ("end of pattern ... ");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4432
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4433 /* If we haven't matched the entire string, and we want the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4434 longest match, try backtracking. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4435 if (d != end_match_2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4436 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4437 /* 1 if this match ends in the same string (string1 or string2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4438 as the best previous match. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4439 boolean same_str_p = (FIRST_STRING_P (match_end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4440 == MATCHING_IN_FIRST_STRING);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4441 /* 1 if this match is the best seen so far. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4442 boolean best_match_p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4443
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4444 /* AIX compiler got confused when this was combined
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4445 with the previous declaration. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4446 if (same_str_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4447 best_match_p = d > match_end;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4448 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4449 best_match_p = !MATCHING_IN_FIRST_STRING;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4450
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4451 DEBUG_PRINT1 ("backtracking.\n");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4452
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4453 if (!FAIL_STACK_EMPTY ())
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4454 { /* More failure points to try. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4455
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4456 /* If exceeds best match so far, save it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4457 if (!best_regs_set || best_match_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4458 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4459 best_regs_set = true;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4460 match_end = d;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4461
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4462 DEBUG_PRINT1 ("\nSAVING match as best so far.\n");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4463
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4464 for (mcnt = 1; mcnt < num_regs; mcnt++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4465 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4466 best_regstart[mcnt] = regstart[mcnt];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4467 best_regend[mcnt] = regend[mcnt];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4468 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4469 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4470 goto fail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4471 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4472
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4473 /* If no failure points, don't restore garbage. And if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4474 last match is real best match, don't restore second
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4475 best one. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4476 else if (best_regs_set && !best_match_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4477 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4478 restore_best_regs:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4479 /* Restore best match. It may happen that `dend ==
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4480 end_match_1' while the restored d is in string2.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4481 For example, the pattern `x.*y.*z' against the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4482 strings `x-' and `y-z-', if the two strings are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4483 not consecutive in memory. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4484 DEBUG_PRINT1 ("Restoring best registers.\n");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4485
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4486 d = match_end;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4487 dend = ((d >= string1 && d <= end1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4488 ? end_match_1 : end_match_2);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4489
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4490 for (mcnt = 1; mcnt < num_regs; mcnt++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4491 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4492 regstart[mcnt] = best_regstart[mcnt];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4493 regend[mcnt] = best_regend[mcnt];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4494 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4495 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4496 } /* d != end_match_2 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4497
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4498 succeed_label:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4499 DEBUG_PRINT1 ("Accepting match.\n");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4500
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4501 /* If caller wants register contents data back, do it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4502 if (regs && !bufp->no_sub)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4503 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4504 /* Have the register data arrays been allocated? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4505 if (bufp->regs_allocated == REGS_UNALLOCATED)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4506 { /* No. So allocate them with malloc. We need one
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4507 extra element beyond `num_regs' for the `-1' marker
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4508 GNU code uses. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4509 regs->num_regs = MAX (RE_NREGS, num_regs + 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4510 regs->start = TALLOC (regs->num_regs, regoff_t);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4511 regs->end = TALLOC (regs->num_regs, regoff_t);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4512 if (regs->start == NULL || regs->end == NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4513 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4514 FREE_VARIABLES ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4515 return -2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4516 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4517 bufp->regs_allocated = REGS_REALLOCATE;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4518 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4519 else if (bufp->regs_allocated == REGS_REALLOCATE)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4520 { /* Yes. If we need more elements than were already
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4521 allocated, reallocate them. If we need fewer, just
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4522 leave it alone. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4523 if (regs->num_regs < num_regs + 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4524 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4525 regs->num_regs = num_regs + 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4526 RETALLOC (regs->start, regs->num_regs, regoff_t);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4527 RETALLOC (regs->end, regs->num_regs, regoff_t);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4528 if (regs->start == NULL || regs->end == NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4529 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4530 FREE_VARIABLES ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4531 return -2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4532 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4533 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4534 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4535 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4536 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4537 /* These braces fend off a "empty body in an else-statement"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4538 warning under GCC when assert expands to nothing. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4539 assert (bufp->regs_allocated == REGS_FIXED);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4540 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4541
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4542 /* Convert the pointer data in `regstart' and `regend' to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4543 indices. Register zero has to be set differently,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4544 since we haven't kept track of any info for it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4545 if (regs->num_regs > 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4546 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4547 regs->start[0] = pos;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4548 regs->end[0] = (MATCHING_IN_FIRST_STRING
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4549 ? ((regoff_t) (d - string1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4550 : ((regoff_t) (d - string2 + size1)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4551 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4552
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4553 /* Go through the first `min (num_regs, regs->num_regs)'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4554 registers, since that is all we initialized. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4555 for (mcnt = 1; mcnt < MIN (num_regs, regs->num_regs); mcnt++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4556 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4557 if (REG_UNSET (regstart[mcnt]) || REG_UNSET (regend[mcnt]))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4558 regs->start[mcnt] = regs->end[mcnt] = -1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4559 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4560 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4561 regs->start[mcnt]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4562 = (regoff_t) POINTER_TO_OFFSET (regstart[mcnt]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4563 regs->end[mcnt]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4564 = (regoff_t) POINTER_TO_OFFSET (regend[mcnt]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4565 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4566 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4567
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4568 /* If the regs structure we return has more elements than
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4569 were in the pattern, set the extra elements to -1. If
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4570 we (re)allocated the registers, this is the case,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4571 because we always allocate enough to have at least one
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4572 -1 at the end. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4573 for (mcnt = num_regs; mcnt < regs->num_regs; mcnt++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4574 regs->start[mcnt] = regs->end[mcnt] = -1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4575 } /* regs && !bufp->no_sub */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4576
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4577 DEBUG_PRINT4 ("%u failure points pushed, %u popped (%u remain).\n",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4578 nfailure_points_pushed, nfailure_points_popped,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4579 nfailure_points_pushed - nfailure_points_popped);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4580 DEBUG_PRINT2 ("%u registers pushed.\n", num_regs_pushed);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4581
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4582 mcnt = d - pos - (MATCHING_IN_FIRST_STRING
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4583 ? string1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4584 : string2 - size1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4585
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4586 DEBUG_PRINT2 ("Returning %d from re_match_2.\n", mcnt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4587
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4588 FREE_VARIABLES ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4589 return mcnt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4590 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4591
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4592 /* Otherwise match next pattern command. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4593 switch (SWITCH_ENUM_CAST ((re_opcode_t) *p++))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4594 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4595 /* Ignore these. Used to ignore the n of succeed_n's which
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4596 currently have n == 0. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4597 case no_op:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4598 DEBUG_PRINT1 ("EXECUTING no_op.\n");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4599 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4600
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4601 case succeed:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4602 DEBUG_PRINT1 ("EXECUTING succeed.\n");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4603 goto succeed_label;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4604
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4605 /* Match the next n pattern characters exactly. The following
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4606 byte in the pattern defines n, and the n bytes after that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4607 are the characters to match. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4608 case exactn:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4609 mcnt = *p++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4610 DEBUG_PRINT2 ("EXECUTING exactn %d.\n", mcnt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4611
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4612 /* This is written out as an if-else so we don't waste time
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4613 testing `translate' inside the loop. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4614 if (translate)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4615 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4616 do
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4617 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4618 PREFETCH ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4619 if (translate[(unsigned char) *d++] != (char) *p++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4620 goto fail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4621 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4622 while (--mcnt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4623 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4624 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4625 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4626 do
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4627 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4628 PREFETCH ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4629 if (*d++ != (char) *p++) goto fail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4630 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4631 while (--mcnt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4632 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4633 SET_REGS_MATCHED ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4634 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4635
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4636
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4637 /* Match any character except possibly a newline or a null. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4638 case anychar:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4639 DEBUG_PRINT1 ("EXECUTING anychar.\n");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4640
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4641 PREFETCH ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4642
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4643 if ((!(bufp->syntax & RE_DOT_NEWLINE) && TRANSLATE (*d) == '\n')
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4644 || (bufp->syntax & RE_DOT_NOT_NULL && TRANSLATE (*d) == '\000'))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4645 goto fail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4646
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4647 SET_REGS_MATCHED ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4648 DEBUG_PRINT2 (" Matched `%d'.\n", *d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4649 INC_CHARPTR (d); /* XEmacs change */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4650 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4651
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4652
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4653 case charset:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4654 case charset_not:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4655 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4656 register unsigned char c;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4657 boolean not = (re_opcode_t) *(p - 1) == charset_not;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4658
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4659 DEBUG_PRINT2 ("EXECUTING charset%s.\n", not ? "_not" : "");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4660
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4661 PREFETCH ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4662 c = TRANSLATE (*d); /* The character to match. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4663
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4664 /* Cast to `unsigned' instead of `unsigned char' in case the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4665 bit list is a full 32 bytes long. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4666 if (c < (unsigned) (*p * BYTEWIDTH)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4667 && p[1 + c / BYTEWIDTH] & (1 << (c % BYTEWIDTH)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4668 not = !not;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4669
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4670 p += 1 + *p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4671
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4672 if (!not) goto fail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4673
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4674 SET_REGS_MATCHED ();
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
4675 INC_CHARPTR (d); /* XEmacs change */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4676 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4677 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4678
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
4679 #ifdef MULE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
4680 case charset_mule:
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
4681 case charset_mule_not:
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
4682 {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
4683 register Emchar c;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
4684 boolean not = (re_opcode_t) *(p - 1) == charset_mule_not;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
4685
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
4686 DEBUG_PRINT2 ("EXECUTING charset_mule%s.\n", not ? "_not" : "");
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
4687
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
4688 PREFETCH ();
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
4689 c = charptr_emchar ((CONST Bufbyte *) d);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
4690 c = TRANSLATE_EXTENDED_UNSAFE (c); /* The character to match. */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
4691
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
4692 if (EQ (Qt, unified_range_table_lookup (p, c, Qnil)))
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
4693 not = !not;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
4694
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
4695 p += unified_range_table_bytes_used (p);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
4696
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
4697 if (!not) goto fail;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
4698
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
4699 SET_REGS_MATCHED ();
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
4700 INC_CHARPTR (d);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
4701 break;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
4702 }
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
4703 #endif
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
4704
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4705
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4706 /* The beginning of a group is represented by start_memory.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4707 The arguments are the register number in the next byte, and the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4708 number of groups inner to this one in the next. The text
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4709 matched within the group is recorded (in the internal
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4710 registers data structure) under the register number. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4711 case start_memory:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4712 DEBUG_PRINT3 ("EXECUTING start_memory %d (%d):\n", *p, p[1]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4713
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4714 /* Find out if this group can match the empty string. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4715 p1 = p; /* To send to group_match_null_string_p. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4716
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4717 if (REG_MATCH_NULL_STRING_P (reg_info[*p]) == MATCH_NULL_UNSET_VALUE)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4718 REG_MATCH_NULL_STRING_P (reg_info[*p])
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4719 = group_match_null_string_p (&p1, pend, reg_info);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4720
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4721 /* Save the position in the string where we were the last time
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4722 we were at this open-group operator in case the group is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4723 operated upon by a repetition operator, e.g., with `(a*)*b'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4724 against `ab'; then we want to ignore where we are now in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4725 the string in case this attempt to match fails. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4726 old_regstart[*p] = REG_MATCH_NULL_STRING_P (reg_info[*p])
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4727 ? REG_UNSET (regstart[*p]) ? d : regstart[*p]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4728 : regstart[*p];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4729 DEBUG_PRINT2 (" old_regstart: %d\n",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4730 POINTER_TO_OFFSET (old_regstart[*p]));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4731
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4732 regstart[*p] = d;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4733 DEBUG_PRINT2 (" regstart: %d\n", POINTER_TO_OFFSET (regstart[*p]));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4734
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4735 IS_ACTIVE (reg_info[*p]) = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4736 MATCHED_SOMETHING (reg_info[*p]) = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4737
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4738 /* Clear this whenever we change the register activity status. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4739 set_regs_matched_done = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4740
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4741 /* This is the new highest active register. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4742 highest_active_reg = *p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4743
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4744 /* If nothing was active before, this is the new lowest active
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4745 register. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4746 if (lowest_active_reg == NO_LOWEST_ACTIVE_REG)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4747 lowest_active_reg = *p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4748
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4749 /* Move past the register number and inner group count. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4750 p += 2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4751 just_past_start_mem = p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4752
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4753 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4754
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4755
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4756 /* The stop_memory opcode represents the end of a group. Its
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4757 arguments are the same as start_memory's: the register
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4758 number, and the number of inner groups. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4759 case stop_memory:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4760 DEBUG_PRINT3 ("EXECUTING stop_memory %d (%d):\n", *p, p[1]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4761
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4762 /* We need to save the string position the last time we were at
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4763 this close-group operator in case the group is operated
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4764 upon by a repetition operator, e.g., with `((a*)*(b*)*)*'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4765 against `aba'; then we want to ignore where we are now in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4766 the string in case this attempt to match fails. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4767 old_regend[*p] = REG_MATCH_NULL_STRING_P (reg_info[*p])
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4768 ? REG_UNSET (regend[*p]) ? d : regend[*p]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4769 : regend[*p];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4770 DEBUG_PRINT2 (" old_regend: %d\n",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4771 POINTER_TO_OFFSET (old_regend[*p]));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4772
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4773 regend[*p] = d;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4774 DEBUG_PRINT2 (" regend: %d\n", POINTER_TO_OFFSET (regend[*p]));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4775
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4776 /* This register isn't active anymore. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4777 IS_ACTIVE (reg_info[*p]) = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4778
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4779 /* Clear this whenever we change the register activity status. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4780 set_regs_matched_done = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4781
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4782 /* If this was the only register active, nothing is active
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4783 anymore. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4784 if (lowest_active_reg == highest_active_reg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4785 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4786 lowest_active_reg = NO_LOWEST_ACTIVE_REG;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4787 highest_active_reg = NO_HIGHEST_ACTIVE_REG;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4788 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4789 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4790 { /* We must scan for the new highest active register, since
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4791 it isn't necessarily one less than now: consider
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4792 (a(b)c(d(e)f)g). When group 3 ends, after the f), the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4793 new highest active register is 1. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4794 unsigned char r = *p - 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4795 while (r > 0 && !IS_ACTIVE (reg_info[r]))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4796 r--;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4797
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4798 /* If we end up at register zero, that means that we saved
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4799 the registers as the result of an `on_failure_jump', not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4800 a `start_memory', and we jumped to past the innermost
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4801 `stop_memory'. For example, in ((.)*) we save
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4802 registers 1 and 2 as a result of the *, but when we pop
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4803 back to the second ), we are at the stop_memory 1.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4804 Thus, nothing is active. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4805 if (r == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4806 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4807 lowest_active_reg = NO_LOWEST_ACTIVE_REG;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4808 highest_active_reg = NO_HIGHEST_ACTIVE_REG;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4809 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4810 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4811 highest_active_reg = r;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4812 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4813
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4814 /* If just failed to match something this time around with a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4815 group that's operated on by a repetition operator, try to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4816 force exit from the ``loop'', and restore the register
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4817 information for this group that we had before trying this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4818 last match. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4819 if ((!MATCHED_SOMETHING (reg_info[*p])
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4820 || just_past_start_mem == p - 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4821 && (p + 2) < pend)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4822 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4823 boolean is_a_jump_n = false;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4824
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4825 p1 = p + 2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4826 mcnt = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4827 switch ((re_opcode_t) *p1++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4828 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4829 case jump_n:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4830 is_a_jump_n = true;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4831 case pop_failure_jump:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4832 case maybe_pop_jump:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4833 case jump:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4834 case dummy_failure_jump:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4835 EXTRACT_NUMBER_AND_INCR (mcnt, p1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4836 if (is_a_jump_n)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4837 p1 += 2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4838 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4839
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4840 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4841 /* do nothing */ ;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4842 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4843 p1 += mcnt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4844
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4845 /* If the next operation is a jump backwards in the pattern
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4846 to an on_failure_jump right before the start_memory
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4847 corresponding to this stop_memory, exit from the loop
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4848 by forcing a failure after pushing on the stack the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4849 on_failure_jump's jump in the pattern, and d. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4850 if (mcnt < 0 && (re_opcode_t) *p1 == on_failure_jump
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4851 && (re_opcode_t) p1[3] == start_memory && p1[4] == *p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4852 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4853 /* If this group ever matched anything, then restore
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4854 what its registers were before trying this last
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4855 failed match, e.g., with `(a*)*b' against `ab' for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4856 regstart[1], and, e.g., with `((a*)*(b*)*)*'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4857 against `aba' for regend[3].
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4858
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4859 Also restore the registers for inner groups for,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4860 e.g., `((a*)(b*))*' against `aba' (register 3 would
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4861 otherwise get trashed). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4862
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4863 if (EVER_MATCHED_SOMETHING (reg_info[*p]))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4864 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4865 unsigned r;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4866
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4867 EVER_MATCHED_SOMETHING (reg_info[*p]) = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4868
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4869 /* Restore this and inner groups' (if any) registers. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4870 for (r = *p; r < *p + *(p + 1); r++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4871 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4872 regstart[r] = old_regstart[r];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4873
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4874 /* xx why this test? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4875 if (old_regend[r] >= regstart[r])
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4876 regend[r] = old_regend[r];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4877 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4878 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4879 p1++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4880 EXTRACT_NUMBER_AND_INCR (mcnt, p1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4881 PUSH_FAILURE_POINT (p1 + mcnt, d, -2);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4882
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4883 goto fail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4884 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4885 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4886
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4887 /* Move past the register number and the inner group count. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4888 p += 2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4889 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4890
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4891
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4892 /* \<digit> has been turned into a `duplicate' command which is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4893 followed by the numeric value of <digit> as the register number. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4894 case duplicate:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4895 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4896 register CONST char *d2, *dend2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4897 int regno = *p++; /* Get which register to match against. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4898 DEBUG_PRINT2 ("EXECUTING duplicate %d.\n", regno);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4899
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4900 /* Can't back reference a group which we've never matched. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4901 if (REG_UNSET (regstart[regno]) || REG_UNSET (regend[regno]))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4902 goto fail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4903
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4904 /* Where in input to try to start matching. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4905 d2 = regstart[regno];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4906
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4907 /* Where to stop matching; if both the place to start and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4908 the place to stop matching are in the same string, then
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4909 set to the place to stop, otherwise, for now have to use
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4910 the end of the first string. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4911
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4912 dend2 = ((FIRST_STRING_P (regstart[regno])
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4913 == FIRST_STRING_P (regend[regno]))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4914 ? regend[regno] : end_match_1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4915 for (;;)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4916 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4917 /* If necessary, advance to next segment in register
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4918 contents. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4919 while (d2 == dend2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4920 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4921 if (dend2 == end_match_2) break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4922 if (dend2 == regend[regno]) break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4923
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4924 /* End of string1 => advance to string2. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4925 d2 = string2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4926 dend2 = regend[regno];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4927 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4928 /* At end of register contents => success */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4929 if (d2 == dend2) break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4930
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4931 /* If necessary, advance to next segment in data. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4932 PREFETCH ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4933
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4934 /* How many characters left in this segment to match. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4935 mcnt = dend - d;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4936
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4937 /* Want how many consecutive characters we can match in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4938 one shot, so, if necessary, adjust the count. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4939 if (mcnt > dend2 - d2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4940 mcnt = dend2 - d2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4941
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4942 /* Compare that many; failure if mismatch, else move
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4943 past them. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4944 if (translate
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4945 ? bcmp_translate ((unsigned char *) d,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4946 (unsigned char *) d2, mcnt, translate)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4947 : memcmp (d, d2, mcnt))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4948 goto fail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4949 d += mcnt, d2 += mcnt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4950
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4951 /* Do this because we've match some characters. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4952 SET_REGS_MATCHED ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4953 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4954 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4955 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4956
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4957
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4958 /* begline matches the empty string at the beginning of the string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4959 (unless `not_bol' is set in `bufp'), and, if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4960 `newline_anchor' is set, after newlines. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4961 case begline:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4962 DEBUG_PRINT1 ("EXECUTING begline.\n");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4963
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4964 if (AT_STRINGS_BEG (d))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4965 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4966 if (!bufp->not_bol) break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4967 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4968 else if (d[-1] == '\n' && bufp->newline_anchor)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4969 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4970 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4971 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4972 /* In all other cases, we fail. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4973 goto fail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4974
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4975
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4976 /* endline is the dual of begline. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4977 case endline:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4978 DEBUG_PRINT1 ("EXECUTING endline.\n");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4979
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4980 if (AT_STRINGS_END (d))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4981 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4982 if (!bufp->not_eol) break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4983 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4984
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4985 /* We have to ``prefetch'' the next character. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4986 else if ((d == end1 ? *string2 : *d) == '\n'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4987 && bufp->newline_anchor)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4988 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4989 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4990 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4991 goto fail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4992
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4993
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4994 /* Match at the very beginning of the data. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4995 case begbuf:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4996 DEBUG_PRINT1 ("EXECUTING begbuf.\n");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4997 if (AT_STRINGS_BEG (d))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4998 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4999 goto fail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5000
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5001
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5002 /* Match at the very end of the data. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5003 case endbuf:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5004 DEBUG_PRINT1 ("EXECUTING endbuf.\n");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5005 if (AT_STRINGS_END (d))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5006 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5007 goto fail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5008
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5009
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5010 /* on_failure_keep_string_jump is used to optimize `.*\n'. It
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5011 pushes NULL as the value for the string on the stack. Then
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5012 `pop_failure_point' will keep the current value for the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5013 string, instead of restoring it. To see why, consider
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5014 matching `foo\nbar' against `.*\n'. The .* matches the foo;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5015 then the . fails against the \n. But the next thing we want
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5016 to do is match the \n against the \n; if we restored the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5017 string value, we would be back at the foo.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5018
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5019 Because this is used only in specific cases, we don't need to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5020 check all the things that `on_failure_jump' does, to make
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5021 sure the right things get saved on the stack. Hence we don't
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5022 share its code. The only reason to push anything on the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5023 stack at all is that otherwise we would have to change
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5024 `anychar's code to do something besides goto fail in this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5025 case; that seems worse than this. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5026 case on_failure_keep_string_jump:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5027 DEBUG_PRINT1 ("EXECUTING on_failure_keep_string_jump");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5028
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5029 EXTRACT_NUMBER_AND_INCR (mcnt, p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5030 DEBUG_PRINT3 (" %d (to 0x%lx):\n", mcnt, (unsigned long) (p + mcnt));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5031
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5032 PUSH_FAILURE_POINT (p + mcnt, NULL, -2);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5033 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5034
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5035
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5036 /* Uses of on_failure_jump:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5037
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5038 Each alternative starts with an on_failure_jump that points
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5039 to the beginning of the next alternative. Each alternative
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5040 except the last ends with a jump that in effect jumps past
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5041 the rest of the alternatives. (They really jump to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5042 ending jump of the following alternative, because tensioning
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5043 these jumps is a hassle.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5044
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5045 Repeats start with an on_failure_jump that points past both
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5046 the repetition text and either the following jump or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5047 pop_failure_jump back to this on_failure_jump. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5048 case on_failure_jump:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5049 on_failure:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5050 DEBUG_PRINT1 ("EXECUTING on_failure_jump");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5051
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5052 EXTRACT_NUMBER_AND_INCR (mcnt, p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5053 DEBUG_PRINT3 (" %d (to 0x%lx)", mcnt, (unsigned long) (p + mcnt));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5054
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5055 /* If this on_failure_jump comes right before a group (i.e.,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5056 the original * applied to a group), save the information
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5057 for that group and all inner ones, so that if we fail back
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5058 to this point, the group's information will be correct.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5059 For example, in \(a*\)*\1, we need the preceding group,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5060 and in \(\(a*\)b*\)\2, we need the inner group. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5061
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5062 /* We can't use `p' to check ahead because we push
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5063 a failure point to `p + mcnt' after we do this. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5064 p1 = p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5065
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5066 /* We need to skip no_op's before we look for the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5067 start_memory in case this on_failure_jump is happening as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5068 the result of a completed succeed_n, as in \(a\)\{1,3\}b\1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5069 against aba. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5070 while (p1 < pend && (re_opcode_t) *p1 == no_op)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5071 p1++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5072
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5073 if (p1 < pend && (re_opcode_t) *p1 == start_memory)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5074 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5075 /* We have a new highest active register now. This will
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5076 get reset at the start_memory we are about to get to,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5077 but we will have saved all the registers relevant to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5078 this repetition op, as described above. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5079 highest_active_reg = *(p1 + 1) + *(p1 + 2);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5080 if (lowest_active_reg == NO_LOWEST_ACTIVE_REG)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5081 lowest_active_reg = *(p1 + 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5082 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5083
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5084 DEBUG_PRINT1 (":\n");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5085 PUSH_FAILURE_POINT (p + mcnt, d, -2);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5086 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5087
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5088
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5089 /* A smart repeat ends with `maybe_pop_jump'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5090 We change it to either `pop_failure_jump' or `jump'. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5091 case maybe_pop_jump:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5092 EXTRACT_NUMBER_AND_INCR (mcnt, p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5093 DEBUG_PRINT2 ("EXECUTING maybe_pop_jump %d.\n", mcnt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5094 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5095 register unsigned char *p2 = p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5096
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5097 /* Compare the beginning of the repeat with what in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5098 pattern follows its end. If we can establish that there
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5099 is nothing that they would both match, i.e., that we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5100 would have to backtrack because of (as in, e.g., `a*a')
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5101 then we can change to pop_failure_jump, because we'll
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5102 never have to backtrack.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5103
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5104 This is not true in the case of alternatives: in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5105 `(a|ab)*' we do need to backtrack to the `ab' alternative
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5106 (e.g., if the string was `ab'). But instead of trying to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5107 detect that here, the alternative has put on a dummy
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5108 failure point which is what we will end up popping. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5109
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5110 /* Skip over open/close-group commands.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5111 If what follows this loop is a ...+ construct,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5112 look at what begins its body, since we will have to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5113 match at least one of that. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5114 while (1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5115 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5116 if (p2 + 2 < pend
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5117 && ((re_opcode_t) *p2 == stop_memory
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5118 || (re_opcode_t) *p2 == start_memory))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5119 p2 += 3;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5120 else if (p2 + 6 < pend
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5121 && (re_opcode_t) *p2 == dummy_failure_jump)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5122 p2 += 6;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5123 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5124 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5125 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5126
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5127 p1 = p + mcnt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5128 /* p1[0] ... p1[2] are the `on_failure_jump' corresponding
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5129 to the `maybe_finalize_jump' of this case. Examine what
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5130 follows. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5131
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5132 /* If we're at the end of the pattern, we can change. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5133 if (p2 == pend)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5134 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5135 /* Consider what happens when matching ":\(.*\)"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5136 against ":/". I don't really understand this code
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5137 yet. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5138 p[-3] = (unsigned char) pop_failure_jump;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5139 DEBUG_PRINT1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5140 (" End of pattern: change to `pop_failure_jump'.\n");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5141 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5142
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5143 else if ((re_opcode_t) *p2 == exactn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5144 || (bufp->newline_anchor && (re_opcode_t) *p2 == endline))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5145 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5146 register unsigned char c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5147 = *p2 == (unsigned char) endline ? '\n' : p2[2];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5148
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5149 if ((re_opcode_t) p1[3] == exactn && p1[5] != c)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5150 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5151 p[-3] = (unsigned char) pop_failure_jump;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5152 DEBUG_PRINT3 (" %c != %c => pop_failure_jump.\n",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5153 c, p1[5]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5154 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5155
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5156 else if ((re_opcode_t) p1[3] == charset
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5157 || (re_opcode_t) p1[3] == charset_not)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5158 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5159 int not = (re_opcode_t) p1[3] == charset_not;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5160
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5161 if (c < (unsigned char) (p1[4] * BYTEWIDTH)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5162 && p1[5 + c / BYTEWIDTH] & (1 << (c % BYTEWIDTH)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5163 not = !not;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5164
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5165 /* `not' is equal to 1 if c would match, which means
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5166 that we can't change to pop_failure_jump. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5167 if (!not)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5168 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5169 p[-3] = (unsigned char) pop_failure_jump;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5170 DEBUG_PRINT1 (" No match => pop_failure_jump.\n");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5171 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5172 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5173 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5174 else if ((re_opcode_t) *p2 == charset)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5175 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5176 #ifdef DEBUG
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5177 register unsigned char c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5178 = *p2 == (unsigned char) endline ? '\n' : p2[2];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5179 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5180
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5181 if ((re_opcode_t) p1[3] == exactn
102
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 82
diff changeset
5182 && ! ((int) p2[1] * BYTEWIDTH > (int) p1[5]
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 82
diff changeset
5183 && (p2[2 + p1[5] / BYTEWIDTH]
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 82
diff changeset
5184 & (1 << (p1[5] % BYTEWIDTH)))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5185 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5186 p[-3] = (unsigned char) pop_failure_jump;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5187 DEBUG_PRINT3 (" %c != %c => pop_failure_jump.\n",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5188 c, p1[5]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5189 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5190
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5191 else if ((re_opcode_t) p1[3] == charset_not)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5192 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5193 int idx;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5194 /* We win if the charset_not inside the loop
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5195 lists every character listed in the charset after. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5196 for (idx = 0; idx < (int) p2[1]; idx++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5197 if (! (p2[2 + idx] == 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5198 || (idx < (int) p1[4]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5199 && ((p2[2 + idx] & ~ p1[5 + idx]) == 0))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5200 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5201
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5202 if (idx == p2[1])
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5203 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5204 p[-3] = (unsigned char) pop_failure_jump;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5205 DEBUG_PRINT1 (" No match => pop_failure_jump.\n");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5206 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5207 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5208 else if ((re_opcode_t) p1[3] == charset)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5209 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5210 int idx;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5211 /* We win if the charset inside the loop
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5212 has no overlap with the one after the loop. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5213 for (idx = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5214 idx < (int) p2[1] && idx < (int) p1[4];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5215 idx++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5216 if ((p2[2 + idx] & p1[5 + idx]) != 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5217 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5218
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5219 if (idx == p2[1] || idx == p1[4])
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5220 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5221 p[-3] = (unsigned char) pop_failure_jump;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5222 DEBUG_PRINT1 (" No match => pop_failure_jump.\n");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5223 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5224 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5225 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5226 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5227 p -= 2; /* Point at relative address again. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5228 if ((re_opcode_t) p[-1] != pop_failure_jump)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5229 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5230 p[-1] = (unsigned char) jump;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5231 DEBUG_PRINT1 (" Match => jump.\n");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5232 goto unconditional_jump;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5233 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5234 /* Note fall through. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5235
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5236
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5237 /* The end of a simple repeat has a pop_failure_jump back to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5238 its matching on_failure_jump, where the latter will push a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5239 failure point. The pop_failure_jump takes off failure
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5240 points put on by this pop_failure_jump's matching
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5241 on_failure_jump; we got through the pattern to here from the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5242 matching on_failure_jump, so didn't fail. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5243 case pop_failure_jump:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5244 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5245 /* We need to pass separate storage for the lowest and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5246 highest registers, even though we don't care about the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5247 actual values. Otherwise, we will restore only one
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5248 register from the stack, since lowest will == highest in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5249 `pop_failure_point'. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5250 unsigned dummy_low_reg, dummy_high_reg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5251 unsigned char *pdummy;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5252 CONST char *sdummy;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5253
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5254 DEBUG_PRINT1 ("EXECUTING pop_failure_jump.\n");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5255 POP_FAILURE_POINT (sdummy, pdummy,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5256 dummy_low_reg, dummy_high_reg,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5257 reg_dummy, reg_dummy, reg_info_dummy);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5258 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5259 /* Note fall through. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5260
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5261
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5262 /* Unconditionally jump (without popping any failure points). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5263 case jump:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5264 unconditional_jump:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5265 EXTRACT_NUMBER_AND_INCR (mcnt, p); /* Get the amount to jump. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5266 DEBUG_PRINT2 ("EXECUTING jump %d ", mcnt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5267 p += mcnt; /* Do the jump. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5268 DEBUG_PRINT2 ("(to 0x%lx).\n", (unsigned long) p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5269 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5270
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5271
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5272 /* We need this opcode so we can detect where alternatives end
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5273 in `group_match_null_string_p' et al. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5274 case jump_past_alt:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5275 DEBUG_PRINT1 ("EXECUTING jump_past_alt.\n");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5276 goto unconditional_jump;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5277
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5278
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5279 /* Normally, the on_failure_jump pushes a failure point, which
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5280 then gets popped at pop_failure_jump. We will end up at
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5281 pop_failure_jump, also, and with a pattern of, say, `a+', we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5282 are skipping over the on_failure_jump, so we have to push
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5283 something meaningless for pop_failure_jump to pop. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5284 case dummy_failure_jump:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5285 DEBUG_PRINT1 ("EXECUTING dummy_failure_jump.\n");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5286 /* It doesn't matter what we push for the string here. What
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5287 the code at `fail' tests is the value for the pattern. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5288 PUSH_FAILURE_POINT (0, 0, -2);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5289 goto unconditional_jump;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5290
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5291
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5292 /* At the end of an alternative, we need to push a dummy failure
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5293 point in case we are followed by a `pop_failure_jump', because
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5294 we don't want the failure point for the alternative to be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5295 popped. For example, matching `(a|ab)*' against `aab'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5296 requires that we match the `ab' alternative. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5297 case push_dummy_failure:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5298 DEBUG_PRINT1 ("EXECUTING push_dummy_failure.\n");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5299 /* See comments just above at `dummy_failure_jump' about the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5300 two zeroes. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5301 PUSH_FAILURE_POINT (0, 0, -2);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5302 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5303
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5304 /* Have to succeed matching what follows at least n times.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5305 After that, handle like `on_failure_jump'. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5306 case succeed_n:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5307 EXTRACT_NUMBER (mcnt, p + 2);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5308 DEBUG_PRINT2 ("EXECUTING succeed_n %d.\n", mcnt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5309
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5310 assert (mcnt >= 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5311 /* Originally, this is how many times we HAVE to succeed. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5312 if (mcnt > 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5313 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5314 mcnt--;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5315 p += 2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5316 STORE_NUMBER_AND_INCR (p, mcnt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5317 DEBUG_PRINT3 (" Setting 0x%lx to %d.\n", (unsigned long) p,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5318 mcnt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5319 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5320 else if (mcnt == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5321 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5322 DEBUG_PRINT2 (" Setting two bytes from 0x%lx to no_op.\n",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5323 (unsigned long) p+2);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5324 p[2] = (unsigned char) no_op;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5325 p[3] = (unsigned char) no_op;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5326 goto on_failure;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5327 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5328 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5329
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5330 case jump_n:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5331 EXTRACT_NUMBER (mcnt, p + 2);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5332 DEBUG_PRINT2 ("EXECUTING jump_n %d.\n", mcnt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5333
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5334 /* Originally, this is how many times we CAN jump. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5335 if (mcnt)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5336 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5337 mcnt--;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5338 STORE_NUMBER (p + 2, mcnt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5339 goto unconditional_jump;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5340 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5341 /* If don't have to jump any more, skip over the rest of command. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5342 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5343 p += 4;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5344 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5345
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5346 case set_number_at:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5347 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5348 DEBUG_PRINT1 ("EXECUTING set_number_at.\n");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5349
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5350 EXTRACT_NUMBER_AND_INCR (mcnt, p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5351 p1 = p + mcnt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5352 EXTRACT_NUMBER_AND_INCR (mcnt, p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5353 DEBUG_PRINT3 (" Setting 0x%lx to %d.\n", (unsigned long) p1,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5354 mcnt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5355 STORE_NUMBER (p1, mcnt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5356 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5357 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5358
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5359 case wordbound:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5360 DEBUG_PRINT1 ("EXECUTING wordbound.\n");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5361 should_succeed = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5362 matchwordbound:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5363 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5364 /* XEmacs change */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5365 int result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5366 if (AT_STRINGS_BEG (d) || AT_STRINGS_END (d))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5367 result = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5368 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5369 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5370 CONST unsigned char *d_before =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5371 (CONST unsigned char *) POS_BEFORE_GAP_UNSAFE (d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5372 CONST unsigned char *d_after =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5373 (CONST unsigned char *) POS_AFTER_GAP_UNSAFE (d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5374 Emchar emch1, emch2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5375
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5376 DEC_CHARPTR (d_before);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5377 emch1 = charptr_emchar (d_before);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5378 emch2 = charptr_emchar (d_after);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5379 result = (WORDCHAR_P_UNSAFE (emch1) !=
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5380 WORDCHAR_P_UNSAFE (emch2));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5381 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5382 if (result == should_succeed)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5383 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5384 goto fail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5385 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5386
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5387 case notwordbound:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5388 DEBUG_PRINT1 ("EXECUTING notwordbound.\n");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5389 should_succeed = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5390 goto matchwordbound;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5391
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5392 case wordbeg:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5393 DEBUG_PRINT1 ("EXECUTING wordbeg.\n");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5394 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5395 /* XEmacs: this originally read:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5396
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5397 if (WORDCHAR_P (d) && (AT_STRINGS_BEG (d) || !WORDCHAR_P (d - 1)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5398 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5399
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5400 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5401 CONST unsigned char *dtmp =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5402 (CONST unsigned char *) POS_AFTER_GAP_UNSAFE (d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5403 Emchar emch = charptr_emchar (dtmp);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5404 if (!WORDCHAR_P_UNSAFE (emch))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5405 goto fail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5406 if (AT_STRINGS_BEG (d))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5407 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5408 dtmp = (CONST unsigned char *) POS_BEFORE_GAP_UNSAFE (d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5409 DEC_CHARPTR (dtmp);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5410 emch = charptr_emchar (dtmp);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5411 if (!WORDCHAR_P_UNSAFE (emch))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5412 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5413 goto fail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5414 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5415
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5416 case wordend:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5417 DEBUG_PRINT1 ("EXECUTING wordend.\n");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5418 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5419 /* XEmacs: this originally read:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5420
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5421 if (!AT_STRINGS_BEG (d) && WORDCHAR_P (d - 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5422 && (!WORDCHAR_P (d) || AT_STRINGS_END (d)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5423 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5424
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5425 The or condition is incorrect (reversed).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5426 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5427 CONST unsigned char *dtmp;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5428 Emchar emch;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5429 if (AT_STRINGS_BEG (d))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5430 goto fail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5431 dtmp = (CONST unsigned char *) POS_BEFORE_GAP_UNSAFE (d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5432 DEC_CHARPTR (dtmp);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5433 emch = charptr_emchar (dtmp);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5434 if (!WORDCHAR_P_UNSAFE (emch))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5435 goto fail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5436 if (AT_STRINGS_END (d))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5437 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5438 dtmp = (CONST unsigned char *) POS_AFTER_GAP_UNSAFE (d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5439 emch = charptr_emchar (dtmp);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5440 if (!WORDCHAR_P_UNSAFE (emch))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5441 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5442 goto fail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5443 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5444
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5445 #ifdef emacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5446 case before_dot:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5447 DEBUG_PRINT1 ("EXECUTING before_dot.\n");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5448 if (BUF_PTR_BYTE_POS (regex_emacs_buffer, (unsigned char *) d) >=
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5449 BUF_PT (regex_emacs_buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5450 goto fail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5451 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5452
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5453 case at_dot:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5454 DEBUG_PRINT1 ("EXECUTING at_dot.\n");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5455 if (BUF_PTR_BYTE_POS (regex_emacs_buffer, (unsigned char *) d)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5456 != BUF_PT (regex_emacs_buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5457 goto fail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5458 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5459
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5460 case after_dot:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5461 DEBUG_PRINT1 ("EXECUTING after_dot.\n");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5462 if (BUF_PTR_BYTE_POS (regex_emacs_buffer, (unsigned char *) d)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5463 <= BUF_PT (regex_emacs_buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5464 goto fail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5465 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5466 #if 0 /* not emacs19 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5467 case at_dot:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5468 DEBUG_PRINT1 ("EXECUTING at_dot.\n");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5469 if (BUF_PTR_BYTE_POS (regex_emacs_buffer, (unsigned char *) d) + 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5470 != BUF_PT (regex_emacs_buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5471 goto fail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5472 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5473 #endif /* not emacs19 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5474
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5475 case syntaxspec:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5476 DEBUG_PRINT2 ("EXECUTING syntaxspec %d.\n", mcnt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5477 mcnt = *p++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5478 goto matchsyntax;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5479
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5480 case wordchar:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5481 DEBUG_PRINT1 ("EXECUTING Emacs wordchar.\n");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5482 mcnt = (int) Sword;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5483 matchsyntax:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5484 should_succeed = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5485 matchornotsyntax:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5486 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5487 int matches;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5488 Emchar emch;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5489
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5490 PREFETCH ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5491 emch = charptr_emchar ((CONST Bufbyte *) d);
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
5492 matches = (SYNTAX_UNSAFE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
5493 (XCHAR_TABLE (regex_emacs_buffer->mirror_syntax_table),
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
5494 emch) == (enum syntaxcode) mcnt);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5495 INC_CHARPTR (d);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5496 if (matches != should_succeed)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5497 goto fail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5498 SET_REGS_MATCHED ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5499 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5500 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5501
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5502 case notsyntaxspec:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5503 DEBUG_PRINT2 ("EXECUTING notsyntaxspec %d.\n", mcnt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5504 mcnt = *p++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5505 goto matchnotsyntax;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5506
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5507 case notwordchar:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5508 DEBUG_PRINT1 ("EXECUTING Emacs notwordchar.\n");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5509 mcnt = (int) Sword;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5510 matchnotsyntax:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5511 should_succeed = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5512 goto matchornotsyntax;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5513
104
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
5514 #ifdef MULE
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
5515 /* 97/2/17 jhod Mule category code patch */
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
5516 case categoryspec:
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
5517 should_succeed = 1;
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
5518 matchornotcategory:
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
5519 {
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
5520 Emchar emch;
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
5521
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
5522 mcnt = *p++;
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
5523 PREFETCH ();
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
5524 emch = charptr_emchar ((CONST Bufbyte *) d);
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
5525 INC_CHARPTR (d);
110
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 104
diff changeset
5526 if (check_category_char(emch, regex_emacs_buffer->category_table,
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 104
diff changeset
5527 mcnt, should_succeed))
104
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
5528 goto fail;
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
5529 SET_REGS_MATCHED ();
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
5530 }
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
5531 break;
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
5532
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
5533 case notcategoryspec:
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
5534 should_succeed = 0;
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
5535 goto matchornotcategory;
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
5536 /* end of category patch */
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
5537 #endif /* MULE */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5538 #else /* not emacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5539 case wordchar:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5540 DEBUG_PRINT1 ("EXECUTING non-Emacs wordchar.\n");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5541 PREFETCH ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5542 if (!WORDCHAR_P_UNSAFE ((int) (*d)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5543 goto fail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5544 SET_REGS_MATCHED ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5545 d++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5546 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5547
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5548 case notwordchar:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5549 DEBUG_PRINT1 ("EXECUTING non-Emacs notwordchar.\n");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5550 PREFETCH ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5551 if (!WORDCHAR_P_UNSAFE ((int) (*d)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5552 goto fail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5553 SET_REGS_MATCHED ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5554 d++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5555 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5556 #endif /* not emacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5557
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5558 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5559 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5560 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5561 continue; /* Successfully executed one pattern command; keep going. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5562
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5563
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5564 /* We goto here if a matching operation fails. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5565 fail:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5566 if (!FAIL_STACK_EMPTY ())
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5567 { /* A restart point is known. Restore to that state. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5568 DEBUG_PRINT1 ("\nFAIL:\n");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5569 POP_FAILURE_POINT (d, p,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5570 lowest_active_reg, highest_active_reg,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5571 regstart, regend, reg_info);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5572
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5573 /* If this failure point is a dummy, try the next one. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5574 if (!p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5575 goto fail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5576
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5577 /* If we failed to the end of the pattern, don't examine *p. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5578 assert (p <= pend);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5579 if (p < pend)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5580 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5581 boolean is_a_jump_n = false;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5582
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5583 /* If failed to a backwards jump that's part of a repetition
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5584 loop, need to pop this failure point and use the next one. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5585 switch ((re_opcode_t) *p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5586 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5587 case jump_n:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5588 is_a_jump_n = true;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5589 case maybe_pop_jump:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5590 case pop_failure_jump:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5591 case jump:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5592 p1 = p + 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5593 EXTRACT_NUMBER_AND_INCR (mcnt, p1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5594 p1 += mcnt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5595
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5596 if ((is_a_jump_n && (re_opcode_t) *p1 == succeed_n)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5597 || (!is_a_jump_n
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5598 && (re_opcode_t) *p1 == on_failure_jump))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5599 goto fail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5600 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5601 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5602 /* do nothing */ ;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5603 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5604 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5605
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5606 if (d >= string1 && d <= end1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5607 dend = end_match_1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5608 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5609 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5610 break; /* Matching at this starting point really fails. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5611 } /* for (;;) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5612
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5613 if (best_regs_set)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5614 goto restore_best_regs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5615
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5616 FREE_VARIABLES ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5617
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5618 return -1; /* Failure to match. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5619 } /* re_match_2 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5620
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5621 /* Subroutine definitions for re_match_2. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5622
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5623
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5624 /* We are passed P pointing to a register number after a start_memory.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5625
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5626 Return true if the pattern up to the corresponding stop_memory can
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5627 match the empty string, and false otherwise.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5628
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5629 If we find the matching stop_memory, sets P to point to one past its number.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5630 Otherwise, sets P to an undefined byte less than or equal to END.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5631
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5632 We don't handle duplicates properly (yet). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5633
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5634 static boolean
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5635 group_match_null_string_p (unsigned char **p, unsigned char *end,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5636 register_info_type *reg_info)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5637 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5638 int mcnt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5639 /* Point to after the args to the start_memory. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5640 unsigned char *p1 = *p + 2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5641
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5642 while (p1 < end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5643 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5644 /* Skip over opcodes that can match nothing, and return true or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5645 false, as appropriate, when we get to one that can't, or to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5646 matching stop_memory. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5647
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5648 switch ((re_opcode_t) *p1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5649 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5650 /* Could be either a loop or a series of alternatives. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5651 case on_failure_jump:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5652 p1++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5653 EXTRACT_NUMBER_AND_INCR (mcnt, p1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5654
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5655 /* If the next operation is not a jump backwards in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5656 pattern. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5657
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5658 if (mcnt >= 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5659 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5660 /* Go through the on_failure_jumps of the alternatives,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5661 seeing if any of the alternatives cannot match nothing.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5662 The last alternative starts with only a jump,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5663 whereas the rest start with on_failure_jump and end
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5664 with a jump, e.g., here is the pattern for `a|b|c':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5665
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5666 /on_failure_jump/0/6/exactn/1/a/jump_past_alt/0/6
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5667 /on_failure_jump/0/6/exactn/1/b/jump_past_alt/0/3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5668 /exactn/1/c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5669
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5670 So, we have to first go through the first (n-1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5671 alternatives and then deal with the last one separately. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5672
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5673
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5674 /* Deal with the first (n-1) alternatives, which start
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5675 with an on_failure_jump (see above) that jumps to right
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5676 past a jump_past_alt. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5677
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5678 while ((re_opcode_t) p1[mcnt-3] == jump_past_alt)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5679 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5680 /* `mcnt' holds how many bytes long the alternative
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5681 is, including the ending `jump_past_alt' and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5682 its number. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5683
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5684 if (!alt_match_null_string_p (p1, p1 + mcnt - 3,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5685 reg_info))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5686 return false;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5687
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5688 /* Move to right after this alternative, including the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5689 jump_past_alt. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5690 p1 += mcnt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5691
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5692 /* Break if it's the beginning of an n-th alternative
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5693 that doesn't begin with an on_failure_jump. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5694 if ((re_opcode_t) *p1 != on_failure_jump)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5695 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5696
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5697 /* Still have to check that it's not an n-th
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5698 alternative that starts with an on_failure_jump. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5699 p1++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5700 EXTRACT_NUMBER_AND_INCR (mcnt, p1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5701 if ((re_opcode_t) p1[mcnt-3] != jump_past_alt)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5702 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5703 /* Get to the beginning of the n-th alternative. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5704 p1 -= 3;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5705 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5706 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5707 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5708
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5709 /* Deal with the last alternative: go back and get number
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5710 of the `jump_past_alt' just before it. `mcnt' contains
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5711 the length of the alternative. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5712 EXTRACT_NUMBER (mcnt, p1 - 2);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5713
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5714 if (!alt_match_null_string_p (p1, p1 + mcnt, reg_info))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5715 return false;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5716
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5717 p1 += mcnt; /* Get past the n-th alternative. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5718 } /* if mcnt > 0 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5719 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5720
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5721
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5722 case stop_memory:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5723 assert (p1[1] == **p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5724 *p = p1 + 2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5725 return true;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5726
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5727
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5728 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5729 if (!common_op_match_null_string_p (&p1, end, reg_info))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5730 return false;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5731 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5732 } /* while p1 < end */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5733
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5734 return false;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5735 } /* group_match_null_string_p */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5736
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5737
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5738 /* Similar to group_match_null_string_p, but doesn't deal with alternatives:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5739 It expects P to be the first byte of a single alternative and END one
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5740 byte past the last. The alternative can contain groups. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5741
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5742 static boolean
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5743 alt_match_null_string_p (unsigned char *p, unsigned char *end,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5744 register_info_type *reg_info)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5745 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5746 int mcnt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5747 unsigned char *p1 = p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5748
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5749 while (p1 < end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5750 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5751 /* Skip over opcodes that can match nothing, and break when we get
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5752 to one that can't. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5753
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5754 switch ((re_opcode_t) *p1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5755 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5756 /* It's a loop. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5757 case on_failure_jump:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5758 p1++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5759 EXTRACT_NUMBER_AND_INCR (mcnt, p1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5760 p1 += mcnt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5761 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5762
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5763 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5764 if (!common_op_match_null_string_p (&p1, end, reg_info))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5765 return false;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5766 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5767 } /* while p1 < end */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5768
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5769 return true;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5770 } /* alt_match_null_string_p */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5771
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5772
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5773 /* Deals with the ops common to group_match_null_string_p and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5774 alt_match_null_string_p.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5775
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5776 Sets P to one after the op and its arguments, if any. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5777
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5778 static boolean
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5779 common_op_match_null_string_p (unsigned char **p, unsigned char *end,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5780 register_info_type *reg_info)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5781 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5782 int mcnt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5783 boolean ret;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5784 int reg_no;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5785 unsigned char *p1 = *p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5786
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5787 switch ((re_opcode_t) *p1++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5788 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5789 case no_op:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5790 case begline:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5791 case endline:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5792 case begbuf:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5793 case endbuf:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5794 case wordbeg:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5795 case wordend:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5796 case wordbound:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5797 case notwordbound:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5798 #ifdef emacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5799 case before_dot:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5800 case at_dot:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5801 case after_dot:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5802 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5803 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5804
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5805 case start_memory:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5806 reg_no = *p1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5807 assert (reg_no > 0 && reg_no <= MAX_REGNUM);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5808 ret = group_match_null_string_p (&p1, end, reg_info);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5809
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5810 /* Have to set this here in case we're checking a group which
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5811 contains a group and a back reference to it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5812
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5813 if (REG_MATCH_NULL_STRING_P (reg_info[reg_no]) == MATCH_NULL_UNSET_VALUE)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5814 REG_MATCH_NULL_STRING_P (reg_info[reg_no]) = ret;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5815
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5816 if (!ret)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5817 return false;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5818 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5819
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5820 /* If this is an optimized succeed_n for zero times, make the jump. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5821 case jump:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5822 EXTRACT_NUMBER_AND_INCR (mcnt, p1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5823 if (mcnt >= 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5824 p1 += mcnt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5825 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5826 return false;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5827 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5828
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5829 case succeed_n:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5830 /* Get to the number of times to succeed. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5831 p1 += 2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5832 EXTRACT_NUMBER_AND_INCR (mcnt, p1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5833
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5834 if (mcnt == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5835 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5836 p1 -= 4;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5837 EXTRACT_NUMBER_AND_INCR (mcnt, p1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5838 p1 += mcnt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5839 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5840 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5841 return false;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5842 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5843
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5844 case duplicate:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5845 if (!REG_MATCH_NULL_STRING_P (reg_info[*p1]))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5846 return false;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5847 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5848
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5849 case set_number_at:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5850 p1 += 4;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5851
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5852 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5853 /* All other opcodes mean we cannot match the empty string. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5854 return false;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5855 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5856
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5857 *p = p1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5858 return true;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5859 } /* common_op_match_null_string_p */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5860
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5861
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5862 /* Return zero if TRANSLATE[S1] and TRANSLATE[S2] are identical for LEN
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5863 bytes; nonzero otherwise. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5864
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5865 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5866 bcmp_translate (CONST unsigned char *s1, CONST unsigned char *s2,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5867 register int len, char *translate)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5868 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5869 register CONST unsigned char *p1 = s1, *p2 = s2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5870 while (len)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5871 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5872 if (translate[*p1++] != translate[*p2++]) return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5873 len--;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5874 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5875 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5876 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5877
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5878 /* Entry points for GNU code. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5879
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5880 /* re_compile_pattern is the GNU regular expression compiler: it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5881 compiles PATTERN (of length SIZE) and puts the result in BUFP.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5882 Returns 0 if the pattern was valid, otherwise an error string.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5883
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5884 Assumes the `allocated' (and perhaps `buffer') and `translate' fields
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5885 are set in BUFP on entry.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5886
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5887 We call regex_compile to do the actual compilation. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5888
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5889 CONST char *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5890 re_compile_pattern (CONST char *pattern, int length,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5891 struct re_pattern_buffer *bufp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5892 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5893 reg_errcode_t ret;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5894
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5895 /* GNU code is written to assume at least RE_NREGS registers will be set
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5896 (and at least one extra will be -1). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5897 bufp->regs_allocated = REGS_UNALLOCATED;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5898
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5899 /* And GNU code determines whether or not to get register information
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5900 by passing null for the REGS argument to re_match, etc., not by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5901 setting no_sub. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5902 bufp->no_sub = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5903
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5904 /* Match anchors at newline. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5905 bufp->newline_anchor = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5906
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5907 ret = regex_compile (pattern, length, re_syntax_options, bufp);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5908
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5909 if (!ret)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5910 return NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5911 return gettext (re_error_msgid[(int) ret]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5912 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5913
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5914 /* Entry points compatible with 4.2 BSD regex library. We don't define
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5915 them unless specifically requested. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5916
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5917 #ifdef _REGEX_RE_COMP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5918
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5919 /* BSD has one and only one pattern buffer. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5920 static struct re_pattern_buffer re_comp_buf;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5921
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5922 char *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5923 re_comp (CONST char *s)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5924 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5925 reg_errcode_t ret;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5926
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5927 if (!s)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5928 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5929 if (!re_comp_buf.buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5930 return gettext ("No previous regular expression");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5931 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5932 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5933
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5934 if (!re_comp_buf.buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5935 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5936 re_comp_buf.buffer = (unsigned char *) malloc (200);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5937 if (re_comp_buf.buffer == NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5938 return gettext (re_error_msgid[(int) REG_ESPACE]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5939 re_comp_buf.allocated = 200;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5940
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5941 re_comp_buf.fastmap = (char *) malloc (1 << BYTEWIDTH);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5942 if (re_comp_buf.fastmap == NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5943 return gettext (re_error_msgid[(int) REG_ESPACE]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5944 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5945
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5946 /* Since `re_exec' always passes NULL for the `regs' argument, we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5947 don't need to initialize the pattern buffer fields which affect it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5948
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5949 /* Match anchors at newlines. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5950 re_comp_buf.newline_anchor = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5951
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5952 ret = regex_compile (s, strlen (s), re_syntax_options, &re_comp_buf);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5953
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5954 if (!ret)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5955 return NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5956
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5957 /* Yes, we're discarding `CONST' here if !HAVE_LIBINTL. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5958 return (char *) gettext (re_error_msgid[(int) ret]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5959 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5960
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5961
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5962 int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5963 re_exec (CONST char *s)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5964 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5965 CONST int len = strlen (s);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5966 return
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5967 0 <= re_search (&re_comp_buf, s, len, 0, len, (struct re_registers *) 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5968 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5969 #endif /* _REGEX_RE_COMP */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5970
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5971 /* POSIX.2 functions. Don't define these for Emacs. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5972
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5973 #ifndef emacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5974
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5975 /* regcomp takes a regular expression as a string and compiles it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5976
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5977 PREG is a regex_t *. We do not expect any fields to be initialized,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5978 since POSIX says we shouldn't. Thus, we set
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5979
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5980 `buffer' to the compiled pattern;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5981 `used' to the length of the compiled pattern;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5982 `syntax' to RE_SYNTAX_POSIX_EXTENDED if the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5983 REG_EXTENDED bit in CFLAGS is set; otherwise, to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5984 RE_SYNTAX_POSIX_BASIC;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5985 `newline_anchor' to REG_NEWLINE being set in CFLAGS;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5986 `fastmap' and `fastmap_accurate' to zero;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5987 `re_nsub' to the number of subexpressions in PATTERN.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5988
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5989 PATTERN is the address of the pattern string.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5990
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5991 CFLAGS is a series of bits which affect compilation.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5992
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5993 If REG_EXTENDED is set, we use POSIX extended syntax; otherwise, we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5994 use POSIX basic syntax.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5995
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5996 If REG_NEWLINE is set, then . and [^...] don't match newline.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5997 Also, regexec will try a match beginning after every newline.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5998
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5999 If REG_ICASE is set, then we considers upper- and lowercase
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6000 versions of letters to be equivalent when matching.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6001
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6002 If REG_NOSUB is set, then when PREG is passed to regexec, that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6003 routine will report only success or failure, and nothing about the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6004 registers.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6005
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6006 It returns 0 if it succeeds, nonzero if it doesn't. (See regex.h for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6007 the return codes and their meanings.) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6008
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6009 int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6010 regcomp (regex_t *preg, CONST char *pattern, int cflags)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6011 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6012 reg_errcode_t ret;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6013 unsigned syntax
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6014 = (cflags & REG_EXTENDED) ?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6015 RE_SYNTAX_POSIX_EXTENDED : RE_SYNTAX_POSIX_BASIC;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6016
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6017 /* regex_compile will allocate the space for the compiled pattern. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6018 preg->buffer = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6019 preg->allocated = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6020 preg->used = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6021
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6022 /* Don't bother to use a fastmap when searching. This simplifies the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6023 REG_NEWLINE case: if we used a fastmap, we'd have to put all the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6024 characters after newlines into the fastmap. This way, we just try
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6025 every character. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6026 preg->fastmap = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6027
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6028 if (cflags & REG_ICASE)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6029 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6030 unsigned i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6031
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6032 preg->translate = (char *) malloc (CHAR_SET_SIZE);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6033 if (preg->translate == NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6034 return (int) REG_ESPACE;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6035
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6036 /* Map uppercase characters to corresponding lowercase ones. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6037 for (i = 0; i < CHAR_SET_SIZE; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6038 preg->translate[i] = ISUPPER (i) ? tolower (i) : i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6039 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6040 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6041 preg->translate = NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6042
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6043 /* If REG_NEWLINE is set, newlines are treated differently. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6044 if (cflags & REG_NEWLINE)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6045 { /* REG_NEWLINE implies neither . nor [^...] match newline. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6046 syntax &= ~RE_DOT_NEWLINE;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6047 syntax |= RE_HAT_LISTS_NOT_NEWLINE;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6048 /* It also changes the matching behavior. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6049 preg->newline_anchor = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6050 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6051 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6052 preg->newline_anchor = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6053
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6054 preg->no_sub = !!(cflags & REG_NOSUB);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6055
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6056 /* POSIX says a null character in the pattern terminates it, so we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6057 can use strlen here in compiling the pattern. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6058 ret = regex_compile (pattern, strlen (pattern), syntax, preg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6059
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6060 /* POSIX doesn't distinguish between an unmatched open-group and an
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6061 unmatched close-group: both are REG_EPAREN. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6062 if (ret == REG_ERPAREN) ret = REG_EPAREN;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6063
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6064 return (int) ret;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6065 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6066
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6067
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6068 /* regexec searches for a given pattern, specified by PREG, in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6069 string STRING.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6070
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6071 If NMATCH is zero or REG_NOSUB was set in the cflags argument to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6072 `regcomp', we ignore PMATCH. Otherwise, we assume PMATCH has at
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6073 least NMATCH elements, and we set them to the offsets of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6074 corresponding matched substrings.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6075
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6076 EFLAGS specifies `execution flags' which affect matching: if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6077 REG_NOTBOL is set, then ^ does not match at the beginning of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6078 string; if REG_NOTEOL is set, then $ does not match at the end.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6079
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6080 We return 0 if we find a match and REG_NOMATCH if not. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6081
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6082 int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6083 regexec (CONST regex_t *preg, CONST char *string, size_t nmatch,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6084 regmatch_t pmatch[], int eflags)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6085 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6086 int ret;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6087 struct re_registers regs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6088 regex_t private_preg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6089 int len = strlen (string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6090 boolean want_reg_info = !preg->no_sub && nmatch > 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6091
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6092 private_preg = *preg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6093
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6094 private_preg.not_bol = !!(eflags & REG_NOTBOL);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6095 private_preg.not_eol = !!(eflags & REG_NOTEOL);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6096
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6097 /* The user has told us exactly how many registers to return
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6098 information about, via `nmatch'. We have to pass that on to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6099 matching routines. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6100 private_preg.regs_allocated = REGS_FIXED;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6101
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6102 if (want_reg_info)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6103 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6104 regs.num_regs = nmatch;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6105 regs.start = TALLOC (nmatch, regoff_t);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6106 regs.end = TALLOC (nmatch, regoff_t);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6107 if (regs.start == NULL || regs.end == NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6108 return (int) REG_NOMATCH;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6109 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6110
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6111 /* Perform the searching operation. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6112 ret = re_search (&private_preg, string, len,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6113 /* start: */ 0, /* range: */ len,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6114 want_reg_info ? &regs : (struct re_registers *) 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6115
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6116 /* Copy the register information to the POSIX structure. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6117 if (want_reg_info)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6118 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6119 if (ret >= 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6120 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6121 unsigned r;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6122
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6123 for (r = 0; r < nmatch; r++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6124 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6125 pmatch[r].rm_so = regs.start[r];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6126 pmatch[r].rm_eo = regs.end[r];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6127 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6128 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6129
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6130 /* If we needed the temporary register info, free the space now. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6131 free (regs.start);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6132 free (regs.end);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6133 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6134
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6135 /* We want zero return to mean success, unlike `re_search'. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6136 return ret >= 0 ? (int) REG_NOERROR : (int) REG_NOMATCH;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6137 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6138
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6139
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6140 /* Returns a message corresponding to an error code, ERRCODE, returned
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6141 from either regcomp or regexec. We don't use PREG here. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6142
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6143 size_t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6144 regerror (int errcode, CONST regex_t *preg, char *errbuf, size_t errbuf_size)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6145 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6146 CONST char *msg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6147 size_t msg_size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6148
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6149 if (errcode < 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6150 || errcode >= (sizeof (re_error_msgid) / sizeof (re_error_msgid[0])))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6151 /* Only error codes returned by the rest of the code should be passed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6152 to this routine. If we are given anything else, or if other regex
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6153 code generates an invalid error code, then the program has a bug.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6154 Dump core so we can fix it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6155 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6156
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6157 msg = gettext (re_error_msgid[errcode]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6158
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6159 msg_size = strlen (msg) + 1; /* Includes the null. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6160
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6161 if (errbuf_size != 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6162 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6163 if (msg_size > errbuf_size)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6164 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6165 strncpy (errbuf, msg, errbuf_size - 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6166 errbuf[errbuf_size - 1] = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6167 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6168 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6169 strcpy (errbuf, msg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6170 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6171
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6172 return msg_size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6173 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6174
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6175
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6176 /* Free dynamically allocated space used by PREG. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6177
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6178 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6179 regfree (regex_t *preg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6180 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6181 if (preg->buffer != NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6182 free (preg->buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6183 preg->buffer = NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6184
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6185 preg->allocated = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6186 preg->used = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6187
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6188 if (preg->fastmap != NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6189 free (preg->fastmap);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6190 preg->fastmap = NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6191 preg->fastmap_accurate = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6192
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6193 if (preg->translate != NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6194 free (preg->translate);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6195 preg->translate = NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6196 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6197
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6198 #endif /* not emacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6199
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6200 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6201 Local variables:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6202 make-backup-files: t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6203 version-control: t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6204 trim-versions-without-asking: nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6205 End:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6206 */