summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--globvar.sym2
-rw-r--r--regcomp.c16
-rw-r--r--regen/regcomp.pl6
-rw-r--r--regnodes.h6
4 files changed, 15 insertions, 15 deletions
diff --git a/globvar.sym b/globvar.sym
index de0d3a7cfe..ef2a11769d 100644
--- a/globvar.sym
+++ b/globvar.sym
@@ -58,7 +58,7 @@ PL_ppaddr
PL_reg_extflags_name
PL_reg_intflags_name
PL_reg_name
-PL_reg_off_by_arg
+PL_regnode_off_by_arg
PL_regnode_arg_len
PL_regnode_arg_len_varies
PL_regnode_kind
diff --git a/regcomp.c b/regcomp.c
index 69ce73086a..8ddb95322f 100644
--- a/regcomp.c
+++ b/regcomp.c
@@ -4396,7 +4396,7 @@ S_join_exact(pTHX_ RExC_state_t *pRExC_state, regnode *scan,
#ifdef EXPERIMENTAL_INPLACESCAN
if (flags && !NEXT_OFF(n)) {
DEBUG_PEEP("atch", val, depth, 0);
- if (PL_reg_off_by_arg[OP(n)]) {
+ if (PL_regnode_off_by_arg[OP(n)]) {
ARG_SET(n, val - n);
}
else {
@@ -4656,11 +4656,11 @@ S_rck_elide_nothing(pTHX_ regnode *node)
PERL_ARGS_ASSERT_RCK_ELIDE_NOTHING;
if (OP(node) != CURLYX) {
- const int max = (PL_reg_off_by_arg[OP(node)]
+ const int max = (PL_regnode_off_by_arg[OP(node)]
? I32_MAX
/* I32 may be smaller than U16 on CRAYs! */
: (I32_MAX < U16_MAX ? I32_MAX : U16_MAX));
- int off = (PL_reg_off_by_arg[OP(node)] ? ARG(node) : NEXT_OFF(node));
+ int off = (PL_regnode_off_by_arg[OP(node)] ? ARG(node) : NEXT_OFF(node));
int noff;
regnode *n = node;
@@ -4675,7 +4675,7 @@ S_rck_elide_nothing(pTHX_ regnode *node)
) {
off += noff;
}
- if (PL_reg_off_by_arg[OP(node)])
+ if (PL_regnode_off_by_arg[OP(node)])
ARG(node) = off;
else
NEXT_OFF(node) = off;
@@ -5908,7 +5908,7 @@ S_study_chunk(pTHX_
while ( nxt1 && (OP(nxt1) != WHILEM)) {
regnode *nnxt = regnext(nxt1);
if (nnxt == nxt) {
- if (PL_reg_off_by_arg[OP(nxt1)])
+ if (PL_regnode_off_by_arg[OP(nxt1)])
ARG_SET(nxt1, nxt2 - nxt1);
else if (nxt2 - nxt1 < U16_MAX)
NEXT_OFF(nxt1) = nxt2 - nxt1;
@@ -21484,7 +21484,7 @@ S_regtail(pTHX_ RExC_state_t * pRExC_state,
/* Populate this node's next pointer */
assert(val >= scan);
- if (PL_reg_off_by_arg[OP(REGNODE_p(scan))]) {
+ if (PL_regnode_off_by_arg[OP(REGNODE_p(scan))]) {
assert((UV) (val - scan) <= U32_MAX);
ARG_SET(REGNODE_p(scan), val - scan);
}
@@ -21583,7 +21583,7 @@ S_regtail_study(pTHX_ RExC_state_t *pRExC_state, regnode_offset p,
(IV)(val - scan)
);
});
- if (PL_reg_off_by_arg[OP(REGNODE_p(scan))]) {
+ if (PL_regnode_off_by_arg[OP(REGNODE_p(scan))]) {
assert((UV) (val - scan) <= U32_MAX);
ARG_SET(REGNODE_p(scan), val - scan);
}
@@ -22958,7 +22958,7 @@ Perl_regnext(pTHX_ regnode *p)
(int)OP(p), (int)REGNODE_MAX);
}
- offset = (PL_reg_off_by_arg[OP(p)] ? ARG(p) : NEXT_OFF(p));
+ offset = (PL_regnode_off_by_arg[OP(p)] ? ARG(p) : NEXT_OFF(p));
if (offset == 0)
return(NULL);
diff --git a/regen/regcomp.pl b/regen/regcomp.pl
index 5c13c93679..7029ca05b1 100644
--- a/regen/regcomp.pl
+++ b/regen/regcomp.pl
@@ -573,12 +573,12 @@ sub print_reg_off_by_arg {
my ($out)= @_;
print $out <<EOP;
-/* PL_reg_off_by_arg[] - Which argument holds the offset to the next node */
+/* PL_regnode_off_by_arg[] - Which argument holds the offset to the next node */
#ifndef DOINIT
-EXTCONST U8 PL_reg_off_by_arg[];
+EXTCONST U8 PL_regnode_off_by_arg[];
#else
-EXTCONST U8 PL_reg_off_by_arg[] = {
+EXTCONST U8 PL_regnode_off_by_arg[] = {
EOP
foreach my $node (@ops) {
diff --git a/regnodes.h b/regnodes.h
index 4d476b9ebc..17314e3e1a 100644
--- a/regnodes.h
+++ b/regnodes.h
@@ -1982,12 +1982,12 @@ EXTCONST U8 PL_regnode_arg_len_varies[] = {
#endif /* DOINIT */
-/* PL_reg_off_by_arg[] - Which argument holds the offset to the next node */
+/* PL_regnode_off_by_arg[] - Which argument holds the offset to the next node */
#ifndef DOINIT
-EXTCONST U8 PL_reg_off_by_arg[];
+EXTCONST U8 PL_regnode_off_by_arg[];
#else
-EXTCONST U8 PL_reg_off_by_arg[] = {
+EXTCONST U8 PL_regnode_off_by_arg[] = {
0, /* END */
0, /* SUCCEED */
0, /* SBOL */