mirror of
git://sourceware.org/git/glibc.git
synced 2024-11-27 03:41:23 +08:00
regex: __builtin_expect → __glibc_unlikely
[BZ#23744] This refactoring was prompted by a problem when the regex code is used as part of Gnulib and when the builder’s compiler does not grok __builtin_expect. Problem reported for Gawk by Nelson H.F. Beebe in: https://lists.gnu.org/r/bug-gnulib/2018-09/msg00137.html Although this refactoring does not fix the problem directly, we might as well have Gawk use the now-preferred glibc style for when __builtin_expect is unavailable. * posix/regex_internal.h (BE): Remove. All uses replaced by __glibc_unlikely or __glibc_likely.
This commit is contained in:
parent
9f9feb6d5d
commit
f4efbdfb44
14
ChangeLog
14
ChangeLog
@ -1,3 +1,17 @@
|
||||
2018-10-14 Paul Eggert <eggert@cs.ucla.edu>
|
||||
|
||||
regex: __builtin_expect → __glibc_unlikely
|
||||
[BZ#23744]
|
||||
This refactoring was prompted by a problem when the regex code is
|
||||
used as part of Gnulib and when the builder’s compiler does not grok
|
||||
__builtin_expect. Problem reported for Gawk by Nelson H.F. Beebe in:
|
||||
https://lists.gnu.org/r/bug-gnulib/2018-09/msg00137.html
|
||||
Although this refactoring does not fix the problem directly,
|
||||
we might as well have Gawk use the now-preferred glibc style for when
|
||||
__builtin_expect is unavailable.
|
||||
* posix/regex_internal.h (BE): Remove.
|
||||
All uses replaced by __glibc_unlikely or __glibc_likely.
|
||||
|
||||
2018-10-11 Joseph Myers <joseph@codesourcery.com>
|
||||
|
||||
* sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
|
||||
|
305
posix/regcomp.c
305
posix/regcomp.c
File diff suppressed because it is too large
Load Diff
@ -18,7 +18,7 @@
|
||||
<https://www.gnu.org/licenses/>. */
|
||||
|
||||
#ifndef _LIBC
|
||||
# include <config.h>
|
||||
# include <libc-config.h>
|
||||
|
||||
# if (__GNUC__ == 4 && 6 <= __GNUC_MINOR__) || 4 < __GNUC__
|
||||
# pragma GCC diagnostic ignored "-Wsuggest-attribute=pure"
|
||||
|
@ -59,7 +59,7 @@ re_string_allocate (re_string_t *pstr, const char *str, Idx len, Idx init_len,
|
||||
re_string_construct_common (str, len, pstr, trans, icase, dfa);
|
||||
|
||||
ret = re_string_realloc_buffers (pstr, init_buf_len);
|
||||
if (BE (ret != REG_NOERROR, 0))
|
||||
if (__glibc_unlikely (ret != REG_NOERROR))
|
||||
return ret;
|
||||
|
||||
pstr->word_char = dfa->word_char;
|
||||
@ -84,7 +84,7 @@ re_string_construct (re_string_t *pstr, const char *str, Idx len,
|
||||
if (len > 0)
|
||||
{
|
||||
ret = re_string_realloc_buffers (pstr, len + 1);
|
||||
if (BE (ret != REG_NOERROR, 0))
|
||||
if (__glibc_unlikely (ret != REG_NOERROR))
|
||||
return ret;
|
||||
}
|
||||
pstr->mbs = pstr->mbs_allocated ? pstr->mbs : (unsigned char *) str;
|
||||
@ -97,14 +97,14 @@ re_string_construct (re_string_t *pstr, const char *str, Idx len,
|
||||
while (1)
|
||||
{
|
||||
ret = build_wcs_upper_buffer (pstr);
|
||||
if (BE (ret != REG_NOERROR, 0))
|
||||
if (__glibc_unlikely (ret != REG_NOERROR))
|
||||
return ret;
|
||||
if (pstr->valid_raw_len >= len)
|
||||
break;
|
||||
if (pstr->bufs_len > pstr->valid_len + dfa->mb_cur_max)
|
||||
break;
|
||||
ret = re_string_realloc_buffers (pstr, pstr->bufs_len * 2);
|
||||
if (BE (ret != REG_NOERROR, 0))
|
||||
if (__glibc_unlikely (ret != REG_NOERROR))
|
||||
return ret;
|
||||
}
|
||||
}
|
||||
@ -146,17 +146,18 @@ re_string_realloc_buffers (re_string_t *pstr, Idx new_buf_len)
|
||||
|
||||
/* Avoid overflow in realloc. */
|
||||
const size_t max_object_size = MAX (sizeof (wint_t), sizeof (Idx));
|
||||
if (BE (MIN (IDX_MAX, SIZE_MAX / max_object_size) < new_buf_len, 0))
|
||||
if (__glibc_unlikely (MIN (IDX_MAX, SIZE_MAX / max_object_size)
|
||||
< new_buf_len))
|
||||
return REG_ESPACE;
|
||||
|
||||
new_wcs = re_realloc (pstr->wcs, wint_t, new_buf_len);
|
||||
if (BE (new_wcs == NULL, 0))
|
||||
if (__glibc_unlikely (new_wcs == NULL))
|
||||
return REG_ESPACE;
|
||||
pstr->wcs = new_wcs;
|
||||
if (pstr->offsets != NULL)
|
||||
{
|
||||
Idx *new_offsets = re_realloc (pstr->offsets, Idx, new_buf_len);
|
||||
if (BE (new_offsets == NULL, 0))
|
||||
if (__glibc_unlikely (new_offsets == NULL))
|
||||
return REG_ESPACE;
|
||||
pstr->offsets = new_offsets;
|
||||
}
|
||||
@ -166,7 +167,7 @@ re_string_realloc_buffers (re_string_t *pstr, Idx new_buf_len)
|
||||
{
|
||||
unsigned char *new_mbs = re_realloc (pstr->mbs, unsigned char,
|
||||
new_buf_len);
|
||||
if (BE (new_mbs == NULL, 0))
|
||||
if (__glibc_unlikely (new_mbs == NULL))
|
||||
return REG_ESPACE;
|
||||
pstr->mbs = new_mbs;
|
||||
}
|
||||
@ -230,7 +231,7 @@ build_wcs_buffer (re_string_t *pstr)
|
||||
remain_len = end_idx - byte_idx;
|
||||
prev_st = pstr->cur_state;
|
||||
/* Apply the translation if we need. */
|
||||
if (BE (pstr->trans != NULL, 0))
|
||||
if (__glibc_unlikely (pstr->trans != NULL))
|
||||
{
|
||||
int i, ch;
|
||||
|
||||
@ -244,17 +245,18 @@ build_wcs_buffer (re_string_t *pstr)
|
||||
else
|
||||
p = (const char *) pstr->raw_mbs + pstr->raw_mbs_idx + byte_idx;
|
||||
mbclen = __mbrtowc (&wc, p, remain_len, &pstr->cur_state);
|
||||
if (BE (mbclen == (size_t) -1 || mbclen == 0
|
||||
|| (mbclen == (size_t) -2 && pstr->bufs_len >= pstr->len), 0))
|
||||
if (__glibc_unlikely (mbclen == (size_t) -1 || mbclen == 0
|
||||
|| (mbclen == (size_t) -2
|
||||
&& pstr->bufs_len >= pstr->len)))
|
||||
{
|
||||
/* We treat these cases as a singlebyte character. */
|
||||
mbclen = 1;
|
||||
wc = (wchar_t) pstr->raw_mbs[pstr->raw_mbs_idx + byte_idx];
|
||||
if (BE (pstr->trans != NULL, 0))
|
||||
if (__glibc_unlikely (pstr->trans != NULL))
|
||||
wc = pstr->trans[wc];
|
||||
pstr->cur_state = prev_st;
|
||||
}
|
||||
else if (BE (mbclen == (size_t) -2, 0))
|
||||
else if (__glibc_unlikely (mbclen == (size_t) -2))
|
||||
{
|
||||
/* The buffer doesn't have enough space, finish to build. */
|
||||
pstr->cur_state = prev_st;
|
||||
@ -317,7 +319,7 @@ build_wcs_upper_buffer (re_string_t *pstr)
|
||||
mbclen = __mbrtowc (&wc,
|
||||
((const char *) pstr->raw_mbs + pstr->raw_mbs_idx
|
||||
+ byte_idx), remain_len, &pstr->cur_state);
|
||||
if (BE (0 < mbclen && mbclen < (size_t) -2, 1))
|
||||
if (__glibc_likely (0 < mbclen && mbclen < (size_t) -2))
|
||||
{
|
||||
wchar_t wcu = __towupper (wc);
|
||||
if (wcu != wc)
|
||||
@ -325,7 +327,7 @@ build_wcs_upper_buffer (re_string_t *pstr)
|
||||
size_t mbcdlen;
|
||||
|
||||
mbcdlen = __wcrtomb (buf, wcu, &prev_st);
|
||||
if (BE (mbclen == mbcdlen, 1))
|
||||
if (__glibc_likely (mbclen == mbcdlen))
|
||||
memcpy (pstr->mbs + byte_idx, buf, mbclen);
|
||||
else
|
||||
{
|
||||
@ -350,7 +352,7 @@ build_wcs_upper_buffer (re_string_t *pstr)
|
||||
pstr->mbs[byte_idx] = ch;
|
||||
/* And also cast it to wide char. */
|
||||
pstr->wcs[byte_idx++] = (wchar_t) ch;
|
||||
if (BE (mbclen == (size_t) -1, 0))
|
||||
if (__glibc_unlikely (mbclen == (size_t) -1))
|
||||
pstr->cur_state = prev_st;
|
||||
}
|
||||
else
|
||||
@ -372,7 +374,7 @@ build_wcs_upper_buffer (re_string_t *pstr)
|
||||
offsets_needed:
|
||||
remain_len = end_idx - byte_idx;
|
||||
prev_st = pstr->cur_state;
|
||||
if (BE (pstr->trans != NULL, 0))
|
||||
if (__glibc_unlikely (pstr->trans != NULL))
|
||||
{
|
||||
int i, ch;
|
||||
|
||||
@ -386,7 +388,7 @@ build_wcs_upper_buffer (re_string_t *pstr)
|
||||
else
|
||||
p = (const char *) pstr->raw_mbs + pstr->raw_mbs_idx + src_idx;
|
||||
mbclen = __mbrtowc (&wc, p, remain_len, &pstr->cur_state);
|
||||
if (BE (0 < mbclen && mbclen < (size_t) -2, 1))
|
||||
if (__glibc_likely (0 < mbclen && mbclen < (size_t) -2))
|
||||
{
|
||||
wchar_t wcu = __towupper (wc);
|
||||
if (wcu != wc)
|
||||
@ -394,7 +396,7 @@ build_wcs_upper_buffer (re_string_t *pstr)
|
||||
size_t mbcdlen;
|
||||
|
||||
mbcdlen = __wcrtomb ((char *) buf, wcu, &prev_st);
|
||||
if (BE (mbclen == mbcdlen, 1))
|
||||
if (__glibc_likely (mbclen == mbcdlen))
|
||||
memcpy (pstr->mbs + byte_idx, buf, mbclen);
|
||||
else if (mbcdlen != (size_t) -1)
|
||||
{
|
||||
@ -444,7 +446,7 @@ build_wcs_upper_buffer (re_string_t *pstr)
|
||||
else
|
||||
memcpy (pstr->mbs + byte_idx, p, mbclen);
|
||||
|
||||
if (BE (pstr->offsets_needed != 0, 0))
|
||||
if (__glibc_unlikely (pstr->offsets_needed != 0))
|
||||
{
|
||||
size_t i;
|
||||
for (i = 0; i < mbclen; ++i)
|
||||
@ -463,17 +465,17 @@ build_wcs_upper_buffer (re_string_t *pstr)
|
||||
/* It is an invalid character or '\0'. Just use the byte. */
|
||||
int ch = pstr->raw_mbs[pstr->raw_mbs_idx + src_idx];
|
||||
|
||||
if (BE (pstr->trans != NULL, 0))
|
||||
if (__glibc_unlikely (pstr->trans != NULL))
|
||||
ch = pstr->trans [ch];
|
||||
pstr->mbs[byte_idx] = ch;
|
||||
|
||||
if (BE (pstr->offsets_needed != 0, 0))
|
||||
if (__glibc_unlikely (pstr->offsets_needed != 0))
|
||||
pstr->offsets[byte_idx] = src_idx;
|
||||
++src_idx;
|
||||
|
||||
/* And also cast it to wide char. */
|
||||
pstr->wcs[byte_idx++] = (wchar_t) ch;
|
||||
if (BE (mbclen == (size_t) -1, 0))
|
||||
if (__glibc_unlikely (mbclen == (size_t) -1))
|
||||
pstr->cur_state = prev_st;
|
||||
}
|
||||
else
|
||||
@ -508,7 +510,8 @@ re_string_skip_chars (re_string_t *pstr, Idx new_raw_idx, wint_t *last_wc)
|
||||
prev_st = pstr->cur_state;
|
||||
mbclen = __mbrtowc (&wc2, (const char *) pstr->raw_mbs + rawbuf_idx,
|
||||
remain_len, &pstr->cur_state);
|
||||
if (BE (mbclen == (size_t) -2 || mbclen == (size_t) -1 || mbclen == 0, 0))
|
||||
if (__glibc_unlikely (mbclen == (size_t) -2 || mbclen == (size_t) -1
|
||||
|| mbclen == 0))
|
||||
{
|
||||
/* We treat these cases as a single byte character. */
|
||||
if (mbclen == 0 || remain_len == 0)
|
||||
@ -540,7 +543,7 @@ build_upper_buffer (re_string_t *pstr)
|
||||
for (char_idx = pstr->valid_len; char_idx < end_idx; ++char_idx)
|
||||
{
|
||||
int ch = pstr->raw_mbs[pstr->raw_mbs_idx + char_idx];
|
||||
if (BE (pstr->trans != NULL, 0))
|
||||
if (__glibc_unlikely (pstr->trans != NULL))
|
||||
ch = pstr->trans[ch];
|
||||
pstr->mbs[char_idx] = toupper (ch);
|
||||
}
|
||||
@ -576,7 +579,7 @@ re_string_reconstruct (re_string_t *pstr, Idx idx, int eflags)
|
||||
{
|
||||
Idx offset;
|
||||
|
||||
if (BE (pstr->raw_mbs_idx <= idx, 0))
|
||||
if (__glibc_unlikely (pstr->raw_mbs_idx <= idx))
|
||||
offset = idx - pstr->raw_mbs_idx;
|
||||
else
|
||||
{
|
||||
@ -598,14 +601,14 @@ re_string_reconstruct (re_string_t *pstr, Idx idx, int eflags)
|
||||
offset = idx;
|
||||
}
|
||||
|
||||
if (BE (offset != 0, 1))
|
||||
if (__glibc_likely (offset != 0))
|
||||
{
|
||||
/* Should the already checked characters be kept? */
|
||||
if (BE (offset < pstr->valid_raw_len, 1))
|
||||
if (__glibc_likely (offset < pstr->valid_raw_len))
|
||||
{
|
||||
/* Yes, move them to the front of the buffer. */
|
||||
#ifdef RE_ENABLE_I18N
|
||||
if (BE (pstr->offsets_needed, 0))
|
||||
if (__glibc_unlikely (pstr->offsets_needed))
|
||||
{
|
||||
Idx low = 0, high = pstr->valid_len, mid;
|
||||
do
|
||||
@ -677,7 +680,7 @@ re_string_reconstruct (re_string_t *pstr, Idx idx, int eflags)
|
||||
memmove (pstr->wcs, pstr->wcs + offset,
|
||||
(pstr->valid_len - offset) * sizeof (wint_t));
|
||||
#endif /* RE_ENABLE_I18N */
|
||||
if (BE (pstr->mbs_allocated, 0))
|
||||
if (__glibc_unlikely (pstr->mbs_allocated))
|
||||
memmove (pstr->mbs, pstr->mbs + offset,
|
||||
pstr->valid_len - offset);
|
||||
pstr->valid_len -= offset;
|
||||
@ -693,7 +696,7 @@ re_string_reconstruct (re_string_t *pstr, Idx idx, int eflags)
|
||||
/* No, skip all characters until IDX. */
|
||||
Idx prev_valid_len = pstr->valid_len;
|
||||
|
||||
if (BE (pstr->offsets_needed, 0))
|
||||
if (__glibc_unlikely (pstr->offsets_needed))
|
||||
{
|
||||
pstr->len = pstr->raw_len - idx + offset;
|
||||
pstr->stop = pstr->raw_stop - idx + offset;
|
||||
@ -721,7 +724,7 @@ re_string_reconstruct (re_string_t *pstr, Idx idx, int eflags)
|
||||
#ifdef _LIBC
|
||||
/* We know the wchar_t encoding is UCS4, so for the simple
|
||||
case, ASCII characters, skip the conversion step. */
|
||||
if (isascii (*p) && BE (pstr->trans == NULL, 1))
|
||||
if (isascii (*p) && __glibc_likely (pstr->trans == NULL))
|
||||
{
|
||||
memset (&pstr->cur_state, '\0', sizeof (mbstate_t));
|
||||
/* pstr->valid_len = 0; */
|
||||
@ -739,7 +742,7 @@ re_string_reconstruct (re_string_t *pstr, Idx idx, int eflags)
|
||||
size_t mbclen;
|
||||
|
||||
const unsigned char *pp = p;
|
||||
if (BE (pstr->trans != NULL, 0))
|
||||
if (__glibc_unlikely (pstr->trans != NULL))
|
||||
{
|
||||
int i = mlen < 6 ? mlen : 6;
|
||||
while (--i >= 0)
|
||||
@ -769,13 +772,13 @@ re_string_reconstruct (re_string_t *pstr, Idx idx, int eflags)
|
||||
pstr->tip_context
|
||||
= re_string_context_at (pstr, prev_valid_len - 1, eflags);
|
||||
else
|
||||
pstr->tip_context = ((BE (pstr->word_ops_used != 0, 0)
|
||||
pstr->tip_context = ((__glibc_unlikely (pstr->word_ops_used != 0)
|
||||
&& IS_WIDE_WORD_CHAR (wc))
|
||||
? CONTEXT_WORD
|
||||
: ((IS_WIDE_NEWLINE (wc)
|
||||
&& pstr->newline_anchor)
|
||||
? CONTEXT_NEWLINE : 0));
|
||||
if (BE (pstr->valid_len, 0))
|
||||
if (__glibc_unlikely (pstr->valid_len))
|
||||
{
|
||||
for (wcs_idx = 0; wcs_idx < pstr->valid_len; ++wcs_idx)
|
||||
pstr->wcs[wcs_idx] = WEOF;
|
||||
@ -797,7 +800,7 @@ re_string_reconstruct (re_string_t *pstr, Idx idx, int eflags)
|
||||
? CONTEXT_NEWLINE : 0));
|
||||
}
|
||||
}
|
||||
if (!BE (pstr->mbs_allocated, 0))
|
||||
if (!__glibc_unlikely (pstr->mbs_allocated))
|
||||
pstr->mbs += offset;
|
||||
}
|
||||
pstr->raw_mbs_idx = idx;
|
||||
@ -811,7 +814,7 @@ re_string_reconstruct (re_string_t *pstr, Idx idx, int eflags)
|
||||
if (pstr->icase)
|
||||
{
|
||||
reg_errcode_t ret = build_wcs_upper_buffer (pstr);
|
||||
if (BE (ret != REG_NOERROR, 0))
|
||||
if (__glibc_unlikely (ret != REG_NOERROR))
|
||||
return ret;
|
||||
}
|
||||
else
|
||||
@ -819,7 +822,7 @@ re_string_reconstruct (re_string_t *pstr, Idx idx, int eflags)
|
||||
}
|
||||
else
|
||||
#endif /* RE_ENABLE_I18N */
|
||||
if (BE (pstr->mbs_allocated, 0))
|
||||
if (__glibc_unlikely (pstr->mbs_allocated))
|
||||
{
|
||||
if (pstr->icase)
|
||||
build_upper_buffer (pstr);
|
||||
@ -841,7 +844,7 @@ re_string_peek_byte_case (const re_string_t *pstr, Idx idx)
|
||||
Idx off;
|
||||
|
||||
/* Handle the common (easiest) cases first. */
|
||||
if (BE (!pstr->mbs_allocated, 1))
|
||||
if (__glibc_likely (!pstr->mbs_allocated))
|
||||
return re_string_peek_byte (pstr, idx);
|
||||
|
||||
#ifdef RE_ENABLE_I18N
|
||||
@ -873,7 +876,7 @@ re_string_peek_byte_case (const re_string_t *pstr, Idx idx)
|
||||
static unsigned char
|
||||
re_string_fetch_byte_case (re_string_t *pstr)
|
||||
{
|
||||
if (BE (!pstr->mbs_allocated, 1))
|
||||
if (__glibc_likely (!pstr->mbs_allocated))
|
||||
return re_string_fetch_byte (pstr);
|
||||
|
||||
#ifdef RE_ENABLE_I18N
|
||||
@ -924,11 +927,11 @@ static unsigned int
|
||||
re_string_context_at (const re_string_t *input, Idx idx, int eflags)
|
||||
{
|
||||
int c;
|
||||
if (BE (idx < 0, 0))
|
||||
if (__glibc_unlikely (idx < 0))
|
||||
/* In this case, we use the value stored in input->tip_context,
|
||||
since we can't know the character in input->mbs[-1] here. */
|
||||
return input->tip_context;
|
||||
if (BE (idx == input->len, 0))
|
||||
if (__glibc_unlikely (idx == input->len))
|
||||
return ((eflags & REG_NOTEOL) ? CONTEXT_ENDBUF
|
||||
: CONTEXT_NEWLINE | CONTEXT_ENDBUF);
|
||||
#ifdef RE_ENABLE_I18N
|
||||
@ -947,7 +950,8 @@ re_string_context_at (const re_string_t *input, Idx idx, int eflags)
|
||||
return input->tip_context;
|
||||
}
|
||||
wc = input->wcs[wc_idx];
|
||||
if (BE (input->word_ops_used != 0, 0) && IS_WIDE_WORD_CHAR (wc))
|
||||
if (__glibc_unlikely (input->word_ops_used != 0)
|
||||
&& IS_WIDE_WORD_CHAR (wc))
|
||||
return CONTEXT_WORD;
|
||||
return (IS_WIDE_NEWLINE (wc) && input->newline_anchor
|
||||
? CONTEXT_NEWLINE : 0);
|
||||
@ -971,7 +975,8 @@ re_node_set_alloc (re_node_set *set, Idx size)
|
||||
set->alloc = size;
|
||||
set->nelem = 0;
|
||||
set->elems = re_malloc (Idx, size);
|
||||
if (BE (set->elems == NULL, 0) && (MALLOC_0_IS_NONNULL || size != 0))
|
||||
if (__glibc_unlikely (set->elems == NULL)
|
||||
&& (MALLOC_0_IS_NONNULL || size != 0))
|
||||
return REG_ESPACE;
|
||||
return REG_NOERROR;
|
||||
}
|
||||
@ -983,7 +988,7 @@ re_node_set_init_1 (re_node_set *set, Idx elem)
|
||||
set->alloc = 1;
|
||||
set->nelem = 1;
|
||||
set->elems = re_malloc (Idx, 1);
|
||||
if (BE (set->elems == NULL, 0))
|
||||
if (__glibc_unlikely (set->elems == NULL))
|
||||
{
|
||||
set->alloc = set->nelem = 0;
|
||||
return REG_ESPACE;
|
||||
@ -998,7 +1003,7 @@ re_node_set_init_2 (re_node_set *set, Idx elem1, Idx elem2)
|
||||
{
|
||||
set->alloc = 2;
|
||||
set->elems = re_malloc (Idx, 2);
|
||||
if (BE (set->elems == NULL, 0))
|
||||
if (__glibc_unlikely (set->elems == NULL))
|
||||
return REG_ESPACE;
|
||||
if (elem1 == elem2)
|
||||
{
|
||||
@ -1031,7 +1036,7 @@ re_node_set_init_copy (re_node_set *dest, const re_node_set *src)
|
||||
{
|
||||
dest->alloc = dest->nelem;
|
||||
dest->elems = re_malloc (Idx, dest->alloc);
|
||||
if (BE (dest->elems == NULL, 0))
|
||||
if (__glibc_unlikely (dest->elems == NULL))
|
||||
{
|
||||
dest->alloc = dest->nelem = 0;
|
||||
return REG_ESPACE;
|
||||
@ -1062,7 +1067,7 @@ re_node_set_add_intersect (re_node_set *dest, const re_node_set *src1,
|
||||
{
|
||||
Idx new_alloc = src1->nelem + src2->nelem + dest->alloc;
|
||||
Idx *new_elems = re_realloc (dest->elems, Idx, new_alloc);
|
||||
if (BE (new_elems == NULL, 0))
|
||||
if (__glibc_unlikely (new_elems == NULL))
|
||||
return REG_ESPACE;
|
||||
dest->elems = new_elems;
|
||||
dest->alloc = new_alloc;
|
||||
@ -1148,7 +1153,7 @@ re_node_set_init_union (re_node_set *dest, const re_node_set *src1,
|
||||
{
|
||||
dest->alloc = src1->nelem + src2->nelem;
|
||||
dest->elems = re_malloc (Idx, dest->alloc);
|
||||
if (BE (dest->elems == NULL, 0))
|
||||
if (__glibc_unlikely (dest->elems == NULL))
|
||||
return REG_ESPACE;
|
||||
}
|
||||
else
|
||||
@ -1202,13 +1207,13 @@ re_node_set_merge (re_node_set *dest, const re_node_set *src)
|
||||
{
|
||||
Idx new_alloc = 2 * (src->nelem + dest->alloc);
|
||||
Idx *new_buffer = re_realloc (dest->elems, Idx, new_alloc);
|
||||
if (BE (new_buffer == NULL, 0))
|
||||
if (__glibc_unlikely (new_buffer == NULL))
|
||||
return REG_ESPACE;
|
||||
dest->elems = new_buffer;
|
||||
dest->alloc = new_alloc;
|
||||
}
|
||||
|
||||
if (BE (dest->nelem == 0, 0))
|
||||
if (__glibc_unlikely (dest->nelem == 0))
|
||||
{
|
||||
dest->nelem = src->nelem;
|
||||
memcpy (dest->elems, src->elems, src->nelem * sizeof (Idx));
|
||||
@ -1281,9 +1286,9 @@ re_node_set_insert (re_node_set *set, Idx elem)
|
||||
Idx idx;
|
||||
/* In case the set is empty. */
|
||||
if (set->alloc == 0)
|
||||
return BE (re_node_set_init_1 (set, elem) == REG_NOERROR, 1);
|
||||
return __glibc_likely (re_node_set_init_1 (set, elem) == REG_NOERROR);
|
||||
|
||||
if (BE (set->nelem, 0) == 0)
|
||||
if (__glibc_unlikely (set->nelem) == 0)
|
||||
{
|
||||
/* We already guaranteed above that set->alloc != 0. */
|
||||
set->elems[0] = elem;
|
||||
@ -1297,7 +1302,7 @@ re_node_set_insert (re_node_set *set, Idx elem)
|
||||
Idx *new_elems;
|
||||
set->alloc = set->alloc * 2;
|
||||
new_elems = re_realloc (set->elems, Idx, set->alloc);
|
||||
if (BE (new_elems == NULL, 0))
|
||||
if (__glibc_unlikely (new_elems == NULL))
|
||||
return false;
|
||||
set->elems = new_elems;
|
||||
}
|
||||
@ -1336,7 +1341,7 @@ re_node_set_insert_last (re_node_set *set, Idx elem)
|
||||
Idx *new_elems;
|
||||
set->alloc = (set->alloc + 1) * 2;
|
||||
new_elems = re_realloc (set->elems, Idx, set->alloc);
|
||||
if (BE (new_elems == NULL, 0))
|
||||
if (__glibc_unlikely (new_elems == NULL))
|
||||
return false;
|
||||
set->elems = new_elems;
|
||||
}
|
||||
@ -1403,7 +1408,7 @@ re_node_set_remove_at (re_node_set *set, Idx idx)
|
||||
static Idx
|
||||
re_dfa_add_node (re_dfa_t *dfa, re_token_t token)
|
||||
{
|
||||
if (BE (dfa->nodes_len >= dfa->nodes_alloc, 0))
|
||||
if (__glibc_unlikely (dfa->nodes_len >= dfa->nodes_alloc))
|
||||
{
|
||||
size_t new_nodes_alloc = dfa->nodes_alloc * 2;
|
||||
Idx *new_nexts, *new_indices;
|
||||
@ -1414,19 +1419,20 @@ re_dfa_add_node (re_dfa_t *dfa, re_token_t token)
|
||||
const size_t max_object_size = MAX (sizeof (re_token_t),
|
||||
MAX (sizeof (re_node_set),
|
||||
sizeof (Idx)));
|
||||
if (BE (MIN (IDX_MAX, SIZE_MAX / max_object_size) < new_nodes_alloc, 0))
|
||||
if (__glibc_unlikely (MIN (IDX_MAX, SIZE_MAX / max_object_size)
|
||||
< new_nodes_alloc))
|
||||
return -1;
|
||||
|
||||
new_nodes = re_realloc (dfa->nodes, re_token_t, new_nodes_alloc);
|
||||
if (BE (new_nodes == NULL, 0))
|
||||
if (__glibc_unlikely (new_nodes == NULL))
|
||||
return -1;
|
||||
dfa->nodes = new_nodes;
|
||||
new_nexts = re_realloc (dfa->nexts, Idx, new_nodes_alloc);
|
||||
new_indices = re_realloc (dfa->org_indices, Idx, new_nodes_alloc);
|
||||
new_edests = re_realloc (dfa->edests, re_node_set, new_nodes_alloc);
|
||||
new_eclosures = re_realloc (dfa->eclosures, re_node_set, new_nodes_alloc);
|
||||
if (BE (new_nexts == NULL || new_indices == NULL
|
||||
|| new_edests == NULL || new_eclosures == NULL, 0))
|
||||
if (__glibc_unlikely (new_nexts == NULL || new_indices == NULL
|
||||
|| new_edests == NULL || new_eclosures == NULL))
|
||||
{
|
||||
re_free (new_nexts);
|
||||
re_free (new_indices);
|
||||
@ -1485,7 +1491,7 @@ re_acquire_state (reg_errcode_t *err, const re_dfa_t *dfa,
|
||||
/* Suppress bogus uninitialized-variable warnings. */
|
||||
*err = REG_NOERROR;
|
||||
#endif
|
||||
if (BE (nodes->nelem == 0, 0))
|
||||
if (__glibc_unlikely (nodes->nelem == 0))
|
||||
{
|
||||
*err = REG_NOERROR;
|
||||
return NULL;
|
||||
@ -1504,7 +1510,7 @@ re_acquire_state (reg_errcode_t *err, const re_dfa_t *dfa,
|
||||
|
||||
/* There are no appropriate state in the dfa, create the new one. */
|
||||
new_state = create_ci_newstate (dfa, nodes, hash);
|
||||
if (BE (new_state == NULL, 0))
|
||||
if (__glibc_unlikely (new_state == NULL))
|
||||
*err = REG_ESPACE;
|
||||
|
||||
return new_state;
|
||||
@ -1551,7 +1557,7 @@ re_acquire_state_context (reg_errcode_t *err, const re_dfa_t *dfa,
|
||||
}
|
||||
/* There are no appropriate state in 'dfa', create the new one. */
|
||||
new_state = create_cd_newstate (dfa, nodes, context, hash);
|
||||
if (BE (new_state == NULL, 0))
|
||||
if (__glibc_unlikely (new_state == NULL))
|
||||
*err = REG_ESPACE;
|
||||
|
||||
return new_state;
|
||||
@ -1572,7 +1578,7 @@ register_state (const re_dfa_t *dfa, re_dfastate_t *newstate,
|
||||
|
||||
newstate->hash = hash;
|
||||
err = re_node_set_alloc (&newstate->non_eps_nodes, newstate->nodes.nelem);
|
||||
if (BE (err != REG_NOERROR, 0))
|
||||
if (__glibc_unlikely (err != REG_NOERROR))
|
||||
return REG_ESPACE;
|
||||
for (i = 0; i < newstate->nodes.nelem; i++)
|
||||
{
|
||||
@ -1583,12 +1589,12 @@ register_state (const re_dfa_t *dfa, re_dfastate_t *newstate,
|
||||
}
|
||||
|
||||
spot = dfa->state_table + (hash & dfa->state_hash_mask);
|
||||
if (BE (spot->alloc <= spot->num, 0))
|
||||
if (__glibc_unlikely (spot->alloc <= spot->num))
|
||||
{
|
||||
Idx new_alloc = 2 * spot->num + 2;
|
||||
re_dfastate_t **new_array = re_realloc (spot->array, re_dfastate_t *,
|
||||
new_alloc);
|
||||
if (BE (new_array == NULL, 0))
|
||||
if (__glibc_unlikely (new_array == NULL))
|
||||
return REG_ESPACE;
|
||||
spot->array = new_array;
|
||||
spot->alloc = new_alloc;
|
||||
@ -1626,10 +1632,10 @@ create_ci_newstate (const re_dfa_t *dfa, const re_node_set *nodes,
|
||||
re_dfastate_t *newstate;
|
||||
|
||||
newstate = (re_dfastate_t *) calloc (sizeof (re_dfastate_t), 1);
|
||||
if (BE (newstate == NULL, 0))
|
||||
if (__glibc_unlikely (newstate == NULL))
|
||||
return NULL;
|
||||
err = re_node_set_init_copy (&newstate->nodes, nodes);
|
||||
if (BE (err != REG_NOERROR, 0))
|
||||
if (__glibc_unlikely (err != REG_NOERROR))
|
||||
{
|
||||
re_free (newstate);
|
||||
return NULL;
|
||||
@ -1655,7 +1661,7 @@ create_ci_newstate (const re_dfa_t *dfa, const re_node_set *nodes,
|
||||
newstate->has_constraint = 1;
|
||||
}
|
||||
err = register_state (dfa, newstate, hash);
|
||||
if (BE (err != REG_NOERROR, 0))
|
||||
if (__glibc_unlikely (err != REG_NOERROR))
|
||||
{
|
||||
free_state (newstate);
|
||||
newstate = NULL;
|
||||
@ -1676,10 +1682,10 @@ create_cd_newstate (const re_dfa_t *dfa, const re_node_set *nodes,
|
||||
re_dfastate_t *newstate;
|
||||
|
||||
newstate = (re_dfastate_t *) calloc (sizeof (re_dfastate_t), 1);
|
||||
if (BE (newstate == NULL, 0))
|
||||
if (__glibc_unlikely (newstate == NULL))
|
||||
return NULL;
|
||||
err = re_node_set_init_copy (&newstate->nodes, nodes);
|
||||
if (BE (err != REG_NOERROR, 0))
|
||||
if (__glibc_unlikely (err != REG_NOERROR))
|
||||
{
|
||||
re_free (newstate);
|
||||
return NULL;
|
||||
@ -1711,7 +1717,7 @@ create_cd_newstate (const re_dfa_t *dfa, const re_node_set *nodes,
|
||||
if (newstate->entrance_nodes == &newstate->nodes)
|
||||
{
|
||||
newstate->entrance_nodes = re_malloc (re_node_set, 1);
|
||||
if (BE (newstate->entrance_nodes == NULL, 0))
|
||||
if (__glibc_unlikely (newstate->entrance_nodes == NULL))
|
||||
{
|
||||
free_state (newstate);
|
||||
return NULL;
|
||||
@ -1731,7 +1737,7 @@ create_cd_newstate (const re_dfa_t *dfa, const re_node_set *nodes,
|
||||
}
|
||||
}
|
||||
err = register_state (dfa, newstate, hash);
|
||||
if (BE (err != REG_NOERROR, 0))
|
||||
if (__glibc_unlikely (err != REG_NOERROR))
|
||||
{
|
||||
free_state (newstate);
|
||||
newstate = NULL;
|
||||
|
@ -132,8 +132,6 @@
|
||||
# define RE_ENABLE_I18N
|
||||
#endif
|
||||
|
||||
#define BE(expr, val) __builtin_expect (expr, val)
|
||||
|
||||
/* Number of ASCII characters. */
|
||||
#define ASCII_CHARS 0x80
|
||||
|
||||
|
363
posix/regexec.c
363
posix/regexec.c
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user