annotate regex.c @ 1157:5aa89bba935d

(GROW_FAIL_STACK): Fix previous change: update (fail_stack).size properly.
author Karl Heuer <kwzh@gnu.org>
date Tue, 09 Dec 1997 23:04:38 +0000
parents 8e1cbb305ddc
children 282562802f46
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
679
b088267ea1c8 Clean up whitespace.
Richard Stallman <rms@gnu.org>
parents: 678
diff changeset
1 /* Extended regular expression matching and search library, version
b088267ea1c8 Clean up whitespace.
Richard Stallman <rms@gnu.org>
parents: 678
diff changeset
2 0.12. (Implements POSIX draft P10003.2/D11.2, except for
2
d7a0c431b2a0 Initial revision
Karl Berry <karl@freefriends.org>
parents:
diff changeset
3 internationalization features.)
d7a0c431b2a0 Initial revision
Karl Berry <karl@freefriends.org>
parents:
diff changeset
4
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5 Copyright (C) 1993, 1994, 1995, 1996, 1997 Free Software Foundation, Inc.
2
d7a0c431b2a0 Initial revision
Karl Berry <karl@freefriends.org>
parents:
diff changeset
6
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
7 This program is free software; you can redistribute it and/or modify
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
8 it under the terms of the GNU General Public License as published by
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
9 the Free Software Foundation; either version 2, or (at your option)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
10 any later version.
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
11
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
12 This program is distributed in the hope that it will be useful,
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
15 GNU General Public License for more details.
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
16
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
17 You should have received a copy of the GNU General Public License
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
18 along with this program; if not, write to the Free Software
542
7b0868042f7a Update FSF address in comment.
Karl Heuer <kwzh@gnu.org>
parents: 521
diff changeset
19 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
20 USA. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
21
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
22 /* AIX requires this to be the first thing in the file. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
23 #if defined (_AIX) && !defined (REGEX_MALLOC)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
24 #pragma alloca
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
25 #endif
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
26
511
799190471f84 (NUM_FAILURE_ITEMS, POP_FAILURE_POINT, PUSH_FAILURE_POINT):
Richard Stallman <rms@gnu.org>
parents: 506
diff changeset
27 #undef _GNU_SOURCE
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
28 #define _GNU_SOURCE
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
29
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
30 /* Converts the pointer to the char to BEG-based offset from the start. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
31 #define PTR_TO_OFFSET(d) \
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
32 POS_AS_IN_BUFFER (MATCHING_IN_FIRST_STRING \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
33 ? (d) - string1 : (d) - (string2 - size1))
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
34 #define POS_AS_IN_BUFFER(p) ((p) + 1)
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
35
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
36 #ifdef HAVE_CONFIG_H
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
37 #include <config.h>
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
38 #endif
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
39
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
40 /* We need this for `regex.h', and perhaps for the Emacs include files. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
41 #include <sys/types.h>
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
42
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
43 /* This is for other GNU distributions with internationalized messages. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
44 #if HAVE_LIBINTL_H || defined (_LIBC)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
45 # include <libintl.h>
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
46 #else
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
47 # define gettext(msgid) (msgid)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
48 #endif
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
49
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
50 #ifndef gettext_noop
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
51 /* This define is so xgettext can find the internationalizable
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
52 strings. */
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
53 #define gettext_noop(String) String
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
54 #endif
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
55
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
56 /* The `emacs' switch turns on certain matching commands
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
57 that make sense only in Emacs. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
58 #ifdef emacs
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
59
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
60 #include "lisp.h"
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
61 #include "buffer.h"
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
62
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
63 /* Make syntax table lookup grant data in gl_state. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
64 #define SYNTAX_ENTRY_VIA_PROPERTY
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
65
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
66 #include "syntax.h"
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
67 #include "charset.h"
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
68 #include "category.h"
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
69
786
c9e346539fc6 [emacs] (malloc, free): Define as xmalloc, and xfree.
Richard Stallman <rms@gnu.org>
parents: 692
diff changeset
70 #define malloc xmalloc
c9e346539fc6 [emacs] (malloc, free): Define as xmalloc, and xfree.
Richard Stallman <rms@gnu.org>
parents: 692
diff changeset
71 #define free xfree
c9e346539fc6 [emacs] (malloc, free): Define as xmalloc, and xfree.
Richard Stallman <rms@gnu.org>
parents: 692
diff changeset
72
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
73 #else /* not emacs */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
74
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
75 /* If we are not linking with Emacs proper,
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
76 we can't use the relocating allocator
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
77 even if config.h says that we can. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
78 #undef REL_ALLOC
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
79
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
80 #if defined (STDC_HEADERS) || defined (_LIBC)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
81 #include <stdlib.h>
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
82 #else
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
83 char *malloc ();
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
84 char *realloc ();
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
85 #endif
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
86
451
b08ce70c8b7c Undefined INHIBIT_STRING_HEADER when we have no
Karl Heuer <kwzh@gnu.org>
parents: 449
diff changeset
87 /* When used in Emacs's lib-src, we need to get bzero and bcopy somehow.
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
88 If nothing else has been done, use the method below. */
451
b08ce70c8b7c Undefined INHIBIT_STRING_HEADER when we have no
Karl Heuer <kwzh@gnu.org>
parents: 449
diff changeset
89 #ifdef INHIBIT_STRING_HEADER
b08ce70c8b7c Undefined INHIBIT_STRING_HEADER when we have no
Karl Heuer <kwzh@gnu.org>
parents: 449
diff changeset
90 #if !(defined (HAVE_BZERO) && defined (HAVE_BCOPY))
b08ce70c8b7c Undefined INHIBIT_STRING_HEADER when we have no
Karl Heuer <kwzh@gnu.org>
parents: 449
diff changeset
91 #if !defined (bzero) && !defined (bcopy)
b08ce70c8b7c Undefined INHIBIT_STRING_HEADER when we have no
Karl Heuer <kwzh@gnu.org>
parents: 449
diff changeset
92 #undef INHIBIT_STRING_HEADER
b08ce70c8b7c Undefined INHIBIT_STRING_HEADER when we have no
Karl Heuer <kwzh@gnu.org>
parents: 449
diff changeset
93 #endif
b08ce70c8b7c Undefined INHIBIT_STRING_HEADER when we have no
Karl Heuer <kwzh@gnu.org>
parents: 449
diff changeset
94 #endif
b08ce70c8b7c Undefined INHIBIT_STRING_HEADER when we have no
Karl Heuer <kwzh@gnu.org>
parents: 449
diff changeset
95 #endif
b08ce70c8b7c Undefined INHIBIT_STRING_HEADER when we have no
Karl Heuer <kwzh@gnu.org>
parents: 449
diff changeset
96
b08ce70c8b7c Undefined INHIBIT_STRING_HEADER when we have no
Karl Heuer <kwzh@gnu.org>
parents: 449
diff changeset
97 /* This is the normal way of making sure we have a bcopy and a bzero.
b08ce70c8b7c Undefined INHIBIT_STRING_HEADER when we have no
Karl Heuer <kwzh@gnu.org>
parents: 449
diff changeset
98 This is used in most programs--a few other programs avoid this
b08ce70c8b7c Undefined INHIBIT_STRING_HEADER when we have no
Karl Heuer <kwzh@gnu.org>
parents: 449
diff changeset
99 by defining INHIBIT_STRING_HEADER. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
100 #ifndef INHIBIT_STRING_HEADER
460
ea133fff5811 Use `defined' to test HAVE_STRING_H and STDC_HEADERS.
Richard Stallman <rms@gnu.org>
parents: 451
diff changeset
101 #if defined (HAVE_STRING_H) || defined (STDC_HEADERS) || defined (_LIBC)
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
102 #include <string.h>
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
103 #ifndef bcmp
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
104 #define bcmp(s1, s2, n) memcmp ((s1), (s2), (n))
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
105 #endif
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
106 #ifndef bcopy
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
107 #define bcopy(s, d, n) memcpy ((d), (s), (n))
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
108 #endif
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
109 #ifndef bzero
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
110 #define bzero(s, n) memset ((s), 0, (n))
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
111 #endif
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
112 #else
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
113 #include <strings.h>
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
114 #endif
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
115 #endif
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
116
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
117 /* Define the syntax stuff for \<, \>, etc. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
118
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
119 /* This must be nonzero for the wordchar and notwordchar pattern
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
120 commands in re_match_2. */
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
121 #ifndef Sword
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
122 #define Sword 1
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
123 #endif
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
124
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
125 #ifdef SWITCH_ENUM_BUG
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
126 #define SWITCH_ENUM_CAST(x) ((int)(x))
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
127 #else
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
128 #define SWITCH_ENUM_CAST(x) (x)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
129 #endif
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
130
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
131 #ifdef SYNTAX_TABLE
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
132
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
133 extern char *re_syntax_table;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
134
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
135 #else /* not SYNTAX_TABLE */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
136
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
137 /* How many characters in the character set. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
138 #define CHAR_SET_SIZE 256
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
139
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
140 static char re_syntax_table[CHAR_SET_SIZE];
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
141
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
142 static void
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
143 init_syntax_once ()
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
144 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
145 register int c;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
146 static int done = 0;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
147
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
148 if (done)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
149 return;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
150
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
151 bzero (re_syntax_table, sizeof re_syntax_table);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
152
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
153 for (c = 'a'; c <= 'z'; c++)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
154 re_syntax_table[c] = Sword;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
155
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
156 for (c = 'A'; c <= 'Z'; c++)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
157 re_syntax_table[c] = Sword;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
158
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
159 for (c = '0'; c <= '9'; c++)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
160 re_syntax_table[c] = Sword;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
161
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
162 re_syntax_table['_'] = Sword;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
163
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
164 done = 1;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
165 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
166
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
167 #endif /* not SYNTAX_TABLE */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
168
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
169 #define SYNTAX(c) re_syntax_table[c]
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
170
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
171 /* Dummy macro for non emacs environments. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
172 #define BASE_LEADING_CODE_P(c) (0)
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
173 #define WORD_BOUNDARY_P(c1, c2) (0)
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
174 #define CHAR_HEAD_P(p) (1)
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
175 #define SINGLE_BYTE_CHAR_P(c) (1)
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
176 #define SAME_CHARSET_P(c1, c2) (1)
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
177 #define MULTIBYTE_FORM_LENGTH(p, s) (1)
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
178 #define STRING_CHAR(p, s) (*(p))
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
179 #define STRING_CHAR_AND_LENGTH(p, s, actual_len) ((actual_len) = 1, *(p))
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
180 #define GET_CHAR_AFTER_2(c, p, str1, end1, str2, end2) \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
181 (c = ((p) == (end1) ? *(str2) : *(p)))
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
182 #define GET_CHAR_BEFORE_2(c, p, str1, end1, str2, end2) \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
183 (c = ((p) == (str2) ? *((end1) - 1) : *((p) - 1)))
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
184 #endif /* not emacs */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
185
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
186 /* Get the interface, including the syntax bits. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
187 #include "regex.h"
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
188
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
189 /* isalpha etc. are used for the character classes. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
190 #include <ctype.h>
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
191
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
192 /* Jim Meyering writes:
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
193
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
194 "... Some ctype macros are valid only for character codes that
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
195 isascii says are ASCII (SGI's IRIX-4.0.5 is one such system --when
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
196 using /bin/cc or gcc but without giving an ansi option). So, all
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
197 ctype uses should be through macros like ISPRINT... If
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
198 STDC_HEADERS is defined, then autoconf has verified that the ctype
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
199 macros don't need to be guarded with references to isascii. ...
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
200 Defining isascii to 1 should let any compiler worth its salt
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
201 eliminate the && through constant folding." */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
202
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
203 #if defined (STDC_HEADERS) || (!defined (isascii) && !defined (HAVE_ISASCII))
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
204 #define ISASCII(c) 1
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
205 #else
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
206 #define ISASCII(c) isascii(c)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
207 #endif
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
208
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
209 #ifdef isblank
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
210 #define ISBLANK(c) (ISASCII (c) && isblank (c))
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
211 #else
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
212 #define ISBLANK(c) ((c) == ' ' || (c) == '\t')
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
213 #endif
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
214 #ifdef isgraph
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
215 #define ISGRAPH(c) (ISASCII (c) && isgraph (c))
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
216 #else
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
217 #define ISGRAPH(c) (ISASCII (c) && isprint (c) && !isspace (c))
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
218 #endif
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
219
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
220 #define ISPRINT(c) (ISASCII (c) && isprint (c))
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
221 #define ISDIGIT(c) (ISASCII (c) && isdigit (c))
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
222 #define ISALNUM(c) (ISASCII (c) && isalnum (c))
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
223 #define ISALPHA(c) (ISASCII (c) && isalpha (c))
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
224 #define ISCNTRL(c) (ISASCII (c) && iscntrl (c))
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
225 #define ISLOWER(c) (ISASCII (c) && islower (c))
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
226 #define ISPUNCT(c) (ISASCII (c) && ispunct (c))
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
227 #define ISSPACE(c) (ISASCII (c) && isspace (c))
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
228 #define ISUPPER(c) (ISASCII (c) && isupper (c))
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
229 #define ISXDIGIT(c) (ISASCII (c) && isxdigit (c))
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
230
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
231 #ifndef NULL
447
5607a4b33402 (NULL): Use explicit cast.
Karl Heuer <kwzh@gnu.org>
parents: 442
diff changeset
232 #define NULL (void *)0
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
233 #endif
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
234
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
235 /* We remove any previous definition of `SIGN_EXTEND_CHAR',
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
236 since ours (we hope) works properly with all combinations of
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
237 machines, compilers, `char' and `unsigned char' argument types.
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
238 (Per Bothner suggested the basic approach.) */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
239 #undef SIGN_EXTEND_CHAR
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
240 #if __STDC__
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
241 #define SIGN_EXTEND_CHAR(c) ((signed char) (c))
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
242 #else /* not __STDC__ */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
243 /* As in Harbison and Steele. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
244 #define SIGN_EXTEND_CHAR(c) ((((unsigned char) (c)) ^ 128) - 128)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
245 #endif
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
246
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
247 /* Should we use malloc or alloca? If REGEX_MALLOC is not defined, we
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
248 use `alloca' instead of `malloc'. This is because using malloc in
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
249 re_search* or re_match* could cause memory leaks when C-g is used in
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
250 Emacs; also, malloc is slower and causes storage fragmentation. On
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
251 the other hand, malloc is more portable, and easier to debug.
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
252
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
253 Because we sometimes use alloca, some routines have to be macros,
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
254 not functions -- `alloca'-allocated space disappears at the end of the
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
255 function it is called in. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
256
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
257 #ifdef REGEX_MALLOC
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
258
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
259 #define REGEX_ALLOCATE malloc
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
260 #define REGEX_REALLOCATE(source, osize, nsize) realloc (source, nsize)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
261 #define REGEX_FREE free
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
262
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
263 #else /* not REGEX_MALLOC */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
264
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
265 /* Emacs already defines alloca, sometimes. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
266 #ifndef alloca
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
267
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
268 /* Make alloca work the best possible way. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
269 #ifdef __GNUC__
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
270 #define alloca __builtin_alloca
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
271 #else /* not __GNUC__ */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
272 #if HAVE_ALLOCA_H
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
273 #include <alloca.h>
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
274 #else /* not __GNUC__ or HAVE_ALLOCA_H */
503
2ee098e3c26c Don't declare alloca.
Richard Stallman <rms@gnu.org>
parents: 501
diff changeset
275 #if 0 /* It is a bad idea to declare alloca. We always cast the result. */
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
276 #ifndef _AIX /* Already did AIX, up at the top. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
277 char *alloca ();
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
278 #endif /* not _AIX */
503
2ee098e3c26c Don't declare alloca.
Richard Stallman <rms@gnu.org>
parents: 501
diff changeset
279 #endif
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
280 #endif /* not HAVE_ALLOCA_H */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
281 #endif /* not __GNUC__ */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
282
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
283 #endif /* not alloca */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
284
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
285 #define REGEX_ALLOCATE alloca
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
286
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
287 /* Assumes a `char *destination' variable. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
288 #define REGEX_REALLOCATE(source, osize, nsize) \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
289 (destination = (char *) alloca (nsize), \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
290 bcopy (source, destination, osize), \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
291 destination)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
292
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
293 /* No need to do anything to free, after alloca. */
442
a7b85a203afa [REGEX_FREE]: Use ((void)0) instead of just (0).
Jim Meyering <jim@meyering.net>
parents: 441
diff changeset
294 #define REGEX_FREE(arg) ((void)0) /* Do nothing! But inhibit gcc warning. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
295
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
296 #endif /* not REGEX_MALLOC */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
297
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
298 /* Define how to allocate the failure stack. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
299
463
8b8df28857af Fix conditional.
Karl Heuer <kwzh@gnu.org>
parents: 462
diff changeset
300 #if defined (REL_ALLOC) && defined (REGEX_MALLOC)
462
115ffc5a3b13 Don't use relocatable allocator.
Richard Stallman <rms@gnu.org>
parents: 460
diff changeset
301
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
302 #define REGEX_ALLOCATE_STACK(size) \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
303 r_alloc (&failure_stack_ptr, (size))
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
304 #define REGEX_REALLOCATE_STACK(source, osize, nsize) \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
305 r_re_alloc (&failure_stack_ptr, (nsize))
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
306 #define REGEX_FREE_STACK(ptr) \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
307 r_alloc_free (&failure_stack_ptr)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
308
462
115ffc5a3b13 Don't use relocatable allocator.
Richard Stallman <rms@gnu.org>
parents: 460
diff changeset
309 #else /* not using relocating allocator */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
310
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
311 #ifdef REGEX_MALLOC
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
312
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
313 #define REGEX_ALLOCATE_STACK malloc
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
314 #define REGEX_REALLOCATE_STACK(source, osize, nsize) realloc (source, nsize)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
315 #define REGEX_FREE_STACK free
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
316
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
317 #else /* not REGEX_MALLOC */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
318
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
319 #define REGEX_ALLOCATE_STACK alloca
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
320
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
321 #define REGEX_REALLOCATE_STACK(source, osize, nsize) \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
322 REGEX_REALLOCATE (source, osize, nsize)
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
323 /* No need to explicitly free anything. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
324 #define REGEX_FREE_STACK(arg)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
325
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
326 #endif /* not REGEX_MALLOC */
462
115ffc5a3b13 Don't use relocatable allocator.
Richard Stallman <rms@gnu.org>
parents: 460
diff changeset
327 #endif /* not using relocating allocator */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
328
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
329
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
330 /* True if `size1' is non-NULL and PTR is pointing anywhere inside
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
331 `string1' or just past its end. This works if PTR is NULL, which is
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
332 a good thing. */
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
333 #define FIRST_STRING_P(ptr) \
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
334 (size1 && string1 <= (ptr) && (ptr) <= string1 + size1)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
335
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
336 /* (Re)Allocate N items of type T using malloc, or fail. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
337 #define TALLOC(n, t) ((t *) malloc ((n) * sizeof (t)))
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
338 #define RETALLOC(addr, n, t) ((addr) = (t *) realloc (addr, (n) * sizeof (t)))
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
339 #define RETALLOC_IF(addr, n, t) \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
340 if (addr) RETALLOC((addr), (n), t); else (addr) = TALLOC ((n), t)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
341 #define REGEX_TALLOC(n, t) ((t *) REGEX_ALLOCATE ((n) * sizeof (t)))
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
342
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
343 #define BYTEWIDTH 8 /* In bits. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
344
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
345 #define STREQ(s1, s2) ((strcmp (s1, s2) == 0))
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
346
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
347 #undef MAX
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
348 #undef MIN
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
349 #define MAX(a, b) ((a) > (b) ? (a) : (b))
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
350 #define MIN(a, b) ((a) < (b) ? (a) : (b))
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
351
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
352 typedef char boolean;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
353 #define false 0
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
354 #define true 1
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
355
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
356 static int re_match_2_internal ();
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
357
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
358 /* These are the command codes that appear in compiled regular
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
359 expressions. Some opcodes are followed by argument bytes. A
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
360 command code can specify any interpretation whatsoever for its
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
361 arguments. Zero bytes may appear in the compiled regular expression. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
362
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
363 typedef enum
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
364 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
365 no_op = 0,
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
366
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
367 /* Succeed right away--no more backtracking. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
368 succeed,
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
369
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
370 /* Followed by one byte giving n, then by n literal bytes. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
371 exactn,
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
372
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
373 /* Matches any (more or less) character. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
374 anychar,
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
375
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
376 /* Matches any one char belonging to specified set. First
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
377 following byte is number of bitmap bytes. Then come bytes
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
378 for a bitmap saying which chars are in. Bits in each byte
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
379 are ordered low-bit-first. A character is in the set if its
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
380 bit is 1. A character too large to have a bit in the map is
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
381 automatically not in the set. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
382 charset,
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
383
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
384 /* Same parameters as charset, but match any character that is
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
385 not one of those specified. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
386 charset_not,
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
387
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
388 /* Start remembering the text that is matched, for storing in a
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
389 register. Followed by one byte with the register number, in
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
390 the range 0 to one less than the pattern buffer's re_nsub
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
391 field. Then followed by one byte with the number of groups
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
392 inner to this one. (This last has to be part of the
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
393 start_memory only because we need it in the on_failure_jump
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
394 of re_match_2.) */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
395 start_memory,
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
396
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
397 /* Stop remembering the text that is matched and store it in a
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
398 memory register. Followed by one byte with the register
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
399 number, in the range 0 to one less than `re_nsub' in the
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
400 pattern buffer, and one byte with the number of inner groups,
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
401 just like `start_memory'. (We need the number of inner
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
402 groups here because we don't have any easy way of finding the
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
403 corresponding start_memory when we're at a stop_memory.) */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
404 stop_memory,
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
405
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
406 /* Match a duplicate of something remembered. Followed by one
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
407 byte containing the register number. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
408 duplicate,
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
409
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
410 /* Fail unless at beginning of line. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
411 begline,
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
412
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
413 /* Fail unless at end of line. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
414 endline,
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
415
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
416 /* Succeeds if at beginning of buffer (if emacs) or at beginning
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
417 of string to be matched (if not). */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
418 begbuf,
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
419
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
420 /* Analogously, for end of buffer/string. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
421 endbuf,
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
422
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
423 /* Followed by two byte relative address to which to jump. */
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
424 jump,
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
425
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
426 /* Same as jump, but marks the end of an alternative. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
427 jump_past_alt,
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
428
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
429 /* Followed by two-byte relative address of place to resume at
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
430 in case of failure. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
431 on_failure_jump,
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
432
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
433 /* Like on_failure_jump, but pushes a placeholder instead of the
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
434 current string position when executed. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
435 on_failure_keep_string_jump,
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
436
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
437 /* Throw away latest failure point and then jump to following
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
438 two-byte relative address. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
439 pop_failure_jump,
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
440
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
441 /* Change to pop_failure_jump if know won't have to backtrack to
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
442 match; otherwise change to jump. This is used to jump
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
443 back to the beginning of a repeat. If what follows this jump
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
444 clearly won't match what the repeat does, such that we can be
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
445 sure that there is no use backtracking out of repetitions
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
446 already matched, then we change it to a pop_failure_jump.
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
447 Followed by two-byte address. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
448 maybe_pop_jump,
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
449
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
450 /* Jump to following two-byte address, and push a dummy failure
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
451 point. This failure point will be thrown away if an attempt
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
452 is made to use it for a failure. A `+' construct makes this
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
453 before the first repeat. Also used as an intermediary kind
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
454 of jump when compiling an alternative. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
455 dummy_failure_jump,
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
456
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
457 /* Push a dummy failure point and continue. Used at the end of
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
458 alternatives. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
459 push_dummy_failure,
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
460
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
461 /* Followed by two-byte relative address and two-byte number n.
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
462 After matching N times, jump to the address upon failure. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
463 succeed_n,
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
464
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
465 /* Followed by two-byte relative address, and two-byte number n.
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
466 Jump to the address N times, then fail. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
467 jump_n,
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
468
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
469 /* Set the following two-byte relative address to the
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
470 subsequent two-byte number. The address *includes* the two
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
471 bytes of number. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
472 set_number_at,
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
473
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
474 wordchar, /* Matches any word-constituent character. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
475 notwordchar, /* Matches any char that is not a word-constituent. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
476
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
477 wordbeg, /* Succeeds if at word beginning. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
478 wordend, /* Succeeds if at word end. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
479
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
480 wordbound, /* Succeeds if at a word boundary. */
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
481 notwordbound /* Succeeds if not at a word boundary. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
482
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
483 #ifdef emacs
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
484 ,before_dot, /* Succeeds if before point. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
485 at_dot, /* Succeeds if at point. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
486 after_dot, /* Succeeds if after point. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
487
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
488 /* Matches any character whose syntax is specified. Followed by
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
489 a byte which contains a syntax code, e.g., Sword. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
490 syntaxspec,
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
491
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
492 /* Matches any character whose syntax is not that specified. */
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
493 notsyntaxspec,
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
494
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
495 /* Matches any character whose category-set contains the specified
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
496 category. The operator is followed by a byte which contains a
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
497 category code (mnemonic ASCII character). */
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
498 categoryspec,
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
499
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
500 /* Matches any character whose category-set does not contain the
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
501 specified category. The operator is followed by a byte which
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
502 contains the category code (mnemonic ASCII character). */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
503 notcategoryspec
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
504 #endif /* emacs */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
505 } re_opcode_t;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
506
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
507 /* Common operations on the compiled pattern. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
508
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
509 /* Store NUMBER in two contiguous bytes starting at DESTINATION. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
510
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
511 #define STORE_NUMBER(destination, number) \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
512 do { \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
513 (destination)[0] = (number) & 0377; \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
514 (destination)[1] = (number) >> 8; \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
515 } while (0)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
516
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
517 /* Same as STORE_NUMBER, except increment DESTINATION to
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
518 the byte after where the number is stored. Therefore, DESTINATION
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
519 must be an lvalue. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
520
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
521 #define STORE_NUMBER_AND_INCR(destination, number) \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
522 do { \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
523 STORE_NUMBER (destination, number); \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
524 (destination) += 2; \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
525 } while (0)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
526
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
527 /* Put into DESTINATION a number stored in two contiguous bytes starting
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
528 at SOURCE. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
529
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
530 #define EXTRACT_NUMBER(destination, source) \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
531 do { \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
532 (destination) = *(source) & 0377; \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
533 (destination) += SIGN_EXTEND_CHAR (*((source) + 1)) << 8; \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
534 } while (0)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
535
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
536 #ifdef DEBUG
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
537 static void
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
538 extract_number (dest, source)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
539 int *dest;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
540 unsigned char *source;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
541 {
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
542 int temp = SIGN_EXTEND_CHAR (*(source + 1));
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
543 *dest = *source & 0377;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
544 *dest += temp << 8;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
545 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
546
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
547 #ifndef EXTRACT_MACROS /* To debug the macros. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
548 #undef EXTRACT_NUMBER
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
549 #define EXTRACT_NUMBER(dest, src) extract_number (&dest, src)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
550 #endif /* not EXTRACT_MACROS */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
551
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
552 #endif /* DEBUG */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
553
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
554 /* Same as EXTRACT_NUMBER, except increment SOURCE to after the number.
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
555 SOURCE must be an lvalue. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
556
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
557 #define EXTRACT_NUMBER_AND_INCR(destination, source) \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
558 do { \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
559 EXTRACT_NUMBER (destination, source); \
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
560 (source) += 2; \
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
561 } while (0)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
562
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
563 #ifdef DEBUG
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
564 static void
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
565 extract_number_and_incr (destination, source)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
566 int *destination;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
567 unsigned char **source;
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
568 {
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
569 extract_number (destination, *source);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
570 *source += 2;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
571 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
572
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
573 #ifndef EXTRACT_MACROS
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
574 #undef EXTRACT_NUMBER_AND_INCR
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
575 #define EXTRACT_NUMBER_AND_INCR(dest, src) \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
576 extract_number_and_incr (&dest, &src)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
577 #endif /* not EXTRACT_MACROS */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
578
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
579 #endif /* DEBUG */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
580
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
581 /* Store a multibyte character in three contiguous bytes starting
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
582 DESTINATION, and increment DESTINATION to the byte after where the
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
583 character is stored. Therefore, DESTINATION must be an lvalue. */
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
584
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
585 #define STORE_CHARACTER_AND_INCR(destination, character) \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
586 do { \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
587 (destination)[0] = (character) & 0377; \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
588 (destination)[1] = ((character) >> 8) & 0377; \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
589 (destination)[2] = (character) >> 16; \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
590 (destination) += 3; \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
591 } while (0)
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
592
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
593 /* Put into DESTINATION a character stored in three contiguous bytes
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
594 starting at SOURCE. */
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
595
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
596 #define EXTRACT_CHARACTER(destination, source) \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
597 do { \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
598 (destination) = ((source)[0] \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
599 | ((source)[1] << 8) \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
600 | ((source)[2] << 16)); \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
601 } while (0)
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
602
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
603
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
604 /* Macros for charset. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
605
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
606 /* Size of bitmap of charset P in bytes. P is a start of charset,
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
607 i.e. *P is (re_opcode_t) charset or (re_opcode_t) charset_not. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
608 #define CHARSET_BITMAP_SIZE(p) ((p)[1] & 0x7F)
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
609
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
610 /* Nonzero if charset P has range table. */
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
611 #define CHARSET_RANGE_TABLE_EXISTS_P(p) ((p)[1] & 0x80)
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
612
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
613 /* Return the address of range table of charset P. But not the start
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
614 of table itself, but the before where the number of ranges is
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
615 stored. `2 +' means to skip re_opcode_t and size of bitmap. */
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
616 #define CHARSET_RANGE_TABLE(p) (&(p)[2 + CHARSET_BITMAP_SIZE (p)])
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
617
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
618 /* Test if C is listed in the bitmap of charset P. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
619 #define CHARSET_LOOKUP_BITMAP(p, c) \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
620 ((c) < CHARSET_BITMAP_SIZE (p) * BYTEWIDTH \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
621 && (p)[2 + (c) / BYTEWIDTH] & (1 << ((c) % BYTEWIDTH)))
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
622
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
623 /* Return the address of end of RANGE_TABLE. COUNT is number of
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
624 ranges (which is a pair of (start, end)) in the RANGE_TABLE. `* 2'
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
625 is start of range and end of range. `* 3' is size of each start
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
626 and end. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
627 #define CHARSET_RANGE_TABLE_END(range_table, count) \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
628 ((range_table) + (count) * 2 * 3)
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
629
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
630 /* Test if C is in RANGE_TABLE. A flag NOT is negated if C is in.
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
631 COUNT is number of ranges in RANGE_TABLE. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
632 #define CHARSET_LOOKUP_RANGE_TABLE_RAW(not, c, range_table, count) \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
633 do \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
634 { \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
635 int range_start, range_end; \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
636 unsigned char *p; \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
637 unsigned char *range_table_end \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
638 = CHARSET_RANGE_TABLE_END ((range_table), (count)); \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
639 \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
640 for (p = (range_table); p < range_table_end; p += 2 * 3) \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
641 { \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
642 EXTRACT_CHARACTER (range_start, p); \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
643 EXTRACT_CHARACTER (range_end, p + 3); \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
644 \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
645 if (range_start <= (c) && (c) <= range_end) \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
646 { \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
647 (not) = !(not); \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
648 break; \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
649 } \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
650 } \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
651 } \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
652 while (0)
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
653
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
654 /* Test if C is in range table of CHARSET. The flag NOT is negated if
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
655 C is listed in it. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
656 #define CHARSET_LOOKUP_RANGE_TABLE(not, c, charset) \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
657 do \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
658 { \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
659 /* Number of ranges in range table. */ \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
660 int count; \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
661 unsigned char *range_table = CHARSET_RANGE_TABLE (charset); \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
662 \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
663 EXTRACT_NUMBER_AND_INCR (count, range_table); \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
664 CHARSET_LOOKUP_RANGE_TABLE_RAW ((not), (c), range_table, count); \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
665 } \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
666 while (0)
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
667
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
668 /* If DEBUG is defined, Regex prints many voluminous messages about what
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
669 it is doing (if the variable `debug' is nonzero). If linked with the
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
670 main program in `iregex.c', you can enter patterns and strings
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
671 interactively. And if linked with the main program in `main.c' and
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
672 the other test files, you can run the already-written tests. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
673
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
674 #ifdef DEBUG
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
675
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
676 /* We use standard I/O for debugging. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
677 #include <stdio.h>
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
678
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
679 /* It is useful to test things that ``must'' be true when debugging. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
680 #include <assert.h>
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
681
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
682 static int debug = 0;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
683
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
684 #define DEBUG_STATEMENT(e) e
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
685 #define DEBUG_PRINT1(x) if (debug) printf (x)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
686 #define DEBUG_PRINT2(x1, x2) if (debug) printf (x1, x2)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
687 #define DEBUG_PRINT3(x1, x2, x3) if (debug) printf (x1, x2, x3)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
688 #define DEBUG_PRINT4(x1, x2, x3, x4) if (debug) printf (x1, x2, x3, x4)
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
689 #define DEBUG_PRINT_COMPILED_PATTERN(p, s, e) \
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
690 if (debug) print_partial_compiled_pattern (s, e)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
691 #define DEBUG_PRINT_DOUBLE_STRING(w, s1, sz1, s2, sz2) \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
692 if (debug) print_double_string (w, s1, sz1, s2, sz2)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
693
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
694
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
695 /* Print the fastmap in human-readable form. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
696
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
697 void
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
698 print_fastmap (fastmap)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
699 char *fastmap;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
700 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
701 unsigned was_a_range = 0;
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
702 unsigned i = 0;
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
703
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
704 while (i < (1 << BYTEWIDTH))
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
705 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
706 if (fastmap[i++])
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
707 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
708 was_a_range = 0;
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
709 putchar (i - 1);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
710 while (i < (1 << BYTEWIDTH) && fastmap[i])
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
711 {
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
712 was_a_range = 1;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
713 i++;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
714 }
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
715 if (was_a_range)
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
716 {
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
717 printf ("-");
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
718 putchar (i - 1);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
719 }
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
720 }
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
721 }
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
722 putchar ('\n');
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
723 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
724
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
725
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
726 /* Print a compiled pattern string in human-readable form, starting at
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
727 the START pointer into it and ending just before the pointer END. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
728
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
729 void
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
730 print_partial_compiled_pattern (start, end)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
731 unsigned char *start;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
732 unsigned char *end;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
733 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
734 int mcnt, mcnt2;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
735 unsigned char *p = start;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
736 unsigned char *pend = end;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
737
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
738 if (start == NULL)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
739 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
740 printf ("(null)\n");
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
741 return;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
742 }
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
743
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
744 /* Loop over pattern commands. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
745 while (p < pend)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
746 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
747 printf ("%d:\t", p - start);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
748
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
749 switch ((re_opcode_t) *p++)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
750 {
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
751 case no_op:
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
752 printf ("/no_op");
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
753 break;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
754
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
755 case exactn:
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
756 mcnt = *p++;
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
757 printf ("/exactn/%d", mcnt);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
758 do
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
759 {
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
760 putchar ('/');
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
761 putchar (*p++);
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
762 }
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
763 while (--mcnt);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
764 break;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
765
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
766 case start_memory:
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
767 mcnt = *p++;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
768 printf ("/start_memory/%d/%d", mcnt, *p++);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
769 break;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
770
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
771 case stop_memory:
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
772 mcnt = *p++;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
773 printf ("/stop_memory/%d/%d", mcnt, *p++);
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
774 break;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
775
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
776 case duplicate:
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
777 printf ("/duplicate/%d", *p++);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
778 break;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
779
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
780 case anychar:
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
781 printf ("/anychar");
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
782 break;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
783
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
784 case charset:
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
785 case charset_not:
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
786 {
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
787 register int c, last = -100;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
788 register int in_range = 0;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
789
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
790 printf ("/charset [%s",
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
791 (re_opcode_t) *(p - 1) == charset_not ? "^" : "");
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
792
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
793 assert (p + *p < pend);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
794
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
795 for (c = 0; c < 256; c++)
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
796 if (c / 8 < *p
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
797 && (p[1 + (c/8)] & (1 << (c % 8))))
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
798 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
799 /* Are we starting a range? */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
800 if (last + 1 == c && ! in_range)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
801 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
802 putchar ('-');
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
803 in_range = 1;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
804 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
805 /* Have we broken a range? */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
806 else if (last + 1 != c && in_range)
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
807 {
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
808 putchar (last);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
809 in_range = 0;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
810 }
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
811
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
812 if (! in_range)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
813 putchar (c);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
814
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
815 last = c;
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
816 }
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
817
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
818 if (in_range)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
819 putchar (last);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
820
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
821 putchar (']');
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
822
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
823 p += 1 + *p;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
824 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
825 break;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
826
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
827 case begline:
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
828 printf ("/begline");
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
829 break;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
830
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
831 case endline:
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
832 printf ("/endline");
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
833 break;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
834
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
835 case on_failure_jump:
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
836 extract_number_and_incr (&mcnt, &p);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
837 printf ("/on_failure_jump to %d", p + mcnt - start);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
838 break;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
839
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
840 case on_failure_keep_string_jump:
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
841 extract_number_and_incr (&mcnt, &p);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
842 printf ("/on_failure_keep_string_jump to %d", p + mcnt - start);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
843 break;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
844
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
845 case dummy_failure_jump:
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
846 extract_number_and_incr (&mcnt, &p);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
847 printf ("/dummy_failure_jump to %d", p + mcnt - start);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
848 break;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
849
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
850 case push_dummy_failure:
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
851 printf ("/push_dummy_failure");
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
852 break;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
853
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
854 case maybe_pop_jump:
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
855 extract_number_and_incr (&mcnt, &p);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
856 printf ("/maybe_pop_jump to %d", p + mcnt - start);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
857 break;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
858
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
859 case pop_failure_jump:
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
860 extract_number_and_incr (&mcnt, &p);
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
861 printf ("/pop_failure_jump to %d", p + mcnt - start);
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
862 break;
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
863
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
864 case jump_past_alt:
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
865 extract_number_and_incr (&mcnt, &p);
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
866 printf ("/jump_past_alt to %d", p + mcnt - start);
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
867 break;
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
868
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
869 case jump:
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
870 extract_number_and_incr (&mcnt, &p);
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
871 printf ("/jump to %d", p + mcnt - start);
679
b088267ea1c8 Clean up whitespace.
Richard Stallman <rms@gnu.org>
parents: 678
diff changeset
872 break;
b088267ea1c8 Clean up whitespace.
Richard Stallman <rms@gnu.org>
parents: 678
diff changeset
873
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
874 case succeed_n:
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
875 extract_number_and_incr (&mcnt, &p);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
876 extract_number_and_incr (&mcnt2, &p);
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
877 printf ("/succeed_n to %d, %d times", p + mcnt - start, mcnt2);
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
878 break;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
879
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
880 case jump_n:
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
881 extract_number_and_incr (&mcnt, &p);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
882 extract_number_and_incr (&mcnt2, &p);
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
883 printf ("/jump_n to %d, %d times", p + mcnt - start, mcnt2);
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
884 break;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
885
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
886 case set_number_at:
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
887 extract_number_and_incr (&mcnt, &p);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
888 extract_number_and_incr (&mcnt2, &p);
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
889 printf ("/set_number_at location %d to %d", p + mcnt - start, mcnt2);
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
890 break;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
891
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
892 case wordbound:
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
893 printf ("/wordbound");
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
894 break;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
895
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
896 case notwordbound:
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
897 printf ("/notwordbound");
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
898 break;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
899
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
900 case wordbeg:
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
901 printf ("/wordbeg");
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
902 break;
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
903
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
904 case wordend:
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
905 printf ("/wordend");
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
906
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
907 #ifdef emacs
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
908 case before_dot:
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
909 printf ("/before_dot");
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
910 break;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
911
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
912 case at_dot:
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
913 printf ("/at_dot");
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
914 break;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
915
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
916 case after_dot:
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
917 printf ("/after_dot");
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
918 break;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
919
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
920 case syntaxspec:
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
921 printf ("/syntaxspec");
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
922 mcnt = *p++;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
923 printf ("/%d", mcnt);
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
924 break;
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
925
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
926 case notsyntaxspec:
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
927 printf ("/notsyntaxspec");
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
928 mcnt = *p++;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
929 printf ("/%d", mcnt);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
930 break;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
931 #endif /* emacs */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
932
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
933 case wordchar:
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
934 printf ("/wordchar");
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
935 break;
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
936
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
937 case notwordchar:
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
938 printf ("/notwordchar");
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
939 break;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
940
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
941 case begbuf:
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
942 printf ("/begbuf");
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
943 break;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
944
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
945 case endbuf:
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
946 printf ("/endbuf");
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
947 break;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
948
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
949 default:
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
950 printf ("?%d", *(p-1));
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
951 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
952
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
953 putchar ('\n');
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
954 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
955
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
956 printf ("%d:\tend of pattern.\n", p - start);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
957 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
958
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
959
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
960 void
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
961 print_compiled_pattern (bufp)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
962 struct re_pattern_buffer *bufp;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
963 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
964 unsigned char *buffer = bufp->buffer;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
965
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
966 print_partial_compiled_pattern (buffer, buffer + bufp->used);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
967 printf ("%d bytes used/%d bytes allocated.\n", bufp->used, bufp->allocated);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
968
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
969 if (bufp->fastmap_accurate && bufp->fastmap)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
970 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
971 printf ("fastmap: ");
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
972 print_fastmap (bufp->fastmap);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
973 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
974
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
975 printf ("re_nsub: %d\t", bufp->re_nsub);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
976 printf ("regs_alloc: %d\t", bufp->regs_allocated);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
977 printf ("can_be_null: %d\t", bufp->can_be_null);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
978 printf ("newline_anchor: %d\n", bufp->newline_anchor);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
979 printf ("no_sub: %d\t", bufp->no_sub);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
980 printf ("not_bol: %d\t", bufp->not_bol);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
981 printf ("not_eol: %d\t", bufp->not_eol);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
982 printf ("syntax: %d\n", bufp->syntax);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
983 /* Perhaps we should print the translate table? */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
984 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
985
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
986
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
987 void
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
988 print_double_string (where, string1, size1, string2, size2)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
989 const char *where;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
990 const char *string1;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
991 const char *string2;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
992 int size1;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
993 int size2;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
994 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
995 unsigned this_char;
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
996
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
997 if (where == NULL)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
998 printf ("(null)");
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
999 else
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1000 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1001 if (FIRST_STRING_P (where))
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1002 {
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1003 for (this_char = where - string1; this_char < size1; this_char++)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1004 putchar (string1[this_char]);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1005
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1006 where = string2;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1007 }
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1008
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1009 for (this_char = where - string2; this_char < size2; this_char++)
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1010 putchar (string2[this_char]);
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1011 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1012 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1013
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1014 #else /* not DEBUG */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1015
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1016 #undef assert
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1017 #define assert(e)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1018
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1019 #define DEBUG_STATEMENT(e)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1020 #define DEBUG_PRINT1(x)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1021 #define DEBUG_PRINT2(x1, x2)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1022 #define DEBUG_PRINT3(x1, x2, x3)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1023 #define DEBUG_PRINT4(x1, x2, x3, x4)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1024 #define DEBUG_PRINT_COMPILED_PATTERN(p, s, e)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1025 #define DEBUG_PRINT_DOUBLE_STRING(w, s1, sz1, s2, sz2)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1026
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1027 #endif /* not DEBUG */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1028
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1029 /* Set by `re_set_syntax' to the current regexp syntax to recognize. Can
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1030 also be assigned to arbitrarily: each pattern buffer stores its own
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1031 syntax, so it can be changed between regex compilations. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1032 /* This has no initializer because initialized variables in Emacs
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1033 become read-only after dumping. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1034 reg_syntax_t re_syntax_options;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1035
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1036
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1037 /* Specify the precise syntax of regexps for compilation. This provides
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1038 for compatibility for various utilities which historically have
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1039 different, incompatible syntaxes.
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1040
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1041 The argument SYNTAX is a bit mask comprised of the various bits
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1042 defined in regex.h. We return the old syntax. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1043
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1044 reg_syntax_t
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1045 re_set_syntax (syntax)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1046 reg_syntax_t syntax;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1047 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1048 reg_syntax_t ret = re_syntax_options;
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
1049
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1050 re_syntax_options = syntax;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1051 return ret;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1052 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1053
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1054 /* This table gives an error message for each of the error codes listed
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1055 in regex.h. Obviously the order here has to be same as there.
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1056 POSIX doesn't require that we do anything for REG_NOERROR,
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1057 but why not be nice? */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1058
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1059 static const char *re_error_msgid[] =
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
1060 {
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
1061 gettext_noop ("Success"), /* REG_NOERROR */
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
1062 gettext_noop ("No match"), /* REG_NOMATCH */
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
1063 gettext_noop ("Invalid regular expression"), /* REG_BADPAT */
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
1064 gettext_noop ("Invalid collation character"), /* REG_ECOLLATE */
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
1065 gettext_noop ("Invalid character class name"), /* REG_ECTYPE */
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
1066 gettext_noop ("Trailing backslash"), /* REG_EESCAPE */
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
1067 gettext_noop ("Invalid back reference"), /* REG_ESUBREG */
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
1068 gettext_noop ("Unmatched [ or [^"), /* REG_EBRACK */
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
1069 gettext_noop ("Unmatched ( or \\("), /* REG_EPAREN */
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
1070 gettext_noop ("Unmatched \\{"), /* REG_EBRACE */
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
1071 gettext_noop ("Invalid content of \\{\\}"), /* REG_BADBR */
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
1072 gettext_noop ("Invalid range end"), /* REG_ERANGE */
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
1073 gettext_noop ("Memory exhausted"), /* REG_ESPACE */
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
1074 gettext_noop ("Invalid preceding regular expression"), /* REG_BADRPT */
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
1075 gettext_noop ("Premature end of regular expression"), /* REG_EEND */
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
1076 gettext_noop ("Regular expression too big"), /* REG_ESIZE */
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
1077 gettext_noop ("Unmatched ) or \\)"), /* REG_ERPAREN */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1078 };
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1079
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1080 /* Avoiding alloca during matching, to placate r_alloc. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1081
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1082 /* Define MATCH_MAY_ALLOCATE unless we need to make sure that the
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1083 searching and matching functions should not call alloca. On some
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1084 systems, alloca is implemented in terms of malloc, and if we're
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1085 using the relocating allocator routines, then malloc could cause a
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1086 relocation, which might (if the strings being searched are in the
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1087 ralloc heap) shift the data out from underneath the regexp
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1088 routines.
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1089
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
1090 Here's another reason to avoid allocation: Emacs
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1091 processes input from X in a signal handler; processing X input may
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1092 call malloc; if input arrives while a matching routine is calling
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1093 malloc, then we're scrod. But Emacs can't just block input while
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1094 calling matching routines; then we don't notice interrupts when
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1095 they come in. So, Emacs blocks input around all regexp calls
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1096 except the matching calls, which it leaves unprotected, in the
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1097 faith that they will not malloc. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1098
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1099 /* Normally, this is fine. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1100 #define MATCH_MAY_ALLOCATE
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1101
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1102 /* When using GNU C, we are not REALLY using the C alloca, no matter
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1103 what config.h may say. So don't take precautions for it. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1104 #ifdef __GNUC__
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1105 #undef C_ALLOCA
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1106 #endif
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1107
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1108 /* The match routines may not allocate if (1) they would do it with malloc
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1109 and (2) it's not safe for them to use malloc.
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1110 Note that if REL_ALLOC is defined, matching would not use malloc for the
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1111 failure stack, but we would still use it for the register vectors;
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1112 so REL_ALLOC should not affect this. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1113 #if (defined (C_ALLOCA) || defined (REGEX_MALLOC)) && defined (emacs)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1114 #undef MATCH_MAY_ALLOCATE
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1115 #endif
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1116
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1117
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1118 /* Failure stack declarations and macros; both re_compile_fastmap and
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1119 re_match_2 use a failure stack. These have to be macros because of
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1120 REGEX_ALLOCATE_STACK. */
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
1121
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1122
1156
8e1cbb305ddc (TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents: 992
diff changeset
1123 /* Approximate number of failure points for which to initially allocate space
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1124 when matching. If this number is exceeded, we allocate more
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1125 space, so it is not a hard limit. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1126 #ifndef INIT_FAILURE_ALLOC
1156
8e1cbb305ddc (TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents: 992
diff changeset
1127 #define INIT_FAILURE_ALLOC 20
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1128 #endif
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1129
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1130 /* Roughly the maximum number of failure points on the stack. Would be
1156
8e1cbb305ddc (TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents: 992
diff changeset
1131 exactly that if always used TYPICAL_FAILURE_SIZE items each time we failed.
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1132 This is a variable only so users of regex can assign to it; we never
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1133 change it ourselves. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1134 #if defined (MATCH_MAY_ALLOCATE)
1156
8e1cbb305ddc (TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents: 992
diff changeset
1135 /* Note that 4400 is enough to cause a crash on Alpha OSF/1,
8e1cbb305ddc (TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents: 992
diff changeset
1136 whose default stack limit is 2mb. In order for a larger
8e1cbb305ddc (TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents: 992
diff changeset
1137 value to work reliably, you have to try to make it accord
8e1cbb305ddc (TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents: 992
diff changeset
1138 with the process stack limit. */
8e1cbb305ddc (TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents: 992
diff changeset
1139 int re_max_failures = 40000;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1140 #else
1156
8e1cbb305ddc (TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents: 992
diff changeset
1141 int re_max_failures = 4000;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1142 #endif
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1143
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1144 union fail_stack_elt
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1145 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1146 unsigned char *pointer;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1147 int integer;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1148 };
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1149
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1150 typedef union fail_stack_elt fail_stack_elt_t;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1151
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1152 typedef struct
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1153 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1154 fail_stack_elt_t *stack;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1155 unsigned size;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1156 unsigned avail; /* Offset of next open position. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1157 } fail_stack_type;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1158
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1159 #define FAIL_STACK_EMPTY() (fail_stack.avail == 0)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1160 #define FAIL_STACK_PTR_EMPTY() (fail_stack_ptr->avail == 0)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1161 #define FAIL_STACK_FULL() (fail_stack.avail == fail_stack.size)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1162
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1163
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1164 /* Define macros to initialize and free the failure stack.
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1165 Do `return -2' if the alloc fails. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1166
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1167 #ifdef MATCH_MAY_ALLOCATE
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1168 #define INIT_FAIL_STACK() \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1169 do { \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1170 fail_stack.stack = (fail_stack_elt_t *) \
1156
8e1cbb305ddc (TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents: 992
diff changeset
1171 REGEX_ALLOCATE_STACK (INIT_FAILURE_ALLOC * TYPICAL_FAILURE_SIZE \
8e1cbb305ddc (TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents: 992
diff changeset
1172 * sizeof (fail_stack_elt_t)); \
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1173 \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1174 if (fail_stack.stack == NULL) \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1175 return -2; \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1176 \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1177 fail_stack.size = INIT_FAILURE_ALLOC; \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1178 fail_stack.avail = 0; \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1179 } while (0)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1180
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1181 #define RESET_FAIL_STACK() REGEX_FREE_STACK (fail_stack.stack)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1182 #else
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1183 #define INIT_FAIL_STACK() \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1184 do { \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1185 fail_stack.avail = 0; \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1186 } while (0)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1187
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1188 #define RESET_FAIL_STACK()
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1189 #endif
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1190
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1191
1156
8e1cbb305ddc (TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents: 992
diff changeset
1192 /* Double the size of FAIL_STACK, up to a limit
8e1cbb305ddc (TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents: 992
diff changeset
1193 which allows approximately `re_max_failures' items.
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1194
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1195 Return 1 if succeeds, and 0 if either ran out of memory
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
1196 allocating space for it or it was already too large.
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
1197
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1198 REGEX_REALLOCATE_STACK requires `destination' be declared. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1199
1156
8e1cbb305ddc (TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents: 992
diff changeset
1200 /* Factor to increase the failure stack size by
8e1cbb305ddc (TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents: 992
diff changeset
1201 when we increase it.
8e1cbb305ddc (TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents: 992
diff changeset
1202 This used to be 2, but 2 was too wasteful
8e1cbb305ddc (TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents: 992
diff changeset
1203 because the old discarded stacks added up to as much space
8e1cbb305ddc (TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents: 992
diff changeset
1204 were as ultimate, maximum-size stack. */
8e1cbb305ddc (TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents: 992
diff changeset
1205 #define FAIL_STACK_GROWTH_FACTOR 4
8e1cbb305ddc (TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents: 992
diff changeset
1206
8e1cbb305ddc (TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents: 992
diff changeset
1207 #define GROW_FAIL_STACK(fail_stack) \
8e1cbb305ddc (TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents: 992
diff changeset
1208 ((fail_stack).size >= re_max_failures * TYPICAL_FAILURE_SIZE \
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1209 ? 0 \
1156
8e1cbb305ddc (TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents: 992
diff changeset
1210 : ((fail_stack).stack \
8e1cbb305ddc (TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents: 992
diff changeset
1211 = (fail_stack_elt_t *) \
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1212 REGEX_REALLOCATE_STACK ((fail_stack).stack, \
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1213 (fail_stack).size * sizeof (fail_stack_elt_t), \
1156
8e1cbb305ddc (TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents: 992
diff changeset
1214 MIN (re_max_failures * TYPICAL_FAILURE_SIZE, \
8e1cbb305ddc (TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents: 992
diff changeset
1215 ((fail_stack).size * sizeof (fail_stack_elt_t) \
8e1cbb305ddc (TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents: 992
diff changeset
1216 * FAIL_STACK_GROWTH_FACTOR))), \
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1217 \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1218 (fail_stack).stack == NULL \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1219 ? 0 \
1157
5aa89bba935d (GROW_FAIL_STACK): Fix previous change:
Karl Heuer <kwzh@gnu.org>
parents: 1156
diff changeset
1220 : ((fail_stack).size \
5aa89bba935d (GROW_FAIL_STACK): Fix previous change:
Karl Heuer <kwzh@gnu.org>
parents: 1156
diff changeset
1221 = (MIN (re_max_failures * TYPICAL_FAILURE_SIZE, \
5aa89bba935d (GROW_FAIL_STACK): Fix previous change:
Karl Heuer <kwzh@gnu.org>
parents: 1156
diff changeset
1222 ((fail_stack).size * sizeof (fail_stack_elt_t) \
5aa89bba935d (GROW_FAIL_STACK): Fix previous change:
Karl Heuer <kwzh@gnu.org>
parents: 1156
diff changeset
1223 * FAIL_STACK_GROWTH_FACTOR)) \
5aa89bba935d (GROW_FAIL_STACK): Fix previous change:
Karl Heuer <kwzh@gnu.org>
parents: 1156
diff changeset
1224 / sizeof (fail_stack_elt_t)), \
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1225 1)))
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1226
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1227
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
1228 /* Push pointer POINTER on FAIL_STACK.
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1229 Return 1 if was able to do so and 0 if ran out of memory allocating
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1230 space to do so. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1231 #define PUSH_PATTERN_OP(POINTER, FAIL_STACK) \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1232 ((FAIL_STACK_FULL () \
1156
8e1cbb305ddc (TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents: 992
diff changeset
1233 && !GROW_FAIL_STACK (FAIL_STACK)) \
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1234 ? 0 \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1235 : ((FAIL_STACK).stack[(FAIL_STACK).avail++].pointer = POINTER, \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1236 1))
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1237
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1238 /* Push a pointer value onto the failure stack.
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1239 Assumes the variable `fail_stack'. Probably should only
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1240 be called from within `PUSH_FAILURE_POINT'. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1241 #define PUSH_FAILURE_POINTER(item) \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1242 fail_stack.stack[fail_stack.avail++].pointer = (unsigned char *) (item)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1243
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1244 /* This pushes an integer-valued item onto the failure stack.
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1245 Assumes the variable `fail_stack'. Probably should only
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1246 be called from within `PUSH_FAILURE_POINT'. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1247 #define PUSH_FAILURE_INT(item) \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1248 fail_stack.stack[fail_stack.avail++].integer = (item)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1249
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1250 /* Push a fail_stack_elt_t value onto the failure stack.
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1251 Assumes the variable `fail_stack'. Probably should only
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1252 be called from within `PUSH_FAILURE_POINT'. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1253 #define PUSH_FAILURE_ELT(item) \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1254 fail_stack.stack[fail_stack.avail++] = (item)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1255
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1256 /* These three POP... operations complement the three PUSH... operations.
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1257 All assume that `fail_stack' is nonempty. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1258 #define POP_FAILURE_POINTER() fail_stack.stack[--fail_stack.avail].pointer
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1259 #define POP_FAILURE_INT() fail_stack.stack[--fail_stack.avail].integer
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1260 #define POP_FAILURE_ELT() fail_stack.stack[--fail_stack.avail]
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1261
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1262 /* Used to omit pushing failure point id's when we're not debugging. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1263 #ifdef DEBUG
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1264 #define DEBUG_PUSH PUSH_FAILURE_INT
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1265 #define DEBUG_POP(item_addr) *(item_addr) = POP_FAILURE_INT ()
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1266 #else
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1267 #define DEBUG_PUSH(item)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1268 #define DEBUG_POP(item_addr)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1269 #endif
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1270
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1271
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1272 /* Push the information about the state we will need
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
1273 if we ever fail back to it.
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
1274
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1275 Requires variables fail_stack, regstart, regend, reg_info, and
1156
8e1cbb305ddc (TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents: 992
diff changeset
1276 num_regs be declared. GROW_FAIL_STACK requires `destination' be
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1277 declared.
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
1278
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1279 Does `return FAILURE_CODE' if runs out of memory. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1280
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1281 #define PUSH_FAILURE_POINT(pattern_place, string_place, failure_code) \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1282 do { \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1283 char *destination; \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1284 /* Must be int, so when we don't save any registers, the arithmetic \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1285 of 0 + -1 isn't done as unsigned. */ \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1286 int this_reg; \
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1287 \
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1288 DEBUG_STATEMENT (failure_id++); \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1289 DEBUG_STATEMENT (nfailure_points_pushed++); \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1290 DEBUG_PRINT2 ("\nPUSH_FAILURE_POINT #%u:\n", failure_id); \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1291 DEBUG_PRINT2 (" Before push, next avail: %d\n", (fail_stack).avail);\
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1292 DEBUG_PRINT2 (" size: %d\n", (fail_stack).size);\
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1293 \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1294 DEBUG_PRINT2 (" slots needed: %d\n", NUM_FAILURE_ITEMS); \
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1295 DEBUG_PRINT2 (" available: %d\n", REMAINING_AVAIL_SLOTS); \
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1296 \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1297 /* Ensure we have enough space allocated for what we will push. */ \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1298 while (REMAINING_AVAIL_SLOTS < NUM_FAILURE_ITEMS) \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1299 { \
1156
8e1cbb305ddc (TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents: 992
diff changeset
1300 if (!GROW_FAIL_STACK (fail_stack)) \
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1301 return failure_code; \
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1302 \
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1303 DEBUG_PRINT2 ("\n Doubled stack; size now: %d\n", \
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1304 (fail_stack).size); \
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1305 DEBUG_PRINT2 (" slots available: %d\n", REMAINING_AVAIL_SLOTS);\
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1306 } \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1307 \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1308 /* Push the info, starting with the registers. */ \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1309 DEBUG_PRINT1 ("\n"); \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1310 \
511
799190471f84 (NUM_FAILURE_ITEMS, POP_FAILURE_POINT, PUSH_FAILURE_POINT):
Richard Stallman <rms@gnu.org>
parents: 506
diff changeset
1311 if (1) \
480
998dc67883fb (PUSH_FAILURE_POINT, POP_FAILURE_POINT): Don't push or pop
Richard Stallman <rms@gnu.org>
parents: 463
diff changeset
1312 for (this_reg = lowest_active_reg; this_reg <= highest_active_reg; \
998dc67883fb (PUSH_FAILURE_POINT, POP_FAILURE_POINT): Don't push or pop
Richard Stallman <rms@gnu.org>
parents: 463
diff changeset
1313 this_reg++) \
998dc67883fb (PUSH_FAILURE_POINT, POP_FAILURE_POINT): Don't push or pop
Richard Stallman <rms@gnu.org>
parents: 463
diff changeset
1314 { \
998dc67883fb (PUSH_FAILURE_POINT, POP_FAILURE_POINT): Don't push or pop
Richard Stallman <rms@gnu.org>
parents: 463
diff changeset
1315 DEBUG_PRINT2 (" Pushing reg: %d\n", this_reg); \
998dc67883fb (PUSH_FAILURE_POINT, POP_FAILURE_POINT): Don't push or pop
Richard Stallman <rms@gnu.org>
parents: 463
diff changeset
1316 DEBUG_STATEMENT (num_regs_pushed++); \
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1317 \
480
998dc67883fb (PUSH_FAILURE_POINT, POP_FAILURE_POINT): Don't push or pop
Richard Stallman <rms@gnu.org>
parents: 463
diff changeset
1318 DEBUG_PRINT2 (" start: 0x%x\n", regstart[this_reg]); \
998dc67883fb (PUSH_FAILURE_POINT, POP_FAILURE_POINT): Don't push or pop
Richard Stallman <rms@gnu.org>
parents: 463
diff changeset
1319 PUSH_FAILURE_POINTER (regstart[this_reg]); \
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1320 \
480
998dc67883fb (PUSH_FAILURE_POINT, POP_FAILURE_POINT): Don't push or pop
Richard Stallman <rms@gnu.org>
parents: 463
diff changeset
1321 DEBUG_PRINT2 (" end: 0x%x\n", regend[this_reg]); \
998dc67883fb (PUSH_FAILURE_POINT, POP_FAILURE_POINT): Don't push or pop
Richard Stallman <rms@gnu.org>
parents: 463
diff changeset
1322 PUSH_FAILURE_POINTER (regend[this_reg]); \
998dc67883fb (PUSH_FAILURE_POINT, POP_FAILURE_POINT): Don't push or pop
Richard Stallman <rms@gnu.org>
parents: 463
diff changeset
1323 \
998dc67883fb (PUSH_FAILURE_POINT, POP_FAILURE_POINT): Don't push or pop
Richard Stallman <rms@gnu.org>
parents: 463
diff changeset
1324 DEBUG_PRINT2 (" info: 0x%x\n ", reg_info[this_reg]); \
998dc67883fb (PUSH_FAILURE_POINT, POP_FAILURE_POINT): Don't push or pop
Richard Stallman <rms@gnu.org>
parents: 463
diff changeset
1325 DEBUG_PRINT2 (" match_null=%d", \
998dc67883fb (PUSH_FAILURE_POINT, POP_FAILURE_POINT): Don't push or pop
Richard Stallman <rms@gnu.org>
parents: 463
diff changeset
1326 REG_MATCH_NULL_STRING_P (reg_info[this_reg])); \
998dc67883fb (PUSH_FAILURE_POINT, POP_FAILURE_POINT): Don't push or pop
Richard Stallman <rms@gnu.org>
parents: 463
diff changeset
1327 DEBUG_PRINT2 (" active=%d", IS_ACTIVE (reg_info[this_reg])); \
998dc67883fb (PUSH_FAILURE_POINT, POP_FAILURE_POINT): Don't push or pop
Richard Stallman <rms@gnu.org>
parents: 463
diff changeset
1328 DEBUG_PRINT2 (" matched_something=%d", \
998dc67883fb (PUSH_FAILURE_POINT, POP_FAILURE_POINT): Don't push or pop
Richard Stallman <rms@gnu.org>
parents: 463
diff changeset
1329 MATCHED_SOMETHING (reg_info[this_reg])); \
998dc67883fb (PUSH_FAILURE_POINT, POP_FAILURE_POINT): Don't push or pop
Richard Stallman <rms@gnu.org>
parents: 463
diff changeset
1330 DEBUG_PRINT2 (" ever_matched=%d", \
998dc67883fb (PUSH_FAILURE_POINT, POP_FAILURE_POINT): Don't push or pop
Richard Stallman <rms@gnu.org>
parents: 463
diff changeset
1331 EVER_MATCHED_SOMETHING (reg_info[this_reg])); \
998dc67883fb (PUSH_FAILURE_POINT, POP_FAILURE_POINT): Don't push or pop
Richard Stallman <rms@gnu.org>
parents: 463
diff changeset
1332 DEBUG_PRINT1 ("\n"); \
998dc67883fb (PUSH_FAILURE_POINT, POP_FAILURE_POINT): Don't push or pop
Richard Stallman <rms@gnu.org>
parents: 463
diff changeset
1333 PUSH_FAILURE_ELT (reg_info[this_reg].word); \
998dc67883fb (PUSH_FAILURE_POINT, POP_FAILURE_POINT): Don't push or pop
Richard Stallman <rms@gnu.org>
parents: 463
diff changeset
1334 } \
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1335 \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1336 DEBUG_PRINT2 (" Pushing low active reg: %d\n", lowest_active_reg);\
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1337 PUSH_FAILURE_INT (lowest_active_reg); \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1338 \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1339 DEBUG_PRINT2 (" Pushing high active reg: %d\n", highest_active_reg);\
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1340 PUSH_FAILURE_INT (highest_active_reg); \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1341 \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1342 DEBUG_PRINT2 (" Pushing pattern 0x%x: ", pattern_place); \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1343 DEBUG_PRINT_COMPILED_PATTERN (bufp, pattern_place, pend); \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1344 PUSH_FAILURE_POINTER (pattern_place); \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1345 \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1346 DEBUG_PRINT2 (" Pushing string 0x%x: `", string_place); \
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1347 DEBUG_PRINT_DOUBLE_STRING (string_place, string1, size1, string2, \
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1348 size2); \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1349 DEBUG_PRINT1 ("'\n"); \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1350 PUSH_FAILURE_POINTER (string_place); \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1351 \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1352 DEBUG_PRINT2 (" Pushing failure id: %u\n", failure_id); \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1353 DEBUG_PUSH (failure_id); \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1354 } while (0)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1355
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1356 /* This is the number of items that are pushed and popped on the stack
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1357 for each register. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1358 #define NUM_REG_ITEMS 3
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1359
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1360 /* Individual items aside from the registers. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1361 #ifdef DEBUG
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1362 #define NUM_NONREG_ITEMS 5 /* Includes failure point id. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1363 #else
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1364 #define NUM_NONREG_ITEMS 4
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1365 #endif
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1366
1156
8e1cbb305ddc (TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents: 992
diff changeset
1367 /* Estimate the size of data pushed by a typical failure stack entry.
8e1cbb305ddc (TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents: 992
diff changeset
1368 An estimate is all we need, because all we use this for
8e1cbb305ddc (TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents: 992
diff changeset
1369 is to choose a limit for how big to make the failure stack. */
8e1cbb305ddc (TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents: 992
diff changeset
1370
8e1cbb305ddc (TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents: 992
diff changeset
1371 #define TYPICAL_FAILURE_SIZE 20
8e1cbb305ddc (TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents: 992
diff changeset
1372
8e1cbb305ddc (TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents: 992
diff changeset
1373 /* This is how many items we actually use for a failure point.
8e1cbb305ddc (TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents: 992
diff changeset
1374 It depends on the regexp. */
480
998dc67883fb (PUSH_FAILURE_POINT, POP_FAILURE_POINT): Don't push or pop
Richard Stallman <rms@gnu.org>
parents: 463
diff changeset
1375 #define NUM_FAILURE_ITEMS \
511
799190471f84 (NUM_FAILURE_ITEMS, POP_FAILURE_POINT, PUSH_FAILURE_POINT):
Richard Stallman <rms@gnu.org>
parents: 506
diff changeset
1376 (((0 \
480
998dc67883fb (PUSH_FAILURE_POINT, POP_FAILURE_POINT): Don't push or pop
Richard Stallman <rms@gnu.org>
parents: 463
diff changeset
1377 ? 0 : highest_active_reg - lowest_active_reg + 1) \
998dc67883fb (PUSH_FAILURE_POINT, POP_FAILURE_POINT): Don't push or pop
Richard Stallman <rms@gnu.org>
parents: 463
diff changeset
1378 * NUM_REG_ITEMS) \
998dc67883fb (PUSH_FAILURE_POINT, POP_FAILURE_POINT): Don't push or pop
Richard Stallman <rms@gnu.org>
parents: 463
diff changeset
1379 + NUM_NONREG_ITEMS)
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1380
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1381 /* How many items can still be added to the stack without overflowing it. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1382 #define REMAINING_AVAIL_SLOTS ((fail_stack).size - (fail_stack).avail)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1383
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1384
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1385 /* Pops what PUSH_FAIL_STACK pushes.
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1386
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1387 We restore into the parameters, all of which should be lvalues:
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1388 STR -- the saved data position.
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1389 PAT -- the saved pattern position.
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1390 LOW_REG, HIGH_REG -- the highest and lowest active registers.
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1391 REGSTART, REGEND -- arrays of string positions.
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1392 REG_INFO -- array of information about each subexpression.
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
1393
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1394 Also assumes the variables `fail_stack' and (if debugging), `bufp',
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1395 `pend', `string1', `size1', `string2', and `size2'. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1396
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1397 #define POP_FAILURE_POINT(str, pat, low_reg, high_reg, regstart, regend, reg_info)\
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1398 { \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1399 DEBUG_STATEMENT (fail_stack_elt_t failure_id;) \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1400 int this_reg; \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1401 const unsigned char *string_temp; \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1402 \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1403 assert (!FAIL_STACK_EMPTY ()); \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1404 \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1405 /* Remove failure points and point to how many regs pushed. */ \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1406 DEBUG_PRINT1 ("POP_FAILURE_POINT:\n"); \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1407 DEBUG_PRINT2 (" Before pop, next avail: %d\n", fail_stack.avail); \
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1408 DEBUG_PRINT2 (" size: %d\n", fail_stack.size); \
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1409 \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1410 assert (fail_stack.avail >= NUM_NONREG_ITEMS); \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1411 \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1412 DEBUG_POP (&failure_id); \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1413 DEBUG_PRINT2 (" Popping failure id: %u\n", failure_id); \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1414 \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1415 /* If the saved string location is NULL, it came from an \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1416 on_failure_keep_string_jump opcode, and we want to throw away the \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1417 saved NULL, thus retaining our current position in the string. */ \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1418 string_temp = POP_FAILURE_POINTER (); \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1419 if (string_temp != NULL) \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1420 str = (const char *) string_temp; \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1421 \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1422 DEBUG_PRINT2 (" Popping string 0x%x: `", str); \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1423 DEBUG_PRINT_DOUBLE_STRING (str, string1, size1, string2, size2); \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1424 DEBUG_PRINT1 ("'\n"); \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1425 \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1426 pat = (unsigned char *) POP_FAILURE_POINTER (); \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1427 DEBUG_PRINT2 (" Popping pattern 0x%x: ", pat); \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1428 DEBUG_PRINT_COMPILED_PATTERN (bufp, pat, pend); \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1429 \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1430 /* Restore register info. */ \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1431 high_reg = (unsigned) POP_FAILURE_INT (); \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1432 DEBUG_PRINT2 (" Popping high active reg: %d\n", high_reg); \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1433 \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1434 low_reg = (unsigned) POP_FAILURE_INT (); \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1435 DEBUG_PRINT2 (" Popping low active reg: %d\n", low_reg); \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1436 \
511
799190471f84 (NUM_FAILURE_ITEMS, POP_FAILURE_POINT, PUSH_FAILURE_POINT):
Richard Stallman <rms@gnu.org>
parents: 506
diff changeset
1437 if (1) \
480
998dc67883fb (PUSH_FAILURE_POINT, POP_FAILURE_POINT): Don't push or pop
Richard Stallman <rms@gnu.org>
parents: 463
diff changeset
1438 for (this_reg = high_reg; this_reg >= low_reg; this_reg--) \
998dc67883fb (PUSH_FAILURE_POINT, POP_FAILURE_POINT): Don't push or pop
Richard Stallman <rms@gnu.org>
parents: 463
diff changeset
1439 { \
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1440 DEBUG_PRINT2 (" Popping reg: %d\n", this_reg); \
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1441 \
480
998dc67883fb (PUSH_FAILURE_POINT, POP_FAILURE_POINT): Don't push or pop
Richard Stallman <rms@gnu.org>
parents: 463
diff changeset
1442 reg_info[this_reg].word = POP_FAILURE_ELT (); \
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1443 DEBUG_PRINT2 (" info: 0x%x\n", reg_info[this_reg]); \
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1444 \
480
998dc67883fb (PUSH_FAILURE_POINT, POP_FAILURE_POINT): Don't push or pop
Richard Stallman <rms@gnu.org>
parents: 463
diff changeset
1445 regend[this_reg] = (const char *) POP_FAILURE_POINTER (); \
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1446 DEBUG_PRINT2 (" end: 0x%x\n", regend[this_reg]); \
480
998dc67883fb (PUSH_FAILURE_POINT, POP_FAILURE_POINT): Don't push or pop
Richard Stallman <rms@gnu.org>
parents: 463
diff changeset
1447 \
998dc67883fb (PUSH_FAILURE_POINT, POP_FAILURE_POINT): Don't push or pop
Richard Stallman <rms@gnu.org>
parents: 463
diff changeset
1448 regstart[this_reg] = (const char *) POP_FAILURE_POINTER (); \
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1449 DEBUG_PRINT2 (" start: 0x%x\n", regstart[this_reg]); \
480
998dc67883fb (PUSH_FAILURE_POINT, POP_FAILURE_POINT): Don't push or pop
Richard Stallman <rms@gnu.org>
parents: 463
diff changeset
1450 } \
501
f29b13c2cefd (TRANSLATE, PATFETCH): Cast elt of `translate'.
Richard Stallman <rms@gnu.org>
parents: 490
diff changeset
1451 else \
f29b13c2cefd (TRANSLATE, PATFETCH): Cast elt of `translate'.
Richard Stallman <rms@gnu.org>
parents: 490
diff changeset
1452 { \
f29b13c2cefd (TRANSLATE, PATFETCH): Cast elt of `translate'.
Richard Stallman <rms@gnu.org>
parents: 490
diff changeset
1453 for (this_reg = highest_active_reg; this_reg > high_reg; this_reg--) \
f29b13c2cefd (TRANSLATE, PATFETCH): Cast elt of `translate'.
Richard Stallman <rms@gnu.org>
parents: 490
diff changeset
1454 { \
506
b2984f830b57 (POP_FAILURE_POINT): Use .word.integer.
Richard Stallman <rms@gnu.org>
parents: 503
diff changeset
1455 reg_info[this_reg].word.integer = 0; \
501
f29b13c2cefd (TRANSLATE, PATFETCH): Cast elt of `translate'.
Richard Stallman <rms@gnu.org>
parents: 490
diff changeset
1456 regend[this_reg] = 0; \
f29b13c2cefd (TRANSLATE, PATFETCH): Cast elt of `translate'.
Richard Stallman <rms@gnu.org>
parents: 490
diff changeset
1457 regstart[this_reg] = 0; \
f29b13c2cefd (TRANSLATE, PATFETCH): Cast elt of `translate'.
Richard Stallman <rms@gnu.org>
parents: 490
diff changeset
1458 } \
f29b13c2cefd (TRANSLATE, PATFETCH): Cast elt of `translate'.
Richard Stallman <rms@gnu.org>
parents: 490
diff changeset
1459 highest_active_reg = high_reg; \
f29b13c2cefd (TRANSLATE, PATFETCH): Cast elt of `translate'.
Richard Stallman <rms@gnu.org>
parents: 490
diff changeset
1460 } \
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1461 \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1462 set_regs_matched_done = 0; \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1463 DEBUG_STATEMENT (nfailure_points_popped++); \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1464 } /* POP_FAILURE_POINT */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1465
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1466
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1467
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1468 /* Structure for per-register (a.k.a. per-group) information.
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1469 Other register information, such as the
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1470 starting and ending positions (which are addresses), and the list of
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1471 inner groups (which is a bits list) are maintained in separate
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
1472 variables.
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
1473
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1474 We are making a (strictly speaking) nonportable assumption here: that
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1475 the compiler will pack our bit fields into something that fits into
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1476 the type of `word', i.e., is something that fits into one item on the
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1477 failure stack. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1478
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1479 typedef union
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1480 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1481 fail_stack_elt_t word;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1482 struct
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1483 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1484 /* This field is one if this group can match the empty string,
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1485 zero if not. If not yet determined, `MATCH_NULL_UNSET_VALUE'. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1486 #define MATCH_NULL_UNSET_VALUE 3
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1487 unsigned match_null_string_p : 2;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1488 unsigned is_active : 1;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1489 unsigned matched_something : 1;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1490 unsigned ever_matched_something : 1;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1491 } bits;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1492 } register_info_type;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1493
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1494 #define REG_MATCH_NULL_STRING_P(R) ((R).bits.match_null_string_p)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1495 #define IS_ACTIVE(R) ((R).bits.is_active)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1496 #define MATCHED_SOMETHING(R) ((R).bits.matched_something)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1497 #define EVER_MATCHED_SOMETHING(R) ((R).bits.ever_matched_something)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1498
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1499
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1500 /* Call this when have matched a real character; it sets `matched' flags
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1501 for the subexpressions which we are currently inside. Also records
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1502 that those subexprs have matched. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1503 #define SET_REGS_MATCHED() \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1504 do \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1505 { \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1506 if (!set_regs_matched_done) \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1507 { \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1508 unsigned r; \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1509 set_regs_matched_done = 1; \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1510 for (r = lowest_active_reg; r <= highest_active_reg; r++) \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1511 { \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1512 MATCHED_SOMETHING (reg_info[r]) \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1513 = EVER_MATCHED_SOMETHING (reg_info[r]) \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1514 = 1; \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1515 } \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1516 } \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1517 } \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1518 while (0)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1519
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1520 /* Registers are set to a sentinel when they haven't yet matched. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1521 static char reg_unset_dummy;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1522 #define REG_UNSET_VALUE (&reg_unset_dummy)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1523 #define REG_UNSET(e) ((e) == REG_UNSET_VALUE)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1524
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1525 /* Subroutine declarations and macros for regex_compile. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1526
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1527 static void store_op1 (), store_op2 ();
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1528 static void insert_op1 (), insert_op2 ();
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1529 static boolean at_begline_loc_p (), at_endline_loc_p ();
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1530 static boolean group_in_compile_stack ();
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1531 static reg_errcode_t compile_range ();
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1532
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
1533 /* Fetch the next character in the uncompiled pattern---translating it
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1534 if necessary. Also cast from a signed character in the constant
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1535 string passed to us by the user to an unsigned char that we can use
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1536 as an array index (in, e.g., `translate'). */
501
f29b13c2cefd (TRANSLATE, PATFETCH): Cast elt of `translate'.
Richard Stallman <rms@gnu.org>
parents: 490
diff changeset
1537 #ifndef PATFETCH
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1538 #define PATFETCH(c) \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1539 do {if (p == pend) return REG_EEND; \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1540 c = (unsigned char) *p++; \
501
f29b13c2cefd (TRANSLATE, PATFETCH): Cast elt of `translate'.
Richard Stallman <rms@gnu.org>
parents: 490
diff changeset
1541 if (translate) c = (unsigned char) translate[c]; \
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1542 } while (0)
501
f29b13c2cefd (TRANSLATE, PATFETCH): Cast elt of `translate'.
Richard Stallman <rms@gnu.org>
parents: 490
diff changeset
1543 #endif
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1544
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1545 /* Fetch the next character in the uncompiled pattern, with no
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1546 translation. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1547 #define PATFETCH_RAW(c) \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1548 do {if (p == pend) return REG_EEND; \
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1549 c = (unsigned char) *p++; \
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1550 } while (0)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1551
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1552 /* Go backwards one character in the pattern. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1553 #define PATUNFETCH p--
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1554
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1555
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1556 /* If `translate' is non-null, return translate[D], else just D. We
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1557 cast the subscript to translate because some data is declared as
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1558 `char *', to avoid warnings when a string constant is passed. But
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1559 when we use a character as a subscript we must make it unsigned. */
501
f29b13c2cefd (TRANSLATE, PATFETCH): Cast elt of `translate'.
Richard Stallman <rms@gnu.org>
parents: 490
diff changeset
1560 #ifndef TRANSLATE
f29b13c2cefd (TRANSLATE, PATFETCH): Cast elt of `translate'.
Richard Stallman <rms@gnu.org>
parents: 490
diff changeset
1561 #define TRANSLATE(d) \
963
ed0235161e4b (TRANSLATE, re_search_2, re_match_2_internal,bcmp_translate):
Richard Stallman <rms@gnu.org>
parents: 961
diff changeset
1562 (translate ? (unsigned char) RE_TRANSLATE (translate, (unsigned char) (d)) : (d))
501
f29b13c2cefd (TRANSLATE, PATFETCH): Cast elt of `translate'.
Richard Stallman <rms@gnu.org>
parents: 490
diff changeset
1563 #endif
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1564
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1565
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1566 /* Macros for outputting the compiled pattern into `buffer'. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1567
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1568 /* If the buffer isn't allocated when it comes in, use this. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1569 #define INIT_BUF_SIZE 32
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1570
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1571 /* Make sure we have at least N more bytes of space in buffer. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1572 #define GET_BUFFER_SPACE(n) \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1573 while (b - bufp->buffer + (n) > bufp->allocated) \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1574 EXTEND_BUFFER ()
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1575
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1576 /* Make sure we have one more byte of buffer space and then add C to it. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1577 #define BUF_PUSH(c) \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1578 do { \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1579 GET_BUFFER_SPACE (1); \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1580 *b++ = (unsigned char) (c); \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1581 } while (0)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1582
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1583
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1584 /* Ensure we have two more bytes of buffer space and then append C1 and C2. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1585 #define BUF_PUSH_2(c1, c2) \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1586 do { \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1587 GET_BUFFER_SPACE (2); \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1588 *b++ = (unsigned char) (c1); \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1589 *b++ = (unsigned char) (c2); \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1590 } while (0)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1591
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1592
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1593 /* As with BUF_PUSH_2, except for three bytes. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1594 #define BUF_PUSH_3(c1, c2, c3) \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1595 do { \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1596 GET_BUFFER_SPACE (3); \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1597 *b++ = (unsigned char) (c1); \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1598 *b++ = (unsigned char) (c2); \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1599 *b++ = (unsigned char) (c3); \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1600 } while (0)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1601
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1602
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1603 /* Store a jump with opcode OP at LOC to location TO. We store a
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1604 relative address offset by the three bytes the jump itself occupies. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1605 #define STORE_JUMP(op, loc, to) \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1606 store_op1 (op, loc, (to) - (loc) - 3)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1607
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1608 /* Likewise, for a two-argument jump. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1609 #define STORE_JUMP2(op, loc, to, arg) \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1610 store_op2 (op, loc, (to) - (loc) - 3, arg)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1611
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1612 /* Like `STORE_JUMP', but for inserting. Assume `b' is the buffer end. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1613 #define INSERT_JUMP(op, loc, to) \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1614 insert_op1 (op, loc, (to) - (loc) - 3, b)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1615
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1616 /* Like `STORE_JUMP2', but for inserting. Assume `b' is the buffer end. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1617 #define INSERT_JUMP2(op, loc, to, arg) \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1618 insert_op2 (op, loc, (to) - (loc) - 3, arg, b)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1619
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1620
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1621 /* This is not an arbitrary limit: the arguments which represent offsets
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1622 into the pattern are two bytes long. So if 2^16 bytes turns out to
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1623 be too small, many things would have to change. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1624 #define MAX_BUF_SIZE (1L << 16)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1625
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1626
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1627 /* Extend the buffer by twice its current size via realloc and
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1628 reset the pointers that pointed into the old block to point to the
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1629 correct places in the new one. If extending the buffer results in it
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1630 being larger than MAX_BUF_SIZE, then flag memory exhausted. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1631 #define EXTEND_BUFFER() \
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1632 do { \
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1633 unsigned char *old_buffer = bufp->buffer; \
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1634 if (bufp->allocated == MAX_BUF_SIZE) \
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1635 return REG_ESIZE; \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1636 bufp->allocated <<= 1; \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1637 if (bufp->allocated > MAX_BUF_SIZE) \
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1638 bufp->allocated = MAX_BUF_SIZE; \
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1639 bufp->buffer = (unsigned char *) realloc (bufp->buffer, bufp->allocated);\
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1640 if (bufp->buffer == NULL) \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1641 return REG_ESPACE; \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1642 /* If the buffer moved, move all the pointers into it. */ \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1643 if (old_buffer != bufp->buffer) \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1644 { \
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1645 b = (b - old_buffer) + bufp->buffer; \
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1646 begalt = (begalt - old_buffer) + bufp->buffer; \
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1647 if (fixup_alt_jump) \
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1648 fixup_alt_jump = (fixup_alt_jump - old_buffer) + bufp->buffer;\
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1649 if (laststart) \
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1650 laststart = (laststart - old_buffer) + bufp->buffer; \
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1651 if (pending_exact) \
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1652 pending_exact = (pending_exact - old_buffer) + bufp->buffer; \
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1653 } \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1654 } while (0)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1655
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1656
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1657 /* Since we have one byte reserved for the register number argument to
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1658 {start,stop}_memory, the maximum number of groups we can report
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1659 things about is what fits in that byte. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1660 #define MAX_REGNUM 255
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1661
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1662 /* But patterns can have more than `MAX_REGNUM' registers. We just
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1663 ignore the excess. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1664 typedef unsigned regnum_t;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1665
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1666
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1667 /* Macros for the compile stack. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1668
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1669 /* Since offsets can go either forwards or backwards, this type needs to
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1670 be able to hold values from -(MAX_BUF_SIZE - 1) to MAX_BUF_SIZE - 1. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1671 typedef int pattern_offset_t;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1672
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1673 typedef struct
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1674 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1675 pattern_offset_t begalt_offset;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1676 pattern_offset_t fixup_alt_jump;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1677 pattern_offset_t inner_group_offset;
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
1678 pattern_offset_t laststart_offset;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1679 regnum_t regnum;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1680 } compile_stack_elt_t;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1681
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1682
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1683 typedef struct
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1684 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1685 compile_stack_elt_t *stack;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1686 unsigned size;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1687 unsigned avail; /* Offset of next open position. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1688 } compile_stack_type;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1689
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1690
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1691 #define INIT_COMPILE_STACK_SIZE 32
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1692
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1693 #define COMPILE_STACK_EMPTY (compile_stack.avail == 0)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1694 #define COMPILE_STACK_FULL (compile_stack.avail == compile_stack.size)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1695
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1696 /* The next available element. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1697 #define COMPILE_STACK_TOP (compile_stack.stack[compile_stack.avail])
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1698
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1699
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
1700 /* Structure to manage work area for range table. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
1701 struct range_table_work_area
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
1702 {
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
1703 int *table; /* actual work area. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
1704 int allocated; /* allocated size for work area in bytes. */
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1705 int used; /* actually used size in words. */
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
1706 };
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
1707
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
1708 /* Make sure that WORK_AREA can hold more N multibyte characters. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
1709 #define EXTEND_RANGE_TABLE_WORK_AREA(work_area, n) \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
1710 do { \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
1711 if (((work_area).used + (n)) * sizeof (int) > (work_area).allocated) \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
1712 { \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
1713 (work_area).allocated += 16 * sizeof (int); \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
1714 if ((work_area).table) \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
1715 (work_area).table \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
1716 = (int *) realloc ((work_area).table, (work_area).allocated); \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
1717 else \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
1718 (work_area).table \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
1719 = (int *) malloc ((work_area).allocated); \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
1720 if ((work_area).table == 0) \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
1721 FREE_STACK_RETURN (REG_ESPACE); \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
1722 } \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
1723 } while (0)
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
1724
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
1725 /* Set a range (RANGE_START, RANGE_END) to WORK_AREA. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
1726 #define SET_RANGE_TABLE_WORK_AREA(work_area, range_start, range_end) \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
1727 do { \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
1728 EXTEND_RANGE_TABLE_WORK_AREA ((work_area), 2); \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
1729 (work_area).table[(work_area).used++] = (range_start); \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
1730 (work_area).table[(work_area).used++] = (range_end); \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
1731 } while (0)
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
1732
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1733 /* Free allocated memory for WORK_AREA. */
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
1734 #define FREE_RANGE_TABLE_WORK_AREA(work_area) \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
1735 do { \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
1736 if ((work_area).table) \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
1737 free ((work_area).table); \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
1738 } while (0)
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
1739
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
1740 #define CLEAR_RANGE_TABLE_WORK_USED(work_area) ((work_area).used = 0)
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
1741 #define RANGE_TABLE_WORK_USED(work_area) ((work_area).used)
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
1742 #define RANGE_TABLE_WORK_ELT(work_area, i) ((work_area).table[i])
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
1743
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
1744
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1745 /* Set the bit for character C in a list. */
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1746 #define SET_LIST_BIT(c) \
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1747 (b[((unsigned char) (c)) / BYTEWIDTH] \
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1748 |= 1 << (((unsigned char) c) % BYTEWIDTH))
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1749
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1750
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1751 /* Get the next unsigned number in the uncompiled pattern. */
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1752 #define GET_UNSIGNED_NUMBER(num) \
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1753 { if (p != pend) \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1754 { \
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1755 PATFETCH (c); \
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1756 while (ISDIGIT (c)) \
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1757 { \
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1758 if (num < 0) \
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1759 num = 0; \
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1760 num = num * 10 + c - '0'; \
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1761 if (p == pend) \
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1762 break; \
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1763 PATFETCH (c); \
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1764 } \
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1765 } \
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
1766 }
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1767
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1768 #define CHAR_CLASS_MAX_LENGTH 6 /* Namely, `xdigit'. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1769
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1770 #define IS_CHAR_CLASS(string) \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1771 (STREQ (string, "alpha") || STREQ (string, "upper") \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1772 || STREQ (string, "lower") || STREQ (string, "digit") \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1773 || STREQ (string, "alnum") || STREQ (string, "xdigit") \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1774 || STREQ (string, "space") || STREQ (string, "print") \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1775 || STREQ (string, "punct") || STREQ (string, "graph") \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1776 || STREQ (string, "cntrl") || STREQ (string, "blank"))
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1777
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1778 #ifndef MATCH_MAY_ALLOCATE
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1779
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1780 /* If we cannot allocate large objects within re_match_2_internal,
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1781 we make the fail stack and register vectors global.
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1782 The fail stack, we grow to the maximum size when a regexp
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1783 is compiled.
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1784 The register vectors, we adjust in size each time we
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1785 compile a regexp, according to the number of registers it needs. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1786
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1787 static fail_stack_type fail_stack;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1788
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1789 /* Size with which the following vectors are currently allocated.
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1790 That is so we can make them bigger as needed,
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1791 but never make them smaller. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1792 static int regs_allocated_size;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1793
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1794 static const char ** regstart, ** regend;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1795 static const char ** old_regstart, ** old_regend;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1796 static const char **best_regstart, **best_regend;
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
1797 static register_info_type *reg_info;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1798 static const char **reg_dummy;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1799 static register_info_type *reg_info_dummy;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1800
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1801 /* Make the register vectors big enough for NUM_REGS registers,
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1802 but don't make them smaller. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1803
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1804 static
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1805 regex_grow_registers (num_regs)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1806 int num_regs;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1807 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1808 if (num_regs > regs_allocated_size)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1809 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1810 RETALLOC_IF (regstart, num_regs, const char *);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1811 RETALLOC_IF (regend, num_regs, const char *);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1812 RETALLOC_IF (old_regstart, num_regs, const char *);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1813 RETALLOC_IF (old_regend, num_regs, const char *);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1814 RETALLOC_IF (best_regstart, num_regs, const char *);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1815 RETALLOC_IF (best_regend, num_regs, const char *);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1816 RETALLOC_IF (reg_info, num_regs, register_info_type);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1817 RETALLOC_IF (reg_dummy, num_regs, const char *);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1818 RETALLOC_IF (reg_info_dummy, num_regs, register_info_type);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1819
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1820 regs_allocated_size = num_regs;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1821 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1822 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1823
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1824 #endif /* not MATCH_MAY_ALLOCATE */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1825
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1826 /* `regex_compile' compiles PATTERN (of length SIZE) according to SYNTAX.
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1827 Returns one of error codes defined in `regex.h', or zero for success.
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1828
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1829 Assumes the `allocated' (and perhaps `buffer') and `translate'
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1830 fields are set in BUFP on entry.
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1831
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1832 If it succeeds, results are put in BUFP (if it returns an error, the
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1833 contents of BUFP are undefined):
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1834 `buffer' is the compiled pattern;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1835 `syntax' is set to SYNTAX;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1836 `used' is set to the length of the compiled pattern;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1837 `fastmap_accurate' is zero;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1838 `re_nsub' is the number of subexpressions in PATTERN;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1839 `not_bol' and `not_eol' are zero;
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
1840
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1841 The `fastmap' and `newline_anchor' fields are neither
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1842 examined nor set. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1843
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1844 /* Return, freeing storage we allocated. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1845 #define FREE_STACK_RETURN(value) \
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
1846 do { \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
1847 FREE_RANGE_TABLE_WORK_AREA (range_table_work); \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
1848 free (compile_stack.stack); \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
1849 return value; \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
1850 } while (0)
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1851
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1852 static reg_errcode_t
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1853 regex_compile (pattern, size, syntax, bufp)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1854 const char *pattern;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1855 int size;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1856 reg_syntax_t syntax;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1857 struct re_pattern_buffer *bufp;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1858 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1859 /* We fetch characters from PATTERN here. Even though PATTERN is
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1860 `char *' (i.e., signed), we declare these variables as unsigned, so
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1861 they can be reliably used as array indices. */
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
1862 register unsigned int c, c1;
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
1863
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1864 /* A random temporary spot in PATTERN. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1865 const char *p1;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1866
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1867 /* Points to the end of the buffer, where we should append. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1868 register unsigned char *b;
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
1869
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1870 /* Keeps track of unclosed groups. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1871 compile_stack_type compile_stack;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1872
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1873 /* Points to the current (ending) position in the pattern. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1874 const char *p = pattern;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1875 const char *pend = pattern + size;
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
1876
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1877 /* How to translate the characters in the pattern. */
501
f29b13c2cefd (TRANSLATE, PATFETCH): Cast elt of `translate'.
Richard Stallman <rms@gnu.org>
parents: 490
diff changeset
1878 RE_TRANSLATE_TYPE translate = bufp->translate;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1879
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1880 /* Address of the count-byte of the most recently inserted `exactn'
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1881 command. This makes it possible to tell if a new exact-match
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1882 character can be added to that command or if the character requires
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1883 a new `exactn' command. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1884 unsigned char *pending_exact = 0;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1885
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1886 /* Address of start of the most recently finished expression.
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1887 This tells, e.g., postfix * where to find the start of its
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1888 operand. Reset at the beginning of groups and alternatives. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1889 unsigned char *laststart = 0;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1890
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1891 /* Address of beginning of regexp, or inside of last group. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1892 unsigned char *begalt;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1893
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1894 /* Place in the uncompiled pattern (i.e., the {) to
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1895 which to go back if the interval is invalid. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1896 const char *beg_interval;
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
1897
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1898 /* Address of the place where a forward jump should go to the end of
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1899 the containing expression. Each alternative of an `or' -- except the
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1900 last -- ends with a forward jump of this sort. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1901 unsigned char *fixup_alt_jump = 0;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1902
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1903 /* Counts open-groups as they are encountered. Remembered for the
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1904 matching close-group on the compile stack, so the same register
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1905 number is put in the stop_memory as the start_memory. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1906 regnum_t regnum = 0;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1907
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
1908 /* Work area for range table of charset. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
1909 struct range_table_work_area range_table_work;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
1910
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1911 #ifdef DEBUG
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1912 DEBUG_PRINT1 ("\nCompiling pattern: ");
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1913 if (debug)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1914 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1915 unsigned debug_count;
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
1916
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1917 for (debug_count = 0; debug_count < size; debug_count++)
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1918 putchar (pattern[debug_count]);
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1919 putchar ('\n');
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1920 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1921 #endif /* DEBUG */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1922
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1923 /* Initialize the compile stack. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1924 compile_stack.stack = TALLOC (INIT_COMPILE_STACK_SIZE, compile_stack_elt_t);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1925 if (compile_stack.stack == NULL)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1926 return REG_ESPACE;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1927
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1928 compile_stack.size = INIT_COMPILE_STACK_SIZE;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1929 compile_stack.avail = 0;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1930
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
1931 range_table_work.table = 0;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
1932 range_table_work.allocated = 0;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
1933
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1934 /* Initialize the pattern buffer. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1935 bufp->syntax = syntax;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1936 bufp->fastmap_accurate = 0;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1937 bufp->not_bol = bufp->not_eol = 0;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1938
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1939 /* Set `used' to zero, so that if we return an error, the pattern
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1940 printer (for debugging) will think there's no pattern. We reset it
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1941 at the end. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1942 bufp->used = 0;
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
1943
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1944 /* Always count groups, whether or not bufp->no_sub is set. */
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
1945 bufp->re_nsub = 0;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1946
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
1947 #ifdef emacs
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
1948 /* bufp->multibyte is set before regex_compile is called, so don't alter
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
1949 it. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
1950 #else /* not emacs */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
1951 /* Nothing is recognized as a multibyte character. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
1952 bufp->multibyte = 0;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
1953 #endif
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
1954
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1955 #if !defined (emacs) && !defined (SYNTAX_TABLE)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1956 /* Initialize the syntax table. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1957 init_syntax_once ();
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1958 #endif
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1959
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1960 if (bufp->allocated == 0)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1961 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1962 if (bufp->buffer)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1963 { /* If zero allocated, but buffer is non-null, try to realloc
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1964 enough space. This loses if buffer's address is bogus, but
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1965 that is the user's responsibility. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1966 RETALLOC (bufp->buffer, INIT_BUF_SIZE, unsigned char);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1967 }
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1968 else
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1969 { /* Caller did not allocate a buffer. Do it for them. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1970 bufp->buffer = TALLOC (INIT_BUF_SIZE, unsigned char);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1971 }
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1972 if (!bufp->buffer) FREE_STACK_RETURN (REG_ESPACE);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1973
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1974 bufp->allocated = INIT_BUF_SIZE;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1975 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1976
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1977 begalt = b = bufp->buffer;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1978
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1979 /* Loop through the uncompiled pattern until we're at the end. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1980 while (p != pend)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1981 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1982 PATFETCH (c);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1983
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
1984 switch (c)
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1985 {
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1986 case '^':
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1987 {
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1988 if ( /* If at start of pattern, it's an operator. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1989 p == pattern + 1
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1990 /* If context independent, it's an operator. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1991 || syntax & RE_CONTEXT_INDEP_ANCHORS
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1992 /* Otherwise, depends on what's come before. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1993 || at_begline_loc_p (pattern, p, syntax))
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1994 BUF_PUSH (begline);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1995 else
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1996 goto normal_char;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1997 }
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1998 break;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
1999
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2000
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2001 case '$':
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2002 {
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2003 if ( /* If at end of pattern, it's an operator. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2004 p == pend
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2005 /* If context independent, it's an operator. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2006 || syntax & RE_CONTEXT_INDEP_ANCHORS
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2007 /* Otherwise, depends on what's next. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2008 || at_endline_loc_p (p, pend, syntax))
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2009 BUF_PUSH (endline);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2010 else
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2011 goto normal_char;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2012 }
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2013 break;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2014
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2015
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2016 case '+':
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2017 case '?':
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2018 if ((syntax & RE_BK_PLUS_QM)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2019 || (syntax & RE_LIMITED_OPS))
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2020 goto normal_char;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2021 handle_plus:
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2022 case '*':
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2023 /* If there is no previous pattern... */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2024 if (!laststart)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2025 {
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2026 if (syntax & RE_CONTEXT_INVALID_OPS)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2027 FREE_STACK_RETURN (REG_BADRPT);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2028 else if (!(syntax & RE_CONTEXT_INDEP_OPS))
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2029 goto normal_char;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2030 }
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2031
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2032 {
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2033 /* Are we optimizing this jump? */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2034 boolean keep_string_p = false;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2035
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2036 /* 1 means zero (many) matches is allowed. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2037 char zero_times_ok = 0, many_times_ok = 0;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2038
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2039 /* If there is a sequence of repetition chars, collapse it
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2040 down to just one (the right one). We can't combine
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2041 interval operators with these because of, e.g., `a{2}*',
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2042 which should only match an even number of `a's. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2043
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2044 for (;;)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2045 {
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2046 zero_times_ok |= c != '+';
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2047 many_times_ok |= c != '?';
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2048
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2049 if (p == pend)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2050 break;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2051
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2052 PATFETCH (c);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2053
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2054 if (c == '*'
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2055 || (!(syntax & RE_BK_PLUS_QM) && (c == '+' || c == '?')))
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2056 ;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2057
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2058 else if (syntax & RE_BK_PLUS_QM && c == '\\')
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2059 {
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2060 if (p == pend) FREE_STACK_RETURN (REG_EESCAPE);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2061
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2062 PATFETCH (c1);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2063 if (!(c1 == '+' || c1 == '?'))
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2064 {
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2065 PATUNFETCH;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2066 PATUNFETCH;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2067 break;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2068 }
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2069
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2070 c = c1;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2071 }
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2072 else
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2073 {
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2074 PATUNFETCH;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2075 break;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2076 }
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2077
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2078 /* If we get here, we found another repeat character. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2079 }
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2080
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2081 /* Star, etc. applied to an empty pattern is equivalent
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2082 to an empty pattern. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2083 if (!laststart)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2084 break;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2085
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2086 /* Now we know whether or not zero matches is allowed
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2087 and also whether or not two or more matches is allowed. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2088 if (many_times_ok)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2089 { /* More than one repetition is allowed, so put in at the
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2090 end a backward relative jump from `b' to before the next
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2091 jump we're going to put in below (which jumps from
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2092 laststart to after this jump).
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2093
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2094 But if we are at the `*' in the exact sequence `.*\n',
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2095 insert an unconditional jump backwards to the .,
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2096 instead of the beginning of the loop. This way we only
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2097 push a failure point once, instead of every time
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2098 through the loop. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2099 assert (p - 1 > pattern);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2100
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2101 /* Allocate the space for the jump. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2102 GET_BUFFER_SPACE (3);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2103
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2104 /* We know we are not at the first character of the pattern,
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2105 because laststart was nonzero. And we've already
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2106 incremented `p', by the way, to be the character after
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2107 the `*'. Do we have to do something analogous here
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2108 for null bytes, because of RE_DOT_NOT_NULL? */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2109 if (TRANSLATE (*(p - 2)) == TRANSLATE ('.')
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2110 && zero_times_ok
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2111 && p < pend && TRANSLATE (*p) == TRANSLATE ('\n')
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2112 && !(syntax & RE_DOT_NEWLINE))
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2113 { /* We have .*\n. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2114 STORE_JUMP (jump, b, laststart);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2115 keep_string_p = true;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2116 }
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2117 else
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2118 /* Anything else. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2119 STORE_JUMP (maybe_pop_jump, b, laststart - 3);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2120
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2121 /* We've added more stuff to the buffer. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2122 b += 3;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2123 }
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2124
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2125 /* On failure, jump from laststart to b + 3, which will be the
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2126 end of the buffer after this jump is inserted. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2127 GET_BUFFER_SPACE (3);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2128 INSERT_JUMP (keep_string_p ? on_failure_keep_string_jump
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2129 : on_failure_jump,
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2130 laststart, b + 3);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2131 pending_exact = 0;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2132 b += 3;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2133
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2134 if (!zero_times_ok)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2135 {
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2136 /* At least one repetition is required, so insert a
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2137 `dummy_failure_jump' before the initial
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2138 `on_failure_jump' instruction of the loop. This
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2139 effects a skip over that instruction the first time
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2140 we hit that loop. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2141 GET_BUFFER_SPACE (3);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2142 INSERT_JUMP (dummy_failure_jump, laststart, laststart + 6);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2143 b += 3;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2144 }
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2145 }
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2146 break;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2147
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2148
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2149 case '.':
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2150 laststart = b;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2151 BUF_PUSH (anychar);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2152 break;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2153
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2154
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2155 case '[':
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2156 {
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2157 CLEAR_RANGE_TABLE_WORK_USED (range_table_work);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2158
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2159 if (p == pend) FREE_STACK_RETURN (REG_EBRACK);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2160
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2161 /* Ensure that we have enough space to push a charset: the
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2162 opcode, the length count, and the bitset; 34 bytes in all. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2163 GET_BUFFER_SPACE (34);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2164
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2165 laststart = b;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2166
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2167 /* We test `*p == '^' twice, instead of using an if
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2168 statement, so we only need one BUF_PUSH. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2169 BUF_PUSH (*p == '^' ? charset_not : charset);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2170 if (*p == '^')
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2171 p++;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2172
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2173 /* Remember the first position in the bracket expression. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2174 p1 = p;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2175
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2176 /* Push the number of bytes in the bitmap. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2177 BUF_PUSH ((1 << BYTEWIDTH) / BYTEWIDTH);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2178
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2179 /* Clear the whole map. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2180 bzero (b, (1 << BYTEWIDTH) / BYTEWIDTH);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2181
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2182 /* charset_not matches newline according to a syntax bit. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2183 if ((re_opcode_t) b[-2] == charset_not
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2184 && (syntax & RE_HAT_LISTS_NOT_NEWLINE))
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2185 SET_LIST_BIT ('\n');
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2186
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2187 /* Read in characters and ranges, setting map bits. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2188 for (;;)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2189 {
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2190 int len;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2191 boolean escaped_char = false;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2192
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2193 if (p == pend) FREE_STACK_RETURN (REG_EBRACK);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2194
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2195 PATFETCH (c);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2196
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2197 /* \ might escape characters inside [...] and [^...]. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2198 if ((syntax & RE_BACKSLASH_ESCAPE_IN_LISTS) && c == '\\')
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2199 {
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2200 if (p == pend) FREE_STACK_RETURN (REG_EESCAPE);
679
b088267ea1c8 Clean up whitespace.
Richard Stallman <rms@gnu.org>
parents: 678
diff changeset
2201
b088267ea1c8 Clean up whitespace.
Richard Stallman <rms@gnu.org>
parents: 678
diff changeset
2202 PATFETCH (c);
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2203 escaped_char = true;
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2204 }
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2205 else
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2206 {
992
03e78eed4997 Whitespace change.
Richard Stallman <rms@gnu.org>
parents: 963
diff changeset
2207 /* Could be the end of the bracket expression. If it's
03e78eed4997 Whitespace change.
Richard Stallman <rms@gnu.org>
parents: 963
diff changeset
2208 not (i.e., when the bracket expression is `[]' so
03e78eed4997 Whitespace change.
Richard Stallman <rms@gnu.org>
parents: 963
diff changeset
2209 far), the ']' character bit gets set way below. */
03e78eed4997 Whitespace change.
Richard Stallman <rms@gnu.org>
parents: 963
diff changeset
2210 if (c == ']' && p != p1 + 1)
03e78eed4997 Whitespace change.
Richard Stallman <rms@gnu.org>
parents: 963
diff changeset
2211 break;
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2212 }
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2213
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2214 /* If C indicates start of multibyte char, get the
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2215 actual character code in C, and set the pattern
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2216 pointer P to the next character boundary. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2217 if (bufp->multibyte && BASE_LEADING_CODE_P (c))
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2218 {
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2219 PATUNFETCH;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2220 c = STRING_CHAR_AND_LENGTH (p, pend - p, len);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2221 p += len;
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2222 }
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2223 /* What should we do for the character which is
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2224 greater than 0x7F, but not BASE_LEADING_CODE_P?
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2225 XXX */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2226
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2227 /* See if we're at the beginning of a possible character
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2228 class. */
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2229
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2230 else if (!escaped_char &&
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2231 syntax & RE_CHAR_CLASSES && c == '[' && *p == ':')
992
03e78eed4997 Whitespace change.
Richard Stallman <rms@gnu.org>
parents: 963
diff changeset
2232 {
03e78eed4997 Whitespace change.
Richard Stallman <rms@gnu.org>
parents: 963
diff changeset
2233 /* Leave room for the null. */
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2234 char str[CHAR_CLASS_MAX_LENGTH + 1];
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2235
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2236 PATFETCH (c);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2237 c1 = 0;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2238
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2239 /* If pattern is `[[:'. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2240 if (p == pend) FREE_STACK_RETURN (REG_EBRACK);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2241
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2242 for (;;)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2243 {
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2244 PATFETCH (c);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2245 if (c == ':' || c == ']' || p == pend
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2246 || c1 == CHAR_CLASS_MAX_LENGTH)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2247 break;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2248 str[c1++] = c;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2249 }
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2250 str[c1] = '\0';
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2251
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2252 /* If isn't a word bracketed by `[:' and `:]':
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2253 undo the ending character, the letters, and
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2254 leave the leading `:' and `[' (but set bits for
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2255 them). */
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2256 if (c == ':' && *p == ']')
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2257 {
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2258 int ch;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2259 boolean is_alnum = STREQ (str, "alnum");
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2260 boolean is_alpha = STREQ (str, "alpha");
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2261 boolean is_blank = STREQ (str, "blank");
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2262 boolean is_cntrl = STREQ (str, "cntrl");
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2263 boolean is_digit = STREQ (str, "digit");
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2264 boolean is_graph = STREQ (str, "graph");
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2265 boolean is_lower = STREQ (str, "lower");
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2266 boolean is_print = STREQ (str, "print");
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2267 boolean is_punct = STREQ (str, "punct");
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2268 boolean is_space = STREQ (str, "space");
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2269 boolean is_upper = STREQ (str, "upper");
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2270 boolean is_xdigit = STREQ (str, "xdigit");
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2271
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2272 if (!IS_CHAR_CLASS (str))
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2273 FREE_STACK_RETURN (REG_ECTYPE);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2274
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2275 /* Throw away the ] at the end of the character
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2276 class. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2277 PATFETCH (c);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2278
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2279 if (p == pend) FREE_STACK_RETURN (REG_EBRACK);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2280
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2281 for (ch = 0; ch < 1 << BYTEWIDTH; ch++)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2282 {
692
1036844e8833 (regex_compile): Use TRANSLATE before calling SET_LIST_BIT.
Richard Stallman <rms@gnu.org>
parents: 680
diff changeset
2283 int translated = TRANSLATE (ch);
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2284 /* This was split into 3 if's to
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2285 avoid an arbitrary limit in some compiler. */
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2286 if ( (is_alnum && ISALNUM (ch))
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2287 || (is_alpha && ISALPHA (ch))
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2288 || (is_blank && ISBLANK (ch))
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2289 || (is_cntrl && ISCNTRL (ch)))
692
1036844e8833 (regex_compile): Use TRANSLATE before calling SET_LIST_BIT.
Richard Stallman <rms@gnu.org>
parents: 680
diff changeset
2290 SET_LIST_BIT (translated);
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2291 if ( (is_digit && ISDIGIT (ch))
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2292 || (is_graph && ISGRAPH (ch))
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2293 || (is_lower && ISLOWER (ch))
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2294 || (is_print && ISPRINT (ch)))
692
1036844e8833 (regex_compile): Use TRANSLATE before calling SET_LIST_BIT.
Richard Stallman <rms@gnu.org>
parents: 680
diff changeset
2295 SET_LIST_BIT (translated);
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2296 if ( (is_punct && ISPUNCT (ch))
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2297 || (is_space && ISSPACE (ch))
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2298 || (is_upper && ISUPPER (ch))
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2299 || (is_xdigit && ISXDIGIT (ch)))
692
1036844e8833 (regex_compile): Use TRANSLATE before calling SET_LIST_BIT.
Richard Stallman <rms@gnu.org>
parents: 680
diff changeset
2300 SET_LIST_BIT (translated);
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2301 }
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2302
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2303 /* Repeat the loop. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2304 continue;
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2305 }
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2306 else
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2307 {
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2308 c1++;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2309 while (c1--)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2310 PATUNFETCH;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2311 SET_LIST_BIT ('[');
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2312
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2313 /* Because the `:' may starts the range, we
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2314 can't simply set bit and repeat the loop.
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2315 Instead, just set it to C and handle below. */
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2316 c = ':';
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2317 }
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2318 }
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2319
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2320 if (p < pend && p[0] == '-' && p[1] != ']')
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2321 {
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2322
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2323 /* Discard the `-'. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2324 PATFETCH (c1);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2325
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2326 /* Fetch the character which ends the range. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2327 PATFETCH (c1);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2328 if (bufp->multibyte && BASE_LEADING_CODE_P (c1))
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2329 {
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2330 PATUNFETCH;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2331 c1 = STRING_CHAR_AND_LENGTH (p, pend - p, len);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2332 p += len;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2333 }
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2334
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2335 if (!SAME_CHARSET_P (c, c1))
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2336 FREE_STACK_RETURN (REG_ERANGE);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2337 }
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2338 else
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2339 /* Range from C to C. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2340 c1 = c;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2341
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2342 /* Set the range ... */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2343 if (SINGLE_BYTE_CHAR_P (c))
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2344 /* ... into bitmap. */
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2345 {
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2346 unsigned this_char;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2347 int range_start = c, range_end = c1;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2348
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2349 /* If the start is after the end, the range is empty. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2350 if (range_start > range_end)
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2351 {
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2352 if (syntax & RE_NO_EMPTY_RANGES)
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2353 FREE_STACK_RETURN (REG_ERANGE);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2354 /* Else, repeat the loop. */
679
b088267ea1c8 Clean up whitespace.
Richard Stallman <rms@gnu.org>
parents: 678
diff changeset
2355 }
b088267ea1c8 Clean up whitespace.
Richard Stallman <rms@gnu.org>
parents: 678
diff changeset
2356 else
b088267ea1c8 Clean up whitespace.
Richard Stallman <rms@gnu.org>
parents: 678
diff changeset
2357 {
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2358 for (this_char = range_start; this_char <= range_end;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2359 this_char++)
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2360 SET_LIST_BIT (TRANSLATE (this_char));
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2361 }
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2362 }
679
b088267ea1c8 Clean up whitespace.
Richard Stallman <rms@gnu.org>
parents: 678
diff changeset
2363 else
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2364 /* ... into range table. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2365 SET_RANGE_TABLE_WORK_AREA (range_table_work, c, c1);
679
b088267ea1c8 Clean up whitespace.
Richard Stallman <rms@gnu.org>
parents: 678
diff changeset
2366 }
b088267ea1c8 Clean up whitespace.
Richard Stallman <rms@gnu.org>
parents: 678
diff changeset
2367
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2368 /* Discard any (non)matching list bytes that are all 0 at the
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2369 end of the map. Decrease the map-length byte too. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2370 while ((int) b[-1] > 0 && b[b[-1] - 1] == 0)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2371 b[-1]--;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2372 b += b[-1];
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2373
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2374 /* Build real range table from work area. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2375 if (RANGE_TABLE_WORK_USED (range_table_work))
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2376 {
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2377 int i;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2378 int used = RANGE_TABLE_WORK_USED (range_table_work);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2379
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2380 /* Allocate space for COUNT + RANGE_TABLE. Needs two
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2381 bytes for COUNT and three bytes for each character. */
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2382 GET_BUFFER_SPACE (2 + used * 3);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2383
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2384 /* Indicate the existence of range table. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2385 laststart[1] |= 0x80;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2386
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2387 STORE_NUMBER_AND_INCR (b, used / 2);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2388 for (i = 0; i < used; i++)
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2389 STORE_CHARACTER_AND_INCR
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2390 (b, RANGE_TABLE_WORK_ELT (range_table_work, i));
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2391 }
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2392 }
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2393 break;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2394
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2395
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2396 case '(':
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2397 if (syntax & RE_NO_BK_PARENS)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2398 goto handle_open;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2399 else
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2400 goto normal_char;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2401
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2402
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2403 case ')':
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2404 if (syntax & RE_NO_BK_PARENS)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2405 goto handle_close;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2406 else
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2407 goto normal_char;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2408
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2409
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2410 case '\n':
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2411 if (syntax & RE_NEWLINE_ALT)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2412 goto handle_alt;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2413 else
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2414 goto normal_char;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2415
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2416
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2417 case '|':
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2418 if (syntax & RE_NO_BK_VBAR)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2419 goto handle_alt;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2420 else
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2421 goto normal_char;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2422
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2423
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2424 case '{':
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2425 if (syntax & RE_INTERVALS && syntax & RE_NO_BK_BRACES)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2426 goto handle_interval;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2427 else
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2428 goto normal_char;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2429
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2430
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2431 case '\\':
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2432 if (p == pend) FREE_STACK_RETURN (REG_EESCAPE);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2433
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2434 /* Do not translate the character after the \, so that we can
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2435 distinguish, e.g., \B from \b, even if we normally would
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2436 translate, e.g., B to b. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2437 PATFETCH_RAW (c);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2438
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2439 switch (c)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2440 {
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2441 case '(':
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2442 if (syntax & RE_NO_BK_PARENS)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2443 goto normal_backslash;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2444
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2445 handle_open:
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2446 bufp->re_nsub++;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2447 regnum++;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2448
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2449 if (COMPILE_STACK_FULL)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2450 {
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2451 RETALLOC (compile_stack.stack, compile_stack.size << 1,
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2452 compile_stack_elt_t);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2453 if (compile_stack.stack == NULL) return REG_ESPACE;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2454
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2455 compile_stack.size <<= 1;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2456 }
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2457
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2458 /* These are the values to restore when we hit end of this
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2459 group. They are all relative offsets, so that if the
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2460 whole pattern moves because of realloc, they will still
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2461 be valid. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2462 COMPILE_STACK_TOP.begalt_offset = begalt - bufp->buffer;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2463 COMPILE_STACK_TOP.fixup_alt_jump
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2464 = fixup_alt_jump ? fixup_alt_jump - bufp->buffer + 1 : 0;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2465 COMPILE_STACK_TOP.laststart_offset = b - bufp->buffer;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2466 COMPILE_STACK_TOP.regnum = regnum;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2467
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2468 /* We will eventually replace the 0 with the number of
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2469 groups inner to this one. But do not push a
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2470 start_memory for groups beyond the last one we can
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2471 represent in the compiled pattern. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2472 if (regnum <= MAX_REGNUM)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2473 {
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2474 COMPILE_STACK_TOP.inner_group_offset = b - bufp->buffer + 2;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2475 BUF_PUSH_3 (start_memory, regnum, 0);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2476 }
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2477
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2478 compile_stack.avail++;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2479
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2480 fixup_alt_jump = 0;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2481 laststart = 0;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2482 begalt = b;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2483 /* If we've reached MAX_REGNUM groups, then this open
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2484 won't actually generate any code, so we'll have to
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2485 clear pending_exact explicitly. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2486 pending_exact = 0;
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2487 break;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2488
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2489
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2490 case ')':
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2491 if (syntax & RE_NO_BK_PARENS) goto normal_backslash;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2492
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2493 if (COMPILE_STACK_EMPTY)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2494 if (syntax & RE_UNMATCHED_RIGHT_PAREN_ORD)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2495 goto normal_backslash;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2496 else
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2497 FREE_STACK_RETURN (REG_ERPAREN);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2498
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2499 handle_close:
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2500 if (fixup_alt_jump)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2501 { /* Push a dummy failure point at the end of the
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2502 alternative for a possible future
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2503 `pop_failure_jump' to pop. See comments at
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2504 `push_dummy_failure' in `re_match_2'. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2505 BUF_PUSH (push_dummy_failure);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2506
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2507 /* We allocated space for this jump when we assigned
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2508 to `fixup_alt_jump', in the `handle_alt' case below. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2509 STORE_JUMP (jump_past_alt, fixup_alt_jump, b - 1);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2510 }
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2511
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2512 /* See similar code for backslashed left paren above. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2513 if (COMPILE_STACK_EMPTY)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2514 if (syntax & RE_UNMATCHED_RIGHT_PAREN_ORD)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2515 goto normal_char;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2516 else
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2517 FREE_STACK_RETURN (REG_ERPAREN);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2518
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2519 /* Since we just checked for an empty stack above, this
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2520 ``can't happen''. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2521 assert (compile_stack.avail != 0);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2522 {
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2523 /* We don't just want to restore into `regnum', because
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2524 later groups should continue to be numbered higher,
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2525 as in `(ab)c(de)' -- the second group is #2. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2526 regnum_t this_group_regnum;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2527
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2528 compile_stack.avail--;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2529 begalt = bufp->buffer + COMPILE_STACK_TOP.begalt_offset;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2530 fixup_alt_jump
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2531 = COMPILE_STACK_TOP.fixup_alt_jump
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2532 ? bufp->buffer + COMPILE_STACK_TOP.fixup_alt_jump - 1
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2533 : 0;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2534 laststart = bufp->buffer + COMPILE_STACK_TOP.laststart_offset;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2535 this_group_regnum = COMPILE_STACK_TOP.regnum;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2536 /* If we've reached MAX_REGNUM groups, then this open
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2537 won't actually generate any code, so we'll have to
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2538 clear pending_exact explicitly. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2539 pending_exact = 0;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2540
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2541 /* We're at the end of the group, so now we know how many
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2542 groups were inside this one. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2543 if (this_group_regnum <= MAX_REGNUM)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2544 {
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2545 unsigned char *inner_group_loc
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2546 = bufp->buffer + COMPILE_STACK_TOP.inner_group_offset;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2547
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2548 *inner_group_loc = regnum - this_group_regnum;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2549 BUF_PUSH_3 (stop_memory, this_group_regnum,
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2550 regnum - this_group_regnum);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2551 }
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2552 }
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2553 break;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2554
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2555
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2556 case '|': /* `\|'. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2557 if (syntax & RE_LIMITED_OPS || syntax & RE_NO_BK_VBAR)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2558 goto normal_backslash;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2559 handle_alt:
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2560 if (syntax & RE_LIMITED_OPS)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2561 goto normal_char;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2562
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2563 /* Insert before the previous alternative a jump which
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2564 jumps to this alternative if the former fails. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2565 GET_BUFFER_SPACE (3);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2566 INSERT_JUMP (on_failure_jump, begalt, b + 6);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2567 pending_exact = 0;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2568 b += 3;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2569
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2570 /* The alternative before this one has a jump after it
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2571 which gets executed if it gets matched. Adjust that
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2572 jump so it will jump to this alternative's analogous
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2573 jump (put in below, which in turn will jump to the next
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2574 (if any) alternative's such jump, etc.). The last such
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2575 jump jumps to the correct final destination. A picture:
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2576 _____ _____
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2577 | | | |
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2578 | v | v
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2579 a | b | c
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2580
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2581 If we are at `b', then fixup_alt_jump right now points to a
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2582 three-byte space after `a'. We'll put in the jump, set
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2583 fixup_alt_jump to right after `b', and leave behind three
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2584 bytes which we'll fill in when we get to after `c'. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2585
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2586 if (fixup_alt_jump)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2587 STORE_JUMP (jump_past_alt, fixup_alt_jump, b);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2588
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2589 /* Mark and leave space for a jump after this alternative,
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2590 to be filled in later either by next alternative or
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2591 when know we're at the end of a series of alternatives. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2592 fixup_alt_jump = b;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2593 GET_BUFFER_SPACE (3);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2594 b += 3;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2595
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2596 laststart = 0;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2597 begalt = b;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2598 break;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2599
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2600
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2601 case '{':
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2602 /* If \{ is a literal. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2603 if (!(syntax & RE_INTERVALS)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2604 /* If we're at `\{' and it's not the open-interval
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2605 operator. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2606 || ((syntax & RE_INTERVALS) && (syntax & RE_NO_BK_BRACES))
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2607 || (p - 2 == pattern && p == pend))
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2608 goto normal_backslash;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2609
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2610 handle_interval:
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2611 {
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2612 /* If got here, then the syntax allows intervals. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2613
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2614 /* At least (most) this many matches must be made. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2615 int lower_bound = -1, upper_bound = -1;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2616
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2617 beg_interval = p - 1;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2618
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2619 if (p == pend)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2620 {
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2621 if (syntax & RE_NO_BK_BRACES)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2622 goto unfetch_interval;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2623 else
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2624 FREE_STACK_RETURN (REG_EBRACE);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2625 }
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2626
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2627 GET_UNSIGNED_NUMBER (lower_bound);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2628
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2629 if (c == ',')
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2630 {
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2631 GET_UNSIGNED_NUMBER (upper_bound);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2632 if (upper_bound < 0) upper_bound = RE_DUP_MAX;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2633 }
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2634 else
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2635 /* Interval such as `{1}' => match exactly once. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2636 upper_bound = lower_bound;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2637
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2638 if (lower_bound < 0 || upper_bound > RE_DUP_MAX
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2639 || lower_bound > upper_bound)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2640 {
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2641 if (syntax & RE_NO_BK_BRACES)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2642 goto unfetch_interval;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2643 else
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2644 FREE_STACK_RETURN (REG_BADBR);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2645 }
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2646
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2647 if (!(syntax & RE_NO_BK_BRACES))
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2648 {
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2649 if (c != '\\') FREE_STACK_RETURN (REG_EBRACE);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2650
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2651 PATFETCH (c);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2652 }
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2653
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2654 if (c != '}')
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2655 {
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2656 if (syntax & RE_NO_BK_BRACES)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2657 goto unfetch_interval;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2658 else
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2659 FREE_STACK_RETURN (REG_BADBR);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2660 }
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2661
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2662 /* We just parsed a valid interval. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2663
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2664 /* If it's invalid to have no preceding re. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2665 if (!laststart)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2666 {
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2667 if (syntax & RE_CONTEXT_INVALID_OPS)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2668 FREE_STACK_RETURN (REG_BADRPT);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2669 else if (syntax & RE_CONTEXT_INDEP_OPS)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2670 laststart = b;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2671 else
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2672 goto unfetch_interval;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2673 }
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2674
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2675 /* If the upper bound is zero, don't want to succeed at
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2676 all; jump from `laststart' to `b + 3', which will be
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2677 the end of the buffer after we insert the jump. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2678 if (upper_bound == 0)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2679 {
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2680 GET_BUFFER_SPACE (3);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2681 INSERT_JUMP (jump, laststart, b + 3);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2682 b += 3;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2683 }
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2684
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2685 /* Otherwise, we have a nontrivial interval. When
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2686 we're all done, the pattern will look like:
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2687 set_number_at <jump count> <upper bound>
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2688 set_number_at <succeed_n count> <lower bound>
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2689 succeed_n <after jump addr> <succeed_n count>
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2690 <body of loop>
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2691 jump_n <succeed_n addr> <jump count>
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2692 (The upper bound and `jump_n' are omitted if
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2693 `upper_bound' is 1, though.) */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2694 else
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2695 { /* If the upper bound is > 1, we need to insert
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2696 more at the end of the loop. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2697 unsigned nbytes = 10 + (upper_bound > 1) * 10;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2698
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2699 GET_BUFFER_SPACE (nbytes);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2700
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2701 /* Initialize lower bound of the `succeed_n', even
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2702 though it will be set during matching by its
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2703 attendant `set_number_at' (inserted next),
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2704 because `re_compile_fastmap' needs to know.
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2705 Jump to the `jump_n' we might insert below. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2706 INSERT_JUMP2 (succeed_n, laststart,
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2707 b + 5 + (upper_bound > 1) * 5,
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2708 lower_bound);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2709 b += 5;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2710
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2711 /* Code to initialize the lower bound. Insert
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2712 before the `succeed_n'. The `5' is the last two
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2713 bytes of this `set_number_at', plus 3 bytes of
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2714 the following `succeed_n'. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2715 insert_op2 (set_number_at, laststart, 5, lower_bound, b);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2716 b += 5;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2717
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2718 if (upper_bound > 1)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2719 { /* More than one repetition is allowed, so
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2720 append a backward jump to the `succeed_n'
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2721 that starts this interval.
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2722
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2723 When we've reached this during matching,
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2724 we'll have matched the interval once, so
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2725 jump back only `upper_bound - 1' times. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2726 STORE_JUMP2 (jump_n, b, laststart + 5,
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2727 upper_bound - 1);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2728 b += 5;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2729
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2730 /* The location we want to set is the second
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2731 parameter of the `jump_n'; that is `b-2' as
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2732 an absolute address. `laststart' will be
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2733 the `set_number_at' we're about to insert;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2734 `laststart+3' the number to set, the source
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2735 for the relative address. But we are
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2736 inserting into the middle of the pattern --
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2737 so everything is getting moved up by 5.
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2738 Conclusion: (b - 2) - (laststart + 3) + 5,
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2739 i.e., b - laststart.
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2740
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2741 We insert this at the beginning of the loop
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2742 so that if we fail during matching, we'll
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2743 reinitialize the bounds. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2744 insert_op2 (set_number_at, laststart, b - laststart,
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2745 upper_bound - 1, b);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2746 b += 5;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2747 }
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2748 }
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2749 pending_exact = 0;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2750 beg_interval = NULL;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2751 }
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2752 break;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2753
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2754 unfetch_interval:
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2755 /* If an invalid interval, match the characters as literals. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2756 assert (beg_interval);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2757 p = beg_interval;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2758 beg_interval = NULL;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2759
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2760 /* normal_char and normal_backslash need `c'. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2761 PATFETCH (c);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2762
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2763 if (!(syntax & RE_NO_BK_BRACES))
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2764 {
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2765 if (p > pattern && p[-1] == '\\')
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2766 goto normal_backslash;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2767 }
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2768 goto normal_char;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2769
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2770 #ifdef emacs
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2771 /* There is no way to specify the before_dot and after_dot
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2772 operators. rms says this is ok. --karl */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2773 case '=':
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2774 BUF_PUSH (at_dot);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2775 break;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2776
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2777 case 's':
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2778 laststart = b;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2779 PATFETCH (c);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2780 BUF_PUSH_2 (syntaxspec, syntax_spec_code[c]);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2781 break;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2782
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2783 case 'S':
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2784 laststart = b;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2785 PATFETCH (c);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2786 BUF_PUSH_2 (notsyntaxspec, syntax_spec_code[c]);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2787 break;
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2788
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2789 case 'c':
679
b088267ea1c8 Clean up whitespace.
Richard Stallman <rms@gnu.org>
parents: 678
diff changeset
2790 laststart = b;
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2791 PATFETCH_RAW (c);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2792 BUF_PUSH_2 (categoryspec, c);
679
b088267ea1c8 Clean up whitespace.
Richard Stallman <rms@gnu.org>
parents: 678
diff changeset
2793 break;
b088267ea1c8 Clean up whitespace.
Richard Stallman <rms@gnu.org>
parents: 678
diff changeset
2794
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2795 case 'C':
679
b088267ea1c8 Clean up whitespace.
Richard Stallman <rms@gnu.org>
parents: 678
diff changeset
2796 laststart = b;
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2797 PATFETCH_RAW (c);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2798 BUF_PUSH_2 (notcategoryspec, c);
679
b088267ea1c8 Clean up whitespace.
Richard Stallman <rms@gnu.org>
parents: 678
diff changeset
2799 break;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2800 #endif /* emacs */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2801
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2802
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2803 case 'w':
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2804 laststart = b;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2805 BUF_PUSH (wordchar);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2806 break;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2807
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2808
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2809 case 'W':
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2810 laststart = b;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2811 BUF_PUSH (notwordchar);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2812 break;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2813
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2814
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2815 case '<':
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2816 BUF_PUSH (wordbeg);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2817 break;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2818
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2819 case '>':
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2820 BUF_PUSH (wordend);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2821 break;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2822
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2823 case 'b':
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2824 BUF_PUSH (wordbound);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2825 break;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2826
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2827 case 'B':
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2828 BUF_PUSH (notwordbound);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2829 break;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2830
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2831 case '`':
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2832 BUF_PUSH (begbuf);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2833 break;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2834
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2835 case '\'':
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2836 BUF_PUSH (endbuf);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2837 break;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2838
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2839 case '1': case '2': case '3': case '4': case '5':
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2840 case '6': case '7': case '8': case '9':
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2841 if (syntax & RE_NO_BK_REFS)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2842 goto normal_char;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2843
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2844 c1 = c - '0';
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2845
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2846 if (c1 > regnum)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2847 FREE_STACK_RETURN (REG_ESUBREG);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2848
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2849 /* Can't back reference to a subexpression if inside of it. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2850 if (group_in_compile_stack (compile_stack, c1))
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2851 goto normal_char;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2852
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2853 laststart = b;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2854 BUF_PUSH_2 (duplicate, c1);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2855 break;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2856
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2857
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2858 case '+':
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2859 case '?':
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2860 if (syntax & RE_BK_PLUS_QM)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2861 goto handle_plus;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2862 else
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2863 goto normal_backslash;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2864
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2865 default:
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2866 normal_backslash:
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2867 /* You might think it would be useful for \ to mean
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2868 not to translate; but if we don't translate it
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2869 it will never match anything. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2870 c = TRANSLATE (c);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2871 goto normal_char;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2872 }
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2873 break;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2874
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2875
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2876 default:
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2877 /* Expects the character in `c'. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2878 normal_char:
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2879 p1 = p - 1; /* P1 points the head of C. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2880 #ifdef emacs
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2881 if (bufp->multibyte)
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2882 /* Set P to the next character boundary. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2883 p += MULTIBYTE_FORM_LENGTH (p1, pend - p1) - 1;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2884 #endif
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2885 /* If no exactn currently being built. */
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2886 if (!pending_exact
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2887
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2888 /* If last exactn not at current position. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2889 || pending_exact + *pending_exact + 1 != b
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2890
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2891 /* We have only one byte following the exactn for the count. */
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2892 || *pending_exact >= (1 << BYTEWIDTH) - (p - p1)
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2893
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2894 /* If followed by a repetition operator. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2895 || *p == '*' || *p == '^'
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2896 || ((syntax & RE_BK_PLUS_QM)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2897 ? *p == '\\' && (p[1] == '+' || p[1] == '?')
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2898 : (*p == '+' || *p == '?'))
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2899 || ((syntax & RE_INTERVALS)
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2900 && ((syntax & RE_NO_BK_BRACES)
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2901 ? *p == '{'
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2902 : (p[0] == '\\' && p[1] == '{'))))
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2903 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2904 /* Start building a new exactn. */
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
2905
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2906 laststart = b;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2907
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2908 BUF_PUSH_2 (exactn, 0);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2909 pending_exact = b - 1;
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2910 }
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2911
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2912 /* Here, C may translated, therefore C may not equal to *P1. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2913 while (1)
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2914 {
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2915 BUF_PUSH (c);
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2916 (*pending_exact)++;
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2917 if (++p1 == p)
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2918 break;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2919
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2920 /* Rest of multibyte form should be copied literally. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2921 c = *(unsigned char *)p1;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
2922 }
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2923 break;
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2924 } /* switch (c) */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2925 } /* while p != pend */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2926
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
2927
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2928 /* Through the pattern now. */
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
2929
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2930 if (fixup_alt_jump)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2931 STORE_JUMP (jump_past_alt, fixup_alt_jump, b);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2932
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
2933 if (!COMPILE_STACK_EMPTY)
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2934 FREE_STACK_RETURN (REG_EPAREN);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2935
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2936 /* If we don't want backtracking, force success
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2937 the first time we reach the end of the compiled pattern. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2938 if (syntax & RE_NO_POSIX_BACKTRACKING)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2939 BUF_PUSH (succeed);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2940
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2941 free (compile_stack.stack);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2942
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2943 /* We have succeeded; set the length of the buffer. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2944 bufp->used = b - bufp->buffer;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2945
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2946 #ifdef DEBUG
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2947 if (debug)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2948 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2949 DEBUG_PRINT1 ("\nCompiled pattern: \n");
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2950 print_compiled_pattern (bufp);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2951 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2952 #endif /* DEBUG */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2953
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2954 #ifndef MATCH_MAY_ALLOCATE
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2955 /* Initialize the failure stack to the largest possible stack. This
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2956 isn't necessary unless we're trying to avoid calling alloca in
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2957 the search and match routines. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2958 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2959 int num_regs = bufp->re_nsub + 1;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2960
1156
8e1cbb305ddc (TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents: 992
diff changeset
2961 if (fail_stack.size < re_max_failures * TYPICAL_FAILURE_SIZE)
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2962 {
1156
8e1cbb305ddc (TYPICAL_FAILURE_SIZE): Renamed from MAX_FAILURE_ITEMS.
Karl Heuer <kwzh@gnu.org>
parents: 992
diff changeset
2963 fail_stack.size = re_max_failures * TYPICAL_FAILURE_SIZE);
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2964
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2965 #ifdef emacs
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2966 if (! fail_stack.stack)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2967 fail_stack.stack
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
2968 = (fail_stack_elt_t *) xmalloc (fail_stack.size
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2969 * sizeof (fail_stack_elt_t));
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2970 else
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2971 fail_stack.stack
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2972 = (fail_stack_elt_t *) xrealloc (fail_stack.stack,
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2973 (fail_stack.size
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2974 * sizeof (fail_stack_elt_t)));
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2975 #else /* not emacs */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2976 if (! fail_stack.stack)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2977 fail_stack.stack
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
2978 = (fail_stack_elt_t *) malloc (fail_stack.size
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2979 * sizeof (fail_stack_elt_t));
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2980 else
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2981 fail_stack.stack
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2982 = (fail_stack_elt_t *) realloc (fail_stack.stack,
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2983 (fail_stack.size
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2984 * sizeof (fail_stack_elt_t)));
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2985 #endif /* not emacs */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2986 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2987
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2988 regex_grow_registers (num_regs);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2989 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2990 #endif /* not MATCH_MAY_ALLOCATE */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2991
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2992 return REG_NOERROR;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2993 } /* regex_compile */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2994
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2995 /* Subroutines for `regex_compile'. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2996
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
2997 /* Store OP at LOC followed by two-byte integer parameter ARG. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2998
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
2999 static void
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3000 store_op1 (op, loc, arg)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3001 re_opcode_t op;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3002 unsigned char *loc;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3003 int arg;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3004 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3005 *loc = (unsigned char) op;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3006 STORE_NUMBER (loc + 1, arg);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3007 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3008
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3009
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3010 /* Like `store_op1', but for two two-byte parameters ARG1 and ARG2. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3011
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3012 static void
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3013 store_op2 (op, loc, arg1, arg2)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3014 re_opcode_t op;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3015 unsigned char *loc;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3016 int arg1, arg2;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3017 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3018 *loc = (unsigned char) op;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3019 STORE_NUMBER (loc + 1, arg1);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3020 STORE_NUMBER (loc + 3, arg2);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3021 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3022
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3023
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3024 /* Copy the bytes from LOC to END to open up three bytes of space at LOC
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3025 for OP followed by two-byte integer parameter ARG. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3026
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3027 static void
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3028 insert_op1 (op, loc, arg, end)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3029 re_opcode_t op;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3030 unsigned char *loc;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3031 int arg;
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
3032 unsigned char *end;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3033 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3034 register unsigned char *pfrom = end;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3035 register unsigned char *pto = end + 3;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3036
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3037 while (pfrom != loc)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3038 *--pto = *--pfrom;
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
3039
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3040 store_op1 (op, loc, arg);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3041 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3042
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3043
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3044 /* Like `insert_op1', but for two two-byte parameters ARG1 and ARG2. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3045
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3046 static void
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3047 insert_op2 (op, loc, arg1, arg2, end)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3048 re_opcode_t op;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3049 unsigned char *loc;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3050 int arg1, arg2;
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
3051 unsigned char *end;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3052 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3053 register unsigned char *pfrom = end;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3054 register unsigned char *pto = end + 5;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3055
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3056 while (pfrom != loc)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3057 *--pto = *--pfrom;
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
3058
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3059 store_op2 (op, loc, arg1, arg2);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3060 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3061
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3062
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3063 /* P points to just after a ^ in PATTERN. Return true if that ^ comes
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3064 after an alternative or a begin-subexpression. We assume there is at
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3065 least one character before the ^. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3066
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3067 static boolean
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3068 at_begline_loc_p (pattern, p, syntax)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3069 const char *pattern, *p;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3070 reg_syntax_t syntax;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3071 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3072 const char *prev = p - 2;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3073 boolean prev_prev_backslash = prev > pattern && prev[-1] == '\\';
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
3074
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3075 return
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3076 /* After a subexpression? */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3077 (*prev == '(' && (syntax & RE_NO_BK_PARENS || prev_prev_backslash))
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3078 /* After an alternative? */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3079 || (*prev == '|' && (syntax & RE_NO_BK_VBAR || prev_prev_backslash));
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3080 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3081
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3082
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3083 /* The dual of at_begline_loc_p. This one is for $. We assume there is
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3084 at least one character after the $, i.e., `P < PEND'. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3085
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3086 static boolean
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3087 at_endline_loc_p (p, pend, syntax)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3088 const char *p, *pend;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3089 int syntax;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3090 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3091 const char *next = p;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3092 boolean next_backslash = *next == '\\';
449
c29f67a3f852 (at_endline_loc_p): Use 0, not NULL, in ?: for next_next.
Karl Heuer <kwzh@gnu.org>
parents: 447
diff changeset
3093 const char *next_next = p + 1 < pend ? p + 1 : 0;
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
3094
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3095 return
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3096 /* Before a subexpression? */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3097 (syntax & RE_NO_BK_PARENS ? *next == ')'
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3098 : next_backslash && next_next && *next_next == ')')
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3099 /* Before an alternative? */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3100 || (syntax & RE_NO_BK_VBAR ? *next == '|'
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3101 : next_backslash && next_next && *next_next == '|');
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3102 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3103
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3104
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
3105 /* Returns true if REGNUM is in one of COMPILE_STACK's elements and
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3106 false if it's not. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3107
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3108 static boolean
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3109 group_in_compile_stack (compile_stack, regnum)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3110 compile_stack_type compile_stack;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3111 regnum_t regnum;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3112 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3113 int this_element;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3114
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
3115 for (this_element = compile_stack.avail - 1;
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
3116 this_element >= 0;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3117 this_element--)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3118 if (compile_stack.stack[this_element].regnum == regnum)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3119 return true;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3120
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3121 return false;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3122 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3123
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3124
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3125 /* Read the ending character of a range (in a bracket expression) from the
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3126 uncompiled pattern *P_PTR (which ends at PEND). We assume the
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3127 starting character is in `P[-2]'. (`P[-1]' is the character `-'.)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3128 Then we set the translation of all bits between the starting and
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3129 ending characters (inclusive) in the compiled pattern B.
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
3130
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3131 Return an error code.
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
3132
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3133 We use these short variable names so we can use the same macros as
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3134 `regex_compile' itself. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3135
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3136 static reg_errcode_t
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3137 compile_range (p_ptr, pend, translate, syntax, b)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3138 const char **p_ptr, *pend;
501
f29b13c2cefd (TRANSLATE, PATFETCH): Cast elt of `translate'.
Richard Stallman <rms@gnu.org>
parents: 490
diff changeset
3139 RE_TRANSLATE_TYPE translate;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3140 reg_syntax_t syntax;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3141 unsigned char *b;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3142 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3143 unsigned this_char;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3144
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3145 const char *p = *p_ptr;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3146 int range_start, range_end;
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
3147
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3148 if (p == pend)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3149 return REG_ERANGE;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3150
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3151 /* Even though the pattern is a signed `char *', we need to fetch
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3152 with unsigned char *'s; if the high bit of the pattern character
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3153 is set, the range endpoints will be negative if we fetch using a
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3154 signed char *.
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3155
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
3156 We also want to fetch the endpoints without translating them; the
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3157 appropriate translation is done in the bit-setting loop below. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3158 /* The SVR4 compiler on the 3B2 had trouble with unsigned const char *. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3159 range_start = ((const unsigned char *) p)[-2];
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3160 range_end = ((const unsigned char *) p)[0];
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3161
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3162 /* Have to increment the pointer into the pattern string, so the
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3163 caller isn't still at the ending character. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3164 (*p_ptr)++;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3165
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3166 /* If the start is after the end, the range is empty. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3167 if (range_start > range_end)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3168 return syntax & RE_NO_EMPTY_RANGES ? REG_ERANGE : REG_NOERROR;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3169
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3170 /* Here we see why `this_char' has to be larger than an `unsigned
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3171 char' -- the range is inclusive, so if `range_end' == 0xff
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3172 (assuming 8-bit characters), we would otherwise go into an infinite
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3173 loop, since all characters <= 0xff. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3174 for (this_char = range_start; this_char <= range_end; this_char++)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3175 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3176 SET_LIST_BIT (TRANSLATE (this_char));
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3177 }
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
3178
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3179 return REG_NOERROR;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3180 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3181
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3182 /* re_compile_fastmap computes a ``fastmap'' for the compiled pattern in
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3183 BUFP. A fastmap records which of the (1 << BYTEWIDTH) possible
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3184 characters can start a string that matches the pattern. This fastmap
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3185 is used by re_search to skip quickly over impossible starting points.
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3186
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3187 The caller must supply the address of a (1 << BYTEWIDTH)-byte data
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3188 area as BUFP->fastmap.
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
3189
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3190 We set the `fastmap', `fastmap_accurate', and `can_be_null' fields in
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3191 the pattern buffer.
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3192
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3193 Returns 0 if we succeed, -2 if an internal error. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3194
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3195 int
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3196 re_compile_fastmap (bufp)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3197 struct re_pattern_buffer *bufp;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3198 {
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3199 int i, j, k;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3200 #ifdef MATCH_MAY_ALLOCATE
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3201 fail_stack_type fail_stack;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3202 #endif
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3203 #ifndef REGEX_MALLOC
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3204 char *destination;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3205 #endif
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3206 /* We don't push any register information onto the failure stack. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3207 unsigned num_regs = 0;
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
3208
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3209 register char *fastmap = bufp->fastmap;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3210 unsigned char *pattern = bufp->buffer;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3211 unsigned long size = bufp->used;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3212 unsigned char *p = pattern;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3213 register unsigned char *pend = pattern + size;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3214
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3215 /* This holds the pointer to the failure stack, when
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3216 it is allocated relocatably. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3217 fail_stack_elt_t *failure_stack_ptr;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3218
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3219 /* Assume that each path through the pattern can be null until
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3220 proven otherwise. We set this false at the bottom of switch
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3221 statement, to which we get only if a particular path doesn't
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3222 match the empty string. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3223 boolean path_can_be_null = true;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3224
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3225 /* We aren't doing a `succeed_n' to begin with. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3226 boolean succeed_n_p = false;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3227
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3228 /* If all elements for base leading-codes in fastmap is set, this
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3229 flag is set true. */
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3230 boolean match_any_multibyte_characters = false;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3231
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3232 /* Maximum code of simple (single byte) character. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3233 int simple_char_max;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3234
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3235 assert (fastmap != NULL && p != NULL);
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
3236
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3237 INIT_FAIL_STACK ();
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3238 bzero (fastmap, 1 << BYTEWIDTH); /* Assume nothing's valid. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3239 bufp->fastmap_accurate = 1; /* It will be when we're done. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3240 bufp->can_be_null = 0;
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
3241
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3242 while (1)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3243 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3244 if (p == pend || *p == succeed)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3245 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3246 /* We have reached the (effective) end of pattern. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3247 if (!FAIL_STACK_EMPTY ())
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3248 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3249 bufp->can_be_null |= path_can_be_null;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3250
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3251 /* Reset for next path. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3252 path_can_be_null = true;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3253
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3254 p = fail_stack.stack[--fail_stack.avail].pointer;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3255
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3256 continue;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3257 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3258 else
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3259 break;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3260 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3261
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3262 /* We should never be about to go beyond the end of the pattern. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3263 assert (p < pend);
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
3264
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3265 switch (SWITCH_ENUM_CAST ((re_opcode_t) *p++))
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3266 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3267
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3268 /* I guess the idea here is to simply not bother with a fastmap
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3269 if a backreference is used, since it's too hard to figure out
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3270 the fastmap for the corresponding group. Setting
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3271 `can_be_null' stops `re_search_2' from using the fastmap, so
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3272 that is all we do. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3273 case duplicate:
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3274 bufp->can_be_null = 1;
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3275 goto done;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3276
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3277
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3278 /* Following are the cases which match a character. These end
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3279 with `break'. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3280
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3281 case exactn:
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3282 fastmap[p[1]] = 1;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3283 break;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3284
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3285
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3286 #ifndef emacs
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3287 case charset:
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3288 for (j = *p++ * BYTEWIDTH - 1; j >= 0; j--)
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3289 if (p[j / BYTEWIDTH] & (1 << (j % BYTEWIDTH)))
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3290 fastmap[j] = 1;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3291 break;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3292
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3293
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3294 case charset_not:
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3295 /* Chars beyond end of map must be allowed. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3296 for (j = *p * BYTEWIDTH; j < (1 << BYTEWIDTH); j++)
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3297 fastmap[j] = 1;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3298
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3299 for (j = *p++ * BYTEWIDTH - 1; j >= 0; j--)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3300 if (!(p[j / BYTEWIDTH] & (1 << (j % BYTEWIDTH))))
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3301 fastmap[j] = 1;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3302 break;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3303
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3304
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3305 case wordchar:
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3306 for (j = 0; j < (1 << BYTEWIDTH); j++)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3307 if (SYNTAX (j) == Sword)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3308 fastmap[j] = 1;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3309 break;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3310
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3311
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3312 case notwordchar:
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3313 for (j = 0; j < (1 << BYTEWIDTH); j++)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3314 if (SYNTAX (j) != Sword)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3315 fastmap[j] = 1;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3316 break;
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3317 #else /* emacs */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3318 case charset:
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3319 for (j = CHARSET_BITMAP_SIZE (&p[-1]) * BYTEWIDTH - 1, p++;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3320 j >= 0; j--)
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3321 if (p[j / BYTEWIDTH] & (1 << (j % BYTEWIDTH)))
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3322 fastmap[j] = 1;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3323
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3324 if (CHARSET_RANGE_TABLE_EXISTS_P (&p[-2])
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3325 && match_any_multibyte_characters == false)
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3326 {
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3327 /* Set fastmap[I] 1 where I is a base leading code of each
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3328 multibyte character in the range table. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3329 int c, count;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3330
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3331 /* Make P points the range table. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3332 p += CHARSET_BITMAP_SIZE (&p[-2]);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3333
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3334 /* Extract the number of ranges in range table into
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3335 COUNT. */
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3336 EXTRACT_NUMBER_AND_INCR (count, p);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3337 for (; count > 0; count--, p += 2 * 3) /* XXX */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3338 {
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3339 /* Extract the start of each range. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3340 EXTRACT_CHARACTER (c, p);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3341 j = CHAR_CHARSET (c);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3342 fastmap[CHARSET_LEADING_CODE_BASE (j)] = 1;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3343 }
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3344 }
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3345 break;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3346
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3347
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3348 case charset_not:
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3349 /* Chars beyond end of map must be allowed. End of map is
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3350 `127' if bufp->multibyte is nonzero. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3351 simple_char_max = bufp->multibyte ? 0x80 : (1 << BYTEWIDTH);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3352 for (j = CHARSET_BITMAP_SIZE (&p[-1]) * BYTEWIDTH;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3353 j < simple_char_max; j++)
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3354 fastmap[j] = 1;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3355
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3356 for (j = CHARSET_BITMAP_SIZE (&p[-1]) * BYTEWIDTH - 1, p++;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3357 j >= 0; j--)
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3358 if (!(p[j / BYTEWIDTH] & (1 << (j % BYTEWIDTH))))
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3359 fastmap[j] = 1;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3360
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3361 if (bufp->multibyte)
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3362 /* Any character set can possibly contain a character
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3363 which doesn't match the specified set of characters. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3364 {
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3365 set_fastmap_for_multibyte_characters:
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3366 if (match_any_multibyte_characters == false)
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3367 {
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3368 for (j = 0x80; j < 0xA0; j++) /* XXX */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3369 if (BASE_LEADING_CODE_P (j))
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3370 fastmap[j] = 1;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3371 match_any_multibyte_characters = true;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3372 }
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3373 }
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3374 break;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3375
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3376
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3377 case wordchar:
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3378 simple_char_max = bufp->multibyte ? 0x80 : (1 << BYTEWIDTH);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3379 for (j = 0; j < simple_char_max; j++)
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3380 if (SYNTAX (j) == Sword)
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3381 fastmap[j] = 1;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3382
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3383 if (bufp->multibyte)
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3384 /* Any character set can possibly contain a character
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3385 whose syntax is `Sword'. */
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3386 goto set_fastmap_for_multibyte_characters;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3387 break;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3388
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3389
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3390 case notwordchar:
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3391 simple_char_max = bufp->multibyte ? 0x80 : (1 << BYTEWIDTH);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3392 for (j = 0; j < simple_char_max; j++)
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3393 if (SYNTAX (j) != Sword)
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3394 fastmap[j] = 1;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3395
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3396 if (bufp->multibyte)
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3397 /* Any character set can possibly contain a character
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3398 whose syntax is not `Sword'. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3399 goto set_fastmap_for_multibyte_characters;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3400 break;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3401 #endif
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3402
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3403 case anychar:
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3404 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3405 int fastmap_newline = fastmap['\n'];
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3406
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3407 /* `.' matches anything (but if bufp->multibyte is
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3408 nonzero, matches `\000' .. `\127' and possible multibyte
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3409 character) ... */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3410 if (bufp->multibyte)
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3411 {
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3412 simple_char_max = 0x80;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3413
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3414 for (j = 0x80; j < 0xA0; j++)
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3415 if (BASE_LEADING_CODE_P (j))
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3416 fastmap[j] = 1;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3417 match_any_multibyte_characters = true;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3418 }
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3419 else
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3420 simple_char_max = (1 << BYTEWIDTH);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3421
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3422 for (j = 0; j < simple_char_max; j++)
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3423 fastmap[j] = 1;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3424
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3425 /* ... except perhaps newline. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3426 if (!(bufp->syntax & RE_DOT_NEWLINE))
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3427 fastmap['\n'] = fastmap_newline;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3428
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3429 /* Return if we have already set `can_be_null'; if we have,
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3430 then the fastmap is irrelevant. Something's wrong here. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3431 else if (bufp->can_be_null)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3432 goto done;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3433
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3434 /* Otherwise, have to check alternative paths. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3435 break;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3436 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3437
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3438 #ifdef emacs
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3439 case wordbound:
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3440 case notwordbound:
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3441 case wordbeg:
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3442 case wordend:
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3443 case notsyntaxspec:
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3444 case syntaxspec:
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3445 /* This match depends on text properties. These end with
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3446 aborting optimizations. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3447 bufp->can_be_null = 1;
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3448 goto done;
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3449 #if 0
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3450 k = *p++;
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3451 simple_char_max = bufp->multibyte ? 0x80 : (1 << BYTEWIDTH);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3452 for (j = 0; j < simple_char_max; j++)
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3453 if (SYNTAX (j) == (enum syntaxcode) k)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3454 fastmap[j] = 1;
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3455
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3456 if (bufp->multibyte)
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3457 /* Any character set can possibly contain a character
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3458 whose syntax is K. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3459 goto set_fastmap_for_multibyte_characters;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3460 break;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3461
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3462 case notsyntaxspec:
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3463 k = *p++;
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3464 simple_char_max = bufp->multibyte ? 0x80 : (1 << BYTEWIDTH);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3465 for (j = 0; j < simple_char_max; j++)
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3466 if (SYNTAX (j) != (enum syntaxcode) k)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3467 fastmap[j] = 1;
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3468
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3469 if (bufp->multibyte)
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3470 /* Any character set can possibly contain a character
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3471 whose syntax is not K. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3472 goto set_fastmap_for_multibyte_characters;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3473 break;
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3474 #endif
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3475
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3476
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3477 case categoryspec:
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3478 k = *p++;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3479 simple_char_max = bufp->multibyte ? 0x80 : (1 << BYTEWIDTH);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3480 for (j = 0; j < simple_char_max; j++)
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3481 if (CHAR_HAS_CATEGORY (j, k))
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3482 fastmap[j] = 1;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3483
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3484 if (bufp->multibyte)
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3485 /* Any character set can possibly contain a character
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3486 whose category is K. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3487 goto set_fastmap_for_multibyte_characters;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3488 break;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3489
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3490
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3491 case notcategoryspec:
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3492 k = *p++;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3493 simple_char_max = bufp->multibyte ? 0x80 : (1 << BYTEWIDTH);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3494 for (j = 0; j < simple_char_max; j++)
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3495 if (!CHAR_HAS_CATEGORY (j, k))
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3496 fastmap[j] = 1;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3497
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3498 if (bufp->multibyte)
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3499 /* Any character set can possibly contain a character
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3500 whose category is not K. */
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3501 goto set_fastmap_for_multibyte_characters;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3502 break;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3503
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3504 /* All cases after this match the empty string. These end with
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3505 `continue'. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3506
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3507
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3508 case before_dot:
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3509 case at_dot:
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3510 case after_dot:
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3511 continue;
481
35afc74165b7 (re_search_2): If pattern starts with \=, optimize search.
Richard Stallman <rms@gnu.org>
parents: 480
diff changeset
3512 #endif /* emacs */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3513
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3514
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3515 case no_op:
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3516 case begline:
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3517 case endline:
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3518 case begbuf:
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3519 case endbuf:
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3520 #ifndef emacs
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3521 case wordbound:
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3522 case notwordbound:
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3523 case wordbeg:
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3524 case wordend:
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3525 #endif
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3526 case push_dummy_failure:
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3527 continue;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3528
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3529
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3530 case jump_n:
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3531 case pop_failure_jump:
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3532 case maybe_pop_jump:
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3533 case jump:
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3534 case jump_past_alt:
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3535 case dummy_failure_jump:
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3536 EXTRACT_NUMBER_AND_INCR (j, p);
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
3537 p += j;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3538 if (j > 0)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3539 continue;
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
3540
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3541 /* Jump backward implies we just went through the body of a
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3542 loop and matched nothing. Opcode jumped to should be
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3543 `on_failure_jump' or `succeed_n'. Just treat it like an
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3544 ordinary jump. For a * loop, it has pushed its failure
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3545 point already; if so, discard that as redundant. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3546 if ((re_opcode_t) *p != on_failure_jump
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3547 && (re_opcode_t) *p != succeed_n)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3548 continue;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3549
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3550 p++;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3551 EXTRACT_NUMBER_AND_INCR (j, p);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3552 p += j;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3553
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3554 /* If what's on the stack is where we are now, pop it. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3555 if (!FAIL_STACK_EMPTY ()
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3556 && fail_stack.stack[fail_stack.avail - 1].pointer == p)
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3557 fail_stack.avail--;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3558
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3559 continue;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3560
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3561
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3562 case on_failure_jump:
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3563 case on_failure_keep_string_jump:
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3564 handle_on_failure_jump:
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3565 EXTRACT_NUMBER_AND_INCR (j, p);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3566
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3567 /* For some patterns, e.g., `(a?)?', `p+j' here points to the
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3568 end of the pattern. We don't want to push such a point,
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3569 since when we restore it above, entering the switch will
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3570 increment `p' past the end of the pattern. We don't need
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3571 to push such a point since we obviously won't find any more
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3572 fastmap entries beyond `pend'. Such a pattern can match
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3573 the null string, though. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3574 if (p + j < pend)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3575 {
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3576 if (!PUSH_PATTERN_OP (p + j, fail_stack))
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3577 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3578 RESET_FAIL_STACK ();
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3579 return -2;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3580 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3581 }
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3582 else
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3583 bufp->can_be_null = 1;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3584
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3585 if (succeed_n_p)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3586 {
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3587 EXTRACT_NUMBER_AND_INCR (k, p); /* Skip the n. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3588 succeed_n_p = false;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3589 }
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3590
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3591 continue;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3592
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3593
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3594 case succeed_n:
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3595 /* Get to the number of times to succeed. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3596 p += 2;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3597
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3598 /* Increment p past the n for when k != 0. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3599 EXTRACT_NUMBER_AND_INCR (k, p);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3600 if (k == 0)
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3601 {
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3602 p -= 4;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3603 succeed_n_p = true; /* Spaghetti code alert. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3604 goto handle_on_failure_jump;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3605 }
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3606 continue;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3607
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3608
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3609 case set_number_at:
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3610 p += 4;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3611 continue;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3612
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3613
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3614 case start_memory:
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3615 case stop_memory:
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3616 p += 2;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3617 continue;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3618
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3619
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3620 default:
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3621 abort (); /* We have listed all the cases. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3622 } /* switch *p++ */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3623
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3624 /* Getting here means we have found the possible starting
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3625 characters for one path of the pattern -- and that the empty
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3626 string does not match. We need not follow this path further.
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3627 Instead, look at the next alternative (remembered on the
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3628 stack), or quit if no more. The test at the top of the loop
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3629 does these things. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3630 path_can_be_null = false;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3631 p = pend;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3632 } /* while p */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3633
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3634 /* Set `can_be_null' for the last path (also the first path, if the
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3635 pattern is empty). */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3636 bufp->can_be_null |= path_can_be_null;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3637
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3638 done:
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3639 RESET_FAIL_STACK ();
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3640 return 0;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3641 } /* re_compile_fastmap */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3642
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3643 /* Set REGS to hold NUM_REGS registers, storing them in STARTS and
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3644 ENDS. Subsequent matches using PATTERN_BUFFER and REGS will use
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3645 this memory for recording register information. STARTS and ENDS
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3646 must be allocated using the malloc library routine, and must each
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3647 be at least NUM_REGS * sizeof (regoff_t) bytes long.
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3648
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3649 If NUM_REGS == 0, then subsequent matches should allocate their own
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3650 register data.
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3651
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3652 Unless this function is called, the first search or match using
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3653 PATTERN_BUFFER will allocate its own register data, without
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3654 freeing the old data. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3655
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3656 void
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3657 re_set_registers (bufp, regs, num_regs, starts, ends)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3658 struct re_pattern_buffer *bufp;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3659 struct re_registers *regs;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3660 unsigned num_regs;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3661 regoff_t *starts, *ends;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3662 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3663 if (num_regs)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3664 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3665 bufp->regs_allocated = REGS_REALLOCATE;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3666 regs->num_regs = num_regs;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3667 regs->start = starts;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3668 regs->end = ends;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3669 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3670 else
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3671 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3672 bufp->regs_allocated = REGS_UNALLOCATED;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3673 regs->num_regs = 0;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3674 regs->start = regs->end = (regoff_t *) 0;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3675 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3676 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3677
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3678 /* Searching routines. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3679
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3680 /* Like re_search_2, below, but only one string is specified, and
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3681 doesn't let you say where to stop matching. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3682
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3683 int
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3684 re_search (bufp, string, size, startpos, range, regs)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3685 struct re_pattern_buffer *bufp;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3686 const char *string;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3687 int size, startpos, range;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3688 struct re_registers *regs;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3689 {
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
3690 return re_search_2 (bufp, NULL, 0, string, size, startpos, range,
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3691 regs, size);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3692 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3693
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3694 /* End address of virtual concatenation of string. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3695 #define STOP_ADDR_VSTRING(P) \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3696 (((P) >= size1 ? string2 + size2 : string1 + size1))
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3697
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3698 /* Address of POS in the concatenation of virtual string. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3699 #define POS_ADDR_VSTRING(POS) \
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3700 (((POS) >= size1 ? string2 - size1 : string1) + (POS))
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3701
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3702 /* Using the compiled pattern in BUFP->buffer, first tries to match the
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3703 virtual concatenation of STRING1 and STRING2, starting first at index
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3704 STARTPOS, then at STARTPOS + 1, and so on.
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
3705
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3706 STRING1 and STRING2 have length SIZE1 and SIZE2, respectively.
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
3707
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3708 RANGE is how far to scan while trying to match. RANGE = 0 means try
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3709 only at STARTPOS; in general, the last start tried is STARTPOS +
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3710 RANGE.
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
3711
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3712 In REGS, return the indices of the virtual concatenation of STRING1
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3713 and STRING2 that matched the entire BUFP->buffer and its contained
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3714 subexpressions.
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
3715
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3716 Do not consider matching one past the index STOP in the virtual
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3717 concatenation of STRING1 and STRING2.
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3718
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3719 We return either the position in the strings at which the match was
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3720 found, -1 if no match, or -2 if error (such as failure
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3721 stack overflow). */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3722
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3723 int
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3724 re_search_2 (bufp, string1, size1, string2, size2, startpos, range, regs, stop)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3725 struct re_pattern_buffer *bufp;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3726 const char *string1, *string2;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3727 int size1, size2;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3728 int startpos;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3729 int range;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3730 struct re_registers *regs;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3731 int stop;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3732 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3733 int val;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3734 register char *fastmap = bufp->fastmap;
501
f29b13c2cefd (TRANSLATE, PATFETCH): Cast elt of `translate'.
Richard Stallman <rms@gnu.org>
parents: 490
diff changeset
3735 register RE_TRANSLATE_TYPE translate = bufp->translate;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3736 int total_size = size1 + size2;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3737 int endpos = startpos + range;
678
bd677f8ba924 (re_search_2): Optimize regexp that starts with ^.
Richard Stallman <rms@gnu.org>
parents: 677
diff changeset
3738 int anchored_start = 0;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3739
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3740 /* Nonzero if we have to concern multibyte character. */
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3741 int multibyte = bufp->multibyte;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3742
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3743 /* Check for out-of-range STARTPOS. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3744 if (startpos < 0 || startpos > total_size)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3745 return -1;
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
3746
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3747 /* Fix up RANGE if it might eventually take us outside
490
985fe9826996 (re_search_2): Use 0, not -1, as the lower bound
Richard Stallman <rms@gnu.org>
parents: 481
diff changeset
3748 the virtual concatenation of STRING1 and STRING2.
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
3749 Make sure we won't move STARTPOS below 0 or above TOTAL_SIZE. */
490
985fe9826996 (re_search_2): Use 0, not -1, as the lower bound
Richard Stallman <rms@gnu.org>
parents: 481
diff changeset
3750 if (endpos < 0)
985fe9826996 (re_search_2): Use 0, not -1, as the lower bound
Richard Stallman <rms@gnu.org>
parents: 481
diff changeset
3751 range = 0 - startpos;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3752 else if (endpos > total_size)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3753 range = total_size - startpos;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3754
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3755 /* If the search isn't to be a backwards one, don't waste time in a
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3756 search for a pattern that must be anchored. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3757 if (bufp->used > 0 && (re_opcode_t) bufp->buffer[0] == begbuf && range > 0)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3758 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3759 if (startpos > 0)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3760 return -1;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3761 else
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3762 range = 1;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3763 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3764
481
35afc74165b7 (re_search_2): If pattern starts with \=, optimize search.
Richard Stallman <rms@gnu.org>
parents: 480
diff changeset
3765 #ifdef emacs
35afc74165b7 (re_search_2): If pattern starts with \=, optimize search.
Richard Stallman <rms@gnu.org>
parents: 480
diff changeset
3766 /* In a forward search for something that starts with \=.
35afc74165b7 (re_search_2): If pattern starts with \=, optimize search.
Richard Stallman <rms@gnu.org>
parents: 480
diff changeset
3767 don't keep searching past point. */
35afc74165b7 (re_search_2): If pattern starts with \=, optimize search.
Richard Stallman <rms@gnu.org>
parents: 480
diff changeset
3768 if (bufp->used > 0 && (re_opcode_t) bufp->buffer[0] == at_dot && range > 0)
35afc74165b7 (re_search_2): If pattern starts with \=, optimize search.
Richard Stallman <rms@gnu.org>
parents: 480
diff changeset
3769 {
35afc74165b7 (re_search_2): If pattern starts with \=, optimize search.
Richard Stallman <rms@gnu.org>
parents: 480
diff changeset
3770 range = PT - startpos;
35afc74165b7 (re_search_2): If pattern starts with \=, optimize search.
Richard Stallman <rms@gnu.org>
parents: 480
diff changeset
3771 if (range <= 0)
35afc74165b7 (re_search_2): If pattern starts with \=, optimize search.
Richard Stallman <rms@gnu.org>
parents: 480
diff changeset
3772 return -1;
35afc74165b7 (re_search_2): If pattern starts with \=, optimize search.
Richard Stallman <rms@gnu.org>
parents: 480
diff changeset
3773 }
35afc74165b7 (re_search_2): If pattern starts with \=, optimize search.
Richard Stallman <rms@gnu.org>
parents: 480
diff changeset
3774 #endif /* emacs */
35afc74165b7 (re_search_2): If pattern starts with \=, optimize search.
Richard Stallman <rms@gnu.org>
parents: 480
diff changeset
3775
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3776 /* Update the fastmap now if not correct already. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3777 if (fastmap && !bufp->fastmap_accurate)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3778 if (re_compile_fastmap (bufp) == -2)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3779 return -2;
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
3780
678
bd677f8ba924 (re_search_2): Optimize regexp that starts with ^.
Richard Stallman <rms@gnu.org>
parents: 677
diff changeset
3781 /* See whether the pattern is anchored. */
bd677f8ba924 (re_search_2): Optimize regexp that starts with ^.
Richard Stallman <rms@gnu.org>
parents: 677
diff changeset
3782 if (bufp->buffer[0] == begline)
bd677f8ba924 (re_search_2): Optimize regexp that starts with ^.
Richard Stallman <rms@gnu.org>
parents: 677
diff changeset
3783 anchored_start = 1;
bd677f8ba924 (re_search_2): Optimize regexp that starts with ^.
Richard Stallman <rms@gnu.org>
parents: 677
diff changeset
3784
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3785 #ifdef emacs
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3786 SETUP_SYNTAX_TABLE_FOR_OBJECT (re_match_object,
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3787 POS_AS_IN_BUFFER (startpos > 0
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3788 ? startpos - 1 : startpos),
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3789 1);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3790 #endif
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3791
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3792 /* Loop through the string, looking for a place to start matching. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3793 for (;;)
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
3794 {
678
bd677f8ba924 (re_search_2): Optimize regexp that starts with ^.
Richard Stallman <rms@gnu.org>
parents: 677
diff changeset
3795 /* If the pattern is anchored,
bd677f8ba924 (re_search_2): Optimize regexp that starts with ^.
Richard Stallman <rms@gnu.org>
parents: 677
diff changeset
3796 skip quickly past places we cannot match.
bd677f8ba924 (re_search_2): Optimize regexp that starts with ^.
Richard Stallman <rms@gnu.org>
parents: 677
diff changeset
3797 We don't bother to treat startpos == 0 specially
bd677f8ba924 (re_search_2): Optimize regexp that starts with ^.
Richard Stallman <rms@gnu.org>
parents: 677
diff changeset
3798 because that case doesn't repeat. */
bd677f8ba924 (re_search_2): Optimize regexp that starts with ^.
Richard Stallman <rms@gnu.org>
parents: 677
diff changeset
3799 if (anchored_start && startpos > 0)
bd677f8ba924 (re_search_2): Optimize regexp that starts with ^.
Richard Stallman <rms@gnu.org>
parents: 677
diff changeset
3800 {
bd677f8ba924 (re_search_2): Optimize regexp that starts with ^.
Richard Stallman <rms@gnu.org>
parents: 677
diff changeset
3801 if (! (bufp->newline_anchor
bd677f8ba924 (re_search_2): Optimize regexp that starts with ^.
Richard Stallman <rms@gnu.org>
parents: 677
diff changeset
3802 && ((startpos <= size1 ? string1[startpos - 1]
bd677f8ba924 (re_search_2): Optimize regexp that starts with ^.
Richard Stallman <rms@gnu.org>
parents: 677
diff changeset
3803 : string2[startpos - size1 - 1])
bd677f8ba924 (re_search_2): Optimize regexp that starts with ^.
Richard Stallman <rms@gnu.org>
parents: 677
diff changeset
3804 == '\n')))
bd677f8ba924 (re_search_2): Optimize regexp that starts with ^.
Richard Stallman <rms@gnu.org>
parents: 677
diff changeset
3805 goto advance;
bd677f8ba924 (re_search_2): Optimize regexp that starts with ^.
Richard Stallman <rms@gnu.org>
parents: 677
diff changeset
3806 }
bd677f8ba924 (re_search_2): Optimize regexp that starts with ^.
Richard Stallman <rms@gnu.org>
parents: 677
diff changeset
3807
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3808 /* If a fastmap is supplied, skip quickly over characters that
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3809 cannot be the start of a match. If the pattern can match the
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3810 null string, however, we don't need to skip characters; we want
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3811 the first null string. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3812 if (fastmap && startpos < total_size && !bufp->can_be_null)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3813 {
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3814 if (range > 0) /* Searching forwards. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3815 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3816 register const char *d;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3817 register int lim = 0;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3818 int irange = range;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3819
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3820 if (startpos < size1 && startpos + range >= size1)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3821 lim = range - (size1 - startpos);
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3822
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3823 d = POS_ADDR_VSTRING (startpos);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3824
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3825 /* Written out as an if-else to avoid testing `translate'
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3826 inside the loop. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3827 if (translate)
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3828 while (range > lim
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3829 && !fastmap[(unsigned char)
963
ed0235161e4b (TRANSLATE, re_search_2, re_match_2_internal,bcmp_translate):
Richard Stallman <rms@gnu.org>
parents: 961
diff changeset
3830 RE_TRANSLATE (translate, (unsigned char) *d++)])
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3831 range--;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3832 else
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3833 while (range > lim && !fastmap[(unsigned char) *d++])
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3834 range--;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3835
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3836 startpos += irange - range;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3837 }
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3838 else /* Searching backwards. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3839 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3840 register char c = (size1 == 0 || startpos >= size1
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3841 ? string2[startpos - size1]
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3842 : string1[startpos]);
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3843
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3844 if (!fastmap[(unsigned char) TRANSLATE (c)])
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3845 goto advance;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3846 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3847 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3848
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3849 /* If can't match the null string, and that's all we have left, fail. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3850 if (range >= 0 && startpos == total_size && fastmap
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3851 && !bufp->can_be_null)
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3852 return -1;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3853
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3854 val = re_match_2_internal (bufp, string1, size1, string2, size2,
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3855 startpos, regs, stop);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3856 #ifndef REGEX_MALLOC
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3857 #ifdef C_ALLOCA
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3858 alloca (0);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3859 #endif
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3860 #endif
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3861
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3862 if (val >= 0)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3863 return startpos;
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
3864
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3865 if (val == -2)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3866 return -2;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3867
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3868 advance:
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
3869 if (!range)
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3870 break;
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
3871 else if (range > 0)
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3872 {
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3873 /* Update STARTPOS to the next character boundary. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3874 if (multibyte)
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3875 {
961
6959c7741ed2 (re_search_2): Cast result of POS_ADDR_VSTRING.
Richard Stallman <rms@gnu.org>
parents: 942
diff changeset
3876 const unsigned char *p
6959c7741ed2 (re_search_2): Cast result of POS_ADDR_VSTRING.
Richard Stallman <rms@gnu.org>
parents: 942
diff changeset
3877 = (const unsigned char *) POS_ADDR_VSTRING (startpos);
6959c7741ed2 (re_search_2): Cast result of POS_ADDR_VSTRING.
Richard Stallman <rms@gnu.org>
parents: 942
diff changeset
3878 const unsigned char *pend
6959c7741ed2 (re_search_2): Cast result of POS_ADDR_VSTRING.
Richard Stallman <rms@gnu.org>
parents: 942
diff changeset
3879 = (const unsigned char *) STOP_ADDR_VSTRING (startpos);
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3880 int len = MULTIBYTE_FORM_LENGTH (p, pend - p);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3881
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3882 range -= len;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3883 if (range < 0)
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3884 break;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3885 startpos += len;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3886 }
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3887 else
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3888 {
961
6959c7741ed2 (re_search_2): Cast result of POS_ADDR_VSTRING.
Richard Stallman <rms@gnu.org>
parents: 942
diff changeset
3889 range--;
6959c7741ed2 (re_search_2): Cast result of POS_ADDR_VSTRING.
Richard Stallman <rms@gnu.org>
parents: 942
diff changeset
3890 startpos++;
6959c7741ed2 (re_search_2): Cast result of POS_ADDR_VSTRING.
Richard Stallman <rms@gnu.org>
parents: 942
diff changeset
3891 }
679
b088267ea1c8 Clean up whitespace.
Richard Stallman <rms@gnu.org>
parents: 678
diff changeset
3892 }
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3893 else
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3894 {
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3895 range++;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3896 startpos--;
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3897
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3898 /* Update STARTPOS to the previous character boundary. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3899 if (multibyte)
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3900 {
961
6959c7741ed2 (re_search_2): Cast result of POS_ADDR_VSTRING.
Richard Stallman <rms@gnu.org>
parents: 942
diff changeset
3901 const unsigned char *p
6959c7741ed2 (re_search_2): Cast result of POS_ADDR_VSTRING.
Richard Stallman <rms@gnu.org>
parents: 942
diff changeset
3902 = (const unsigned char *) POS_ADDR_VSTRING (startpos);
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3903 int len = 0;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3904
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3905 /* Find the head of multibyte form. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3906 while (!CHAR_HEAD_P (p))
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3907 p--, len++;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3908
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3909 /* Adjust it. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3910 #if 0 /* XXX */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3911 if (MULTIBYTE_FORM_LENGTH (p, len + 1) != (len + 1))
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3912 ;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3913 else
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3914 #endif
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3915 {
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3916 range += len;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3917 if (range > 0)
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3918 break;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3919
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3920 startpos -= len;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3921 }
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3922 }
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3923 }
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3924 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3925 return -1;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3926 } /* re_search_2 */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3927
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3928 /* Declarations and macros for re_match_2. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3929
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3930 static int bcmp_translate ();
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3931 static boolean alt_match_null_string_p (),
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3932 common_op_match_null_string_p (),
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3933 group_match_null_string_p ();
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3934
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3935 /* This converts PTR, a pointer into one of the search strings `string1'
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3936 and `string2' into an offset from the beginning of that string. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3937 #define POINTER_TO_OFFSET(ptr) \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3938 (FIRST_STRING_P (ptr) \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3939 ? ((regoff_t) ((ptr) - string1)) \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3940 : ((regoff_t) ((ptr) - string2 + size1)))
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3941
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3942 /* Macros for dealing with the split strings in re_match_2. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3943
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3944 #define MATCHING_IN_FIRST_STRING (dend == end_match_1)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3945
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3946 /* Call before fetching a character with *d. This switches over to
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3947 string2 if necessary. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3948 #define PREFETCH() \
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3949 while (d == dend) \
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3950 { \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3951 /* End of string2 => fail. */ \
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3952 if (dend == end_match_2) \
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3953 goto fail; \
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3954 /* End of string1 => advance to string2. */ \
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3955 d = string2; \
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3956 dend = end_match_2; \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3957 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3958
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3959
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3960 /* Test if at very beginning or at very end of the virtual concatenation
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3961 of `string1' and `string2'. If only one string, it's `string2'. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3962 #define AT_STRINGS_BEG(d) ((d) == (size1 ? string1 : string2) || !size2)
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
3963 #define AT_STRINGS_END(d) ((d) == end2)
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3964
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3965
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3966 /* Test if D points to a character which is word-constituent. We have
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3967 two special cases to check for: if past the end of string1, look at
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3968 the first character in string2; and if before the beginning of
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3969 string2, look at the last character in string1. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3970 #define WORDCHAR_P(d) \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3971 (SYNTAX ((d) == end1 ? *string2 \
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3972 : (d) == string2 - 1 ? *(end1 - 1) : *(d)) \
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3973 == Sword)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3974
521
7089c3a3a164 (AT_WORD_BOUNDARY): Disable macro.
Karl Heuer <kwzh@gnu.org>
parents: 515
diff changeset
3975 /* Disabled due to a compiler bug -- see comment at case wordbound */
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3976
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3977 /* The comment at case wordbound is following one, but we don't use
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3978 AT_WORD_BOUNDARY anymore to support multibyte form.
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3979
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3980 The DEC Alpha C compiler 3.x generates incorrect code for the
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3981 test WORDCHAR_P (d - 1) != WORDCHAR_P (d) in the expansion of
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
3982 AT_WORD_BOUNDARY, so this code is disabled. Expanding the
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3983 macro and introducing temporary variables works around the bug. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
3984
521
7089c3a3a164 (AT_WORD_BOUNDARY): Disable macro.
Karl Heuer <kwzh@gnu.org>
parents: 515
diff changeset
3985 #if 0
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3986 /* Test if the character before D and the one at D differ with respect
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3987 to being word-constituent. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3988 #define AT_WORD_BOUNDARY(d) \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3989 (AT_STRINGS_BEG (d) || AT_STRINGS_END (d) \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3990 || WORDCHAR_P (d - 1) != WORDCHAR_P (d))
521
7089c3a3a164 (AT_WORD_BOUNDARY): Disable macro.
Karl Heuer <kwzh@gnu.org>
parents: 515
diff changeset
3991 #endif
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3992
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3993 /* Free everything we malloc. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3994 #ifdef MATCH_MAY_ALLOCATE
942
c6196b52ec1d Fix previous change.
Richard Stallman <rms@gnu.org>
parents: 941
diff changeset
3995 #define FREE_VAR(var) if (var) { REGEX_FREE (var); var = NULL; } else
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3996 #define FREE_VARIABLES() \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3997 do { \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3998 REGEX_FREE_STACK (fail_stack.stack); \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
3999 FREE_VAR (regstart); \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4000 FREE_VAR (regend); \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4001 FREE_VAR (old_regstart); \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4002 FREE_VAR (old_regend); \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4003 FREE_VAR (best_regstart); \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4004 FREE_VAR (best_regend); \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4005 FREE_VAR (reg_info); \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4006 FREE_VAR (reg_dummy); \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4007 FREE_VAR (reg_info_dummy); \
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4008 } while (0)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4009 #else
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4010 #define FREE_VARIABLES() ((void)0) /* Do nothing! But inhibit gcc warning. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4011 #endif /* not MATCH_MAY_ALLOCATE */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4012
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4013 /* These values must meet several constraints. They must not be valid
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4014 register values; since we have a limit of 255 registers (because
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4015 we use only one byte in the pattern for the register number), we can
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4016 use numbers larger than 255. They must differ by 1, because of
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4017 NUM_FAILURE_ITEMS above. And the value for the lowest register must
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4018 be larger than the value for the highest register, so we do not try
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4019 to actually save any registers when none are active. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4020 #define NO_HIGHEST_ACTIVE_REG (1 << BYTEWIDTH)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4021 #define NO_LOWEST_ACTIVE_REG (NO_HIGHEST_ACTIVE_REG + 1)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4022
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4023 /* Matching routines. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4024
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4025 #ifndef emacs /* Emacs never uses this. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4026 /* re_match is like re_match_2 except it takes only a single string. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4027
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4028 int
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4029 re_match (bufp, string, size, pos, regs)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4030 struct re_pattern_buffer *bufp;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4031 const char *string;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4032 int size, pos;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4033 struct re_registers *regs;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4034 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4035 int result = re_match_2_internal (bufp, NULL, 0, string, size,
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4036 pos, regs, size);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4037 alloca (0);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4038 return result;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4039 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4040 #endif /* not emacs */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4041
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
4042 #ifdef emacs
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
4043 /* In Emacs, this is the string or buffer in which we
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4044 are matching. It is used for looking up syntax properties. */
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
4045 Lisp_Object re_match_object;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
4046 #endif
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4047
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4048 /* re_match_2 matches the compiled pattern in BUFP against the
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4049 the (virtual) concatenation of STRING1 and STRING2 (of length SIZE1
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4050 and SIZE2, respectively). We start matching at POS, and stop
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4051 matching at STOP.
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
4052
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4053 If REGS is non-null and the `no_sub' field of BUFP is nonzero, we
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4054 store offsets for the substring each group matched in REGS. See the
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4055 documentation for exactly how many groups we fill.
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4056
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4057 We return -1 if no match, -2 if an internal error (such as the
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4058 failure stack overflowing). Otherwise, we return the length of the
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4059 matched substring. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4060
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4061 int
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4062 re_match_2 (bufp, string1, size1, string2, size2, pos, regs, stop)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4063 struct re_pattern_buffer *bufp;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4064 const char *string1, *string2;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4065 int size1, size2;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4066 int pos;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4067 struct re_registers *regs;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4068 int stop;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4069 {
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
4070 int result;
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4071
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
4072 #ifdef emacs
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4073 SETUP_SYNTAX_TABLE_FOR_OBJECT (re_match_object,
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4074 POS_AS_IN_BUFFER (pos > 0 ? pos - 1 : pos),
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
4075 1);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
4076 #endif
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
4077
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
4078 result = re_match_2_internal (bufp, string1, size1, string2, size2,
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4079 pos, regs, stop);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4080 alloca (0);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4081 return result;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4082 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4083
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4084 /* This is a separate function so that we can force an alloca cleanup
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4085 afterwards. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4086 static int
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4087 re_match_2_internal (bufp, string1, size1, string2, size2, pos, regs, stop)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4088 struct re_pattern_buffer *bufp;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4089 const char *string1, *string2;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4090 int size1, size2;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4091 int pos;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4092 struct re_registers *regs;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4093 int stop;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4094 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4095 /* General temporaries. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4096 int mcnt;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4097 unsigned char *p1;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4098
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4099 /* Just past the end of the corresponding string. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4100 const char *end1, *end2;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4101
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4102 /* Pointers into string1 and string2, just past the last characters in
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4103 each to consider matching. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4104 const char *end_match_1, *end_match_2;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4105
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4106 /* Where we are in the data, and the end of the current string. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4107 const char *d, *dend;
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
4108
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4109 /* Where we are in the pattern, and the end of the pattern. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4110 unsigned char *p = bufp->buffer;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4111 register unsigned char *pend = p + bufp->used;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4112
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4113 /* Mark the opcode just after a start_memory, so we can test for an
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4114 empty subpattern when we get to the stop_memory. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4115 unsigned char *just_past_start_mem = 0;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4116
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4117 /* We use this to map every character in the string. */
501
f29b13c2cefd (TRANSLATE, PATFETCH): Cast elt of `translate'.
Richard Stallman <rms@gnu.org>
parents: 490
diff changeset
4118 RE_TRANSLATE_TYPE translate = bufp->translate;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4119
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4120 /* Nonzero if we have to concern multibyte character. */
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
4121 int multibyte = bufp->multibyte;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
4122
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4123 /* Failure point stack. Each place that can handle a failure further
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4124 down the line pushes a failure point on this stack. It consists of
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4125 restart, regend, and reg_info for all registers corresponding to
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4126 the subexpressions we're currently inside, plus the number of such
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4127 registers, and, finally, two char *'s. The first char * is where
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4128 to resume scanning the pattern; the second one is where to resume
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4129 scanning the strings. If the latter is zero, the failure point is
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4130 a ``dummy''; if a failure happens and the failure point is a dummy,
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4131 it gets discarded and the next next one is tried. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4132 #ifdef MATCH_MAY_ALLOCATE /* otherwise, this is global. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4133 fail_stack_type fail_stack;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4134 #endif
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4135 #ifdef DEBUG
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4136 static unsigned failure_id = 0;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4137 unsigned nfailure_points_pushed = 0, nfailure_points_popped = 0;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4138 #endif
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4139
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4140 /* This holds the pointer to the failure stack, when
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4141 it is allocated relocatably. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4142 fail_stack_elt_t *failure_stack_ptr;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4143
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4144 /* We fill all the registers internally, independent of what we
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4145 return, for use in backreferences. The number here includes
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4146 an element for register zero. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4147 unsigned num_regs = bufp->re_nsub + 1;
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
4148
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4149 /* The currently active registers. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4150 unsigned lowest_active_reg = NO_LOWEST_ACTIVE_REG;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4151 unsigned highest_active_reg = NO_HIGHEST_ACTIVE_REG;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4152
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4153 /* Information on the contents of registers. These are pointers into
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4154 the input strings; they record just what was matched (on this
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4155 attempt) by a subexpression part of the pattern, that is, the
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4156 regnum-th regstart pointer points to where in the pattern we began
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4157 matching and the regnum-th regend points to right after where we
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4158 stopped matching the regnum-th subexpression. (The zeroth register
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4159 keeps track of what the whole pattern matches.) */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4160 #ifdef MATCH_MAY_ALLOCATE /* otherwise, these are global. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4161 const char **regstart, **regend;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4162 #endif
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4163
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4164 /* If a group that's operated upon by a repetition operator fails to
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4165 match anything, then the register for its start will need to be
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4166 restored because it will have been set to wherever in the string we
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4167 are when we last see its open-group operator. Similarly for a
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4168 register's end. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4169 #ifdef MATCH_MAY_ALLOCATE /* otherwise, these are global. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4170 const char **old_regstart, **old_regend;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4171 #endif
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4172
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4173 /* The is_active field of reg_info helps us keep track of which (possibly
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4174 nested) subexpressions we are currently in. The matched_something
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4175 field of reg_info[reg_num] helps us tell whether or not we have
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4176 matched any of the pattern so far this time through the reg_num-th
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4177 subexpression. These two fields get reset each time through any
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4178 loop their register is in. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4179 #ifdef MATCH_MAY_ALLOCATE /* otherwise, this is global. */
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
4180 register_info_type *reg_info;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4181 #endif
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4182
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4183 /* The following record the register info as found in the above
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
4184 variables when we find a match better than any we've seen before.
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4185 This happens as we backtrack through the failure points, which in
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4186 turn happens only if we have not yet matched the entire string. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4187 unsigned best_regs_set = false;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4188 #ifdef MATCH_MAY_ALLOCATE /* otherwise, these are global. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4189 const char **best_regstart, **best_regend;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4190 #endif
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
4191
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4192 /* Logically, this is `best_regend[0]'. But we don't want to have to
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4193 allocate space for that if we're not allocating space for anything
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4194 else (see below). Also, we never need info about register 0 for
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4195 any of the other register vectors, and it seems rather a kludge to
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4196 treat `best_regend' differently than the rest. So we keep track of
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4197 the end of the best match so far in a separate variable. We
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4198 initialize this to NULL so that when we backtrack the first time
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4199 and need to test it, it's not garbage. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4200 const char *match_end = NULL;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4201
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4202 /* This helps SET_REGS_MATCHED avoid doing redundant work. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4203 int set_regs_matched_done = 0;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4204
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4205 /* Used when we pop values we don't care about. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4206 #ifdef MATCH_MAY_ALLOCATE /* otherwise, these are global. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4207 const char **reg_dummy;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4208 register_info_type *reg_info_dummy;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4209 #endif
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4210
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4211 #ifdef DEBUG
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4212 /* Counts the total number of registers pushed. */
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
4213 unsigned num_regs_pushed = 0;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4214 #endif
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4215
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4216 DEBUG_PRINT1 ("\n\nEntering re_match_2.\n");
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
4217
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4218 INIT_FAIL_STACK ();
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
4219
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4220 #ifdef MATCH_MAY_ALLOCATE
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4221 /* Do not bother to initialize all the register variables if there are
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4222 no groups in the pattern, as it takes a fair amount of time. If
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4223 there are groups, we include space for register 0 (the whole
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4224 pattern), even though we never use it, since it simplifies the
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4225 array indexing. We should fix this. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4226 if (bufp->re_nsub)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4227 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4228 regstart = REGEX_TALLOC (num_regs, const char *);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4229 regend = REGEX_TALLOC (num_regs, const char *);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4230 old_regstart = REGEX_TALLOC (num_regs, const char *);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4231 old_regend = REGEX_TALLOC (num_regs, const char *);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4232 best_regstart = REGEX_TALLOC (num_regs, const char *);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4233 best_regend = REGEX_TALLOC (num_regs, const char *);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4234 reg_info = REGEX_TALLOC (num_regs, register_info_type);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4235 reg_dummy = REGEX_TALLOC (num_regs, const char *);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4236 reg_info_dummy = REGEX_TALLOC (num_regs, register_info_type);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4237
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
4238 if (!(regstart && regend && old_regstart && old_regend && reg_info
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4239 && best_regstart && best_regend && reg_dummy && reg_info_dummy))
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4240 {
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4241 FREE_VARIABLES ();
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4242 return -2;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4243 }
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4244 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4245 else
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4246 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4247 /* We must initialize all our variables to NULL, so that
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4248 `FREE_VARIABLES' doesn't try to free them. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4249 regstart = regend = old_regstart = old_regend = best_regstart
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4250 = best_regend = reg_dummy = NULL;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4251 reg_info = reg_info_dummy = (register_info_type *) NULL;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4252 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4253 #endif /* MATCH_MAY_ALLOCATE */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4254
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4255 /* The starting position is bogus. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4256 if (pos < 0 || pos > size1 + size2)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4257 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4258 FREE_VARIABLES ();
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4259 return -1;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4260 }
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
4261
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4262 /* Initialize subexpression text positions to -1 to mark ones that no
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4263 start_memory/stop_memory has been seen for. Also initialize the
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4264 register information struct. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4265 for (mcnt = 1; mcnt < num_regs; mcnt++)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4266 {
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
4267 regstart[mcnt] = regend[mcnt]
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4268 = old_regstart[mcnt] = old_regend[mcnt] = REG_UNSET_VALUE;
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
4269
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4270 REG_MATCH_NULL_STRING_P (reg_info[mcnt]) = MATCH_NULL_UNSET_VALUE;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4271 IS_ACTIVE (reg_info[mcnt]) = 0;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4272 MATCHED_SOMETHING (reg_info[mcnt]) = 0;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4273 EVER_MATCHED_SOMETHING (reg_info[mcnt]) = 0;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4274 }
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
4275
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4276 /* We move `string1' into `string2' if the latter's empty -- but not if
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4277 `string1' is null. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4278 if (size2 == 0 && string1 != NULL)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4279 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4280 string2 = string1;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4281 size2 = size1;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4282 string1 = 0;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4283 size1 = 0;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4284 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4285 end1 = string1 + size1;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4286 end2 = string2 + size2;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4287
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4288 /* Compute where to stop matching, within the two strings. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4289 if (stop <= size1)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4290 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4291 end_match_1 = string1 + stop;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4292 end_match_2 = string2;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4293 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4294 else
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4295 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4296 end_match_1 = end1;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4297 end_match_2 = string2 + stop - size1;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4298 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4299
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
4300 /* `p' scans through the pattern as `d' scans through the data.
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4301 `dend' is the end of the input string that `d' points within. `d'
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4302 is advanced into the following input string whenever necessary, but
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4303 this happens before fetching; therefore, at the beginning of the
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4304 loop, `d' can be pointing at the end of a string, but it cannot
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4305 equal `string2'. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4306 if (size1 > 0 && pos <= size1)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4307 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4308 d = string1 + pos;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4309 dend = end_match_1;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4310 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4311 else
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4312 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4313 d = string2 + pos - size1;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4314 dend = end_match_2;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4315 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4316
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4317 DEBUG_PRINT1 ("The compiled pattern is: ");
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4318 DEBUG_PRINT_COMPILED_PATTERN (bufp, p, pend);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4319 DEBUG_PRINT1 ("The string to match is: `");
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4320 DEBUG_PRINT_DOUBLE_STRING (d, string1, size1, string2, size2);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4321 DEBUG_PRINT1 ("'\n");
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
4322
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4323 /* This loops over pattern commands. It exits by returning from the
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4324 function if the match is complete, or it drops through if the match
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4325 fails at this starting point in the input data. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4326 for (;;)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4327 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4328 DEBUG_PRINT2 ("\n0x%x: ", p);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4329
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4330 if (p == pend)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4331 { /* End of pattern means we might have succeeded. */
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4332 DEBUG_PRINT1 ("end of pattern ... ");
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
4333
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4334 /* If we haven't matched the entire string, and we want the
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4335 longest match, try backtracking. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4336 if (d != end_match_2)
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4337 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4338 /* 1 if this match ends in the same string (string1 or string2)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4339 as the best previous match. */
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
4340 boolean same_str_p = (FIRST_STRING_P (match_end)
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4341 == MATCHING_IN_FIRST_STRING);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4342 /* 1 if this match is the best seen so far. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4343 boolean best_match_p;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4344
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4345 /* AIX compiler got confused when this was combined
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4346 with the previous declaration. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4347 if (same_str_p)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4348 best_match_p = d > match_end;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4349 else
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4350 best_match_p = !MATCHING_IN_FIRST_STRING;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4351
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4352 DEBUG_PRINT1 ("backtracking.\n");
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4353
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4354 if (!FAIL_STACK_EMPTY ())
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4355 { /* More failure points to try. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4356
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4357 /* If exceeds best match so far, save it. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4358 if (!best_regs_set || best_match_p)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4359 {
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4360 best_regs_set = true;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4361 match_end = d;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4362
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4363 DEBUG_PRINT1 ("\nSAVING match as best so far.\n");
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4364
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4365 for (mcnt = 1; mcnt < num_regs; mcnt++)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4366 {
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4367 best_regstart[mcnt] = regstart[mcnt];
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4368 best_regend[mcnt] = regend[mcnt];
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4369 }
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4370 }
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4371 goto fail;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4372 }
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4373
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4374 /* If no failure points, don't restore garbage. And if
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4375 last match is real best match, don't restore second
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4376 best one. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4377 else if (best_regs_set && !best_match_p)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4378 {
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4379 restore_best_regs:
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4380 /* Restore best match. It may happen that `dend ==
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4381 end_match_1' while the restored d is in string2.
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4382 For example, the pattern `x.*y.*z' against the
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4383 strings `x-' and `y-z-', if the two strings are
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4384 not consecutive in memory. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4385 DEBUG_PRINT1 ("Restoring best registers.\n");
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4386
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4387 d = match_end;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4388 dend = ((d >= string1 && d <= end1)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4389 ? end_match_1 : end_match_2);
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4390
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4391 for (mcnt = 1; mcnt < num_regs; mcnt++)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4392 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4393 regstart[mcnt] = best_regstart[mcnt];
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4394 regend[mcnt] = best_regend[mcnt];
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4395 }
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4396 }
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4397 } /* d != end_match_2 */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4398
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4399 succeed_label:
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4400 DEBUG_PRINT1 ("Accepting match.\n");
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4401
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4402 /* If caller wants register contents data back, do it. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4403 if (regs && !bufp->no_sub)
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4404 {
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4405 /* Have the register data arrays been allocated? */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4406 if (bufp->regs_allocated == REGS_UNALLOCATED)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4407 { /* No. So allocate them with malloc. We need one
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4408 extra element beyond `num_regs' for the `-1' marker
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4409 GNU code uses. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4410 regs->num_regs = MAX (RE_NREGS, num_regs + 1);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4411 regs->start = TALLOC (regs->num_regs, regoff_t);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4412 regs->end = TALLOC (regs->num_regs, regoff_t);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4413 if (regs->start == NULL || regs->end == NULL)
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4414 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4415 FREE_VARIABLES ();
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4416 return -2;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4417 }
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4418 bufp->regs_allocated = REGS_REALLOCATE;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4419 }
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4420 else if (bufp->regs_allocated == REGS_REALLOCATE)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4421 { /* Yes. If we need more elements than were already
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4422 allocated, reallocate them. If we need fewer, just
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4423 leave it alone. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4424 if (regs->num_regs < num_regs + 1)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4425 {
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4426 regs->num_regs = num_regs + 1;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4427 RETALLOC (regs->start, regs->num_regs, regoff_t);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4428 RETALLOC (regs->end, regs->num_regs, regoff_t);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4429 if (regs->start == NULL || regs->end == NULL)
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4430 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4431 FREE_VARIABLES ();
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4432 return -2;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4433 }
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4434 }
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4435 }
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4436 else
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4437 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4438 /* These braces fend off a "empty body in an else-statement"
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4439 warning under GCC when assert expands to nothing. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4440 assert (bufp->regs_allocated == REGS_FIXED);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4441 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4442
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4443 /* Convert the pointer data in `regstart' and `regend' to
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4444 indices. Register zero has to be set differently,
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4445 since we haven't kept track of any info for it. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4446 if (regs->num_regs > 0)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4447 {
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4448 regs->start[0] = pos;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4449 regs->end[0] = (MATCHING_IN_FIRST_STRING
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4450 ? ((regoff_t) (d - string1))
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4451 : ((regoff_t) (d - string2 + size1)));
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4452 }
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4453
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4454 /* Go through the first `min (num_regs, regs->num_regs)'
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4455 registers, since that is all we initialized. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4456 for (mcnt = 1; mcnt < MIN (num_regs, regs->num_regs); mcnt++)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4457 {
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4458 if (REG_UNSET (regstart[mcnt]) || REG_UNSET (regend[mcnt]))
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4459 regs->start[mcnt] = regs->end[mcnt] = -1;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4460 else
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4461 {
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4462 regs->start[mcnt]
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4463 = (regoff_t) POINTER_TO_OFFSET (regstart[mcnt]);
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4464 regs->end[mcnt]
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4465 = (regoff_t) POINTER_TO_OFFSET (regend[mcnt]);
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4466 }
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4467 }
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
4468
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4469 /* If the regs structure we return has more elements than
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4470 were in the pattern, set the extra elements to -1. If
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4471 we (re)allocated the registers, this is the case,
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4472 because we always allocate enough to have at least one
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4473 -1 at the end. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4474 for (mcnt = num_regs; mcnt < regs->num_regs; mcnt++)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4475 regs->start[mcnt] = regs->end[mcnt] = -1;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4476 } /* regs && !bufp->no_sub */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4477
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4478 DEBUG_PRINT4 ("%u failure points pushed, %u popped (%u remain).\n",
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4479 nfailure_points_pushed, nfailure_points_popped,
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4480 nfailure_points_pushed - nfailure_points_popped);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4481 DEBUG_PRINT2 ("%u registers pushed.\n", num_regs_pushed);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4482
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4483 mcnt = d - pos - (MATCHING_IN_FIRST_STRING
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
4484 ? string1
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4485 : string2 - size1);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4486
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4487 DEBUG_PRINT2 ("Returning %d from re_match_2.\n", mcnt);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4488
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4489 FREE_VARIABLES ();
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4490 return mcnt;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4491 }
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4492
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4493 /* Otherwise match next pattern command. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4494 switch (SWITCH_ENUM_CAST ((re_opcode_t) *p++))
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4495 {
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4496 /* Ignore these. Used to ignore the n of succeed_n's which
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4497 currently have n == 0. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4498 case no_op:
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4499 DEBUG_PRINT1 ("EXECUTING no_op.\n");
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4500 break;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4501
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4502 case succeed:
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4503 DEBUG_PRINT1 ("EXECUTING succeed.\n");
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4504 goto succeed_label;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4505
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4506 /* Match the next n pattern characters exactly. The following
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4507 byte in the pattern defines n, and the n bytes after that
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4508 are the characters to match. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4509 case exactn:
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4510 mcnt = *p++;
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4511 DEBUG_PRINT2 ("EXECUTING exactn %d.\n", mcnt);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4512
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4513 /* This is written out as an if-else so we don't waste time
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4514 testing `translate' inside the loop. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4515 if (translate)
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4516 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4517 do
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4518 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4519 PREFETCH ();
963
ed0235161e4b (TRANSLATE, re_search_2, re_match_2_internal,bcmp_translate):
Richard Stallman <rms@gnu.org>
parents: 961
diff changeset
4520 if ((unsigned char) RE_TRANSLATE (translate, (unsigned char) *d++)
501
f29b13c2cefd (TRANSLATE, PATFETCH): Cast elt of `translate'.
Richard Stallman <rms@gnu.org>
parents: 490
diff changeset
4521 != (unsigned char) *p++)
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4522 goto fail;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4523 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4524 while (--mcnt);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4525 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4526 else
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4527 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4528 do
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4529 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4530 PREFETCH ();
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4531 if (*d++ != (char) *p++) goto fail;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4532 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4533 while (--mcnt);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4534 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4535 SET_REGS_MATCHED ();
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4536 break;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4537
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4538
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4539 /* Match any character except possibly a newline or a null. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4540 case anychar:
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4541 DEBUG_PRINT1 ("EXECUTING anychar.\n");
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4542
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4543 PREFETCH ();
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4544
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4545 if ((!(bufp->syntax & RE_DOT_NEWLINE) && TRANSLATE (*d) == '\n')
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4546 || (bufp->syntax & RE_DOT_NOT_NULL && TRANSLATE (*d) == '\000'))
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4547 goto fail;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4548
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4549 SET_REGS_MATCHED ();
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4550 DEBUG_PRINT2 (" Matched `%d'.\n", *d);
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
4551 d += multibyte ? MULTIBYTE_FORM_LENGTH (d, dend - d) : 1;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4552 break;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4553
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4554
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4555 case charset:
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4556 case charset_not:
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4557 {
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
4558 register unsigned int c;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4559 boolean not = (re_opcode_t) *(p - 1) == charset_not;
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
4560 int len;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
4561
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
4562 /* Start of actual range_table, or end of bitmap if there is no
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
4563 range table. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
4564 unsigned char *range_table;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
4565
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4566 /* Nonzero if there is range table. */
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
4567 int range_table_exists;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
4568
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4569 /* Number of ranges of range table. Not in bytes. */
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
4570 int count;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
4571
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4572 DEBUG_PRINT2 ("EXECUTING charset%s.\n", not ? "_not" : "");
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4573
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4574 PREFETCH ();
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
4575 c = (unsigned char) *d;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
4576
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
4577 range_table = CHARSET_RANGE_TABLE (&p[-1]); /* Past the bitmap. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
4578 range_table_exists = CHARSET_RANGE_TABLE_EXISTS_P (&p[-1]);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
4579 if (range_table_exists)
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
4580 EXTRACT_NUMBER_AND_INCR (count, range_table);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
4581 else
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
4582 count = 0;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
4583
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
4584 if (multibyte && BASE_LEADING_CODE_P (c))
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
4585 c = STRING_CHAR_AND_LENGTH (d, dend - d, len);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
4586
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
4587 if (SINGLE_BYTE_CHAR_P (c))
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
4588 { /* Lookup bitmap. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
4589 c = TRANSLATE (c); /* The character to match. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
4590 len = 1;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
4591
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
4592 /* Cast to `unsigned' instead of `unsigned char' in
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
4593 case the bit list is a full 32 bytes long. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
4594 if (c < (unsigned) (CHARSET_BITMAP_SIZE (&p[-1]) * BYTEWIDTH)
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4595 && p[1 + c / BYTEWIDTH] & (1 << (c % BYTEWIDTH)))
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4596 not = !not;
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
4597 }
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
4598 else if (range_table_exists)
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
4599 CHARSET_LOOKUP_RANGE_TABLE_RAW (not, c, range_table, count);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
4600
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
4601 p = CHARSET_RANGE_TABLE_END (range_table, count);
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4602
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4603 if (!not) goto fail;
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
4604
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4605 SET_REGS_MATCHED ();
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
4606 d += len;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4607 break;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4608 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4609
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4610
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4611 /* The beginning of a group is represented by start_memory.
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4612 The arguments are the register number in the next byte, and the
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4613 number of groups inner to this one in the next. The text
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4614 matched within the group is recorded (in the internal
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4615 registers data structure) under the register number. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4616 case start_memory:
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4617 DEBUG_PRINT3 ("EXECUTING start_memory %d (%d):\n", *p, p[1]);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4618
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4619 /* Find out if this group can match the empty string. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4620 p1 = p; /* To send to group_match_null_string_p. */
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
4621
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4622 if (REG_MATCH_NULL_STRING_P (reg_info[*p]) == MATCH_NULL_UNSET_VALUE)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4623 REG_MATCH_NULL_STRING_P (reg_info[*p])
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4624 = group_match_null_string_p (&p1, pend, reg_info);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4625
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4626 /* Save the position in the string where we were the last time
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4627 we were at this open-group operator in case the group is
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4628 operated upon by a repetition operator, e.g., with `(a*)*b'
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4629 against `ab'; then we want to ignore where we are now in
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4630 the string in case this attempt to match fails. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4631 old_regstart[*p] = REG_MATCH_NULL_STRING_P (reg_info[*p])
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4632 ? REG_UNSET (regstart[*p]) ? d : regstart[*p]
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4633 : regstart[*p];
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
4634 DEBUG_PRINT2 (" old_regstart: %d\n",
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4635 POINTER_TO_OFFSET (old_regstart[*p]));
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4636
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4637 regstart[*p] = d;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4638 DEBUG_PRINT2 (" regstart: %d\n", POINTER_TO_OFFSET (regstart[*p]));
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4639
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4640 IS_ACTIVE (reg_info[*p]) = 1;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4641 MATCHED_SOMETHING (reg_info[*p]) = 0;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4642
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4643 /* Clear this whenever we change the register activity status. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4644 set_regs_matched_done = 0;
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
4645
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4646 /* This is the new highest active register. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4647 highest_active_reg = *p;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4648
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4649 /* If nothing was active before, this is the new lowest active
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4650 register. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4651 if (lowest_active_reg == NO_LOWEST_ACTIVE_REG)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4652 lowest_active_reg = *p;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4653
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4654 /* Move past the register number and inner group count. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4655 p += 2;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4656 just_past_start_mem = p;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4657
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4658 break;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4659
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4660
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4661 /* The stop_memory opcode represents the end of a group. Its
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4662 arguments are the same as start_memory's: the register
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4663 number, and the number of inner groups. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4664 case stop_memory:
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4665 DEBUG_PRINT3 ("EXECUTING stop_memory %d (%d):\n", *p, p[1]);
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
4666
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4667 /* We need to save the string position the last time we were at
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4668 this close-group operator in case the group is operated
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4669 upon by a repetition operator, e.g., with `((a*)*(b*)*)*'
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4670 against `aba'; then we want to ignore where we are now in
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4671 the string in case this attempt to match fails. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4672 old_regend[*p] = REG_MATCH_NULL_STRING_P (reg_info[*p])
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4673 ? REG_UNSET (regend[*p]) ? d : regend[*p]
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4674 : regend[*p];
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
4675 DEBUG_PRINT2 (" old_regend: %d\n",
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4676 POINTER_TO_OFFSET (old_regend[*p]));
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4677
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4678 regend[*p] = d;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4679 DEBUG_PRINT2 (" regend: %d\n", POINTER_TO_OFFSET (regend[*p]));
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4680
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4681 /* This register isn't active anymore. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4682 IS_ACTIVE (reg_info[*p]) = 0;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4683
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4684 /* Clear this whenever we change the register activity status. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4685 set_regs_matched_done = 0;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4686
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4687 /* If this was the only register active, nothing is active
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4688 anymore. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4689 if (lowest_active_reg == highest_active_reg)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4690 {
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4691 lowest_active_reg = NO_LOWEST_ACTIVE_REG;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4692 highest_active_reg = NO_HIGHEST_ACTIVE_REG;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4693 }
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4694 else
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4695 { /* We must scan for the new highest active register, since
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4696 it isn't necessarily one less than now: consider
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4697 (a(b)c(d(e)f)g). When group 3 ends, after the f), the
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4698 new highest active register is 1. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4699 unsigned char r = *p - 1;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4700 while (r > 0 && !IS_ACTIVE (reg_info[r]))
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4701 r--;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4702
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4703 /* If we end up at register zero, that means that we saved
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4704 the registers as the result of an `on_failure_jump', not
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4705 a `start_memory', and we jumped to past the innermost
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4706 `stop_memory'. For example, in ((.)*) we save
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4707 registers 1 and 2 as a result of the *, but when we pop
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4708 back to the second ), we are at the stop_memory 1.
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4709 Thus, nothing is active. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4710 if (r == 0)
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4711 {
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4712 lowest_active_reg = NO_LOWEST_ACTIVE_REG;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4713 highest_active_reg = NO_HIGHEST_ACTIVE_REG;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4714 }
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4715 else
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4716 highest_active_reg = r;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4717 }
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4718
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4719 /* If just failed to match something this time around with a
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4720 group that's operated on by a repetition operator, try to
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4721 force exit from the ``loop'', and restore the register
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4722 information for this group that we had before trying this
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4723 last match. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4724 if ((!MATCHED_SOMETHING (reg_info[*p])
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4725 || just_past_start_mem == p - 1)
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
4726 && (p + 2) < pend)
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4727 {
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4728 boolean is_a_jump_n = false;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4729
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4730 p1 = p + 2;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4731 mcnt = 0;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4732 switch ((re_opcode_t) *p1++)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4733 {
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4734 case jump_n:
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4735 is_a_jump_n = true;
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4736 case pop_failure_jump:
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4737 case maybe_pop_jump:
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4738 case jump:
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4739 case dummy_failure_jump:
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4740 EXTRACT_NUMBER_AND_INCR (mcnt, p1);
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4741 if (is_a_jump_n)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4742 p1 += 2;
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4743 break;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4744
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4745 default:
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4746 /* do nothing */ ;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4747 }
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4748 p1 += mcnt;
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
4749
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4750 /* If the next operation is a jump backwards in the pattern
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4751 to an on_failure_jump right before the start_memory
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4752 corresponding to this stop_memory, exit from the loop
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4753 by forcing a failure after pushing on the stack the
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4754 on_failure_jump's jump in the pattern, and d. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4755 if (mcnt < 0 && (re_opcode_t) *p1 == on_failure_jump
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4756 && (re_opcode_t) p1[3] == start_memory && p1[4] == *p)
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4757 {
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4758 /* If this group ever matched anything, then restore
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4759 what its registers were before trying this last
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4760 failed match, e.g., with `(a*)*b' against `ab' for
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4761 regstart[1], and, e.g., with `((a*)*(b*)*)*'
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4762 against `aba' for regend[3].
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4763
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4764 Also restore the registers for inner groups for,
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4765 e.g., `((a*)(b*))*' against `aba' (register 3 would
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4766 otherwise get trashed). */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4767
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4768 if (EVER_MATCHED_SOMETHING (reg_info[*p]))
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4769 {
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
4770 unsigned r;
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
4771
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4772 EVER_MATCHED_SOMETHING (reg_info[*p]) = 0;
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
4773
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4774 /* Restore this and inner groups' (if any) registers. */
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4775 for (r = *p; r < *p + *(p + 1); r++)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4776 {
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4777 regstart[r] = old_regstart[r];
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4778
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4779 /* xx why this test? */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4780 if (old_regend[r] >= regstart[r])
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4781 regend[r] = old_regend[r];
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4782 }
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4783 }
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4784 p1++;
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4785 EXTRACT_NUMBER_AND_INCR (mcnt, p1);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4786 PUSH_FAILURE_POINT (p1 + mcnt, d, -2);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4787
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4788 goto fail;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4789 }
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4790 }
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4791
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4792 /* Move past the register number and the inner group count. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4793 p += 2;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4794 break;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4795
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4796
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4797 /* \<digit> has been turned into a `duplicate' command which is
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4798 followed by the numeric value of <digit> as the register number. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4799 case duplicate:
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4800 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4801 register const char *d2, *dend2;
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4802 int regno = *p++; /* Get which register to match against. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4803 DEBUG_PRINT2 ("EXECUTING duplicate %d.\n", regno);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4804
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4805 /* Can't back reference a group which we've never matched. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4806 if (REG_UNSET (regstart[regno]) || REG_UNSET (regend[regno]))
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4807 goto fail;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4808
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4809 /* Where in input to try to start matching. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4810 d2 = regstart[regno];
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4811
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4812 /* Where to stop matching; if both the place to start and
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4813 the place to stop matching are in the same string, then
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4814 set to the place to stop, otherwise, for now have to use
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4815 the end of the first string. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4816
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4817 dend2 = ((FIRST_STRING_P (regstart[regno])
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4818 == FIRST_STRING_P (regend[regno]))
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4819 ? regend[regno] : end_match_1);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4820 for (;;)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4821 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4822 /* If necessary, advance to next segment in register
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4823 contents. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4824 while (d2 == dend2)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4825 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4826 if (dend2 == end_match_2) break;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4827 if (dend2 == regend[regno]) break;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4828
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4829 /* End of string1 => advance to string2. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4830 d2 = string2;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4831 dend2 = regend[regno];
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4832 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4833 /* At end of register contents => success */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4834 if (d2 == dend2) break;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4835
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4836 /* If necessary, advance to next segment in data. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4837 PREFETCH ();
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4838
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4839 /* How many characters left in this segment to match. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4840 mcnt = dend - d;
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
4841
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4842 /* Want how many consecutive characters we can match in
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4843 one shot, so, if necessary, adjust the count. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4844 if (mcnt > dend2 - d2)
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4845 mcnt = dend2 - d2;
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
4846
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4847 /* Compare that many; failure if mismatch, else move
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4848 past them. */
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
4849 if (translate
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4850 ? bcmp_translate (d, d2, mcnt, translate)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4851 : bcmp (d, d2, mcnt))
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4852 goto fail;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4853 d += mcnt, d2 += mcnt;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4854
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4855 /* Do this because we've match some characters. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4856 SET_REGS_MATCHED ();
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4857 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4858 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4859 break;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4860
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4861
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4862 /* begline matches the empty string at the beginning of the string
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4863 (unless `not_bol' is set in `bufp'), and, if
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4864 `newline_anchor' is set, after newlines. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4865 case begline:
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4866 DEBUG_PRINT1 ("EXECUTING begline.\n");
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4867
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4868 if (AT_STRINGS_BEG (d))
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4869 {
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4870 if (!bufp->not_bol) break;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4871 }
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4872 else if (d[-1] == '\n' && bufp->newline_anchor)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4873 {
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4874 break;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4875 }
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4876 /* In all other cases, we fail. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4877 goto fail;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4878
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4879
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4880 /* endline is the dual of begline. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4881 case endline:
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4882 DEBUG_PRINT1 ("EXECUTING endline.\n");
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4883
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4884 if (AT_STRINGS_END (d))
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4885 {
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4886 if (!bufp->not_eol) break;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4887 }
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4888
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4889 /* We have to ``prefetch'' the next character. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4890 else if ((d == end1 ? *string2 : *d) == '\n'
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4891 && bufp->newline_anchor)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4892 {
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4893 break;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4894 }
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4895 goto fail;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4896
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4897
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4898 /* Match at the very beginning of the data. */
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4899 case begbuf:
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4900 DEBUG_PRINT1 ("EXECUTING begbuf.\n");
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4901 if (AT_STRINGS_BEG (d))
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4902 break;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4903 goto fail;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4904
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4905
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4906 /* Match at the very end of the data. */
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4907 case endbuf:
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4908 DEBUG_PRINT1 ("EXECUTING endbuf.\n");
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4909 if (AT_STRINGS_END (d))
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4910 break;
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4911 goto fail;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4912
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4913
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4914 /* on_failure_keep_string_jump is used to optimize `.*\n'. It
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4915 pushes NULL as the value for the string on the stack. Then
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4916 `pop_failure_point' will keep the current value for the
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4917 string, instead of restoring it. To see why, consider
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4918 matching `foo\nbar' against `.*\n'. The .* matches the foo;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4919 then the . fails against the \n. But the next thing we want
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4920 to do is match the \n against the \n; if we restored the
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4921 string value, we would be back at the foo.
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4922
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4923 Because this is used only in specific cases, we don't need to
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4924 check all the things that `on_failure_jump' does, to make
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4925 sure the right things get saved on the stack. Hence we don't
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4926 share its code. The only reason to push anything on the
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4927 stack at all is that otherwise we would have to change
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4928 `anychar's code to do something besides goto fail in this
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4929 case; that seems worse than this. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4930 case on_failure_keep_string_jump:
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4931 DEBUG_PRINT1 ("EXECUTING on_failure_keep_string_jump");
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4932
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4933 EXTRACT_NUMBER_AND_INCR (mcnt, p);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4934 DEBUG_PRINT3 (" %d (to 0x%x):\n", mcnt, p + mcnt);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4935
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4936 PUSH_FAILURE_POINT (p + mcnt, NULL, -2);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4937 break;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4938
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4939
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4940 /* Uses of on_failure_jump:
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
4941
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4942 Each alternative starts with an on_failure_jump that points
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4943 to the beginning of the next alternative. Each alternative
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4944 except the last ends with a jump that in effect jumps past
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4945 the rest of the alternatives. (They really jump to the
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4946 ending jump of the following alternative, because tensioning
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4947 these jumps is a hassle.)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4948
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4949 Repeats start with an on_failure_jump that points past both
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4950 the repetition text and either the following jump or
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4951 pop_failure_jump back to this on_failure_jump. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4952 case on_failure_jump:
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4953 on_failure:
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4954 DEBUG_PRINT1 ("EXECUTING on_failure_jump");
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4955
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4956 EXTRACT_NUMBER_AND_INCR (mcnt, p);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4957 DEBUG_PRINT3 (" %d (to 0x%x)", mcnt, p + mcnt);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4958
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4959 /* If this on_failure_jump comes right before a group (i.e.,
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4960 the original * applied to a group), save the information
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4961 for that group and all inner ones, so that if we fail back
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4962 to this point, the group's information will be correct.
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4963 For example, in \(a*\)*\1, we need the preceding group,
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4964 and in \(zz\(a*\)b*\)\2, we need the inner group. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4965
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4966 /* We can't use `p' to check ahead because we push
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4967 a failure point to `p + mcnt' after we do this. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4968 p1 = p;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4969
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4970 /* We need to skip no_op's before we look for the
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4971 start_memory in case this on_failure_jump is happening as
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4972 the result of a completed succeed_n, as in \(a\)\{1,3\}b\1
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4973 against aba. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4974 while (p1 < pend && (re_opcode_t) *p1 == no_op)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4975 p1++;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4976
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4977 if (p1 < pend && (re_opcode_t) *p1 == start_memory)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4978 {
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4979 /* We have a new highest active register now. This will
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4980 get reset at the start_memory we are about to get to,
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4981 but we will have saved all the registers relevant to
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4982 this repetition op, as described above. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4983 highest_active_reg = *(p1 + 1) + *(p1 + 2);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4984 if (lowest_active_reg == NO_LOWEST_ACTIVE_REG)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4985 lowest_active_reg = *(p1 + 1);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4986 }
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4987
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4988 DEBUG_PRINT1 (":\n");
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4989 PUSH_FAILURE_POINT (p + mcnt, d, -2);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4990 break;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4991
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4992
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4993 /* A smart repeat ends with `maybe_pop_jump'.
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4994 We change it to either `pop_failure_jump' or `jump'. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4995 case maybe_pop_jump:
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4996 EXTRACT_NUMBER_AND_INCR (mcnt, p);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4997 DEBUG_PRINT2 ("EXECUTING maybe_pop_jump %d.\n", mcnt);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
4998 {
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
4999 register unsigned char *p2 = p;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5000
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5001 /* Compare the beginning of the repeat with what in the
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5002 pattern follows its end. If we can establish that there
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5003 is nothing that they would both match, i.e., that we
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5004 would have to backtrack because of (as in, e.g., `a*a')
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5005 then we can change to pop_failure_jump, because we'll
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5006 never have to backtrack.
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5007
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5008 This is not true in the case of alternatives: in
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5009 `(a|ab)*' we do need to backtrack to the `ab' alternative
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5010 (e.g., if the string was `ab'). But instead of trying to
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5011 detect that here, the alternative has put on a dummy
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5012 failure point which is what we will end up popping. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5013
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5014 /* Skip over open/close-group commands.
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5015 If what follows this loop is a ...+ construct,
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5016 look at what begins its body, since we will have to
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5017 match at least one of that. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5018 while (1)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5019 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5020 if (p2 + 2 < pend
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5021 && ((re_opcode_t) *p2 == stop_memory
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5022 || (re_opcode_t) *p2 == start_memory))
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5023 p2 += 3;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5024 else if (p2 + 6 < pend
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5025 && (re_opcode_t) *p2 == dummy_failure_jump)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5026 p2 += 6;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5027 else
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5028 break;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5029 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5030
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5031 p1 = p + mcnt;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5032 /* p1[0] ... p1[2] are the `on_failure_jump' corresponding
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
5033 to the `maybe_finalize_jump' of this case. Examine what
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5034 follows. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5035
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5036 /* If we're at the end of the pattern, we can change. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5037 if (p2 == pend)
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5038 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5039 /* Consider what happens when matching ":\(.*\)"
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5040 against ":/". I don't really understand this code
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5041 yet. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5042 p[-3] = (unsigned char) pop_failure_jump;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5043 DEBUG_PRINT1
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5044 (" End of pattern: change to `pop_failure_jump'.\n");
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5045 }
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5046
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5047 else if ((re_opcode_t) *p2 == exactn
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5048 || (bufp->newline_anchor && (re_opcode_t) *p2 == endline))
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5049 {
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5050 register unsigned int c
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5051 = *p2 == (unsigned char) endline ? '\n' : p2[2];
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5052
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5053 if ((re_opcode_t) p1[3] == exactn)
679
b088267ea1c8 Clean up whitespace.
Richard Stallman <rms@gnu.org>
parents: 678
diff changeset
5054 {
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5055 if (!(multibyte /* && (c != '\n') */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5056 && BASE_LEADING_CODE_P (c))
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5057 ? c != p1[5]
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5058 : (STRING_CHAR (&p2[2], pend - &p2[2])
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5059 != STRING_CHAR (&p1[5], pend - &p1[5])))
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5060 {
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5061 p[-3] = (unsigned char) pop_failure_jump;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5062 DEBUG_PRINT3 (" %c != %c => pop_failure_jump.\n",
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5063 c, p1[5]);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5064 }
679
b088267ea1c8 Clean up whitespace.
Richard Stallman <rms@gnu.org>
parents: 678
diff changeset
5065 }
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
5066
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5067 else if ((re_opcode_t) p1[3] == charset
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5068 || (re_opcode_t) p1[3] == charset_not)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5069 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5070 int not = (re_opcode_t) p1[3] == charset_not;
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
5071
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5072 if (multibyte /* && (c != '\n') */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5073 && BASE_LEADING_CODE_P (c))
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5074 c = STRING_CHAR (&p2[2], pend - &p2[2]);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5075
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5076 /* Test if C is listed in charset (or charset_not)
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5077 at `&p1[3]'. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5078 if (SINGLE_BYTE_CHAR_P (c))
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5079 {
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5080 if (c < CHARSET_BITMAP_SIZE (&p1[3]) * BYTEWIDTH
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5081 && p1[5 + c / BYTEWIDTH] & (1 << (c % BYTEWIDTH)))
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5082 not = !not;
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5083 }
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5084 else if (CHARSET_RANGE_TABLE_EXISTS_P (&p1[3]))
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5085 CHARSET_LOOKUP_RANGE_TABLE (not, c, &p1[3]);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5086
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5087 /* `not' is equal to 1 if c would match, which means
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5088 that we can't change to pop_failure_jump. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5089 if (!not)
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5090 {
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5091 p[-3] = (unsigned char) pop_failure_jump;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5092 DEBUG_PRINT1 (" No match => pop_failure_jump.\n");
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5093 }
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5094 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5095 }
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5096 else if ((re_opcode_t) *p2 == charset)
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5097 {
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5098 if ((re_opcode_t) p1[3] == exactn)
679
b088267ea1c8 Clean up whitespace.
Richard Stallman <rms@gnu.org>
parents: 678
diff changeset
5099 {
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5100 register unsigned int c = p1[5];
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5101 int not = 0;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5102
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5103 if (multibyte && BASE_LEADING_CODE_P (c))
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5104 c = STRING_CHAR (&p1[5], pend - &p1[5]);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5105
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5106 /* Test if C is listed in charset at `p2'. */
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5107 if (SINGLE_BYTE_CHAR_P (c))
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5108 {
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5109 if (c < CHARSET_BITMAP_SIZE (p2) * BYTEWIDTH
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5110 && (p2[2 + c / BYTEWIDTH]
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5111 & (1 << (c % BYTEWIDTH))))
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5112 not = !not;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5113 }
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5114 else if (CHARSET_RANGE_TABLE_EXISTS_P (p2))
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5115 CHARSET_LOOKUP_RANGE_TABLE (not, c, p2);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5116
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5117 if (!not)
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5118 {
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5119 p[-3] = (unsigned char) pop_failure_jump;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5120 DEBUG_PRINT1 (" No match => pop_failure_jump.\n");
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5121 }
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5122 }
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5123
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5124 /* It is hard to list up all the character in charset
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5125 P2 if it includes multibyte character. Give up in
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5126 such case. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5127 else if (!multibyte || !CHARSET_RANGE_TABLE_EXISTS_P (p2))
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5128 {
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5129 /* Now, we are sure that P2 has no range table.
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5130 So, for the size of bitmap in P2, `p2[1]' is
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5131 enough. But P1 may have range table, so the
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5132 size of bitmap table of P1 is extracted by
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5133 using macro `CHARSET_BITMAP_SIZE'.
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5134
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5135 Since we know that all the character listed in
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5136 P2 is ASCII, it is enough to test only bitmap
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5137 table of P1. */
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5138
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5139 if ((re_opcode_t) p1[3] == charset_not)
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5140 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5141 int idx;
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5142 /* We win if the charset_not inside the loop lists
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5143 every character listed in the charset after. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5144 for (idx = 0; idx < (int) p2[1]; idx++)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5145 if (! (p2[2 + idx] == 0
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5146 || (idx < CHARSET_BITMAP_SIZE (&p1[3])
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5147 && ((p2[2 + idx] & ~ p1[5 + idx]) == 0))))
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5148 break;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5149
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5150 if (idx == p2[1])
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5151 {
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5152 p[-3] = (unsigned char) pop_failure_jump;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5153 DEBUG_PRINT1 (" No match => pop_failure_jump.\n");
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5154 }
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5155 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5156 else if ((re_opcode_t) p1[3] == charset)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5157 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5158 int idx;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5159 /* We win if the charset inside the loop
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5160 has no overlap with the one after the loop. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5161 for (idx = 0;
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5162 (idx < (int) p2[1]
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5163 && idx < CHARSET_BITMAP_SIZE (&p1[3]));
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5164 idx++)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5165 if ((p2[2 + idx] & p1[5 + idx]) != 0)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5166 break;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5167
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5168 if (idx == p2[1]
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5169 || idx == CHARSET_BITMAP_SIZE (&p1[3]))
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5170 {
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5171 p[-3] = (unsigned char) pop_failure_jump;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5172 DEBUG_PRINT1 (" No match => pop_failure_jump.\n");
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5173 }
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5174 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5175 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5176 }
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5177 }
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5178 p -= 2; /* Point at relative address again. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5179 if ((re_opcode_t) p[-1] != pop_failure_jump)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5180 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5181 p[-1] = (unsigned char) jump;
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5182 DEBUG_PRINT1 (" Match => jump.\n");
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5183 goto unconditional_jump;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5184 }
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5185 /* Note fall through. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5186
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5187
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5188 /* The end of a simple repeat has a pop_failure_jump back to
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5189 its matching on_failure_jump, where the latter will push a
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5190 failure point. The pop_failure_jump takes off failure
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5191 points put on by this pop_failure_jump's matching
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5192 on_failure_jump; we got through the pattern to here from the
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5193 matching on_failure_jump, so didn't fail. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5194 case pop_failure_jump:
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5195 {
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5196 /* We need to pass separate storage for the lowest and
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5197 highest registers, even though we don't care about the
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5198 actual values. Otherwise, we will restore only one
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5199 register from the stack, since lowest will == highest in
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5200 `pop_failure_point'. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5201 unsigned dummy_low_reg, dummy_high_reg;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5202 unsigned char *pdummy;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5203 const char *sdummy;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5204
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5205 DEBUG_PRINT1 ("EXECUTING pop_failure_jump.\n");
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5206 POP_FAILURE_POINT (sdummy, pdummy,
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5207 dummy_low_reg, dummy_high_reg,
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5208 reg_dummy, reg_dummy, reg_info_dummy);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5209 }
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5210 /* Note fall through. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5211
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5212
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5213 /* Unconditionally jump (without popping any failure points). */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5214 case jump:
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5215 unconditional_jump:
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5216 EXTRACT_NUMBER_AND_INCR (mcnt, p); /* Get the amount to jump. */
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5217 DEBUG_PRINT2 ("EXECUTING jump %d ", mcnt);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5218 p += mcnt; /* Do the jump. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5219 DEBUG_PRINT2 ("(to 0x%x).\n", p);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5220 break;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5221
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5222
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5223 /* We need this opcode so we can detect where alternatives end
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5224 in `group_match_null_string_p' et al. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5225 case jump_past_alt:
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5226 DEBUG_PRINT1 ("EXECUTING jump_past_alt.\n");
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5227 goto unconditional_jump;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5228
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5229
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5230 /* Normally, the on_failure_jump pushes a failure point, which
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5231 then gets popped at pop_failure_jump. We will end up at
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5232 pop_failure_jump, also, and with a pattern of, say, `a+', we
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5233 are skipping over the on_failure_jump, so we have to push
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5234 something meaningless for pop_failure_jump to pop. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5235 case dummy_failure_jump:
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5236 DEBUG_PRINT1 ("EXECUTING dummy_failure_jump.\n");
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5237 /* It doesn't matter what we push for the string here. What
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5238 the code at `fail' tests is the value for the pattern. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5239 PUSH_FAILURE_POINT (0, 0, -2);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5240 goto unconditional_jump;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5241
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5242
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5243 /* At the end of an alternative, we need to push a dummy failure
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5244 point in case we are followed by a `pop_failure_jump', because
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5245 we don't want the failure point for the alternative to be
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5246 popped. For example, matching `(a|ab)*' against `aab'
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5247 requires that we match the `ab' alternative. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5248 case push_dummy_failure:
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5249 DEBUG_PRINT1 ("EXECUTING push_dummy_failure.\n");
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5250 /* See comments just above at `dummy_failure_jump' about the
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5251 two zeroes. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5252 PUSH_FAILURE_POINT (0, 0, -2);
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5253 break;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5254
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5255 /* Have to succeed matching what follows at least n times.
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5256 After that, handle like `on_failure_jump'. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5257 case succeed_n:
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5258 EXTRACT_NUMBER (mcnt, p + 2);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5259 DEBUG_PRINT2 ("EXECUTING succeed_n %d.\n", mcnt);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5260
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5261 assert (mcnt >= 0);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5262 /* Originally, this is how many times we HAVE to succeed. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5263 if (mcnt > 0)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5264 {
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5265 mcnt--;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5266 p += 2;
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5267 STORE_NUMBER_AND_INCR (p, mcnt);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5268 DEBUG_PRINT3 (" Setting 0x%x to %d.\n", p, mcnt);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5269 }
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5270 else if (mcnt == 0)
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5271 {
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5272 DEBUG_PRINT2 (" Setting two bytes from 0x%x to no_op.\n", p+2);
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5273 p[2] = (unsigned char) no_op;
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5274 p[3] = (unsigned char) no_op;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5275 goto on_failure;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5276 }
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5277 break;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5278
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5279 case jump_n:
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5280 EXTRACT_NUMBER (mcnt, p + 2);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5281 DEBUG_PRINT2 ("EXECUTING jump_n %d.\n", mcnt);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5282
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5283 /* Originally, this is how many times we CAN jump. */
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5284 if (mcnt)
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5285 {
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5286 mcnt--;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5287 STORE_NUMBER (p + 2, mcnt);
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
5288 goto unconditional_jump;
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5289 }
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5290 /* If don't have to jump any more, skip over the rest of command. */
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
5291 else
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
5292 p += 4;
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5293 break;
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
5294
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5295 case set_number_at:
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5296 {
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5297 DEBUG_PRINT1 ("EXECUTING set_number_at.\n");
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5298
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5299 EXTRACT_NUMBER_AND_INCR (mcnt, p);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5300 p1 = p + mcnt;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5301 EXTRACT_NUMBER_AND_INCR (mcnt, p);
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5302 DEBUG_PRINT3 (" Setting 0x%x to %d.\n", p1, mcnt);
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5303 STORE_NUMBER (p1, mcnt);
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5304 break;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5305 }
521
7089c3a3a164 (AT_WORD_BOUNDARY): Disable macro.
Karl Heuer <kwzh@gnu.org>
parents: 515
diff changeset
5306
7089c3a3a164 (AT_WORD_BOUNDARY): Disable macro.
Karl Heuer <kwzh@gnu.org>
parents: 515
diff changeset
5307 case wordbound:
7089c3a3a164 (AT_WORD_BOUNDARY): Disable macro.
Karl Heuer <kwzh@gnu.org>
parents: 515
diff changeset
5308 DEBUG_PRINT1 ("EXECUTING wordbound.\n");
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5309
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5310 /* We SUCCEED in one of the following cases: */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5311
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5312 /* Case 1: D is at the beginning or the end of string. */
521
7089c3a3a164 (AT_WORD_BOUNDARY): Disable macro.
Karl Heuer <kwzh@gnu.org>
parents: 515
diff changeset
5313 if (AT_STRINGS_BEG (d) || AT_STRINGS_END (d))
7089c3a3a164 (AT_WORD_BOUNDARY): Disable macro.
Karl Heuer <kwzh@gnu.org>
parents: 515
diff changeset
5314 break;
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5315 else
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5316 {
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5317 /* C1 is the character before D, S1 is the syntax of C1, C2
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5318 is the character at D, and S2 is the syntax of C2. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5319 int c1, c2, s1, s2;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5320 int pos1 = PTR_TO_OFFSET (d - 1);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5321
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5322 GET_CHAR_BEFORE_2 (c1, d, string1, end1, string2, end2);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5323 GET_CHAR_AFTER_2 (c2, d, string1, end1, string2, end2);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5324 #ifdef emacs
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5325 UPDATE_SYNTAX_TABLE (pos1 ? pos1 : 1);
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5326 #endif
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5327 s1 = SYNTAX (c1);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5328 #ifdef emacs
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5329 UPDATE_SYNTAX_TABLE_FORWARD (pos1 + 1);
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5330 #endif
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5331 s2 = SYNTAX (c2);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5332
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5333 if (/* Case 2: Only one of S1 and S2 is Sword. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5334 ((s1 == Sword) != (s2 == Sword))
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5335 /* Case 3: Both of S1 and S2 are Sword, and macro
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5336 WORD_BOUNDARY_P (C1, C2) returns nonzero. */
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5337 || ((s1 == Sword) && WORD_BOUNDARY_P (c1, c2)))
521
7089c3a3a164 (AT_WORD_BOUNDARY): Disable macro.
Karl Heuer <kwzh@gnu.org>
parents: 515
diff changeset
5338 break;
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5339 }
521
7089c3a3a164 (AT_WORD_BOUNDARY): Disable macro.
Karl Heuer <kwzh@gnu.org>
parents: 515
diff changeset
5340 goto fail;
7089c3a3a164 (AT_WORD_BOUNDARY): Disable macro.
Karl Heuer <kwzh@gnu.org>
parents: 515
diff changeset
5341
7089c3a3a164 (AT_WORD_BOUNDARY): Disable macro.
Karl Heuer <kwzh@gnu.org>
parents: 515
diff changeset
5342 case notwordbound:
7089c3a3a164 (AT_WORD_BOUNDARY): Disable macro.
Karl Heuer <kwzh@gnu.org>
parents: 515
diff changeset
5343 DEBUG_PRINT1 ("EXECUTING notwordbound.\n");
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5344
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5345 /* We FAIL in one of the following cases: */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5346
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5347 /* Case 1: D is at the beginning or the end of string. */
521
7089c3a3a164 (AT_WORD_BOUNDARY): Disable macro.
Karl Heuer <kwzh@gnu.org>
parents: 515
diff changeset
5348 if (AT_STRINGS_BEG (d) || AT_STRINGS_END (d))
7089c3a3a164 (AT_WORD_BOUNDARY): Disable macro.
Karl Heuer <kwzh@gnu.org>
parents: 515
diff changeset
5349 goto fail;
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5350 else
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5351 {
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5352 /* C1 is the character before D, S1 is the syntax of C1, C2
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5353 is the character at D, and S2 is the syntax of C2. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5354 int c1, c2, s1, s2;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5355 int pos1 = PTR_TO_OFFSET (d - 1);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5356
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5357 GET_CHAR_BEFORE_2 (c1, d, string1, end1, string2, end2);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5358 GET_CHAR_AFTER_2 (c2, d, string1, end1, string2, end2);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5359 #ifdef emacs
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5360 UPDATE_SYNTAX_TABLE (pos1);
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5361 #endif
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5362 s1 = SYNTAX (c1);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5363 #ifdef emacs
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5364 UPDATE_SYNTAX_TABLE_FORWARD (pos1 + 1);
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5365 #endif
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5366 s2 = SYNTAX (c2);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5367
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5368 if (/* Case 2: Only one of S1 and S2 is Sword. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5369 ((s1 == Sword) != (s2 == Sword))
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5370 /* Case 3: Both of S1 and S2 are Sword, and macro
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5371 WORD_BOUNDARY_P (C1, C2) returns nonzero. */
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5372 || ((s1 == Sword) && WORD_BOUNDARY_P (c1, c2)))
521
7089c3a3a164 (AT_WORD_BOUNDARY): Disable macro.
Karl Heuer <kwzh@gnu.org>
parents: 515
diff changeset
5373 goto fail;
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5374 }
521
7089c3a3a164 (AT_WORD_BOUNDARY): Disable macro.
Karl Heuer <kwzh@gnu.org>
parents: 515
diff changeset
5375 break;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5376
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5377 case wordbeg:
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5378 DEBUG_PRINT1 ("EXECUTING wordbeg.\n");
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5379
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5380 /* We FAIL in one of the following cases: */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5381
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5382 /* Case 1: D is at the end of string. */
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5383 if (AT_STRINGS_END (d))
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5384 goto fail;
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5385 else
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5386 {
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5387 /* C1 is the character before D, S1 is the syntax of C1, C2
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5388 is the character at D, and S2 is the syntax of C2. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5389 int c1, c2, s1, s2;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5390 int pos1 = PTR_TO_OFFSET (d);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5391
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5392 GET_CHAR_AFTER_2 (c2, d, string1, end1, string2, end2);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5393 #ifdef emacs
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5394 UPDATE_SYNTAX_TABLE (pos1);
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5395 #endif
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5396 s2 = SYNTAX (c2);
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5397
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5398 /* Case 2: S2 is not Sword. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5399 if (s2 != Sword)
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5400 goto fail;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5401
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5402 /* Case 3: D is not at the beginning of string ... */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5403 if (!AT_STRINGS_BEG (d))
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5404 {
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5405 GET_CHAR_BEFORE_2 (c1, d, string1, end1, string2, end2);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5406 #ifdef emacs
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5407 UPDATE_SYNTAX_TABLE_BACKWARD (pos1 - 1);
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5408 #endif
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5409 s1 = SYNTAX (c1);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5410
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5411 /* ... and S1 is Sword, and WORD_BOUNDARY_P (C1, C2)
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5412 returns 0. */
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5413 if ((s1 == Sword) && !WORD_BOUNDARY_P (c1, c2))
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5414 goto fail;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5415 }
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5416 }
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5417 break;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5418
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5419 case wordend:
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5420 DEBUG_PRINT1 ("EXECUTING wordend.\n");
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5421
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5422 /* We FAIL in one of the following cases: */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5423
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5424 /* Case 1: D is at the beginning of string. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5425 if (AT_STRINGS_BEG (d))
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5426 goto fail;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5427 else
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5428 {
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5429 /* C1 is the character before D, S1 is the syntax of C1, C2
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5430 is the character at D, and S2 is the syntax of C2. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5431 int c1, c2, s1, s2;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5432
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5433 GET_CHAR_BEFORE_2 (c1, d, string1, end1, string2, end2);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5434 s1 = SYNTAX (c1);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5435
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5436 /* Case 2: S1 is not Sword. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5437 if (s1 != Sword)
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5438 goto fail;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5439
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5440 /* Case 3: D is not at the end of string ... */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5441 if (!AT_STRINGS_END (d))
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5442 {
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5443 GET_CHAR_AFTER_2 (c2, d, string1, end1, string2, end2);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5444 s2 = SYNTAX (c2);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5445
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5446 /* ... and S2 is Sword, and WORD_BOUNDARY_P (C1, C2)
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5447 returns 0. */
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5448 if ((s2 == Sword) && !WORD_BOUNDARY_P (c1, c2))
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5449 goto fail;
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5450 }
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5451 }
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5452 break;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5453
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5454 #ifdef emacs
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5455 case before_dot:
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5456 DEBUG_PRINT1 ("EXECUTING before_dot.\n");
680
d794d4ea2333 (re_match_2_internal) [emacs]: Use PT, not point.
Karl Heuer <kwzh@gnu.org>
parents: 679
diff changeset
5457 if (PTR_CHAR_POS ((unsigned char *) d) >= PT)
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5458 goto fail;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5459 break;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5460
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5461 case at_dot:
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5462 DEBUG_PRINT1 ("EXECUTING at_dot.\n");
680
d794d4ea2333 (re_match_2_internal) [emacs]: Use PT, not point.
Karl Heuer <kwzh@gnu.org>
parents: 679
diff changeset
5463 if (PTR_CHAR_POS ((unsigned char *) d) != PT)
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5464 goto fail;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5465 break;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5466
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5467 case after_dot:
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5468 DEBUG_PRINT1 ("EXECUTING after_dot.\n");
680
d794d4ea2333 (re_match_2_internal) [emacs]: Use PT, not point.
Karl Heuer <kwzh@gnu.org>
parents: 679
diff changeset
5469 if (PTR_CHAR_POS ((unsigned char *) d) <= PT)
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5470 goto fail;
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5471 break;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5472
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5473 case syntaxspec:
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5474 DEBUG_PRINT2 ("EXECUTING syntaxspec %d.\n", mcnt);
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5475 mcnt = *p++;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5476 goto matchsyntax;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5477
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5478 case wordchar:
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5479 DEBUG_PRINT1 ("EXECUTING Emacs wordchar.\n");
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5480 mcnt = (int) Sword;
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5481 matchsyntax:
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5482 PREFETCH ();
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5483 #ifdef emacs
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5484 {
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5485 int pos1 = PTR_TO_OFFSET (d);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5486 UPDATE_SYNTAX_TABLE (pos1);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5487 }
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5488 #endif
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5489 {
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5490 int c, len;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5491
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5492 if (multibyte)
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5493 /* we must concern about multibyte form, ... */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5494 c = STRING_CHAR_AND_LENGTH (d, dend - d, len);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5495 else
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5496 /* everything should be handled as ASCII, even though it
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5497 looks like multibyte form. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5498 c = *d, len = 1;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5499
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5500 if (SYNTAX (c) != (enum syntaxcode) mcnt)
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5501 goto fail;
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5502 d += len;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5503 }
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5504 SET_REGS_MATCHED ();
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5505 break;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5506
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5507 case notsyntaxspec:
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5508 DEBUG_PRINT2 ("EXECUTING notsyntaxspec %d.\n", mcnt);
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5509 mcnt = *p++;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5510 goto matchnotsyntax;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5511
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5512 case notwordchar:
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5513 DEBUG_PRINT1 ("EXECUTING Emacs notwordchar.\n");
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5514 mcnt = (int) Sword;
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5515 matchnotsyntax:
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5516 PREFETCH ();
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5517 #ifdef emacs
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5518 {
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5519 int pos1 = PTR_TO_OFFSET (d);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5520 UPDATE_SYNTAX_TABLE (pos1);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5521 }
941
a6403bc27be4 Fix up whitespace.
Richard Stallman <rms@gnu.org>
parents: 939
diff changeset
5522 #endif
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5523 {
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5524 int c, len;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5525
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5526 if (multibyte)
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5527 c = STRING_CHAR_AND_LENGTH (d, dend - d, len);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5528 else
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5529 c = *d, len = 1;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5530
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5531 if (SYNTAX (c) == (enum syntaxcode) mcnt)
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5532 goto fail;
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5533 d += len;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5534 }
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5535 SET_REGS_MATCHED ();
679
b088267ea1c8 Clean up whitespace.
Richard Stallman <rms@gnu.org>
parents: 678
diff changeset
5536 break;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5537
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5538 case categoryspec:
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5539 DEBUG_PRINT2 ("EXECUTING categoryspec %d.\n", *p);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5540 mcnt = *p++;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5541 PREFETCH ();
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5542 {
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5543 int c, len;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5544
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5545 if (multibyte)
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5546 c = STRING_CHAR_AND_LENGTH (d, dend - d, len);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5547 else
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5548 c = *d, len = 1;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5549
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5550 if (!CHAR_HAS_CATEGORY (c, mcnt))
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5551 goto fail;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5552 d += len;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5553 }
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5554 SET_REGS_MATCHED ();
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5555 break;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5556
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5557 case notcategoryspec:
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5558 DEBUG_PRINT2 ("EXECUTING notcategoryspec %d.\n", *p);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5559 mcnt = *p++;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5560 PREFETCH ();
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5561 {
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5562 int c, len;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5563
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5564 if (multibyte)
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5565 c = STRING_CHAR_AND_LENGTH (d, dend - d, len);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5566 else
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5567 c = *d, len = 1;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5568
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5569 if (CHAR_HAS_CATEGORY (c, mcnt))
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5570 goto fail;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5571 d += len;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5572 }
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5573 SET_REGS_MATCHED ();
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5574 break;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5575
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5576 #else /* not emacs */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5577 case wordchar:
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5578 DEBUG_PRINT1 ("EXECUTING non-Emacs wordchar.\n");
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5579 PREFETCH ();
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5580 if (!WORDCHAR_P (d))
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5581 goto fail;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5582 SET_REGS_MATCHED ();
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5583 d++;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5584 break;
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
5585
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5586 case notwordchar:
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5587 DEBUG_PRINT1 ("EXECUTING non-Emacs notwordchar.\n");
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5588 PREFETCH ();
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5589 if (WORDCHAR_P (d))
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5590 goto fail;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5591 SET_REGS_MATCHED ();
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5592 d++;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5593 break;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5594 #endif /* not emacs */
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
5595
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5596 default:
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5597 abort ();
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5598 }
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5599 continue; /* Successfully executed one pattern command; keep going. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5600
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5601
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5602 /* We goto here if a matching operation fails. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5603 fail:
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5604 if (!FAIL_STACK_EMPTY ())
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5605 { /* A restart point is known. Restore to that state. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5606 DEBUG_PRINT1 ("\nFAIL:\n");
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5607 POP_FAILURE_POINT (d, p,
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5608 lowest_active_reg, highest_active_reg,
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5609 regstart, regend, reg_info);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5610
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5611 /* If this failure point is a dummy, try the next one. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5612 if (!p)
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5613 goto fail;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5614
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5615 /* If we failed to the end of the pattern, don't examine *p. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5616 assert (p <= pend);
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5617 if (p < pend)
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5618 {
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5619 boolean is_a_jump_n = false;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5620
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5621 /* If failed to a backwards jump that's part of a repetition
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5622 loop, need to pop this failure point and use the next one. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5623 switch ((re_opcode_t) *p)
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5624 {
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5625 case jump_n:
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5626 is_a_jump_n = true;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5627 case maybe_pop_jump:
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5628 case pop_failure_jump:
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5629 case jump:
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5630 p1 = p + 1;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5631 EXTRACT_NUMBER_AND_INCR (mcnt, p1);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5632 p1 += mcnt;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5633
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5634 if ((is_a_jump_n && (re_opcode_t) *p1 == succeed_n)
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5635 || (!is_a_jump_n
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5636 && (re_opcode_t) *p1 == on_failure_jump))
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5637 goto fail;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5638 break;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5639 default:
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5640 /* do nothing */ ;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5641 }
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5642 }
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5643
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5644 if (d >= string1 && d <= end1)
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5645 dend = end_match_1;
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5646 }
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5647 else
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5648 break; /* Matching at this starting point really fails. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5649 } /* for (;;) */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5650
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5651 if (best_regs_set)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5652 goto restore_best_regs;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5653
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5654 FREE_VARIABLES ();
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5655
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5656 return -1; /* Failure to match. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5657 } /* re_match_2 */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5658
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5659 /* Subroutine definitions for re_match_2. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5660
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5661
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5662 /* We are passed P pointing to a register number after a start_memory.
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
5663
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5664 Return true if the pattern up to the corresponding stop_memory can
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5665 match the empty string, and false otherwise.
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
5666
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5667 If we find the matching stop_memory, sets P to point to one past its number.
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5668 Otherwise, sets P to an undefined byte less than or equal to END.
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5669
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5670 We don't handle duplicates properly (yet). */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5671
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5672 static boolean
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5673 group_match_null_string_p (p, end, reg_info)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5674 unsigned char **p, *end;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5675 register_info_type *reg_info;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5676 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5677 int mcnt;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5678 /* Point to after the args to the start_memory. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5679 unsigned char *p1 = *p + 2;
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
5680
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5681 while (p1 < end)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5682 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5683 /* Skip over opcodes that can match nothing, and return true or
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5684 false, as appropriate, when we get to one that can't, or to the
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5685 matching stop_memory. */
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
5686
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5687 switch ((re_opcode_t) *p1)
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5688 {
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5689 /* Could be either a loop or a series of alternatives. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5690 case on_failure_jump:
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5691 p1++;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5692 EXTRACT_NUMBER_AND_INCR (mcnt, p1);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5693
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5694 /* If the next operation is not a jump backwards in the
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5695 pattern. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5696
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5697 if (mcnt >= 0)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5698 {
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5699 /* Go through the on_failure_jumps of the alternatives,
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5700 seeing if any of the alternatives cannot match nothing.
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5701 The last alternative starts with only a jump,
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5702 whereas the rest start with on_failure_jump and end
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5703 with a jump, e.g., here is the pattern for `a|b|c':
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5704
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5705 /on_failure_jump/0/6/exactn/1/a/jump_past_alt/0/6
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5706 /on_failure_jump/0/6/exactn/1/b/jump_past_alt/0/3
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5707 /exactn/1/c
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5708
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5709 So, we have to first go through the first (n-1)
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5710 alternatives and then deal with the last one separately. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5711
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5712
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5713 /* Deal with the first (n-1) alternatives, which start
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5714 with an on_failure_jump (see above) that jumps to right
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5715 past a jump_past_alt. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5716
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5717 while ((re_opcode_t) p1[mcnt-3] == jump_past_alt)
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5718 {
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5719 /* `mcnt' holds how many bytes long the alternative
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5720 is, including the ending `jump_past_alt' and
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5721 its number. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5722
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5723 if (!alt_match_null_string_p (p1, p1 + mcnt - 3,
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5724 reg_info))
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5725 return false;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5726
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5727 /* Move to right after this alternative, including the
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5728 jump_past_alt. */
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5729 p1 += mcnt;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5730
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5731 /* Break if it's the beginning of an n-th alternative
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5732 that doesn't begin with an on_failure_jump. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5733 if ((re_opcode_t) *p1 != on_failure_jump)
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5734 break;
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
5735
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5736 /* Still have to check that it's not an n-th
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5737 alternative that starts with an on_failure_jump. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5738 p1++;
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5739 EXTRACT_NUMBER_AND_INCR (mcnt, p1);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5740 if ((re_opcode_t) p1[mcnt-3] != jump_past_alt)
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5741 {
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5742 /* Get to the beginning of the n-th alternative. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5743 p1 -= 3;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5744 break;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5745 }
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5746 }
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5747
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5748 /* Deal with the last alternative: go back and get number
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5749 of the `jump_past_alt' just before it. `mcnt' contains
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5750 the length of the alternative. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5751 EXTRACT_NUMBER (mcnt, p1 - 2);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5752
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5753 if (!alt_match_null_string_p (p1, p1 + mcnt, reg_info))
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5754 return false;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5755
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5756 p1 += mcnt; /* Get past the n-th alternative. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5757 } /* if mcnt > 0 */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5758 break;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5759
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5760
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5761 case stop_memory:
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5762 assert (p1[1] == **p);
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5763 *p = p1 + 2;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5764 return true;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5765
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5766
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5767 default:
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5768 if (!common_op_match_null_string_p (&p1, end, reg_info))
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5769 return false;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5770 }
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5771 } /* while p1 < end */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5772
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5773 return false;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5774 } /* group_match_null_string_p */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5775
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5776
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5777 /* Similar to group_match_null_string_p, but doesn't deal with alternatives:
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5778 It expects P to be the first byte of a single alternative and END one
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5779 byte past the last. The alternative can contain groups. */
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
5780
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5781 static boolean
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5782 alt_match_null_string_p (p, end, reg_info)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5783 unsigned char *p, *end;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5784 register_info_type *reg_info;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5785 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5786 int mcnt;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5787 unsigned char *p1 = p;
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
5788
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5789 while (p1 < end)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5790 {
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
5791 /* Skip over opcodes that can match nothing, and break when we get
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5792 to one that can't. */
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
5793
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5794 switch ((re_opcode_t) *p1)
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5795 {
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5796 /* It's a loop. */
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5797 case on_failure_jump:
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5798 p1++;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5799 EXTRACT_NUMBER_AND_INCR (mcnt, p1);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5800 p1 += mcnt;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5801 break;
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
5802
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
5803 default:
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5804 if (!common_op_match_null_string_p (&p1, end, reg_info))
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5805 return false;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5806 }
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5807 } /* while p1 < end */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5808
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5809 return true;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5810 } /* alt_match_null_string_p */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5811
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5812
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5813 /* Deals with the ops common to group_match_null_string_p and
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
5814 alt_match_null_string_p.
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
5815
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5816 Sets P to one after the op and its arguments, if any. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5817
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5818 static boolean
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5819 common_op_match_null_string_p (p, end, reg_info)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5820 unsigned char **p, *end;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5821 register_info_type *reg_info;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5822 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5823 int mcnt;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5824 boolean ret;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5825 int reg_no;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5826 unsigned char *p1 = *p;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5827
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5828 switch ((re_opcode_t) *p1++)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5829 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5830 case no_op:
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5831 case begline:
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5832 case endline:
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5833 case begbuf:
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5834 case endbuf:
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5835 case wordbeg:
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5836 case wordend:
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5837 case wordbound:
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5838 case notwordbound:
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5839 #ifdef emacs
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5840 case before_dot:
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5841 case at_dot:
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5842 case after_dot:
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5843 #endif
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5844 break;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5845
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5846 case start_memory:
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5847 reg_no = *p1;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5848 assert (reg_no > 0 && reg_no <= MAX_REGNUM);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5849 ret = group_match_null_string_p (&p1, end, reg_info);
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
5850
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5851 /* Have to set this here in case we're checking a group which
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5852 contains a group and a back reference to it. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5853
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5854 if (REG_MATCH_NULL_STRING_P (reg_info[reg_no]) == MATCH_NULL_UNSET_VALUE)
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5855 REG_MATCH_NULL_STRING_P (reg_info[reg_no]) = ret;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5856
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5857 if (!ret)
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5858 return false;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5859 break;
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
5860
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5861 /* If this is an optimized succeed_n for zero times, make the jump. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5862 case jump:
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5863 EXTRACT_NUMBER_AND_INCR (mcnt, p1);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5864 if (mcnt >= 0)
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5865 p1 += mcnt;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5866 else
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5867 return false;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5868 break;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5869
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5870 case succeed_n:
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5871 /* Get to the number of times to succeed. */
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
5872 p1 += 2;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5873 EXTRACT_NUMBER_AND_INCR (mcnt, p1);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5874
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5875 if (mcnt == 0)
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5876 {
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5877 p1 -= 4;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5878 EXTRACT_NUMBER_AND_INCR (mcnt, p1);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5879 p1 += mcnt;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5880 }
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5881 else
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5882 return false;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5883 break;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5884
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
5885 case duplicate:
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5886 if (!REG_MATCH_NULL_STRING_P (reg_info[*p1]))
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5887 return false;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5888 break;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5889
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5890 case set_number_at:
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5891 p1 += 4;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5892
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5893 default:
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5894 /* All other opcodes mean we cannot match the empty string. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5895 return false;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5896 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5897
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5898 *p = p1;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5899 return true;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5900 } /* common_op_match_null_string_p */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5901
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5902
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5903 /* Return zero if TRANSLATE[S1] and TRANSLATE[S2] are identical for LEN
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5904 bytes; nonzero otherwise. */
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
5905
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5906 static int
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5907 bcmp_translate (s1, s2, len, translate)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5908 unsigned char *s1, *s2;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5909 register int len;
501
f29b13c2cefd (TRANSLATE, PATFETCH): Cast elt of `translate'.
Richard Stallman <rms@gnu.org>
parents: 490
diff changeset
5910 RE_TRANSLATE_TYPE translate;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5911 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5912 register unsigned char *p1 = s1, *p2 = s2;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5913 while (len)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5914 {
963
ed0235161e4b (TRANSLATE, re_search_2, re_match_2_internal,bcmp_translate):
Richard Stallman <rms@gnu.org>
parents: 961
diff changeset
5915 if (RE_TRANSLATE (translate, *p1++) != RE_TRANSLATE (translate, *p2++))
ed0235161e4b (TRANSLATE, re_search_2, re_match_2_internal,bcmp_translate):
Richard Stallman <rms@gnu.org>
parents: 961
diff changeset
5916 return 1;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5917 len--;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5918 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5919 return 0;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5920 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5921
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5922 /* Entry points for GNU code. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5923
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5924 /* re_compile_pattern is the GNU regular expression compiler: it
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5925 compiles PATTERN (of length SIZE) and puts the result in BUFP.
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5926 Returns 0 if the pattern was valid, otherwise an error string.
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
5927
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5928 Assumes the `allocated' (and perhaps `buffer') and `translate' fields
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5929 are set in BUFP on entry.
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
5930
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5931 We call regex_compile to do the actual compilation. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5932
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5933 const char *
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5934 re_compile_pattern (pattern, length, bufp)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5935 const char *pattern;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5936 int length;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5937 struct re_pattern_buffer *bufp;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5938 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5939 reg_errcode_t ret;
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
5940
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5941 /* GNU code is written to assume at least RE_NREGS registers will be set
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5942 (and at least one extra will be -1). */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5943 bufp->regs_allocated = REGS_UNALLOCATED;
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
5944
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5945 /* And GNU code determines whether or not to get register information
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5946 by passing null for the REGS argument to re_match, etc., not by
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5947 setting no_sub. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5948 bufp->no_sub = 0;
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
5949
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5950 /* Match anchors at newline. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5951 bufp->newline_anchor = 1;
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
5952
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5953 ret = regex_compile (pattern, length, re_syntax_options, bufp);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5954
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5955 if (!ret)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5956 return NULL;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5957 return gettext (re_error_msgid[(int) ret]);
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
5958 }
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5959
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5960 /* Entry points compatible with 4.2 BSD regex library. We don't define
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5961 them unless specifically requested. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5962
622
152fc00ed9b5 Tue May 21 19:18:05 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
Roland McGrath <roland@gnu.org>
parents: 607
diff changeset
5963 #if defined (_REGEX_RE_COMP) || defined (_LIBC)
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5964
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5965 /* BSD has one and only one pattern buffer. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5966 static struct re_pattern_buffer re_comp_buf;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5967
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5968 char *
636
ddd029a89661 [_LIBC] (re_comp, re_exec): Use `weak_function' keyword in defn instead of
Roland McGrath <roland@gnu.org>
parents: 631
diff changeset
5969 #ifdef _LIBC
ddd029a89661 [_LIBC] (re_comp, re_exec): Use `weak_function' keyword in defn instead of
Roland McGrath <roland@gnu.org>
parents: 631
diff changeset
5970 /* Make these definitions weak in libc, so POSIX programs can redefine
ddd029a89661 [_LIBC] (re_comp, re_exec): Use `weak_function' keyword in defn instead of
Roland McGrath <roland@gnu.org>
parents: 631
diff changeset
5971 these names if they don't use our functions, and still use
ddd029a89661 [_LIBC] (re_comp, re_exec): Use `weak_function' keyword in defn instead of
Roland McGrath <roland@gnu.org>
parents: 631
diff changeset
5972 regcomp/regexec below without link errors. */
ddd029a89661 [_LIBC] (re_comp, re_exec): Use `weak_function' keyword in defn instead of
Roland McGrath <roland@gnu.org>
parents: 631
diff changeset
5973 weak_function
ddd029a89661 [_LIBC] (re_comp, re_exec): Use `weak_function' keyword in defn instead of
Roland McGrath <roland@gnu.org>
parents: 631
diff changeset
5974 #endif
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5975 re_comp (s)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5976 const char *s;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5977 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5978 reg_errcode_t ret;
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
5979
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5980 if (!s)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5981 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5982 if (!re_comp_buf.buffer)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5983 return gettext ("No previous regular expression");
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5984 return 0;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5985 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5986
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5987 if (!re_comp_buf.buffer)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5988 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5989 re_comp_buf.buffer = (unsigned char *) malloc (200);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5990 if (re_comp_buf.buffer == NULL)
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
5991 return gettext (re_error_msgid[(int) REG_ESPACE]);
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5992 re_comp_buf.allocated = 200;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5993
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5994 re_comp_buf.fastmap = (char *) malloc (1 << BYTEWIDTH);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5995 if (re_comp_buf.fastmap == NULL)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5996 return gettext (re_error_msgid[(int) REG_ESPACE]);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5997 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5998
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
5999 /* Since `re_exec' always passes NULL for the `regs' argument, we
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6000 don't need to initialize the pattern buffer fields which affect it. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6001
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
6002 /* Match anchors at newlines. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6003 re_comp_buf.newline_anchor = 1;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6004
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6005 ret = regex_compile (s, strlen (s), re_syntax_options, &re_comp_buf);
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
6006
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6007 if (!ret)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6008 return NULL;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6009
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6010 /* Yes, we're discarding `const' here if !HAVE_LIBINTL. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6011 return (char *) gettext (re_error_msgid[(int) ret]);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6012 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6013
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6014
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6015 int
636
ddd029a89661 [_LIBC] (re_comp, re_exec): Use `weak_function' keyword in defn instead of
Roland McGrath <roland@gnu.org>
parents: 631
diff changeset
6016 #ifdef _LIBC
ddd029a89661 [_LIBC] (re_comp, re_exec): Use `weak_function' keyword in defn instead of
Roland McGrath <roland@gnu.org>
parents: 631
diff changeset
6017 weak_function
ddd029a89661 [_LIBC] (re_comp, re_exec): Use `weak_function' keyword in defn instead of
Roland McGrath <roland@gnu.org>
parents: 631
diff changeset
6018 #endif
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6019 re_exec (s)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6020 const char *s;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6021 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6022 const int len = strlen (s);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6023 return
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6024 0 <= re_search (&re_comp_buf, s, len, 0, len, (struct re_registers *) 0);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6025 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6026 #endif /* _REGEX_RE_COMP */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6027
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6028 /* POSIX.2 functions. Don't define these for Emacs. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6029
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6030 #ifndef emacs
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6031
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6032 /* regcomp takes a regular expression as a string and compiles it.
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6033
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
6034 PREG is a regex_t *. We do not expect any fields to be initialized,
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6035 since POSIX says we shouldn't. Thus, we set
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6036
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6037 `buffer' to the compiled pattern;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6038 `used' to the length of the compiled pattern;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6039 `syntax' to RE_SYNTAX_POSIX_EXTENDED if the
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6040 REG_EXTENDED bit in CFLAGS is set; otherwise, to
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6041 RE_SYNTAX_POSIX_BASIC;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6042 `newline_anchor' to REG_NEWLINE being set in CFLAGS;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6043 `fastmap' and `fastmap_accurate' to zero;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6044 `re_nsub' to the number of subexpressions in PATTERN.
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6045
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6046 PATTERN is the address of the pattern string.
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6047
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6048 CFLAGS is a series of bits which affect compilation.
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6049
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6050 If REG_EXTENDED is set, we use POSIX extended syntax; otherwise, we
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6051 use POSIX basic syntax.
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6052
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6053 If REG_NEWLINE is set, then . and [^...] don't match newline.
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6054 Also, regexec will try a match beginning after every newline.
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6055
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6056 If REG_ICASE is set, then we considers upper- and lowercase
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6057 versions of letters to be equivalent when matching.
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6058
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6059 If REG_NOSUB is set, then when PREG is passed to regexec, that
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6060 routine will report only success or failure, and nothing about the
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6061 registers.
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6062
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
6063 It returns 0 if it succeeds, nonzero if it doesn't. (See regex.h for
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6064 the return codes and their meanings.) */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6065
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6066 int
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6067 regcomp (preg, pattern, cflags)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6068 regex_t *preg;
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
6069 const char *pattern;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6070 int cflags;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6071 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6072 reg_errcode_t ret;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6073 unsigned syntax
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6074 = (cflags & REG_EXTENDED) ?
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6075 RE_SYNTAX_POSIX_EXTENDED : RE_SYNTAX_POSIX_BASIC;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6076
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6077 /* regex_compile will allocate the space for the compiled pattern. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6078 preg->buffer = 0;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6079 preg->allocated = 0;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6080 preg->used = 0;
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
6081
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6082 /* Don't bother to use a fastmap when searching. This simplifies the
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6083 REG_NEWLINE case: if we used a fastmap, we'd have to put all the
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6084 characters after newlines into the fastmap. This way, we just try
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6085 every character. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6086 preg->fastmap = 0;
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
6087
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6088 if (cflags & REG_ICASE)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6089 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6090 unsigned i;
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
6091
501
f29b13c2cefd (TRANSLATE, PATFETCH): Cast elt of `translate'.
Richard Stallman <rms@gnu.org>
parents: 490
diff changeset
6092 preg->translate
f29b13c2cefd (TRANSLATE, PATFETCH): Cast elt of `translate'.
Richard Stallman <rms@gnu.org>
parents: 490
diff changeset
6093 = (RE_TRANSLATE_TYPE) malloc (CHAR_SET_SIZE
f29b13c2cefd (TRANSLATE, PATFETCH): Cast elt of `translate'.
Richard Stallman <rms@gnu.org>
parents: 490
diff changeset
6094 * sizeof (*(RE_TRANSLATE_TYPE)0));
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6095 if (preg->translate == NULL)
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
6096 return (int) REG_ESPACE;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6097
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6098 /* Map uppercase characters to corresponding lowercase ones. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6099 for (i = 0; i < CHAR_SET_SIZE; i++)
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
6100 preg->translate[i] = ISUPPER (i) ? tolower (i) : i;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6101 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6102 else
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6103 preg->translate = NULL;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6104
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6105 /* If REG_NEWLINE is set, newlines are treated differently. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6106 if (cflags & REG_NEWLINE)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6107 { /* REG_NEWLINE implies neither . nor [^...] match newline. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6108 syntax &= ~RE_DOT_NEWLINE;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6109 syntax |= RE_HAT_LISTS_NOT_NEWLINE;
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
6110 /* It also changes the matching behavior. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6111 preg->newline_anchor = 1;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6112 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6113 else
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6114 preg->newline_anchor = 0;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6115
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6116 preg->no_sub = !!(cflags & REG_NOSUB);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6117
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
6118 /* POSIX says a null character in the pattern terminates it, so we
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6119 can use strlen here in compiling the pattern. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6120 ret = regex_compile (pattern, strlen (pattern), syntax, preg);
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
6121
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6122 /* POSIX doesn't distinguish between an unmatched open-group and an
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6123 unmatched close-group: both are REG_EPAREN. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6124 if (ret == REG_ERPAREN) ret = REG_EPAREN;
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
6125
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6126 return (int) ret;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6127 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6128
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6129
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6130 /* regexec searches for a given pattern, specified by PREG, in the
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6131 string STRING.
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
6132
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6133 If NMATCH is zero or REG_NOSUB was set in the cflags argument to
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
6134 `regcomp', we ignore PMATCH. Otherwise, we assume PMATCH has at
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6135 least NMATCH elements, and we set them to the offsets of the
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6136 corresponding matched substrings.
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
6137
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6138 EFLAGS specifies `execution flags' which affect matching: if
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6139 REG_NOTBOL is set, then ^ does not match at the beginning of the
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6140 string; if REG_NOTEOL is set, then $ does not match at the end.
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
6141
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6142 We return 0 if we find a match and REG_NOMATCH if not. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6143
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6144 int
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6145 regexec (preg, string, nmatch, pmatch, eflags)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6146 const regex_t *preg;
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
6147 const char *string;
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
6148 size_t nmatch;
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
6149 regmatch_t pmatch[];
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6150 int eflags;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6151 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6152 int ret;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6153 struct re_registers regs;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6154 regex_t private_preg;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6155 int len = strlen (string);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6156 boolean want_reg_info = !preg->no_sub && nmatch > 0;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6157
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6158 private_preg = *preg;
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
6159
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6160 private_preg.not_bol = !!(eflags & REG_NOTBOL);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6161 private_preg.not_eol = !!(eflags & REG_NOTEOL);
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
6162
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6163 /* The user has told us exactly how many registers to return
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6164 information about, via `nmatch'. We have to pass that on to the
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
6165 matching routines. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6166 private_preg.regs_allocated = REGS_FIXED;
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
6167
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6168 if (want_reg_info)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6169 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6170 regs.num_regs = nmatch;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6171 regs.start = TALLOC (nmatch, regoff_t);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6172 regs.end = TALLOC (nmatch, regoff_t);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6173 if (regs.start == NULL || regs.end == NULL)
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
6174 return (int) REG_NOMATCH;
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6175 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6176
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6177 /* Perform the searching operation. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6178 ret = re_search (&private_preg, string, len,
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
6179 /* start: */ 0, /* range: */ len,
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
6180 want_reg_info ? &regs : (struct re_registers *) 0);
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
6181
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6182 /* Copy the register information to the POSIX structure. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6183 if (want_reg_info)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6184 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6185 if (ret >= 0)
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
6186 {
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
6187 unsigned r;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
6188
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
6189 for (r = 0; r < nmatch; r++)
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
6190 {
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
6191 pmatch[r].rm_so = regs.start[r];
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
6192 pmatch[r].rm_eo = regs.end[r];
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
6193 }
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
6194 }
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
6195
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
6196 /* If we needed the temporary register info, free the space now. */
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6197 free (regs.start);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6198 free (regs.end);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6199 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6200
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6201 /* We want zero return to mean success, unlike `re_search'. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6202 return ret >= 0 ? (int) REG_NOERROR : (int) REG_NOMATCH;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6203 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6204
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6205
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6206 /* Returns a message corresponding to an error code, ERRCODE, returned
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6207 from either regcomp or regexec. We don't use PREG here. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6208
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6209 size_t
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6210 regerror (errcode, preg, errbuf, errbuf_size)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6211 int errcode;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6212 const regex_t *preg;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6213 char *errbuf;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6214 size_t errbuf_size;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6215 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6216 const char *msg;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6217 size_t msg_size;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6218
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6219 if (errcode < 0
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6220 || errcode >= (sizeof (re_error_msgid) / sizeof (re_error_msgid[0])))
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
6221 /* Only error codes returned by the rest of the code should be passed
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
6222 to this routine. If we are given anything else, or if other regex
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6223 code generates an invalid error code, then the program has a bug.
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6224 Dump core so we can fix it. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6225 abort ();
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6226
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6227 msg = gettext (re_error_msgid[errcode]);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6228
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6229 msg_size = strlen (msg) + 1; /* Includes the null. */
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
6230
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6231 if (errbuf_size != 0)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6232 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6233 if (msg_size > errbuf_size)
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
6234 {
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
6235 strncpy (errbuf, msg, errbuf_size - 1);
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
6236 errbuf[errbuf_size - 1] = 0;
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
6237 }
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6238 else
939
ace17b6e9d29 (PTR_TO_OFFSET): New macro.
Richard Stallman <rms@gnu.org>
parents: 786
diff changeset
6239 strcpy (errbuf, msg);
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6240 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6241
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6242 return msg_size;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6243 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6244
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6245
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6246 /* Free dynamically allocated space used by PREG. */
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6247
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6248 void
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6249 regfree (preg)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6250 regex_t *preg;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6251 {
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6252 if (preg->buffer != NULL)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6253 free (preg->buffer);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6254 preg->buffer = NULL;
515
69ba3b63e1d1 (gettext_noop): New macro, identity fn.
Roland McGrath <roland@gnu.org>
parents: 511
diff changeset
6255
441
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6256 preg->allocated = 0;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6257 preg->used = 0;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6258
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6259 if (preg->fastmap != NULL)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6260 free (preg->fastmap);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6261 preg->fastmap = NULL;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6262 preg->fastmap_accurate = 0;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6263
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6264 if (preg->translate != NULL)
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6265 free (preg->translate);
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6266 preg->translate = NULL;
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6267 }
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6268
403b2dfdfa0b Add `#ifdef _LIBC' in a few places, so this can be compiled in libc.
Roland McGrath <roland@gnu.org>
parents: 438
diff changeset
6269 #endif /* not emacs */