X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Fre-engine-Hooks.git;a=blobdiff_plain;f=src%2F5022000%2Forig%2Finline_invlist.c;fp=src%2F5021002%2Forig%2Finline_invlist.c;h=1589f9573f1fa3ffa774f58ccb08c72c65466970;hp=1875a0506e91d0730949f3615e39a06a917ef2ff;hb=fe5c260b357f1011dff1c4fdf91dc1811675cca9;hpb=a2a125c4999b4c78dcf85fa24c30b832527b500a diff --git a/src/5021002/orig/inline_invlist.c b/src/5022000/orig/inline_invlist.c similarity index 70% rename from src/5021002/orig/inline_invlist.c rename to src/5022000/orig/inline_invlist.c index 1875a05..1589f95 100644 --- a/src/5021002/orig/inline_invlist.c +++ b/src/5022000/orig/inline_invlist.c @@ -56,6 +56,27 @@ S__invlist_contains_cp(SV* const invlist, const UV cp) return index >= 0 && ELEMENT_RANGE_MATCHES_INVLIST(index); } +PERL_STATIC_INLINE UV* +S_invlist_array(SV* const invlist) +{ + /* Returns the pointer to the inversion list's array. Every time the + * length changes, this needs to be called in case malloc or realloc moved + * it */ + + PERL_ARGS_ASSERT_INVLIST_ARRAY; + + /* Must not be empty. If these fail, you probably didn't check for + * being non-zero before trying to get the array */ + assert(_invlist_len(invlist)); + + /* The very first element always contains zero, The array begins either + * there, or if the inversion list is offset, at the element after it. + * The offset header field determines which; it contains 0 or 1 to indicate + * how much additionally to add */ + assert(0 == *(SvPVX(invlist))); + return ((UV *) SvPVX(invlist) + *get_invlist_offset_addr(invlist)); +} + # if defined(PERL_IN_UTF8_C) || defined(PERL_IN_REGEXEC_C) /* These symbols are only needed later in regcomp.c */