This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
ExtUtils::CBuilder: On Android, link to both -lperl and $Config{perllibs}
[perl5.git] / op.h
CommitLineData
a0d0e21e 1/* op.h
79072805 2 *
1129b882
NC
3 * Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
4 * 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 by Larry Wall and others
79072805
LW
5 *
6 * You may distribute under the terms of either the GNU General Public
7 * License or the Artistic License, as specified in the README file.
8 *
79072805
LW
9 */
10
11/*
12 * The fields of BASEOP are:
13 * op_next Pointer to next ppcode to execute after this one.
14 * (Top level pre-grafted op points to first op,
15 * but this is replaced when op is grafted in, when
16 * this op will point to the real next op, and the new
17 * parent takes over role of remembering starting op.)
18 * op_ppaddr Pointer to current ppcode's function.
19 * op_type The type of the operation.
2814eb74
PJ
20 * op_opt Whether or not the op has been optimised by the
21 * peephole optimiser.
8be227ab 22 * op_slabbed allocated via opslab
90840c5d
RU
23 * op_static tell op_free() to skip PerlMemShared_free(), when
24 * !op_slabbed.
bb38a9e0 25 * op_savefree on savestack via SAVEFREEOP
3513c740 26 * op_folded Result/remainder of a constant fold operation.
29e61fd9
DM
27 * op_lastsib this op is is the last sibling
28 * op_spare One spare bit
79072805
LW
29 * op_flags Flags common to all operations. See OPf_* below.
30 * op_private Flags peculiar to a particular operation (BUT,
31 * by default, set to the number of children until
32 * the operation is privatized by a check routine,
33 * which may or may not check number of children).
34 */
1850c8f9 35#include "op_reg_common.h"
79072805 36
79072805 37#define OPCODE U16
79072805 38
61a59f30 39typedef PERL_BITFIELD16 Optype;
0053d415 40
0f4eea8f
DL
41#ifdef BASEOP_DEFINITION
42#define BASEOP BASEOP_DEFINITION
43#else
79072805
LW
44#define BASEOP \
45 OP* op_next; \
46 OP* op_sibling; \
16c91539 47 OP* (*op_ppaddr)(pTHX); \
79072805 48 PADOFFSET op_targ; \
654eccd5
JD
49 PERL_BITFIELD16 op_type:9; \
50 PERL_BITFIELD16 op_opt:1; \
8be227ab 51 PERL_BITFIELD16 op_slabbed:1; \
bb38a9e0 52 PERL_BITFIELD16 op_savefree:1; \
90840c5d 53 PERL_BITFIELD16 op_static:1; \
3513c740 54 PERL_BITFIELD16 op_folded:1; \
ea726588 55 PERL_BITFIELD16 op_lastsib:1; \
29e61fd9 56 PERL_BITFIELD16 op_spare:1; \
a0d0e21e
LW
57 U8 op_flags; \
58 U8 op_private;
0f4eea8f 59#endif
79072805 60
0053d415
JD
61/* If op_type:9 is changed to :10, also change PUSHEVAL in cop.h.
62 Also, if the type of op_type is ever changed (e.g. to PERL_BITFIELD32)
63 then all the other bit-fields before/after it should change their
64 types too to let VC pack them into the same 4 byte integer.*/
17347a51 65
fe615074 66/* for efficiency, requires OPf_WANT_VOID == G_VOID etc */
54310121 67#define OP_GIMME(op,dfl) \
fe615074 68 (((op)->op_flags & OPf_WANT) ? ((op)->op_flags & OPf_WANT) : dfl)
54310121 69
2f8edad0 70#define OP_GIMME_REVERSE(flags) ((flags) & G_WANT)
4f911530 71
954c1994 72/*
ccfc67b7
JH
73=head1 "Gimme" Values
74
954c1994
GS
75=for apidoc Amn|U32|GIMME_V
76The XSUB-writer's equivalent to Perl's C<wantarray>. Returns C<G_VOID>,
91e74348 77C<G_SCALAR> or C<G_ARRAY> for void, scalar or list context,
72d33970 78respectively. See L<perlcall> for a usage example.
954c1994
GS
79
80=for apidoc Amn|U32|GIMME
81A backward-compatible version of C<GIMME_V> which can only return
82C<G_SCALAR> or C<G_ARRAY>; in a void context, it returns C<G_SCALAR>.
83Deprecated. Use C<GIMME_V> instead.
84
85=cut
86*/
87
533c011a 88#define GIMME_V OP_GIMME(PL_op, block_gimme())
79072805
LW
89
90/* Public flags */
54310121 91
92#define OPf_WANT 3 /* Mask for "want" bits: */
93#define OPf_WANT_VOID 1 /* Want nothing */
94#define OPf_WANT_SCALAR 2 /* Want single value */
95#define OPf_WANT_LIST 3 /* Want list of any length */
79072805
LW
96#define OPf_KIDS 4 /* There is a firstborn child. */
97#define OPf_PARENS 8 /* This operator was parenthesized. */
463ee0b2 98 /* (Or block needs explicit scope entry.) */
a0d0e21e
LW
99#define OPf_REF 16 /* Certified reference. */
100 /* (Return container, not containee). */
101#define OPf_MOD 32 /* Will modify (lvalue). */
102#define OPf_STACKED 64 /* Some arg is arriving on the stack. */
79072805
LW
103#define OPf_SPECIAL 128 /* Do something weird for this op: */
104 /* On local LVAL, don't init local value. */
105 /* On OP_SORT, subroutine is inlined. */
106 /* On OP_NOT, inversion was implicit. */
a0d0e21e 107 /* On OP_LEAVE, don't restore curpm. */
79072805
LW
108 /* On truncate, we truncate filehandle */
109 /* On control verbs, we saw no label */
110 /* On flipflop, we saw ... instead of .. */
111 /* On UNOPs, saw bare parens, e.g. eof(). */
a0d0e21e 112 /* On OP_ENTERSUB || OP_NULL, saw a "do". */
afebc493 113 /* On OP_EXISTS, treat av as av, not avhv. */
f2ec2afd 114 /* On OP_(ENTER|LEAVE)EVAL, don't clear $@ */
dbc200c5 115 /* On pushre, rx is used as part of split, e.g. split " " */
497711e7 116 /* On regcomp, "use re 'eval'" was in scope */
17fda545
NC
117 /* On RV2[ACGHS]V, don't create GV--in
118 defined()*/
5df8de69
DM
119 /* On OP_DBSTATE, indicates breakpoint
120 * (runtime property) */
6b514a0d 121 /* On OP_REQUIRE, was seen as CORE::require */
fc7debfb
FC
122 /* On OP_(ENTER|LEAVE)WHEN, there's
123 no condition */
0d863452 124 /* On OP_SMARTMATCH, an implicit smartmatch */
78c72037
NC
125 /* On OP_ANONHASH and OP_ANONLIST, create a
126 reference to the new anon hash or array */
9711599e
CS
127 /* On OP_HELEM and OP_HSLICE, localization will be followed
128 by assignment, so do not wipe the target if it is special
129 (e.g. a glob or a magic SV) */
2474a784
FC
130 /* On OP_MATCH, OP_SUBST & OP_TRANS, the
131 operand of a logical or conditional
132 that was optimised away, so it should
133 not be bound via =~ */
6b7c6d95 134 /* On OP_CONST, from a constant CV */
d67594ff
FC
135 /* On OP_GLOB, two meanings:
136 - Before ck_glob, called as CORE::glob
137 - After ck_glob, use Perl glob function
138 */
d5524600 139 /* On OP_PADRANGE, push @_ */
7d1d69cb 140 /* On OP_DUMP, has no label */
79072805 141
54310121 142/* old names; don't use in new code, but don't break them, either */
d91ab173
GS
143#define OPf_LIST OPf_WANT_LIST
144#define OPf_KNOW OPf_WANT
954c1994 145
54310121 146#define GIMME \
62a559b8
NIS
147 (PL_op->op_flags & OPf_WANT \
148 ? ((PL_op->op_flags & OPf_WANT) == OPf_WANT_LIST \
d91ab173
GS
149 ? G_ARRAY \
150 : G_SCALAR) \
151 : dowantarray())
54310121 152
1dafeec8
GG
153/* Lower bits of op_private often carry the number of arguments, as
154 * set by newBINOP, newUNOP and ck_fun */
155
894ea76b
FC
156/* NOTE: OP_NEXTSTATE and OP_DBSTATE (i.e. COPs) carry NATIVE_HINTS
157 * in op_private */
d41ff1b8 158
a0d0e21e 159/* Private for lvalues */
cd06dffe 160#define OPpLVAL_INTRO 128 /* Lvalue must be localized or lvalue sub */
a0d0e21e 161
1dafeec8
GG
162/* Private for OPs with TARGLEX */
163 /* (lower bits may carry MAXARG) */
164#define OPpTARGET_MY 16 /* Target is PADMY. */
165
7934575e
GS
166/* Private for OP_LEAVE, OP_LEAVESUB, OP_LEAVESUBLV and OP_LEAVEWRITE */
167#define OPpREFCOUNTED 64 /* op_targ carries a refcount */
168
a373464f 169/* Private for OP_LEAVE and OP_LEAVELOOP */
4c3ed741
FC
170#define OPpLVALUE 128 /* Do not copy return value */
171
a0d0e21e
LW
172/* Private for OP_AASSIGN */
173#define OPpASSIGN_COMMON 64 /* Left & right have syms in common. */
174
175/* Private for OP_SASSIGN */
176#define OPpASSIGN_BACKWARDS 64 /* Left & right switched. */
e26df76a 177#define OPpASSIGN_CV_TO_GV 128 /* Possible optimisation for constants. */
79072805 178
c657ea3a 179/* Private for OP_MATCH and OP_SUBST{,CONT} */
c90c0ff4 180#define OPpRUNTIME 64 /* Pattern coming in on the stack */
181
79072805 182/* Private for OP_TRANS */
4757a243
LW
183#define OPpTRANS_FROM_UTF 1
184#define OPpTRANS_TO_UTF 2
383e7cdd 185#define OPpTRANS_IDENTICAL 4 /* right side is same as left */
4757a243 186#define OPpTRANS_SQUASH 8
59f00321 187 /* 16 is used for OPpTARGET_MY */
4757a243
LW
188#define OPpTRANS_COMPLEMENT 32
189#define OPpTRANS_GROWS 64
59f00321
RGS
190#define OPpTRANS_DELETE 128
191#define OPpTRANS_ALL (OPpTRANS_FROM_UTF|OPpTRANS_TO_UTF|OPpTRANS_IDENTICAL|OPpTRANS_SQUASH|OPpTRANS_COMPLEMENT|OPpTRANS_GROWS|OPpTRANS_DELETE)
79072805
LW
192
193/* Private for OP_REPEAT */
a0d0e21e 194#define OPpREPEAT_DOLIST 64 /* List replication. */
79072805 195
cf2dc985 196/* Private for OP_RV2GV, OP_RV2SV, OP_AELEM, OP_HELEM, OP_PADSV */
314d4778 197#define OPpDEREF (32|64) /* autovivify: Want ref to something: */
5f05dabc 198#define OPpDEREF_AV 32 /* Want ref to AV. */
199#define OPpDEREF_HV 64 /* Want ref to HV. */
200#define OPpDEREF_SV (32|64) /* Want ref to SV. */
777d9014 201
97e1065a
FC
202/* OP_ENTERSUB and OP_RV2CV flags
203
204Flags are set on entersub and rv2cv in three phases:
205 parser - the parser passes the flag to the op constructor
206 check - the check routine called by the op constructor sets the flag
207 context - application of scalar/ref/lvalue context applies the flag
208
209In the third stage, an entersub op might turn into an rv2cv op (undef &foo,
210\&foo, lock &foo, exists &foo, defined &foo). The two places where that
211happens (op_lvalue_flags and doref in op.c) need to make sure the flags do
212not conflict. Flags applied in the context phase are only set when there
213is no conversion of op type.
214
215 bit entersub flag phase rv2cv flag phase
216 --- ------------- ----- ---------- -----
217 1 OPpENTERSUB_INARGS context OPpMAY_RETURN_CONSTANT context
218 2 HINT_STRICT_REFS check HINT_STRICT_REFS check
219 4 OPpENTERSUB_HASTARG check
220 8 OPpENTERSUB_AMPER parser
221 16 OPpENTERSUB_DB check
222 32 OPpDEREF_AV context
223 64 OPpDEREF_HV context
224 128 OPpLVAL_INTRO context OPpENTERSUB_NOPAREN parser
225
226*/
227
68dc0745 228 /* OP_ENTERSUB only */
229#define OPpENTERSUB_DB 16 /* Debug subroutine. */
6c5d4499
GG
230#define OPpENTERSUB_HASTARG 4 /* Called from OP tree. */
231#define OPpENTERSUB_INARGS 1 /* Lval used as arg to a sub. */
0e9700df 232/* used by OPpDEREF (32|64) */
81db4439 233/* used by HINT_STRICT_REFS 2 */
777d9014
FC
234 /* Mask for OP_ENTERSUB flags, the absence of which must be propagated
235 in dynamic context */
236#define OPpENTERSUB_LVAL_MASK (OPpLVAL_INTRO|OPpENTERSUB_INARGS)
237
d4ddbae8 238 /* OP_RV2CV only */
68dc0745 239#define OPpENTERSUB_AMPER 8 /* Used & form to call. */
9675f7ac 240#define OPpENTERSUB_NOPAREN 128 /* bare sub call (without parens) */
d4ddbae8
FC
241#define OPpMAY_RETURN_CONSTANT 1 /* If a constant sub, return the constant */
242
76cd736e
GS
243 /* OP_GV only */
244#define OPpEARLY_CV 32 /* foo() called before sub foo was parsed */
68dc0745 245 /* OP_?ELEM only */
246#define OPpLVAL_DEFER 16 /* Defer creation of array/hash elem */
2186f873
FC
247 /* OP_RV2[AH]V OP_[AH]SLICE */
248#define OPpSLICEWARNING 4 /* warn about @hash{$scalar} */
8dc99089 249 /* OP_RV2[SAH]V, OP_GVSV, OP_ENTERITER only */
78f9721b 250#define OPpOUR_INTRO 16 /* Variable was in an our() */
6a8709a6
FC
251 /* OP_RV2[AGH]V, OP_PAD[AH]V, OP_[AH]ELEM, OP_[AH]SLICE OP_AV2ARYLEN,
252 OP_R?KEYS, OP_SUBSTR, OP_POS, OP_VEC */
78f9721b 253#define OPpMAYBE_LVSUB 8 /* We might be an lvalue to return */
6ea72b3a 254 /* OP_RV2HV and OP_PADHV */
c8fe3bdf
FC
255#define OPpTRUEBOOL 32 /* %hash in (%hash || $foo) in
256 void context */
adc42c31 257#define OPpMAYBE_TRUEBOOL 64 /* %hash in (%hash || $foo) where
6ea72b3a 258 cx is not known till run time */
24fcb59f
FC
259
260 /* OP_SUBSTR only */
261#define OPpSUBSTR_REPL_FIRST 16 /* 1st arg is replacement string */
262
952306ac
RGS
263 /* OP_PADSV only */
264#define OPpPAD_STATE 16 /* is a "state" pad */
192587c2 265 /* for OP_RV2?V, lower bits carry hints (currently only HINT_STRICT_REFS) */
79072805 266
a7fd8ef6
DM
267 /* OP_PADRANGE only */
268 /* bit 7 is OPpLVAL_INTRO */
4e09461c
DM
269#define OPpPADRANGE_COUNTMASK 127 /* bits 6..0 hold target range, */
270#define OPpPADRANGE_COUNTSHIFT 7 /* 7 bits in total */
a7fd8ef6 271
e26df76a 272 /* OP_RV2GV only */
cb0d96b9 273#define OPpDONT_INIT_GV 4 /* Call gv_fetchpv with GV_NOINIT */
e26df76a
NC
274/* (Therefore will return whatever is currently in the symbol table, not
275 guaranteed to be a PVGV) */
8dc99089 276#define OPpALLOW_FAKE 16 /* OK to return fake glob */
e26df76a 277
ef3e5ea9
NC
278/* Private for OP_ENTERITER and OP_ITER */
279#define OPpITER_REVERSED 4 /* for (reverse ...) */
0d863452 280#define OPpITER_DEF 8 /* for $_ or for my $_ */
ef3e5ea9 281
79072805 282/* Private for OP_CONST */
468aa647 283#define OPpCONST_NOVER 2 /* no 6; */
e7fec78e 284#define OPpCONST_SHORTCIRCUIT 4 /* eg the constant 5 in (5 || foo) */
486ec47a 285#define OPpCONST_STRICT 8 /* bareword subject to strict 'subs' */
748a9306 286#define OPpCONST_ENTERED 16 /* Has been entered as symbol. */
a0d0e21e 287#define OPpCONST_BARE 64 /* Was a bare word (filehandle?). */
79072805
LW
288
289/* Private for OP_FLIP/FLOP */
a0d0e21e 290#define OPpFLIP_LINENUM 64 /* Range arg potentially a line num. */
79072805 291
ed6116ce 292/* Private for OP_LIST */
a0d0e21e
LW
293#define OPpLIST_GUESSED 64 /* Guessed that pushmark was needed. */
294
5f05dabc 295/* Private for OP_DELETE */
54310121 296#define OPpSLICE 64 /* Operating on a list of keys */
7332a6c4 297/* Also OPpLVAL_INTRO (128) */
5f05dabc 298
afebc493
GS
299/* Private for OP_EXISTS */
300#define OPpEXISTS_SUB 64 /* Checking for &sub, not {} or []. */
301
9c007264
JH
302/* Private for OP_SORT */
303#define OPpSORT_NUMERIC 1 /* Optimized away { $a <=> $b } */
304#define OPpSORT_INTEGER 2 /* Ditto while under "use integer" */
eb209983 305#define OPpSORT_REVERSE 4 /* Reversed sort */
fe1bc4cf 306#define OPpSORT_INPLACE 8 /* sort in-place; eg @a = sort @a */
eb209983 307#define OPpSORT_DESCEND 16 /* Descending sort */
7b9ef140
RH
308#define OPpSORT_QSORT 32 /* Use quicksort (not mergesort) */
309#define OPpSORT_STABLE 64 /* Use a stable algorithm */
310
484c818f
VP
311/* Private for OP_REVERSE */
312#define OPpREVERSE_INPLACE 8 /* reverse in-place (@a = reverse @a) */
313
16fe6d59
GS
314/* Private for OP_OPEN and OP_BACKTICK */
315#define OPpOPEN_IN_RAW 16 /* binmode(F,":raw") on input fh */
316#define OPpOPEN_IN_CRLF 32 /* binmode(F,":crlf") on input fh */
317#define OPpOPEN_OUT_RAW 64 /* binmode(F,":raw") on output fh */
318#define OPpOPEN_OUT_CRLF 128 /* binmode(F,":crlf") on output fh */
319
97124ef6
FC
320/* Private for COPs */
321#define OPpHUSH_VMSISH 32 /* hush DCL exit msg vmsish mode*/
322/* Note: Used for NATIVE_HINTS (shifted from the values in PL_hints),
323 currently defined by vms/vmsish.h:
324 64
325 128
326 */
327
0d863452 328/* Private for OP_FTXXX */
1af34c76 329#define OPpFT_ACCESS 2 /* use filetest 'access' */
bbd91306
GG
330#define OPpFT_STACKED 4 /* stacked filetest, as "-f" in "-f -x $f" */
331#define OPpFT_STACKING 8 /* stacking filetest, as "-x" in "-f -x $f" */
8db8f6b6 332#define OPpFT_AFTER_t 16 /* previous op was -t */
1af34c76 333
59f00321
RGS
334/* Private for OP_(MAP|GREP)(WHILE|START) */
335#define OPpGREP_LEX 2 /* iterate over lexical $_ */
336
0d863452
RH
337/* Private for OP_ENTEREVAL */
338#define OPpEVAL_HAS_HH 2 /* Does it have a copy of %^H */
802a15e9 339#define OPpEVAL_UNICODE 4
7d789282
FC
340#define OPpEVAL_BYTES 8
341#define OPpEVAL_COPHH 16 /* Construct %^H from cop hints */
a1941760 342#define OPpEVAL_RE_REPARSING 32 /* eval_sv(..., G_RE_REPARSING) */
0d863452 343
84ed0108 344/* Private for OP_CALLER, OP_WANTARRAY and OP_RUNCV */
93f0bc49
FC
345#define OPpOFFBYONE 128 /* Treat caller(1) as caller(2) */
346
e664e0a4 347/* Private for OP_COREARGS */
8dc99089
FC
348/* These must not conflict with OPpDONT_INIT_GV or OPpALLOW_FAKE.
349 See pp.c:S_rv2gv. */
e664e0a4
FC
350#define OPpCOREARGS_DEREF1 1 /* Arg 1 is a handle constructor */
351#define OPpCOREARGS_DEREF2 2 /* Arg 2 is a handle constructor */
cb85b2db 352#define OPpCOREARGS_SCALARMOD 64 /* \$ rather than \[$@%*] */
0b19d81a 353#define OPpCOREARGS_PUSHMARK 128 /* Call pp_pushmark */
e664e0a4 354
5db1eb8d
BF
355/* Private for OP_(LAST|REDO|NEXT|GOTO|DUMP) */
356#define OPpPV_IS_UTF8 128 /* label is in UTF8 */
357
60041a09
FC
358/* Private for OP_SPLIT */
359#define OPpSPLIT_IMPLIM 128 /* implicit limit */
360
79072805
LW
361struct op {
362 BASEOP
363};
364
365struct unop {
366 BASEOP
367 OP * op_first;
368};
369
370struct binop {
371 BASEOP
372 OP * op_first;
373 OP * op_last;
374};
375
376struct logop {
377 BASEOP
378 OP * op_first;
379 OP * op_other;
380};
381
79072805
LW
382struct listop {
383 BASEOP
384 OP * op_first;
385 OP * op_last;
79072805
LW
386};
387
388struct pmop {
389 BASEOP
390 OP * op_first;
391 OP * op_last;
1fcf4c12 392#ifdef USE_ITHREADS
784e50c8 393 PADOFFSET op_pmoffset;
1fcf4c12
AB
394#else
395 REGEXP * op_pmregexp; /* compiled expression */
396#endif
69bdead3 397 U32 op_pmflags;
29f2e912 398 union {
20e98b0f
NC
399 OP * op_pmreplroot; /* For OP_SUBST */
400#ifdef USE_ITHREADS
401 PADOFFSET op_pmtargetoff; /* For OP_PUSHRE */
402#else
403 GV * op_pmtargetgv;
404#endif
405 } op_pmreplrootu;
406 union {
29f2e912 407 OP * op_pmreplstart; /* Only used in OP_SUBST */
cb55de95 408#ifdef USE_ITHREADS
23083432 409 PADOFFSET op_pmstashoff; /* Only used in OP_MATCH, with PMf_ONCE set */
cb55de95 410#else
29f2e912 411 HV * op_pmstash;
cb55de95 412#endif
29f2e912 413 } op_pmstashstartu;
68e2671b 414 OP * op_code_list; /* list of (?{}) code blocks */
79072805 415};
a0d0e21e 416
1fcf4c12 417#ifdef USE_ITHREADS
14a49a24
NC
418#define PM_GETRE(o) (SvTYPE(PL_regex_pad[(o)->op_pmoffset]) == SVt_REGEXP \
419 ? (REGEXP*)(PL_regex_pad[(o)->op_pmoffset]) : NULL)
ede1273d
NC
420/* The assignment is just to enforce type safety (or at least get a warning).
421 */
14a49a24
NC
422/* With first class regexps not via a reference one needs to assign
423 &PL_sv_undef under ithreads. (This would probably work unthreaded, but NULL
424 is cheaper. I guess we could allow NULL, but the check above would get
425 more complex, and we'd have an AV with (SV*)NULL in it, which feels bad */
426/* BEWARE - something that calls this macro passes (r) which has a side
427 effect. */
ede1273d 428#define PM_SETRE(o,r) STMT_START { \
b1bc3f34 429 REGEXP *const _pm_setre = (r); \
7948fc08 430 assert(_pm_setre); \
b1bc3f34 431 PL_regex_pad[(o)->op_pmoffset] = MUTABLE_SV(_pm_setre); \
ede1273d 432 } STMT_END
1fcf4c12 433#else
b9ed2502
AB
434#define PM_GETRE(o) ((o)->op_pmregexp)
435#define PM_SETRE(o,r) ((o)->op_pmregexp = (r))
1fcf4c12 436#endif
4825b64b 437
beae72ee
KW
438/* Leave some space, so future bit allocations can go either in the shared or
439 * unshared area without affecting binary compatibility */
df7a8460 440#define PMf_BASE_SHIFT (_RXf_PMf_SHIFT_NEXT+6)
f4a4cecb 441
ef07e810 442/* 'use re "taint"' in scope: taint $1 etc. if target tainted */
1ad4ec54 443#define PMf_RETAINT (1<<(PMf_BASE_SHIFT+0))
c737faaf 444
c0f1c194
KW
445/* match successfully only once per reset, with related flag RXf_USED in
446 * re->extflags holding state. This is used only for ?? matches, and only on
447 * OP_MATCH and OP_QR */
1ad4ec54 448#define PMf_ONCE (1<<(PMf_BASE_SHIFT+1))
1850c8f9 449
d234778b 450/* PMf_ONCE, i.e. ?pat?, has matched successfully. Not used under threading. */
1ad4ec54 451#define PMf_USED (1<<(PMf_BASE_SHIFT+3))
1850c8f9
KW
452
453/* subst replacement is constant */
1ad4ec54 454#define PMf_CONST (1<<(PMf_BASE_SHIFT+4))
c737faaf 455
1850c8f9 456/* keep 1st runtime pattern forever */
1ad4ec54 457#define PMf_KEEP (1<<(PMf_BASE_SHIFT+5))
4da3eb8b 458
1ad4ec54 459#define PMf_GLOBAL (1<<(PMf_BASE_SHIFT+6)) /* pattern had a g modifier */
c737faaf 460
1850c8f9 461/* don't reset pos() if //g fails */
1ad4ec54 462#define PMf_CONTINUE (1<<(PMf_BASE_SHIFT+7))
1850c8f9
KW
463
464/* evaluating replacement as expr */
1ad4ec54 465#define PMf_EVAL (1<<(PMf_BASE_SHIFT+8))
c0f1c194
KW
466
467/* Return substituted string instead of modifying it. */
1ad4ec54 468#define PMf_NONDESTRUCT (1<<(PMf_BASE_SHIFT+9))
e357fc67 469
d63c20f2
DM
470/* the pattern has a CV attached (currently only under qr/...(?{}).../) */
471#define PMf_HAS_CV (1<<(PMf_BASE_SHIFT+10))
472
867940b8
DM
473/* op_code_list is private; don't free it etc. It may well point to
474 * code within another sub, with different pad etc */
475#define PMf_CODELIST_PRIVATE (1<<(PMf_BASE_SHIFT+11))
476
2a92a973
DM
477/* the PMOP is a QR (we should be able to detect that from the op type,
478 * but the regex compilation API passes just the pm flags, not the op
479 * itself */
480#define PMf_IS_QR (1<<(PMf_BASE_SHIFT+12))
a5ae69f0 481#define PMf_USE_RE_EVAL (1<<(PMf_BASE_SHIFT+13)) /* use re'eval' in scope */
2a92a973 482
a5ae69f0 483#if PMf_BASE_SHIFT+13 > 31
32cdcf9d 484# error Too many PMf_ bits used. See above and regnodes.h for any spare in middle
1850c8f9 485#endif
79072805 486
cb55de95 487#ifdef USE_ITHREADS
05ec9bb3 488
23083432
FC
489# define PmopSTASH(o) ((o)->op_pmflags & PMf_ONCE \
490 ? PL_stashpad[(o)->op_pmstashstartu.op_pmstashoff] \
491 : NULL)
492# define PmopSTASH_set(o,hv) \
493 (assert_((o)->op_pmflags & PMf_ONCE) \
494 (o)->op_pmstashstartu.op_pmstashoff = \
01f44973 495 (hv) ? alloccopstash(hv) : 0)
cb55de95 496#else
29f2e912
NC
497# define PmopSTASH(o) \
498 (((o)->op_pmflags & PMf_ONCE) ? (o)->op_pmstashstartu.op_pmstash : NULL)
499# if defined (DEBUGGING) && defined(__GNUC__) && !defined(PERL_GCC_BRACE_GROUPS_FORBIDDEN)
500# define PmopSTASH_set(o,hv) ({ \
501 assert((o)->op_pmflags & PMf_ONCE); \
502 ((o)->op_pmstashstartu.op_pmstash = (hv)); \
503 })
504# else
505# define PmopSTASH_set(o,hv) ((o)->op_pmstashstartu.op_pmstash = (hv))
506# endif
cb55de95 507#endif
23083432
FC
508#define PmopSTASHPV(o) (PmopSTASH(o) ? HvNAME_get(PmopSTASH(o)) : NULL)
509 /* op_pmstashstartu.op_pmstash is not refcounted */
510#define PmopSTASHPV_set(o,pv) PmopSTASH_set((o), gv_stashpv(pv,GV_ADD))
cb55de95 511
79072805
LW
512struct svop {
513 BASEOP
514 SV * op_sv;
515};
516
7934575e 517struct padop {
79072805 518 BASEOP
7934575e 519 PADOFFSET op_padix;
79072805
LW
520};
521
522struct pvop {
523 BASEOP
524 char * op_pv;
525};
526
79072805
LW
527struct loop {
528 BASEOP
529 OP * op_first;
530 OP * op_last;
79072805
LW
531 OP * op_redoop;
532 OP * op_nextop;
533 OP * op_lastop;
534};
535
350de78d
GS
536#define cUNOPx(o) ((UNOP*)o)
537#define cBINOPx(o) ((BINOP*)o)
538#define cLISTOPx(o) ((LISTOP*)o)
539#define cLOGOPx(o) ((LOGOP*)o)
540#define cPMOPx(o) ((PMOP*)o)
541#define cSVOPx(o) ((SVOP*)o)
542#define cPADOPx(o) ((PADOP*)o)
543#define cPVOPx(o) ((PVOP*)o)
544#define cCOPx(o) ((COP*)o)
545#define cLOOPx(o) ((LOOP*)o)
546
547#define cUNOP cUNOPx(PL_op)
548#define cBINOP cBINOPx(PL_op)
549#define cLISTOP cLISTOPx(PL_op)
550#define cLOGOP cLOGOPx(PL_op)
551#define cPMOP cPMOPx(PL_op)
552#define cSVOP cSVOPx(PL_op)
553#define cPADOP cPADOPx(PL_op)
554#define cPVOP cPVOPx(PL_op)
555#define cCOP cCOPx(PL_op)
556#define cLOOP cLOOPx(PL_op)
557
558#define cUNOPo cUNOPx(o)
559#define cBINOPo cBINOPx(o)
560#define cLISTOPo cLISTOPx(o)
561#define cLOGOPo cLOGOPx(o)
562#define cPMOPo cPMOPx(o)
563#define cSVOPo cSVOPx(o)
564#define cPADOPo cPADOPx(o)
565#define cPVOPo cPVOPx(o)
566#define cCOPo cCOPx(o)
567#define cLOOPo cLOOPx(o)
568
569#define kUNOP cUNOPx(kid)
570#define kBINOP cBINOPx(kid)
571#define kLISTOP cLISTOPx(kid)
572#define kLOGOP cLOGOPx(kid)
573#define kPMOP cPMOPx(kid)
574#define kSVOP cSVOPx(kid)
575#define kPADOP cPADOPx(kid)
576#define kPVOP cPVOPx(kid)
577#define kCOP cCOPx(kid)
578#define kLOOP cLOOPx(kid)
579
580
581#ifdef USE_ITHREADS
dd2155a4 582# define cGVOPx_gv(o) ((GV*)PAD_SVl(cPADOPx(o)->op_padix))
cecf5685
NC
583# define IS_PADGV(v) (v && SvTYPE(v) == SVt_PVGV && isGV_with_GP(v) \
584 && GvIN_PAD(v))
f5a0fd1e
FC
585# define IS_PADCONST(v) \
586 (v && (SvREADONLY(v) || (SvIsCOW(v) && !SvLEN(v))))
7766f137 587# define cSVOPx_sv(v) (cSVOPx(v)->op_sv \
dd2155a4 588 ? cSVOPx(v)->op_sv : PAD_SVl((v)->op_targ))
638eceb6 589# define cSVOPx_svp(v) (cSVOPx(v)->op_sv \
dd2155a4 590 ? &cSVOPx(v)->op_sv : &PAD_SVl((v)->op_targ))
350de78d 591#else
638eceb6 592# define cGVOPx_gv(o) ((GV*)cSVOPx(o)->op_sv)
743e66e6 593# define IS_PADGV(v) FALSE
7766f137
GS
594# define IS_PADCONST(v) FALSE
595# define cSVOPx_sv(v) (cSVOPx(v)->op_sv)
638eceb6 596# define cSVOPx_svp(v) (&cSVOPx(v)->op_sv)
350de78d 597#endif
79072805 598
638eceb6
GS
599#define cGVOP_gv cGVOPx_gv(PL_op)
600#define cGVOPo_gv cGVOPx_gv(o)
601#define kGVOP_gv cGVOPx_gv(kid)
602#define cSVOP_sv cSVOPx_sv(PL_op)
603#define cSVOPo_sv cSVOPx_sv(o)
604#define kSVOP_sv cSVOPx_sv(kid)
7766f137 605
bcabcc50
NC
606#ifndef PERL_CORE
607# define Nullop ((OP*)NULL)
608#endif
79072805 609
cee4176c 610/* Lowest byte of PL_opargs */
a0d0e21e
LW
611#define OA_MARK 1
612#define OA_FOLDCONST 2
613#define OA_RETSCALAR 4
614#define OA_TARGET 8
903fd87c 615#define OA_TARGLEX 16
a0d0e21e
LW
616#define OA_OTHERINT 32
617#define OA_DANGEROUS 64
618#define OA_DEFGV 128
619
db173bac 620/* The next 4 bits encode op class information */
903fd87c 621#define OCSHIFT 8
b162f9ea
IZ
622
623#define OA_CLASS_MASK (15 << OCSHIFT)
624
625#define OA_BASEOP (0 << OCSHIFT)
626#define OA_UNOP (1 << OCSHIFT)
627#define OA_BINOP (2 << OCSHIFT)
628#define OA_LOGOP (3 << OCSHIFT)
1a67a97c
SM
629#define OA_LISTOP (4 << OCSHIFT)
630#define OA_PMOP (5 << OCSHIFT)
631#define OA_SVOP (6 << OCSHIFT)
7934575e 632#define OA_PADOP (7 << OCSHIFT)
1a67a97c
SM
633#define OA_PVOP_OR_SVOP (8 << OCSHIFT)
634#define OA_LOOP (9 << OCSHIFT)
635#define OA_COP (10 << OCSHIFT)
636#define OA_BASEOP_OR_UNOP (11 << OCSHIFT)
637#define OA_FILESTATOP (12 << OCSHIFT)
638#define OA_LOOPEXOP (13 << OCSHIFT)
b162f9ea 639
903fd87c 640#define OASHIFT 12
a0d0e21e 641
4369b173 642/* Remaining nybbles of PL_opargs */
a0d0e21e
LW
643#define OA_SCALAR 1
644#define OA_LIST 2
645#define OA_AVREF 3
646#define OA_HVREF 4
647#define OA_CVREF 5
648#define OA_FILEREF 6
649#define OA_SCALARREF 7
650#define OA_OPTIONAL 8
651
d3c72c2a
DM
652/* Op_REFCNT is a reference count at the head of each op tree: needed
653 * since the tree is shared between threads, and between cloned closure
654 * copies in the same thread. OP_REFCNT_LOCK/UNLOCK is used when modifying
655 * this count.
656 * The same mutex is used to protect the refcounts of the reg_trie_data
657 * and reg_ac_data structures, which are shared between duplicated
658 * regexes.
659 */
660
534825c4
GS
661#ifdef USE_ITHREADS
662# define OP_REFCNT_INIT MUTEX_INIT(&PL_op_mutex)
4026c95a
SH
663# ifdef PERL_CORE
664# define OP_REFCNT_LOCK MUTEX_LOCK(&PL_op_mutex)
665# define OP_REFCNT_UNLOCK MUTEX_UNLOCK(&PL_op_mutex)
666# else
667# define OP_REFCNT_LOCK op_refcnt_lock()
668# define OP_REFCNT_UNLOCK op_refcnt_unlock()
669# endif
534825c4 670# define OP_REFCNT_TERM MUTEX_DESTROY(&PL_op_mutex)
534825c4
GS
671#else
672# define OP_REFCNT_INIT NOOP
673# define OP_REFCNT_LOCK NOOP
674# define OP_REFCNT_UNLOCK NOOP
675# define OP_REFCNT_TERM NOOP
534825c4 676#endif
e4783991 677
282f25c9 678#define OpREFCNT_set(o,n) ((o)->op_targ = (n))
fc97af9c
NC
679#ifdef PERL_DEBUG_READONLY_OPS
680# define OpREFCNT_inc(o) Perl_op_refcnt_inc(aTHX_ o)
681# define OpREFCNT_dec(o) Perl_op_refcnt_dec(aTHX_ o)
682#else
683# define OpREFCNT_inc(o) ((o) ? (++(o)->op_targ, (o)) : NULL)
684# define OpREFCNT_dec(o) (--(o)->op_targ)
685#endif
282f25c9 686
e4783991 687/* flags used by Perl_load_module() */
ec6d81ab
RGS
688#define PERL_LOADMOD_DENY 0x1 /* no Module */
689#define PERL_LOADMOD_NOIMPORT 0x2 /* use Module () */
690#define PERL_LOADMOD_IMPORT_OPS 0x4 /* use Module (...) */
e5dd39fc 691
30d9c59b 692#if defined(PERL_IN_PERLY_C) || defined(PERL_IN_OP_C) || defined(PERL_IN_TOKE_C)
e4c5ccf3 693#define ref(o, type) doref(o, type, TRUE)
a0c21aa1 694#endif
e4c5ccf3 695
5983a79d
BM
696/*
697=head1 Optree Manipulation Functions
698
699=for apidoc Am|OP*|LINKLIST|OP *o
700Given the root of an optree, link the tree in execution order using the
72d33970 701C<op_next> pointers and return the first op executed. If this has
5983a79d 702already been done, it will not be redone, and C<< o->op_next >> will be
72d33970 703returned. If C<< o->op_next >> is not already set, I<o> should be at
5983a79d
BM
704least an C<UNOP>.
705
706=cut
707*/
708
709#define LINKLIST(o) ((o)->op_next ? (o)->op_next : op_linklist((OP*)o))
710
33f36c71
NC
711/* no longer used anywhere in core */
712#ifndef PERL_CORE
46471bde 713#define cv_ckproto(cv, gv, p) \
f717afa7 714 cv_ckproto_len_flags((cv), (gv), (p), (p) ? strlen(p) : 0, 0)
33f36c71
NC
715#endif
716
7d0905b9
NC
717#ifdef PERL_CORE
718# define my(o) my_attrs((o), NULL)
719#endif
720
e5dd39fc 721#ifdef USE_REENTRANT_API
10bc17b6 722#include "reentr.h"
e5dd39fc
AB
723#endif
724
c7e45529 725#define NewOp(m,var,c,type) \
e91d68d5 726 (var = (type *) Perl_Slab_Alloc(aTHX_ c*sizeof(type)))
c7e45529 727#define NewOpSz(m,var,size) \
e91d68d5 728 (var = (OP *) Perl_Slab_Alloc(aTHX_ size))
c7e45529 729#define FreeOp(p) Perl_Slab_Free(aTHX_ p)
8be227ab
FC
730
731/*
732 * The per-CV op slabs consist of a header (the opslab struct) and a bunch
733 * of space for allocating op slots, each of which consists of two pointers
734 * followed by an op. The first pointer points to the next op slot. The
735 * second points to the slab. At the end of the slab is a null pointer,
736 * so that slot->opslot_next - slot can be used to determine the size
737 * of the op.
738 *
739 * Each CV can have multiple slabs; opslab_next points to the next slab, to
740 * form a chain. All bookkeeping is done on the first slab, which is where
741 * all the op slots point.
742 *
743 * Freed ops are marked as freed and attached to the freed chain
744 * via op_next pointers.
745 *
746 * When there is more than one slab, the second slab in the slab chain is
747 * assumed to be the one with free space available. It is used when allo-
748 * cating an op if there are no freed ops available or big enough.
749 */
750
7aef8e5b 751#ifdef PERL_CORE
8be227ab
FC
752struct opslot {
753 /* keep opslot_next first */
754 OPSLOT * opslot_next; /* next slot */
755 OPSLAB * opslot_slab; /* owner */
756 OP opslot_op; /* the op itself */
757};
758
759struct opslab {
760 OPSLOT * opslab_first; /* first op in this slab */
761 OPSLAB * opslab_next; /* next slab */
762 OP * opslab_freed; /* chain of freed ops */
763 size_t opslab_refcnt; /* number of ops */
3107b51f
FC
764# ifdef PERL_DEBUG_READONLY_OPS
765 U16 opslab_size; /* size of slab in pointers */
766 bool opslab_readonly;
767# endif
8be227ab
FC
768 OPSLOT opslab_slots; /* slots begin here */
769};
770
771# define OPSLOT_HEADER STRUCT_OFFSET(OPSLOT, opslot_op)
772# define OPSLOT_HEADER_P (OPSLOT_HEADER/sizeof(I32 *))
c7724415 773# define OpSLOT(o) (assert_(o->op_slabbed) \
8be227ab 774 (OPSLOT *)(((char *)o)-OPSLOT_HEADER))
8be227ab
FC
775# define OpSLAB(o) OpSLOT(o)->opslot_slab
776# define OpslabREFCNT_dec(slab) \
777 (((slab)->opslab_refcnt == 1) \
778 ? opslab_free_nopad(slab) \
779 : (void)--(slab)->opslab_refcnt)
780 /* Variant that does not null out the pads */
781# define OpslabREFCNT_dec_padok(slab) \
782 (((slab)->opslab_refcnt == 1) \
783 ? opslab_free(slab) \
784 : (void)--(slab)->opslab_refcnt)
c7e45529 785#endif
598921a7 786
1930840b 787struct block_hooks {
52db365a 788 U32 bhk_flags;
1930840b
BM
789 void (*bhk_start) (pTHX_ int full);
790 void (*bhk_pre_end) (pTHX_ OP **seq);
791 void (*bhk_post_end) (pTHX_ OP **seq);
52db365a 792 void (*bhk_eval) (pTHX_ OP *const saveop);
1930840b
BM
793};
794
fd85fad2
BM
795/*
796=head1 Compile-time scope hooks
797
3e4ddde5 798=for apidoc mx|U32|BhkFLAGS|BHK *hk
fd85fad2
BM
799Return the BHK's flags.
800
3e4ddde5 801=for apidoc mx|void *|BhkENTRY|BHK *hk|which
72d33970
FC
802Return an entry from the BHK structure. I<which> is a preprocessor token
803indicating which entry to return. If the appropriate flag is not set
804this will return NULL. The type of the return value depends on which
fd85fad2
BM
805entry you ask for.
806
3e4ddde5 807=for apidoc Amx|void|BhkENTRY_set|BHK *hk|which|void *ptr
fd85fad2 808Set an entry in the BHK structure, and set the flags to indicate it is
72d33970 809valid. I<which> is a preprocessing token indicating which entry to set.
fd85fad2
BM
810The type of I<ptr> depends on the entry.
811
3e4ddde5 812=for apidoc Amx|void|BhkDISABLE|BHK *hk|which
a3e07c87 813Temporarily disable an entry in this BHK structure, by clearing the
72d33970 814appropriate flag. I<which> is a preprocessor token indicating which
a3e07c87
BM
815entry to disable.
816
3e4ddde5 817=for apidoc Amx|void|BhkENABLE|BHK *hk|which
a3e07c87 818Re-enable an entry in this BHK structure, by setting the appropriate
72d33970 819flag. I<which> is a preprocessor token indicating which entry to enable.
a3e07c87
BM
820This will assert (under -DDEBUGGING) if the entry doesn't contain a valid
821pointer.
822
3e4ddde5 823=for apidoc mx|void|CALL_BLOCK_HOOKS|which|arg
72d33970 824Call all the registered block hooks for type I<which>. I<which> is a
fd85fad2
BM
825preprocessing token; the type of I<arg> depends on I<which>.
826
827=cut
828*/
829
52db365a
BM
830#define BhkFLAGS(hk) ((hk)->bhk_flags)
831
a88d97bf
BM
832#define BHKf_bhk_start 0x01
833#define BHKf_bhk_pre_end 0x02
834#define BHKf_bhk_post_end 0x04
835#define BHKf_bhk_eval 0x08
52db365a
BM
836
837#define BhkENTRY(hk, which) \
a88d97bf 838 ((BhkFLAGS(hk) & BHKf_ ## which) ? ((hk)->which) : NULL)
52db365a 839
a3e07c87
BM
840#define BhkENABLE(hk, which) \
841 STMT_START { \
842 BhkFLAGS(hk) |= BHKf_ ## which; \
843 assert(BhkENTRY(hk, which)); \
844 } STMT_END
845
846#define BhkDISABLE(hk, which) \
847 STMT_START { \
848 BhkFLAGS(hk) &= ~(BHKf_ ## which); \
849 } STMT_END
850
52db365a
BM
851#define BhkENTRY_set(hk, which, ptr) \
852 STMT_START { \
a88d97bf 853 (hk)->which = ptr; \
a3e07c87 854 BhkENABLE(hk, which); \
52db365a
BM
855 } STMT_END
856
1930840b
BM
857#define CALL_BLOCK_HOOKS(which, arg) \
858 STMT_START { \
859 if (PL_blockhooks) { \
c70927a6 860 SSize_t i; \
b9f2b683 861 for (i = av_tindex(PL_blockhooks); i >= 0; i--) { \
1930840b 862 SV *sv = AvARRAY(PL_blockhooks)[i]; \
52db365a 863 BHK *hk; \
1930840b
BM
864 \
865 assert(SvIOK(sv)); \
866 if (SvUOK(sv)) \
52db365a 867 hk = INT2PTR(BHK *, SvUVX(sv)); \
1930840b 868 else \
52db365a 869 hk = INT2PTR(BHK *, SvIVX(sv)); \
1930840b 870 \
52db365a 871 if (BhkENTRY(hk, which)) \
16c91539 872 BhkENTRY(hk, which)(aTHX_ arg); \
1930840b
BM
873 } \
874 } \
875 } STMT_END
876
d9088386
Z
877/* flags for rv2cv_op_cv */
878
879#define RV2CVOPCV_MARK_EARLY 0x00000001
880#define RV2CVOPCV_RETURN_NAME_GV 0x00000002
881
d3d7d28f
FC
882#define op_lvalue(op,t) Perl_op_lvalue_flags(aTHX_ op,t,0)
883
f5d552b4
FC
884/* flags for op_lvalue_flags */
885
886#define OP_LVALUE_NO_CROAK 1
887
9733086d
BM
888/*
889=head1 Custom Operators
890
891=for apidoc Am|U32|XopFLAGS|XOP *xop
892Return the XOP's flags.
893
894=for apidoc Am||XopENTRY|XOP *xop|which
72d33970
FC
895Return a member of the XOP structure. I<which> is a cpp token
896indicating which entry to return. If the member is not set
897this will return a default value. The return type depends
898on I<which>. This macro evaluates its arguments more than
899once. If you are using C<Perl_custom_op_xop> to retreive a
ae103e09
DD
900C<XOP *> from a C<OP *>, use the more efficient L</XopENTRYCUSTOM> instead.
901
902=for apidoc Am||XopENTRYCUSTOM|const OP *o|which
903Exactly like C<XopENTRY(XopENTRY(Perl_custom_op_xop(aTHX_ o), which)> but more
72d33970 904efficient. The I<which> parameter is identical to L</XopENTRY>.
9733086d
BM
905
906=for apidoc Am|void|XopENTRY_set|XOP *xop|which|value
72d33970
FC
907Set a member of the XOP structure. I<which> is a cpp token
908indicating which entry to set. See L<perlguts/"Custom Operators">
909for details about the available members and how
910they are used. This macro evaluates its argument
ae103e09 911more than once.
9733086d
BM
912
913=for apidoc Am|void|XopDISABLE|XOP *xop|which
914Temporarily disable a member of the XOP, by clearing the appropriate flag.
915
916=for apidoc Am|void|XopENABLE|XOP *xop|which
917Reenable a member of the XOP which has been disabled.
918
919=cut
920*/
921
1830b3d9
BM
922struct custom_op {
923 U32 xop_flags;
924 const char *xop_name;
925 const char *xop_desc;
926 U32 xop_class;
927 void (*xop_peep)(pTHX_ OP *o, OP *oldop);
928};
929
ae103e09
DD
930/* return value of Perl_custom_op_get_field, similar to void * then casting but
931 the U32 doesn't need truncation on 64 bit platforms in the caller, also
932 for easier macro writing */
933typedef union {
934 const char *xop_name;
935 const char *xop_desc;
936 U32 xop_class;
937 void (*xop_peep)(pTHX_ OP *o, OP *oldop);
938 XOP *xop_ptr;
939} XOPRETANY;
940
1830b3d9
BM
941#define XopFLAGS(xop) ((xop)->xop_flags)
942
943#define XOPf_xop_name 0x01
944#define XOPf_xop_desc 0x02
945#define XOPf_xop_class 0x04
946#define XOPf_xop_peep 0x08
947
ae103e09
DD
948/* used by Perl_custom_op_get_field for option checking */
949typedef enum {
950 XOPe_xop_ptr = 0, /* just get the XOP *, don't look inside it */
951 XOPe_xop_name = XOPf_xop_name,
952 XOPe_xop_desc = XOPf_xop_desc,
953 XOPe_xop_class = XOPf_xop_class,
4a3798ca 954 XOPe_xop_peep = XOPf_xop_peep
ae103e09
DD
955} xop_flags_enum;
956
1830b3d9
BM
957#define XOPd_xop_name PL_op_name[OP_CUSTOM]
958#define XOPd_xop_desc PL_op_desc[OP_CUSTOM]
959#define XOPd_xop_class OA_BASEOP
960#define XOPd_xop_peep ((Perl_cpeep_t)0)
961
962#define XopENTRY_set(xop, which, to) \
963 STMT_START { \
964 (xop)->which = (to); \
965 (xop)->xop_flags |= XOPf_ ## which; \
966 } STMT_END
967
968#define XopENTRY(xop, which) \
969 ((XopFLAGS(xop) & XOPf_ ## which) ? (xop)->which : XOPd_ ## which)
970
ae103e09
DD
971#define XopENTRYCUSTOM(o, which) \
972 (Perl_custom_op_get_field(aTHX_ o, XOPe_ ## which).which)
973
1830b3d9
BM
974#define XopDISABLE(xop, which) ((xop)->xop_flags &= ~XOPf_ ## which)
975#define XopENABLE(xop, which) \
976 STMT_START { \
977 (xop)->xop_flags |= XOPf_ ## which; \
978 assert(XopENTRY(xop, which)); \
979 } STMT_END
980
ae103e09
DD
981#define Perl_custom_op_xop(x) \
982 (Perl_custom_op_get_field(x, XOPe_xop_ptr).xop_ptr)
983
9733086d
BM
984/*
985=head1 Optree Manipulation Functions
986
987=for apidoc Am|const char *|OP_NAME|OP *o
72d33970 988Return the name of the provided OP. For core ops this looks up the name
9733086d
BM
989from the op_type; for custom ops from the op_ppaddr.
990
991=for apidoc Am|const char *|OP_DESC|OP *o
992Return a short description of the provided OP.
993
994=for apidoc Am|U32|OP_CLASS|OP *o
995Return the class of the provided OP: that is, which of the *OP
72d33970 996structures it uses. For core ops this currently gets the information out
9733086d
BM
997of PL_opargs, which does not always accurately reflect the type used.
998For custom ops the type is returned from the registration, and it is up
72d33970 999to the registree to ensure it is accurate. The value returned will be
9733086d
BM
1000one of the OA_* constants from op.h.
1001
437e3a7d 1002=for apidoc Am|bool|OP_TYPE_IS|OP *o, Optype type
11ee9dd6
S
1003Returns true if the given OP is not a NULL pointer
1004and if it is of the given type.
1005
1006The negation of this macro, C<OP_TYPE_ISNT> is also available
1007as well as C<OP_TYPE_IS_NN> and C<OP_TYPE_ISNT_NN> which elide
1008the NULL pointer check.
1009
1010=for apidoc Am|bool|OP_TYPE_IS_OR_WAS|OP *o, Optype type
1011Returns true if the given OP is not a NULL pointer and
1012if it is of the given type or used to be before being
1013replaced by an OP of type OP_NULL.
1014
1015The negation of this macro, C<OP_TYPE_ISNT_AND_WASNT>
1016is also available as well as C<OP_TYPE_IS_OR_WAS_NN>
1017and C<OP_TYPE_ISNT_AND_WASNT_NN> which elide
1018the NULL pointer check.
1019
1ed44841
DM
1020=for apidoc Am|bool|OP_HAS_SIBLING|OP *o
1021Returns true if o has a sibling
1022
1023=for apidoc Am|bool|OP_SIBLING|OP *o
1024Returns the sibling of o, or NULL if there is no sibling
1025
1026=for apidoc Am|bool|OP_SIBLING_set|OP *o|OP *sib
1027Sets the sibling of o to sib
1028
9733086d
BM
1029=cut
1030*/
1031
1830b3d9 1032#define OP_NAME(o) ((o)->op_type == OP_CUSTOM \
ae103e09 1033 ? XopENTRYCUSTOM(o, xop_name) \
1830b3d9
BM
1034 : PL_op_name[(o)->op_type])
1035#define OP_DESC(o) ((o)->op_type == OP_CUSTOM \
ae103e09 1036 ? XopENTRYCUSTOM(o, xop_desc) \
1830b3d9
BM
1037 : PL_op_desc[(o)->op_type])
1038#define OP_CLASS(o) ((o)->op_type == OP_CUSTOM \
ae103e09 1039 ? XopENTRYCUSTOM(o, xop_class) \
1830b3d9
BM
1040 : (PL_opargs[(o)->op_type] & OA_CLASS_MASK))
1041
437e3a7d 1042#define OP_TYPE_IS(o, type) ((o) && (o)->op_type == (type))
11ee9dd6
S
1043#define OP_TYPE_IS_NN(o, type) ((o)->op_type == (type))
1044#define OP_TYPE_ISNT(o, type) ((o) && (o)->op_type != (type))
1045#define OP_TYPE_ISNT_NN(o, type) ((o)->op_type != (type))
1046
1047#define OP_TYPE_IS_OR_WAS_NN(o, type) \
1048 ( ((o)->op_type == OP_NULL \
1049 ? (o)->op_targ \
1050 : (o)->op_type) \
1051 == (type) )
1052
1053#define OP_TYPE_IS_OR_WAS(o, type) \
1054 ( (o) && OP_TYPE_IS_OR_WAS_NN(o, type) )
1055
1056#define OP_TYPE_ISNT_AND_WASNT_NN(o, type) \
1057 ( ((o)->op_type == OP_NULL \
1058 ? (o)->op_targ \
1059 : (o)->op_type) \
1060 != (type) )
1061
1062#define OP_TYPE_ISNT_AND_WASNT(o, type) \
1063 ( (o) && OP_TYPE_ISNT_AND_WASNT_NN(o, type) )
437e3a7d 1064
29e61fd9
DM
1065#ifdef PERL_OP_PARENT
1066# define OP_HAS_SIBLING(o) (!cBOOL((o)->op_lastsib))
1067# define OP_SIBLING(o) (0 + (o)->op_lastsib ? NULL : (o)->op_sibling)
1068# define OP_SIBLING_set(o, sib) ((o)->op_sibling = (sib))
1069#else
1070# define OP_HAS_SIBLING(o) (cBOOL((o)->op_sibling))
1071# define OP_SIBLING(o) (0 + (o)->op_sibling)
1072# define OP_SIBLING_set(o, sib) ((o)->op_sibling = (sib))
1073#endif
1ed44841 1074
e8f91c91
DD
1075#define newATTRSUB(f, o, p, a, b) Perl_newATTRSUB_x(aTHX_ f, o, p, a, b, FALSE)
1076#define newSUB(f, o, p, b) newATTRSUB((f), (o), (p), NULL, (b))
7bff8c33 1077
3f2908ec 1078/*
e8570548
Z
1079=head1 Hook manipulation
1080*/
1081
1082#ifdef USE_ITHREADS
1083# define OP_CHECK_MUTEX_INIT MUTEX_INIT(&PL_check_mutex)
1084# define OP_CHECK_MUTEX_LOCK MUTEX_LOCK(&PL_check_mutex)
1085# define OP_CHECK_MUTEX_UNLOCK MUTEX_UNLOCK(&PL_check_mutex)
1086# define OP_CHECK_MUTEX_TERM MUTEX_DESTROY(&PL_check_mutex)
1087#else
1088# define OP_CHECK_MUTEX_INIT NOOP
1089# define OP_CHECK_MUTEX_LOCK NOOP
1090# define OP_CHECK_MUTEX_UNLOCK NOOP
1091# define OP_CHECK_MUTEX_TERM NOOP
1092#endif
1093
1094/*
3f2908ec
NC
1095 * Local variables:
1096 * c-indentation-style: bsd
1097 * c-basic-offset: 4
14d04a33 1098 * indent-tabs-mode: nil
3f2908ec
NC
1099 * End:
1100 *
14d04a33 1101 * ex: set ts=8 sts=4 sw=4 et:
3f2908ec 1102 */