| 276 |
RM31, RM32, RM33, RM34, RM35, RM36, RM37, RM38, RM39, RM40, |
RM31, RM32, RM33, RM34, RM35, RM36, RM37, RM38, RM39, RM40, |
| 277 |
RM41, RM42, RM43, RM44, RM45, RM46, RM47, RM48, RM49, RM50, |
RM41, RM42, RM43, RM44, RM45, RM46, RM47, RM48, RM49, RM50, |
| 278 |
RM51, RM52, RM53, RM54, RM55, RM56, RM57, RM58, RM59, RM60, |
RM51, RM52, RM53, RM54, RM55, RM56, RM57, RM58, RM59, RM60, |
| 279 |
RM61, RM62, RM63, RM64 }; |
RM61, RM62, RM63}; |
| 280 |
|
|
| 281 |
/* These versions of the macros use the stack, as normal. There are debugging |
/* These versions of the macros use the stack, as normal. There are debugging |
| 282 |
versions and production versions. Note that the "rw" argument of RMATCH isn't |
versions and production versions. Note that the "rw" argument of RMATCH isn't |
| 858 |
md->offset_vector[offset+1] = save_offset2; |
md->offset_vector[offset+1] = save_offset2; |
| 859 |
md->offset_vector[md->offset_end - number] = save_offset3; |
md->offset_vector[md->offset_end - number] = save_offset3; |
| 860 |
|
|
| 861 |
if (rrc != MATCH_THEN) md->mark = markptr; |
if (rrc != MATCH_THEN && md->mark == NULL) md->mark = markptr; |
| 862 |
RRETURN(MATCH_NOMATCH); |
RRETURN(MATCH_NOMATCH); |
| 863 |
} |
} |
| 864 |
|
|
| 875 |
|
|
| 876 |
/* Non-capturing bracket, except for possessive with unlimited repeat. Loop |
/* Non-capturing bracket, except for possessive with unlimited repeat. Loop |
| 877 |
for all the alternatives. When we get to the final alternative within the |
for all the alternatives. When we get to the final alternative within the |
| 878 |
brackets, we would return the result of a recursive call to match() |
brackets, we used to return the result of a recursive call to match() |
| 879 |
whatever happened. We can reduce stack usage by turning this into a tail |
whatever happened so it was possible to reduce stack usage by turning this |
| 880 |
recursion, except in the case of a possibly empty group.*/ |
into a tail recursion, except in the case of a possibly empty group. |
| 881 |
|
However, now that there is the possiblity of (*THEN) occurring in the final |
| 882 |
|
alternative, this optimization is no longer possible. */ |
| 883 |
|
|
| 884 |
case OP_BRA: |
case OP_BRA: |
| 885 |
case OP_SBRA: |
case OP_SBRA: |
| 886 |
DPRINTF(("start non-capturing bracket\n")); |
DPRINTF(("start non-capturing bracket\n")); |
| 887 |
for (;;) |
for (;;) |
| 888 |
{ |
{ |
|
if (ecode[GET(ecode, 1)] != OP_ALT) /* Final alternative */ |
|
|
{ |
|
|
if (op >= OP_SBRA) /* Possibly empty group */ |
|
|
{ |
|
|
md->match_function_type = MATCH_CBEGROUP; |
|
|
RMATCH(eptr, ecode + _pcre_OP_lengths[*ecode], offset_top, md, eptrb, |
|
|
RM48); |
|
|
if (rrc == MATCH_NOMATCH) md->mark = markptr; |
|
|
RRETURN(rrc); |
|
|
} |
|
|
/* Not a possibly empty group; use tail recursion */ |
|
|
ecode += _pcre_OP_lengths[*ecode]; |
|
|
DPRINTF(("bracket 0 tail recursion\n")); |
|
|
goto TAIL_RECURSE; |
|
|
} |
|
|
|
|
|
/* For non-final alternatives, continue the loop for a NOMATCH result; |
|
|
otherwise return. */ |
|
|
|
|
| 889 |
if (op >= OP_SBRA) md->match_function_type = MATCH_CBEGROUP; |
if (op >= OP_SBRA) md->match_function_type = MATCH_CBEGROUP; |
| 890 |
RMATCH(eptr, ecode + _pcre_OP_lengths[*ecode], offset_top, md, eptrb, |
RMATCH(eptr, ecode + _pcre_OP_lengths[*ecode], offset_top, md, eptrb, |
| 891 |
RM2); |
RM2); |
| 893 |
(rrc != MATCH_THEN || md->start_match_ptr != ecode)) |
(rrc != MATCH_THEN || md->start_match_ptr != ecode)) |
| 894 |
RRETURN(rrc); |
RRETURN(rrc); |
| 895 |
ecode += GET(ecode, 1); |
ecode += GET(ecode, 1); |
| 896 |
|
if (*ecode != OP_ALT) break; |
| 897 |
} |
} |
| 898 |
/* Control never reaches here. */ |
|
| 899 |
|
if (rrc != MATCH_THEN && md->mark == NULL) md->mark = markptr; |
| 900 |
|
RRETURN(MATCH_NOMATCH); |
| 901 |
|
|
| 902 |
/* Handle possessive capturing brackets with an unlimited repeat. We come |
/* Handle possessive capturing brackets with an unlimited repeat. We come |
| 903 |
here from BRAZERO with allow_zero set TRUE. The offset_vector values are |
here from BRAZERO with allow_zero set TRUE. The offset_vector values are |
| 974 |
md->offset_vector[md->offset_end - number] = save_offset3; |
md->offset_vector[md->offset_end - number] = save_offset3; |
| 975 |
} |
} |
| 976 |
|
|
| 977 |
if (rrc != MATCH_THEN) md->mark = markptr; |
if (rrc != MATCH_THEN && md->mark == NULL) md->mark = markptr; |
| 978 |
if (allow_zero || matched_once) |
if (allow_zero || matched_once) |
| 979 |
{ |
{ |
| 980 |
ecode += 1 + LINK_SIZE; |
ecode += 1 + LINK_SIZE; |
| 1012 |
{ |
{ |
| 1013 |
if (op >= OP_SBRA) md->match_function_type = MATCH_CBEGROUP; |
if (op >= OP_SBRA) md->match_function_type = MATCH_CBEGROUP; |
| 1014 |
RMATCH(eptr, ecode + _pcre_OP_lengths[*ecode], offset_top, md, |
RMATCH(eptr, ecode + _pcre_OP_lengths[*ecode], offset_top, md, |
| 1015 |
eptrb, RM64); |
eptrb, RM48); |
| 1016 |
if (rrc == MATCH_KETRPOS) |
if (rrc == MATCH_KETRPOS) |
| 1017 |
{ |
{ |
| 1018 |
eptr = md->end_match_ptr; |
eptr = md->end_match_ptr; |
| 1039 |
/* Conditional group: compilation checked that there are no more than |
/* Conditional group: compilation checked that there are no more than |
| 1040 |
two branches. If the condition is false, skipping the first branch takes us |
two branches. If the condition is false, skipping the first branch takes us |
| 1041 |
past the end if there is only one branch, but that's OK because that is |
past the end if there is only one branch, but that's OK because that is |
| 1042 |
exactly what going to the ket would do. As there is only one branch to be |
exactly what going to the ket would do. */ |
|
obeyed, we can use tail recursion to avoid using another stack frame. */ |
|
| 1043 |
|
|
| 1044 |
case OP_COND: |
case OP_COND: |
| 1045 |
case OP_SCOND: |
case OP_SCOND: |
| 1244 |
} |
} |
| 1245 |
|
|
| 1246 |
/* We are now at the branch that is to be obeyed. As there is only one, |
/* We are now at the branch that is to be obeyed. As there is only one, |
| 1247 |
we can use tail recursion to avoid using another stack frame, except when |
we used to use tail recursion to avoid using another stack frame, except |
| 1248 |
we have an unlimited repeat of a possibly empty group. If the second |
when there was unlimited repeat of a possibly empty group. However, that |
| 1249 |
alternative doesn't exist, we can just plough on. */ |
strategy no longer works because of the possibilty of (*THEN) being |
| 1250 |
|
encountered in the branch. A recursive call to match() is always required, |
| 1251 |
|
unless the second alternative doesn't exist, in which case we can just |
| 1252 |
|
plough on. */ |
| 1253 |
|
|
| 1254 |
if (condition || *ecode == OP_ALT) |
if (condition || *ecode == OP_ALT) |
| 1255 |
{ |
{ |
| 1256 |
ecode += 1 + LINK_SIZE; |
if (op == OP_SCOND) md->match_function_type = MATCH_CBEGROUP; |
| 1257 |
if (op == OP_SCOND) /* Possibly empty group */ |
RMATCH(eptr, ecode + 1 + LINK_SIZE, offset_top, md, eptrb, RM49); |
| 1258 |
{ |
if (rrc == MATCH_THEN && md->start_match_ptr == ecode) |
| 1259 |
md->match_function_type = MATCH_CBEGROUP; |
rrc = MATCH_NOMATCH; |
| 1260 |
RMATCH(eptr, ecode, offset_top, md, eptrb, RM49); |
RRETURN(rrc); |
|
RRETURN(rrc); |
|
|
} |
|
|
else goto TAIL_RECURSE; |
|
| 1261 |
} |
} |
| 1262 |
else /* Condition false & no alternative */ |
else /* Condition false & no alternative */ |
| 1263 |
{ |
{ |
| 5688 |
LBL( 9) LBL(10) LBL(11) LBL(12) LBL(13) LBL(14) LBL(15) LBL(17) |
LBL( 9) LBL(10) LBL(11) LBL(12) LBL(13) LBL(14) LBL(15) LBL(17) |
| 5689 |
LBL(19) LBL(24) LBL(25) LBL(26) LBL(27) LBL(29) LBL(31) LBL(33) |
LBL(19) LBL(24) LBL(25) LBL(26) LBL(27) LBL(29) LBL(31) LBL(33) |
| 5690 |
LBL(35) LBL(43) LBL(47) LBL(48) LBL(49) LBL(50) LBL(51) LBL(52) |
LBL(35) LBL(43) LBL(47) LBL(48) LBL(49) LBL(50) LBL(51) LBL(52) |
| 5691 |
LBL(53) LBL(54) LBL(55) LBL(56) LBL(57) LBL(58) LBL(63) LBL(64) |
LBL(53) LBL(54) LBL(55) LBL(56) LBL(57) LBL(58) LBL(63) |
| 5692 |
#ifdef SUPPORT_UTF8 |
#ifdef SUPPORT_UTF8 |
| 5693 |
LBL(16) LBL(18) LBL(20) LBL(21) LBL(22) LBL(23) LBL(28) LBL(30) |
LBL(16) LBL(18) LBL(20) LBL(21) LBL(22) LBL(23) LBL(28) LBL(30) |
| 5694 |
LBL(32) LBL(34) LBL(42) LBL(46) |
LBL(32) LBL(34) LBL(42) LBL(46) |