This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
document the new flags behaviour and why
[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.)
8514db6f
RL
18 * op_sibparent Pointer to the op's next sibling, or to the parent
19 * if there are no more siblings.
79072805 20 * op_ppaddr Pointer to current ppcode's function.
8514db6f
RL
21 * op_targ An index into the current pad, identifying an SV
22 * that is typically used to store the OP's result
23 * (such as a lexical variable, or a SVs_PADTMP
24 * temporary intermediate value).
79072805 25 * op_type The type of the operation.
2814eb74
PJ
26 * op_opt Whether or not the op has been optimised by the
27 * peephole optimiser.
8be227ab 28 * op_slabbed allocated via opslab
90840c5d
RU
29 * op_static tell op_free() to skip PerlMemShared_free(), when
30 * !op_slabbed.
bb38a9e0 31 * op_savefree on savestack via SAVEFREEOP
3513c740 32 * op_folded Result/remainder of a constant fold operation.
a3815e44 33 * op_moresib this op is not the last sibling
29e61fd9 34 * op_spare One spare bit
79072805
LW
35 * op_flags Flags common to all operations. See OPf_* below.
36 * op_private Flags peculiar to a particular operation (BUT,
37 * by default, set to the number of children until
38 * the operation is privatized by a check routine,
39 * which may or may not check number of children).
40 */
1850c8f9 41#include "op_reg_common.h"
79072805 42
79072805 43#define OPCODE U16
79072805 44
61a59f30 45typedef PERL_BITFIELD16 Optype;
0053d415 46
0f4eea8f
DL
47#ifdef BASEOP_DEFINITION
48#define BASEOP BASEOP_DEFINITION
49#else
79072805
LW
50#define BASEOP \
51 OP* op_next; \
0f9a6232 52 OP* op_sibparent; \
16c91539 53 OP* (*op_ppaddr)(pTHX); \
79072805 54 PADOFFSET op_targ; \
654eccd5
JD
55 PERL_BITFIELD16 op_type:9; \
56 PERL_BITFIELD16 op_opt:1; \
8be227ab 57 PERL_BITFIELD16 op_slabbed:1; \
bb38a9e0 58 PERL_BITFIELD16 op_savefree:1; \
90840c5d 59 PERL_BITFIELD16 op_static:1; \
3513c740 60 PERL_BITFIELD16 op_folded:1; \
87b5a8b9 61 PERL_BITFIELD16 op_moresib:1; \
29e61fd9 62 PERL_BITFIELD16 op_spare:1; \
a0d0e21e
LW
63 U8 op_flags; \
64 U8 op_private;
0f4eea8f 65#endif
79072805 66
13febba5 67/* If op_type:9 is changed to :10, also change cx_pusheval()
0053d415
JD
68 Also, if the type of op_type is ever changed (e.g. to PERL_BITFIELD32)
69 then all the other bit-fields before/after it should change their
70 types too to let VC pack them into the same 4 byte integer.*/
17347a51 71
fe615074 72/* for efficiency, requires OPf_WANT_VOID == G_VOID etc */
54310121 73#define OP_GIMME(op,dfl) \
1604cfb0 74 (((op)->op_flags & OPf_WANT) ? ((op)->op_flags & OPf_WANT) : dfl)
54310121 75
2f8edad0 76#define OP_GIMME_REVERSE(flags) ((flags) & G_WANT)
4f911530 77
954c1994 78/*
3f620621 79=for apidoc_section $callback
ccfc67b7 80
954c1994
GS
81=for apidoc Amn|U32|GIMME_V
82The XSUB-writer's equivalent to Perl's C<wantarray>. Returns C<G_VOID>,
eb7e169e 83C<G_SCALAR> or C<G_LIST> for void, scalar or list context,
72d33970 84respectively. See L<perlcall> for a usage example.
954c1994 85
eca111b3 86=for apidoc AmnD|U32|GIMME
954c1994 87A backward-compatible version of C<GIMME_V> which can only return
eb7e169e 88C<G_SCALAR> or C<G_LIST>; in a void context, it returns C<G_SCALAR>.
954c1994
GS
89Deprecated. Use C<GIMME_V> instead.
90
91=cut
92*/
93
5b6f7443 94#define GIMME_V Perl_gimme_V(aTHX)
79072805
LW
95
96/* Public flags */
54310121 97
98#define OPf_WANT 3 /* Mask for "want" bits: */
99#define OPf_WANT_VOID 1 /* Want nothing */
100#define OPf_WANT_SCALAR 2 /* Want single value */
101#define OPf_WANT_LIST 3 /* Want list of any length */
79072805
LW
102#define OPf_KIDS 4 /* There is a firstborn child. */
103#define OPf_PARENS 8 /* This operator was parenthesized. */
1604cfb0 104 /* (Or block needs explicit scope entry.) */
a0d0e21e 105#define OPf_REF 16 /* Certified reference. */
1604cfb0 106 /* (Return container, not containee). */
a0d0e21e 107#define OPf_MOD 32 /* Will modify (lvalue). */
72876cce 108
a0d0e21e 109#define OPf_STACKED 64 /* Some arg is arriving on the stack. */
72876cce
DM
110 /* Indicates mutator-variant of op for those
111 * ops which support them, e.g. $x += 1
112 */
113
79072805 114#define OPf_SPECIAL 128 /* Do something weird for this op: */
1604cfb0
MS
115 /* On local LVAL, don't init local value. */
116 /* On OP_SORT, subroutine is inlined. */
117 /* On OP_NOT, inversion was implicit. */
118 /* On OP_LEAVE, don't restore curpm, e.g.
c349b9a0 119 * /(...)/ while ...>; */
1604cfb0
MS
120 /* On truncate, we truncate filehandle */
121 /* On control verbs, we saw no label */
122 /* On flipflop, we saw ... instead of .. */
123 /* On UNOPs, saw bare parens, e.g. eof(). */
124 /* On OP_CHDIR, handle (or bare parens) */
125 /* On OP_NULL, saw a "do". */
126 /* On OP_EXISTS, treat av as av, not avhv. */
127 /* On OP_(ENTER|LEAVE)EVAL, don't clear $@ */
128 /* On regcomp, "use re 'eval'" was in scope */
129 /* On RV2[ACGHS]V, don't create GV--in
130 defined()*/
131 /* On OP_DBSTATE, indicates breakpoint
132 * (runtime property) */
133 /* On OP_REQUIRE, was seen as CORE::require */
134 /* On OP_(ENTER|LEAVE)WHEN, there's
135 no condition */
136 /* On OP_SMARTMATCH, an implicit smartmatch */
137 /* On OP_ANONHASH and OP_ANONLIST, create a
138 reference to the new anon hash or array */
139 /* On OP_HELEM, OP_MULTIDEREF and OP_HSLICE,
fedf30e1
DM
140 localization will be followed by assignment,
141 so do not wipe the target if it is special
142 (e.g. a glob or a magic SV) */
1604cfb0
MS
143 /* On OP_MATCH, OP_SUBST & OP_TRANS, the
144 operand of a logical or conditional
145 that was optimised away, so it should
146 not be bound via =~ */
147 /* On OP_CONST, from a constant CV */
148 /* On OP_GLOB, two meanings:
149 - Before ck_glob, called as CORE::glob
150 - After ck_glob, use Perl glob function
151 */
d5524600 152 /* On OP_PADRANGE, push @_ */
7d1d69cb 153 /* On OP_DUMP, has no label */
205681b5 154 /* On OP_UNSTACK, in a C-style for loop */
16536ca1 155 /* On OP_READLINE, it's for <<>>, not <> */
6d4eed21
FC
156/* There is no room in op_flags for this one, so it has its own bit-
157 field member (op_folded) instead. The flag is only used to tell
158 op_convert_list to set op_folded. */
faab18b6 159#define OPf_FOLDED (1<<16)
79072805 160
54310121 161/* old names; don't use in new code, but don't break them, either */
d91ab173
GS
162#define OPf_LIST OPf_WANT_LIST
163#define OPf_KNOW OPf_WANT
954c1994 164
7143f21c 165#if !defined(PERL_CORE) && !defined(PERL_EXT)
82334630 166# define GIMME \
1604cfb0
MS
167 (PL_op->op_flags & OPf_WANT \
168 ? ((PL_op->op_flags & OPf_WANT) == OPf_WANT_LIST \
eb7e169e 169 ? G_LIST \
1604cfb0
MS
170 : G_SCALAR) \
171 : dowantarray())
82334630 172#endif
54310121 173
1dafeec8 174
f3574cc6
DM
175/* NOTE: OPp* flags are now auto-generated and defined in opcode.h,
176 * from data in regen/op_private */
d41ff1b8 177
a0d0e21e 178
6507ac83
KW
179#define OPpTRANS_ALL (OPpTRANS_USE_SVOP|OPpTRANS_CAN_FORCE_UTF8|OPpTRANS_IDENTICAL|OPpTRANS_SQUASH|OPpTRANS_COMPLEMENT|OPpTRANS_GROWS|OPpTRANS_DELETE)
180#define OPpTRANS_FROM_UTF OPpTRANS_USE_SVOP
181#define OPpTRANS_TO_UTF OPpTRANS_CAN_FORCE_UTF8
97e1065a 182
97e1065a 183
f3574cc6
DM
184/* Mask for OP_ENTERSUB flags, the absence of which must be propagated
185 in dynamic context */
777d9014
FC
186#define OPpENTERSUB_LVAL_MASK (OPpLVAL_INTRO|OPpENTERSUB_INARGS)
187
5db1eb8d 188
2f7c6295 189/* things that can be elements of op_aux */
c0443cc0 190typedef union {
2f7c6295
DM
191 PADOFFSET pad_offset;
192 SV *sv;
193 IV iv;
194 UV uv;
e839e6ed 195 char *pv;
b5bf9f73 196 SSize_t ssize;
2f7c6295
DM
197} UNOP_AUX_item;
198
fedf30e1
DM
199#ifdef USE_ITHREADS
200# define UNOP_AUX_item_sv(item) PAD_SVl((item)->pad_offset);
201#else
202# define UNOP_AUX_item_sv(item) ((item)->sv);
203#endif
204
205
206
60041a09 207
79072805
LW
208struct op {
209 BASEOP
210};
211
212struct unop {
213 BASEOP
214 OP * op_first;
215};
216
2f7c6295
DM
217struct unop_aux {
218 BASEOP
219 OP *op_first;
220 UNOP_AUX_item *op_aux;
221};
222
79072805
LW
223struct binop {
224 BASEOP
225 OP * op_first;
226 OP * op_last;
227};
228
229struct logop {
230 BASEOP
231 OP * op_first;
16676e21
PE
232
233 /* Note that op->op_other is the *next* op in execution order of the
234 * alternate branch, not the root of the subtree. I.e. imagine it being
235 * called ->op_otherfirst.
236 * To find the structural subtree root (what could be called
237 * ->op_otherroot), use OpSIBLING of ->op_first */
79072805
LW
238 OP * op_other;
239};
240
79072805
LW
241struct listop {
242 BASEOP
243 OP * op_first;
244 OP * op_last;
79072805
LW
245};
246
b46e009d 247struct methop {
248 BASEOP
249 union {
250 /* op_u.op_first *must* be aligned the same as the op_first
251 * field of the other op types, and op_u.op_meth_sv *must*
252 * be aligned with op_sv */
253 OP* op_first; /* optree for method name */
254 SV* op_meth_sv; /* static method name */
255 } op_u;
810bd8b7 256#ifdef USE_ITHREADS
257 PADOFFSET op_rclass_targ; /* pad index for redirect class */
258#else
259 SV* op_rclass_sv; /* static redirect class $o->A::meth() */
260#endif
b46e009d 261};
262
79072805
LW
263struct pmop {
264 BASEOP
265 OP * op_first;
266 OP * op_last;
1fcf4c12 267#ifdef USE_ITHREADS
784e50c8 268 PADOFFSET op_pmoffset;
1fcf4c12
AB
269#else
270 REGEXP * op_pmregexp; /* compiled expression */
271#endif
69bdead3 272 U32 op_pmflags;
29f2e912 273 union {
1604cfb0
MS
274 OP * op_pmreplroot; /* For OP_SUBST */
275 PADOFFSET op_pmtargetoff; /* For OP_SPLIT lex ary or thr GV */
276 GV * op_pmtargetgv; /* For OP_SPLIT non-threaded GV */
20e98b0f
NC
277 } op_pmreplrootu;
278 union {
1604cfb0 279 OP * op_pmreplstart; /* Only used in OP_SUBST */
cb55de95 280#ifdef USE_ITHREADS
1604cfb0 281 PADOFFSET op_pmstashoff; /* Only used in OP_MATCH, with PMf_ONCE set */
cb55de95 282#else
1604cfb0 283 HV * op_pmstash;
cb55de95 284#endif
29f2e912 285 } op_pmstashstartu;
68e2671b 286 OP * op_code_list; /* list of (?{}) code blocks */
79072805 287};
a0d0e21e 288
1fcf4c12 289#ifdef USE_ITHREADS
14a49a24 290#define PM_GETRE(o) (SvTYPE(PL_regex_pad[(o)->op_pmoffset]) == SVt_REGEXP \
1604cfb0 291 ? (REGEXP*)(PL_regex_pad[(o)->op_pmoffset]) : NULL)
ede1273d
NC
292/* The assignment is just to enforce type safety (or at least get a warning).
293 */
14a49a24
NC
294/* With first class regexps not via a reference one needs to assign
295 &PL_sv_undef under ithreads. (This would probably work unthreaded, but NULL
296 is cheaper. I guess we could allow NULL, but the check above would get
297 more complex, and we'd have an AV with (SV*)NULL in it, which feels bad */
298/* BEWARE - something that calls this macro passes (r) which has a side
299 effect. */
ede1273d 300#define PM_SETRE(o,r) STMT_START { \
b1bc3f34 301 REGEXP *const _pm_setre = (r); \
7948fc08 302 assert(_pm_setre); \
1604cfb0 303 PL_regex_pad[(o)->op_pmoffset] = MUTABLE_SV(_pm_setre); \
ede1273d 304 } STMT_END
1fcf4c12 305#else
b9ed2502
AB
306#define PM_GETRE(o) ((o)->op_pmregexp)
307#define PM_SETRE(o,r) ((o)->op_pmregexp = (r))
1fcf4c12 308#endif
4825b64b 309
a6cd0fea
KW
310/* Currently these PMf flags occupy a single 32-bit word. Not all bits are
311 * currently used. The lower bits are shared with their corresponding RXf flag
312 * bits, up to but not including _RXf_PMf_SHIFT_NEXT. The unused bits
313 * immediately follow; finally the used Pmf-only (unshared) bits, so that the
314 * highest bit in the word is used. This gathers all the unused bits as a pool
315 * in the middle, like so: 11111111111111110000001111111111
316 * where the '1's represent used bits, and the '0's unused. This design allows
317 * us to allocate off one end of the pool if we need to add a shared bit, and
318 * off the other end if we need a non-shared bit, without disturbing the other
319 * bits. This maximizes the likelihood of being able to change things without
320 * breaking binary compatibility.
321 *
322 * To add shared bits, do so in op_reg_common.h. This should change
323 * _RXf_PMf_SHIFT_NEXT so that things won't compile. Then come to regexp.h and
324 * op.h and adjust the constant adders in the definitions of PMf_BASE_SHIFT and
325 * Pmf_BASE_SHIFT down by the number of shared bits you added. That's it.
326 * Things should be binary compatible. But if either of these gets to having
327 * to subtract rather than add, leave at 0 and adjust all the entries below
328 * that are in terms of this according. But if the first one of those is
329 * already PMf_BASE_SHIFT+0, there are no bits left, and a redesign is in
330 * order.
331 *
332 * To remove unshared bits, just delete its entry. If you're where breaking
333 * binary compatibility is ok to do, you might want to adjust things to move
334 * the newly opened space so that it gets absorbed into the common pool.
335 *
336 * To add unshared bits, first use up any gaps in the middle. Otherwise,
337 * allocate off the low end until you get to PMf_BASE_SHIFT+0. If that isn't
338 * enough, move PMf_BASE_SHIFT down (if possible) and add the new bit at the
339 * other end instead; this preserves binary compatibility. */
d262c0c7 340#define PMf_BASE_SHIFT (_RXf_PMf_SHIFT_NEXT+2)
f4a4cecb 341
7c449856
KW
342/* Set by the parser if it discovers an error, so the regex shouldn't be
343 * compiled */
f0ac8a37 344#define PMf_HAS_ERROR (1U<<(PMf_BASE_SHIFT+3))
7c449856 345
ef07e810 346/* 'use re "taint"' in scope: taint $1 etc. if target tainted */
f0ac8a37 347#define PMf_RETAINT (1U<<(PMf_BASE_SHIFT+4))
c737faaf 348
c0f1c194
KW
349/* match successfully only once per reset, with related flag RXf_USED in
350 * re->extflags holding state. This is used only for ?? matches, and only on
351 * OP_MATCH and OP_QR */
f0ac8a37 352#define PMf_ONCE (1U<<(PMf_BASE_SHIFT+5))
1850c8f9 353
d234778b 354/* PMf_ONCE, i.e. ?pat?, has matched successfully. Not used under threading. */
f0ac8a37 355#define PMf_USED (1U<<(PMf_BASE_SHIFT+6))
1850c8f9
KW
356
357/* subst replacement is constant */
f0ac8a37 358#define PMf_CONST (1U<<(PMf_BASE_SHIFT+7))
c737faaf 359
1850c8f9 360/* keep 1st runtime pattern forever */
f0ac8a37 361#define PMf_KEEP (1U<<(PMf_BASE_SHIFT+8))
4da3eb8b 362
f0ac8a37 363#define PMf_GLOBAL (1U<<(PMf_BASE_SHIFT+9)) /* pattern had a g modifier */
c737faaf 364
1850c8f9 365/* don't reset pos() if //g fails */
f0ac8a37 366#define PMf_CONTINUE (1U<<(PMf_BASE_SHIFT+10))
1850c8f9
KW
367
368/* evaluating replacement as expr */
f0ac8a37 369#define PMf_EVAL (1U<<(PMf_BASE_SHIFT+11))
c0f1c194
KW
370
371/* Return substituted string instead of modifying it. */
f0ac8a37 372#define PMf_NONDESTRUCT (1U<<(PMf_BASE_SHIFT+12))
e357fc67 373
d63c20f2 374/* the pattern has a CV attached (currently only under qr/...(?{}).../) */
f0ac8a37 375#define PMf_HAS_CV (1U<<(PMf_BASE_SHIFT+13))
d63c20f2 376
867940b8
DM
377/* op_code_list is private; don't free it etc. It may well point to
378 * code within another sub, with different pad etc */
f0ac8a37 379#define PMf_CODELIST_PRIVATE (1U<<(PMf_BASE_SHIFT+14))
867940b8 380
2a92a973
DM
381/* the PMOP is a QR (we should be able to detect that from the op type,
382 * but the regex compilation API passes just the pm flags, not the op
383 * itself */
f0ac8a37
KW
384#define PMf_IS_QR (1U<<(PMf_BASE_SHIFT+15))
385#define PMf_USE_RE_EVAL (1U<<(PMf_BASE_SHIFT+16)) /* use re'eval' in scope */
a6cd0fea 386
4829f32d
KW
387/* Means that this is a subpattern being compiled while processing a \p{}
388 * wildcard. This isn't called from op.c, but it is passed as a pm flag. */
389#define PMf_WILDCARD (1U<<(PMf_BASE_SHIFT+17))
390
a6cd0fea
KW
391/* See comments at the beginning of these defines about adding bits. The
392 * highest bit position should be used, so that if PMf_BASE_SHIFT gets
393 * increased, the #error below will be triggered so that you will be reminded
394 * to adjust things at the other end to keep the bit positions unchanged */
395#if PMf_BASE_SHIFT+17 > 31
32cdcf9d 396# error Too many PMf_ bits used. See above and regnodes.h for any spare in middle
1850c8f9 397#endif
79072805 398
cb55de95 399#ifdef USE_ITHREADS
05ec9bb3 400
23083432
FC
401# define PmopSTASH(o) ((o)->op_pmflags & PMf_ONCE \
402 ? PL_stashpad[(o)->op_pmstashstartu.op_pmstashoff] \
403 : NULL)
404# define PmopSTASH_set(o,hv) \
1604cfb0
MS
405 (assert_((o)->op_pmflags & PMf_ONCE) \
406 (o)->op_pmstashstartu.op_pmstashoff = \
407 (hv) ? alloccopstash(hv) : 0)
cb55de95 408#else
29f2e912
NC
409# define PmopSTASH(o) \
410 (((o)->op_pmflags & PMf_ONCE) ? (o)->op_pmstashstartu.op_pmstash : NULL)
041c1a23 411# if defined (DEBUGGING) && defined(PERL_USE_GCC_BRACE_GROUPS)
29f2e912 412# define PmopSTASH_set(o,hv) ({ \
1604cfb0
MS
413 assert((o)->op_pmflags & PMf_ONCE); \
414 ((o)->op_pmstashstartu.op_pmstash = (hv)); \
29f2e912
NC
415 })
416# else
417# define PmopSTASH_set(o,hv) ((o)->op_pmstashstartu.op_pmstash = (hv))
418# endif
cb55de95 419#endif
23083432
FC
420#define PmopSTASHPV(o) (PmopSTASH(o) ? HvNAME_get(PmopSTASH(o)) : NULL)
421 /* op_pmstashstartu.op_pmstash is not refcounted */
422#define PmopSTASHPV_set(o,pv) PmopSTASH_set((o), gv_stashpv(pv,GV_ADD))
cb55de95 423
79072805
LW
424struct svop {
425 BASEOP
426 SV * op_sv;
427};
428
7934575e 429struct padop {
79072805 430 BASEOP
7934575e 431 PADOFFSET op_padix;
79072805
LW
432};
433
434struct pvop {
435 BASEOP
436 char * op_pv;
437};
438
79072805
LW
439struct loop {
440 BASEOP
441 OP * op_first;
442 OP * op_last;
79072805
LW
443 OP * op_redoop;
444 OP * op_nextop;
445 OP * op_lastop;
446};
447
9524b6e6
FC
448#define cUNOPx(o) ((UNOP*)(o))
449#define cUNOP_AUXx(o) ((UNOP_AUX*)(o))
450#define cBINOPx(o) ((BINOP*)(o))
451#define cLISTOPx(o) ((LISTOP*)(o))
452#define cLOGOPx(o) ((LOGOP*)(o))
453#define cPMOPx(o) ((PMOP*)(o))
454#define cSVOPx(o) ((SVOP*)(o))
455#define cPADOPx(o) ((PADOP*)(o))
456#define cPVOPx(o) ((PVOP*)(o))
457#define cCOPx(o) ((COP*)(o))
458#define cLOOPx(o) ((LOOP*)(o))
459#define cMETHOPx(o) ((METHOP*)(o))
350de78d
GS
460
461#define cUNOP cUNOPx(PL_op)
2f7c6295 462#define cUNOP_AUX cUNOP_AUXx(PL_op)
350de78d
GS
463#define cBINOP cBINOPx(PL_op)
464#define cLISTOP cLISTOPx(PL_op)
465#define cLOGOP cLOGOPx(PL_op)
466#define cPMOP cPMOPx(PL_op)
467#define cSVOP cSVOPx(PL_op)
468#define cPADOP cPADOPx(PL_op)
469#define cPVOP cPVOPx(PL_op)
470#define cCOP cCOPx(PL_op)
471#define cLOOP cLOOPx(PL_op)
472
8b40c698
KW
473#define cUNOPo cUNOPx(o)
474#define cUNOP_AUXo cUNOP_AUXx(o)
475#define cBINOPo cBINOPx(o)
476#define cLISTOPo cLISTOPx(o)
477#define cLOGOPo cLOGOPx(o)
478#define cPMOPo cPMOPx(o)
479#define cSVOPo cSVOPx(o)
480#define cPADOPo cPADOPx(o)
481#define cPVOPo cPVOPx(o)
482#define cCOPo cCOPx(o)
483#define cLOOPo cLOOPx(o)
484
485#define kUNOP cUNOPx(kid)
486#define kUNOP_AUX cUNOP_AUXx(kid)
487#define kBINOP cBINOPx(kid)
488#define kLISTOP cLISTOPx(kid)
489#define kLOGOP cLOGOPx(kid)
490#define kPMOP cPMOPx(kid)
491#define kSVOP cSVOPx(kid)
492#define kPADOP cPADOPx(kid)
493#define kPVOP cPVOPx(kid)
494#define kCOP cCOPx(kid)
495#define kLOOP cLOOPx(kid)
496
350de78d 497
1e85b658
DM
498typedef enum {
499 OPclass_NULL, /* 0 */
500 OPclass_BASEOP, /* 1 */
501 OPclass_UNOP, /* 2 */
502 OPclass_BINOP, /* 3 */
503 OPclass_LOGOP, /* 4 */
504 OPclass_LISTOP, /* 5 */
505 OPclass_PMOP, /* 6 */
506 OPclass_SVOP, /* 7 */
507 OPclass_PADOP, /* 8 */
508 OPclass_PVOP, /* 9 */
509 OPclass_LOOP, /* 10 */
510 OPclass_COP, /* 11 */
511 OPclass_METHOP, /* 12 */
512 OPclass_UNOP_AUX /* 13 */
513} OPclass;
514
515
350de78d 516#ifdef USE_ITHREADS
dd2155a4 517# define cGVOPx_gv(o) ((GV*)PAD_SVl(cPADOPx(o)->op_padix))
9429039d
FC
518# ifndef PERL_CORE
519# define IS_PADGV(v) (v && isGV(v))
520# define IS_PADCONST(v) \
1604cfb0 521 (v && (SvREADONLY(v) || (SvIsCOW(v) && !SvLEN(v))))
9429039d 522# endif
7766f137 523# define cSVOPx_sv(v) (cSVOPx(v)->op_sv \
1604cfb0 524 ? cSVOPx(v)->op_sv : PAD_SVl((v)->op_targ))
638eceb6 525# define cSVOPx_svp(v) (cSVOPx(v)->op_sv \
1604cfb0 526 ? &cSVOPx(v)->op_sv : &PAD_SVl((v)->op_targ))
810bd8b7 527# define cMETHOPx_rclass(v) PAD_SVl(cMETHOPx(v)->op_rclass_targ)
350de78d 528#else
638eceb6 529# define cGVOPx_gv(o) ((GV*)cSVOPx(o)->op_sv)
9429039d
FC
530# ifndef PERL_CORE
531# define IS_PADGV(v) FALSE
532# define IS_PADCONST(v) FALSE
533# endif
7766f137 534# define cSVOPx_sv(v) (cSVOPx(v)->op_sv)
638eceb6 535# define cSVOPx_svp(v) (&cSVOPx(v)->op_sv)
810bd8b7 536# define cMETHOPx_rclass(v) (cMETHOPx(v)->op_rclass_sv)
350de78d 537#endif
79072805 538
f88ca576 539#define cMETHOPx_meth(v) cSVOPx_sv(v)
b46e009d 540
638eceb6
GS
541#define cGVOP_gv cGVOPx_gv(PL_op)
542#define cGVOPo_gv cGVOPx_gv(o)
543#define kGVOP_gv cGVOPx_gv(kid)
544#define cSVOP_sv cSVOPx_sv(PL_op)
545#define cSVOPo_sv cSVOPx_sv(o)
546#define kSVOP_sv cSVOPx_sv(kid)
7766f137 547
bcabcc50
NC
548#ifndef PERL_CORE
549# define Nullop ((OP*)NULL)
550#endif
79072805 551
cee4176c 552/* Lowest byte of PL_opargs */
a0d0e21e
LW
553#define OA_MARK 1
554#define OA_FOLDCONST 2
555#define OA_RETSCALAR 4
556#define OA_TARGET 8
903fd87c 557#define OA_TARGLEX 16
a0d0e21e
LW
558#define OA_OTHERINT 32
559#define OA_DANGEROUS 64
560#define OA_DEFGV 128
561
738ec380 562/* The next 4 bits (8..11) encode op class information */
903fd87c 563#define OCSHIFT 8
b162f9ea
IZ
564
565#define OA_CLASS_MASK (15 << OCSHIFT)
566
567#define OA_BASEOP (0 << OCSHIFT)
568#define OA_UNOP (1 << OCSHIFT)
569#define OA_BINOP (2 << OCSHIFT)
570#define OA_LOGOP (3 << OCSHIFT)
1a67a97c
SM
571#define OA_LISTOP (4 << OCSHIFT)
572#define OA_PMOP (5 << OCSHIFT)
573#define OA_SVOP (6 << OCSHIFT)
7934575e 574#define OA_PADOP (7 << OCSHIFT)
1a67a97c
SM
575#define OA_PVOP_OR_SVOP (8 << OCSHIFT)
576#define OA_LOOP (9 << OCSHIFT)
577#define OA_COP (10 << OCSHIFT)
578#define OA_BASEOP_OR_UNOP (11 << OCSHIFT)
579#define OA_FILESTATOP (12 << OCSHIFT)
580#define OA_LOOPEXOP (13 << OCSHIFT)
b46e009d 581#define OA_METHOP (14 << OCSHIFT)
2f7c6295 582#define OA_UNOP_AUX (15 << OCSHIFT)
b162f9ea 583
738ec380
DM
584/* Each remaining nybble of PL_opargs (i.e. bits 12..15, 16..19 etc)
585 * encode the type for each arg */
903fd87c 586#define OASHIFT 12
a0d0e21e 587
a0d0e21e
LW
588#define OA_SCALAR 1
589#define OA_LIST 2
590#define OA_AVREF 3
591#define OA_HVREF 4
592#define OA_CVREF 5
593#define OA_FILEREF 6
594#define OA_SCALARREF 7
595#define OA_OPTIONAL 8
596
d3c72c2a
DM
597/* Op_REFCNT is a reference count at the head of each op tree: needed
598 * since the tree is shared between threads, and between cloned closure
599 * copies in the same thread. OP_REFCNT_LOCK/UNLOCK is used when modifying
600 * this count.
601 * The same mutex is used to protect the refcounts of the reg_trie_data
602 * and reg_ac_data structures, which are shared between duplicated
603 * regexes.
604 */
605
534825c4
GS
606#ifdef USE_ITHREADS
607# define OP_REFCNT_INIT MUTEX_INIT(&PL_op_mutex)
4026c95a
SH
608# ifdef PERL_CORE
609# define OP_REFCNT_LOCK MUTEX_LOCK(&PL_op_mutex)
610# define OP_REFCNT_UNLOCK MUTEX_UNLOCK(&PL_op_mutex)
611# else
612# define OP_REFCNT_LOCK op_refcnt_lock()
613# define OP_REFCNT_UNLOCK op_refcnt_unlock()
614# endif
534825c4 615# define OP_REFCNT_TERM MUTEX_DESTROY(&PL_op_mutex)
534825c4
GS
616#else
617# define OP_REFCNT_INIT NOOP
618# define OP_REFCNT_LOCK NOOP
619# define OP_REFCNT_UNLOCK NOOP
620# define OP_REFCNT_TERM NOOP
534825c4 621#endif
e4783991 622
282f25c9 623#define OpREFCNT_set(o,n) ((o)->op_targ = (n))
fc97af9c
NC
624#ifdef PERL_DEBUG_READONLY_OPS
625# define OpREFCNT_inc(o) Perl_op_refcnt_inc(aTHX_ o)
626# define OpREFCNT_dec(o) Perl_op_refcnt_dec(aTHX_ o)
627#else
628# define OpREFCNT_inc(o) ((o) ? (++(o)->op_targ, (o)) : NULL)
629# define OpREFCNT_dec(o) (--(o)->op_targ)
630#endif
282f25c9 631
e4783991 632/* flags used by Perl_load_module() */
ec6d81ab
RGS
633#define PERL_LOADMOD_DENY 0x1 /* no Module */
634#define PERL_LOADMOD_NOIMPORT 0x2 /* use Module () */
466f50cc 635#define PERL_LOADMOD_IMPORT_OPS 0x4 /* import arguments
1604cfb0
MS
636 are passed as a sin-
637 gle op tree, not a
638 list of SVs */
e5dd39fc 639
30d9c59b 640#if defined(PERL_IN_PERLY_C) || defined(PERL_IN_OP_C) || defined(PERL_IN_TOKE_C)
e4c5ccf3 641#define ref(o, type) doref(o, type, TRUE)
a0c21aa1 642#endif
e4c5ccf3 643
c1048fcf 644
0b9a13c3 645/* translation table attached to OP_TRANS/OP_TRANSR ops */
c1048fcf
DM
646
647typedef struct {
0b9a13c3
DM
648 Size_t size; /* number of entries in map[], not including final slot */
649 short map[1]; /* Unwarranted chumminess */
c1048fcf
DM
650} OPtrans_map;
651
c1048fcf 652
5983a79d 653/*
3f620621 654=for apidoc_section $optree_manipulation
5983a79d
BM
655
656=for apidoc Am|OP*|LINKLIST|OP *o
657Given the root of an optree, link the tree in execution order using the
72d33970 658C<op_next> pointers and return the first op executed. If this has
5983a79d 659already been done, it will not be redone, and C<< o->op_next >> will be
2d7f6611 660returned. If C<< o->op_next >> is not already set, C<o> should be at
5983a79d
BM
661least an C<UNOP>.
662
663=cut
664*/
665
666#define LINKLIST(o) ((o)->op_next ? (o)->op_next : op_linklist((OP*)o))
667
33f36c71
NC
668/* no longer used anywhere in core */
669#ifndef PERL_CORE
46471bde 670#define cv_ckproto(cv, gv, p) \
f717afa7 671 cv_ckproto_len_flags((cv), (gv), (p), (p) ? strlen(p) : 0, 0)
33f36c71
NC
672#endif
673
7d0905b9
NC
674#ifdef PERL_CORE
675# define my(o) my_attrs((o), NULL)
676#endif
677
e5dd39fc 678#ifdef USE_REENTRANT_API
10bc17b6 679#include "reentr.h"
e5dd39fc
AB
680#endif
681
c7e45529 682#define NewOp(m,var,c,type) \
1604cfb0 683 (var = (type *) Perl_Slab_Alloc(aTHX_ c*sizeof(type)))
c7e45529 684#define NewOpSz(m,var,size) \
1604cfb0 685 (var = (OP *) Perl_Slab_Alloc(aTHX_ size))
c7e45529 686#define FreeOp(p) Perl_Slab_Free(aTHX_ p)
8be227ab
FC
687
688/*
689 * The per-CV op slabs consist of a header (the opslab struct) and a bunch
690 * of space for allocating op slots, each of which consists of two pointers
691 * followed by an op. The first pointer points to the next op slot. The
692 * second points to the slab. At the end of the slab is a null pointer,
693 * so that slot->opslot_next - slot can be used to determine the size
694 * of the op.
695 *
696 * Each CV can have multiple slabs; opslab_next points to the next slab, to
697 * form a chain. All bookkeeping is done on the first slab, which is where
698 * all the op slots point.
699 *
700 * Freed ops are marked as freed and attached to the freed chain
701 * via op_next pointers.
702 *
703 * When there is more than one slab, the second slab in the slab chain is
704 * assumed to be the one with free space available. It is used when allo-
705 * cating an op if there are no freed ops available or big enough.
706 */
707
7aef8e5b 708#ifdef PERL_CORE
8be227ab 709struct opslot {
8c47b5bc 710 U16 opslot_size; /* size of this slot (in pointers) */
17b8f3a1 711 U16 opslot_offset; /* offset from start of slab (in ptr units) */
8be227ab
FC
712 OP opslot_op; /* the op itself */
713};
714
715struct opslab {
8be227ab 716 OPSLAB * opslab_next; /* next slab */
17b8f3a1 717 OPSLAB * opslab_head; /* first slab in chain */
0bd6eef4 718 OP ** opslab_freed; /* array of sized chains of freed ops (head only)*/
17b8f3a1 719 size_t opslab_refcnt; /* number of ops (head slab only) */
0bd6eef4 720 U16 opslab_freed_size; /* allocated size of opslab_freed */
aa034fa0
DM
721 U16 opslab_size; /* size of slab in pointers,
722 including header */
7b85c12a
DM
723 U16 opslab_free_space; /* space available in this slab
724 for allocating new ops (in ptr
725 units) */
3107b51f 726# ifdef PERL_DEBUG_READONLY_OPS
3107b51f
FC
727 bool opslab_readonly;
728# endif
8be227ab
FC
729 OPSLOT opslab_slots; /* slots begin here */
730};
731
732# define OPSLOT_HEADER STRUCT_OFFSET(OPSLOT, opslot_op)
c7724415 733# define OpSLOT(o) (assert_(o->op_slabbed) \
1604cfb0 734 (OPSLOT *)(((char *)o)-OPSLOT_HEADER))
17b8f3a1 735
f0cfed98
TC
736/* the slab that owns this op */
737# define OpMySLAB(o) \
738 ((OPSLAB*)((char *)((I32**)OpSLOT(o) - OpSLOT(o)->opslot_offset)-STRUCT_OFFSET(struct opslab, opslab_slots)))
17b8f3a1
DM
739/* the first (head) opslab of the chain in which this op is allocated */
740# define OpSLAB(o) \
f0cfed98
TC
741 (OpMySLAB(o)->opslab_head)
742/* calculate the slot given the owner slab and an offset */
743#define OpSLOToff(slab, offset) \
744 ((OPSLOT*)(((I32 **)&(slab)->opslab_slots)+(offset)))
17b8f3a1 745
8be227ab 746# define OpslabREFCNT_dec(slab) \
1604cfb0
MS
747 (((slab)->opslab_refcnt == 1) \
748 ? opslab_free_nopad(slab) \
749 : (void)--(slab)->opslab_refcnt)
8be227ab
FC
750 /* Variant that does not null out the pads */
751# define OpslabREFCNT_dec_padok(slab) \
1604cfb0
MS
752 (((slab)->opslab_refcnt == 1) \
753 ? opslab_free(slab) \
754 : (void)--(slab)->opslab_refcnt)
c7e45529 755#endif
598921a7 756
1930840b 757struct block_hooks {
52db365a 758 U32 bhk_flags;
1930840b
BM
759 void (*bhk_start) (pTHX_ int full);
760 void (*bhk_pre_end) (pTHX_ OP **seq);
761 void (*bhk_post_end) (pTHX_ OP **seq);
52db365a 762 void (*bhk_eval) (pTHX_ OP *const saveop);
1930840b
BM
763};
764
fd85fad2 765/*
3f620621 766=for apidoc_section $scope
fd85fad2 767
3e4ddde5 768=for apidoc mx|U32|BhkFLAGS|BHK *hk
fd85fad2
BM
769Return the BHK's flags.
770
5ec7ac22 771=for apidoc mxu|void *|BhkENTRY|BHK *hk|which
2d7f6611 772Return an entry from the BHK structure. C<which> is a preprocessor token
72d33970 773indicating which entry to return. If the appropriate flag is not set
796b6530 774this will return C<NULL>. The type of the return value depends on which
fd85fad2
BM
775entry you ask for.
776
5ec7ac22 777=for apidoc Amxu|void|BhkENTRY_set|BHK *hk|which|void *ptr
fd85fad2 778Set an entry in the BHK structure, and set the flags to indicate it is
2d7f6611
KW
779valid. C<which> is a preprocessing token indicating which entry to set.
780The type of C<ptr> depends on the entry.
fd85fad2 781
5ec7ac22 782=for apidoc Amxu|void|BhkDISABLE|BHK *hk|which
a3e07c87 783Temporarily disable an entry in this BHK structure, by clearing the
2d7f6611 784appropriate flag. C<which> is a preprocessor token indicating which
a3e07c87
BM
785entry to disable.
786
5ec7ac22 787=for apidoc Amxu|void|BhkENABLE|BHK *hk|which
a3e07c87 788Re-enable an entry in this BHK structure, by setting the appropriate
2d7f6611 789flag. C<which> is a preprocessor token indicating which entry to enable.
a3e07c87
BM
790This will assert (under -DDEBUGGING) if the entry doesn't contain a valid
791pointer.
792
5ec7ac22 793=for apidoc mxu|void|CALL_BLOCK_HOOKS|which|arg
2d7f6611
KW
794Call all the registered block hooks for type C<which>. C<which> is a
795preprocessing token; the type of C<arg> depends on C<which>.
fd85fad2
BM
796
797=cut
798*/
799
52db365a
BM
800#define BhkFLAGS(hk) ((hk)->bhk_flags)
801
a88d97bf
BM
802#define BHKf_bhk_start 0x01
803#define BHKf_bhk_pre_end 0x02
804#define BHKf_bhk_post_end 0x04
805#define BHKf_bhk_eval 0x08
52db365a
BM
806
807#define BhkENTRY(hk, which) \
a88d97bf 808 ((BhkFLAGS(hk) & BHKf_ ## which) ? ((hk)->which) : NULL)
52db365a 809
a3e07c87
BM
810#define BhkENABLE(hk, which) \
811 STMT_START { \
1604cfb0
MS
812 BhkFLAGS(hk) |= BHKf_ ## which; \
813 assert(BhkENTRY(hk, which)); \
a3e07c87
BM
814 } STMT_END
815
816#define BhkDISABLE(hk, which) \
817 STMT_START { \
1604cfb0 818 BhkFLAGS(hk) &= ~(BHKf_ ## which); \
a3e07c87
BM
819 } STMT_END
820
52db365a
BM
821#define BhkENTRY_set(hk, which, ptr) \
822 STMT_START { \
1604cfb0
MS
823 (hk)->which = ptr; \
824 BhkENABLE(hk, which); \
52db365a
BM
825 } STMT_END
826
1930840b
BM
827#define CALL_BLOCK_HOOKS(which, arg) \
828 STMT_START { \
1604cfb0
MS
829 if (PL_blockhooks) { \
830 SSize_t i; \
831 for (i = av_top_index(PL_blockhooks); i >= 0; i--) { \
832 SV *sv = AvARRAY(PL_blockhooks)[i]; \
833 BHK *hk; \
834 \
835 assert(SvIOK(sv)); \
836 if (SvUOK(sv)) \
837 hk = INT2PTR(BHK *, SvUVX(sv)); \
838 else \
839 hk = INT2PTR(BHK *, SvIVX(sv)); \
840 \
841 if (BhkENTRY(hk, which)) \
842 BhkENTRY(hk, which)(aTHX_ arg); \
843 } \
844 } \
1930840b
BM
845 } STMT_END
846
d9088386
Z
847/* flags for rv2cv_op_cv */
848
849#define RV2CVOPCV_MARK_EARLY 0x00000001
850#define RV2CVOPCV_RETURN_NAME_GV 0x00000002
211a4342 851#define RV2CVOPCV_RETURN_STUB 0x00000004
c6565d4b 852#if defined(PERL_CORE) || defined(PERL_EXT) /* behaviour of this flag is subject to change: */
9c98a81f
FC
853# define RV2CVOPCV_MAYBE_NAME_GV 0x00000008
854#endif
855#define RV2CVOPCV_FLAG_MASK 0x0000000f /* all of the above */
d9088386 856
d3d7d28f
FC
857#define op_lvalue(op,t) Perl_op_lvalue_flags(aTHX_ op,t,0)
858
f5d552b4
FC
859/* flags for op_lvalue_flags */
860
861#define OP_LVALUE_NO_CROAK 1
862
9733086d 863/*
3f620621 864=for apidoc_section $custom
9733086d
BM
865
866=for apidoc Am|U32|XopFLAGS|XOP *xop
867Return the XOP's flags.
868
869=for apidoc Am||XopENTRY|XOP *xop|which
2d7f6611 870Return a member of the XOP structure. C<which> is a cpp token
72d33970
FC
871indicating which entry to return. If the member is not set
872this will return a default value. The return type depends
2d7f6611 873on C<which>. This macro evaluates its arguments more than
f1460a66 874once. If you are using C<Perl_custom_op_xop> to retrieve a
ae103e09
DD
875C<XOP *> from a C<OP *>, use the more efficient L</XopENTRYCUSTOM> instead.
876
877=for apidoc Am||XopENTRYCUSTOM|const OP *o|which
878Exactly like C<XopENTRY(XopENTRY(Perl_custom_op_xop(aTHX_ o), which)> but more
2d7f6611 879efficient. The C<which> parameter is identical to L</XopENTRY>.
9733086d
BM
880
881=for apidoc Am|void|XopENTRY_set|XOP *xop|which|value
2d7f6611 882Set a member of the XOP structure. C<which> is a cpp token
72d33970
FC
883indicating which entry to set. See L<perlguts/"Custom Operators">
884for details about the available members and how
885they are used. This macro evaluates its argument
ae103e09 886more than once.
9733086d
BM
887
888=for apidoc Am|void|XopDISABLE|XOP *xop|which
889Temporarily disable a member of the XOP, by clearing the appropriate flag.
890
891=for apidoc Am|void|XopENABLE|XOP *xop|which
892Reenable a member of the XOP which has been disabled.
893
894=cut
895*/
896
1830b3d9
BM
897struct custom_op {
898 U32 xop_flags;
899 const char *xop_name;
900 const char *xop_desc;
901 U32 xop_class;
902 void (*xop_peep)(pTHX_ OP *o, OP *oldop);
903};
904
ae103e09
DD
905/* return value of Perl_custom_op_get_field, similar to void * then casting but
906 the U32 doesn't need truncation on 64 bit platforms in the caller, also
907 for easier macro writing */
908typedef union {
909 const char *xop_name;
910 const char *xop_desc;
911 U32 xop_class;
912 void (*xop_peep)(pTHX_ OP *o, OP *oldop);
913 XOP *xop_ptr;
914} XOPRETANY;
915
1830b3d9
BM
916#define XopFLAGS(xop) ((xop)->xop_flags)
917
918#define XOPf_xop_name 0x01
919#define XOPf_xop_desc 0x02
920#define XOPf_xop_class 0x04
921#define XOPf_xop_peep 0x08
922
ae103e09
DD
923/* used by Perl_custom_op_get_field for option checking */
924typedef enum {
925 XOPe_xop_ptr = 0, /* just get the XOP *, don't look inside it */
926 XOPe_xop_name = XOPf_xop_name,
927 XOPe_xop_desc = XOPf_xop_desc,
928 XOPe_xop_class = XOPf_xop_class,
4a3798ca 929 XOPe_xop_peep = XOPf_xop_peep
ae103e09
DD
930} xop_flags_enum;
931
1830b3d9
BM
932#define XOPd_xop_name PL_op_name[OP_CUSTOM]
933#define XOPd_xop_desc PL_op_desc[OP_CUSTOM]
934#define XOPd_xop_class OA_BASEOP
935#define XOPd_xop_peep ((Perl_cpeep_t)0)
936
937#define XopENTRY_set(xop, which, to) \
938 STMT_START { \
1604cfb0
MS
939 (xop)->which = (to); \
940 (xop)->xop_flags |= XOPf_ ## which; \
1830b3d9
BM
941 } STMT_END
942
943#define XopENTRY(xop, which) \
944 ((XopFLAGS(xop) & XOPf_ ## which) ? (xop)->which : XOPd_ ## which)
945
ae103e09
DD
946#define XopENTRYCUSTOM(o, which) \
947 (Perl_custom_op_get_field(aTHX_ o, XOPe_ ## which).which)
948
1830b3d9
BM
949#define XopDISABLE(xop, which) ((xop)->xop_flags &= ~XOPf_ ## which)
950#define XopENABLE(xop, which) \
951 STMT_START { \
1604cfb0
MS
952 (xop)->xop_flags |= XOPf_ ## which; \
953 assert(XopENTRY(xop, which)); \
1830b3d9
BM
954 } STMT_END
955
ae103e09
DD
956#define Perl_custom_op_xop(x) \
957 (Perl_custom_op_get_field(x, XOPe_xop_ptr).xop_ptr)
958
9733086d 959/*
3f620621 960=for apidoc_section $optree_manipulation
9733086d
BM
961
962=for apidoc Am|const char *|OP_NAME|OP *o
72d33970 963Return the name of the provided OP. For core ops this looks up the name
9733086d
BM
964from the op_type; for custom ops from the op_ppaddr.
965
966=for apidoc Am|const char *|OP_DESC|OP *o
967Return a short description of the provided OP.
968
969=for apidoc Am|U32|OP_CLASS|OP *o
970Return the class of the provided OP: that is, which of the *OP
72d33970 971structures it uses. For core ops this currently gets the information out
e8f6c72a
DM
972of C<PL_opargs>, which does not always accurately reflect the type used;
973in v5.26 onwards, see also the function C<L</op_class>> which can do a better
974job of determining the used type.
975
9733086d 976For custom ops the type is returned from the registration, and it is up
72d33970 977to the registree to ensure it is accurate. The value returned will be
796b6530 978one of the C<OA_>* constants from F<op.h>.
9733086d 979
5bfb0af0 980=for apidoc Am|bool|OP_TYPE_IS|OP *o|Optype type
796b6530 981Returns true if the given OP is not a C<NULL> pointer
11ee9dd6
S
982and if it is of the given type.
983
984The negation of this macro, C<OP_TYPE_ISNT> is also available
985as well as C<OP_TYPE_IS_NN> and C<OP_TYPE_ISNT_NN> which elide
986the NULL pointer check.
987
5bfb0af0 988=for apidoc Am|bool|OP_TYPE_IS_OR_WAS|OP *o|Optype type
11ee9dd6
S
989Returns true if the given OP is not a NULL pointer and
990if it is of the given type or used to be before being
991replaced by an OP of type OP_NULL.
992
993The negation of this macro, C<OP_TYPE_ISNT_AND_WASNT>
994is also available as well as C<OP_TYPE_IS_OR_WAS_NN>
995and C<OP_TYPE_ISNT_AND_WASNT_NN> which elide
796b6530 996the C<NULL> pointer check.
11ee9dd6 997
e6dae479 998=for apidoc Am|bool|OpHAS_SIBLING|OP *o
796b6530 999Returns true if C<o> has a sibling
1ed44841 1000
5e24af7d 1001=for apidoc Am|OP*|OpSIBLING|OP *o
796b6530 1002Returns the sibling of C<o>, or C<NULL> if there is no sibling
1ed44841 1003
5e24af7d 1004=for apidoc Am|void|OpMORESIB_set|OP *o|OP *sib
796b6530 1005Sets the sibling of C<o> to the non-zero value C<sib>. See also C<L</OpLASTSIB_set>>
fbe13c60
KW
1006and C<L</OpMAYBESIB_set>>. For a higher-level interface, see
1007C<L</op_sibling_splice>>.
5e24af7d
DM
1008
1009=for apidoc Am|void|OpLASTSIB_set|OP *o|OP *parent
0f9a6232 1010Marks C<o> as having no further siblings and marks
fbe13c60 1011o as having the specified parent. See also C<L</OpMORESIB_set>> and
5e24af7d 1012C<OpMAYBESIB_set>. For a higher-level interface, see
fbe13c60 1013C<L</op_sibling_splice>>.
5e24af7d
DM
1014
1015=for apidoc Am|void|OpMAYBESIB_set|OP *o|OP *sib|OP *parent
1016Conditionally does C<OpMORESIB_set> or C<OpLASTSIB_set> depending on whether
796b6530 1017C<sib> is non-null. For a higher-level interface, see C<L</op_sibling_splice>>.
1ed44841 1018
9733086d
BM
1019=cut
1020*/
1021
1830b3d9 1022#define OP_NAME(o) ((o)->op_type == OP_CUSTOM \
ae103e09 1023 ? XopENTRYCUSTOM(o, xop_name) \
1604cfb0 1024 : PL_op_name[(o)->op_type])
1830b3d9 1025#define OP_DESC(o) ((o)->op_type == OP_CUSTOM \
ae103e09 1026 ? XopENTRYCUSTOM(o, xop_desc) \
1604cfb0 1027 : PL_op_desc[(o)->op_type])
1830b3d9 1028#define OP_CLASS(o) ((o)->op_type == OP_CUSTOM \
1604cfb0
MS
1029 ? XopENTRYCUSTOM(o, xop_class) \
1030 : (PL_opargs[(o)->op_type] & OA_CLASS_MASK))
1830b3d9 1031
437e3a7d 1032#define OP_TYPE_IS(o, type) ((o) && (o)->op_type == (type))
11ee9dd6
S
1033#define OP_TYPE_IS_NN(o, type) ((o)->op_type == (type))
1034#define OP_TYPE_ISNT(o, type) ((o) && (o)->op_type != (type))
1035#define OP_TYPE_ISNT_NN(o, type) ((o)->op_type != (type))
1036
1037#define OP_TYPE_IS_OR_WAS_NN(o, type) \
1038 ( ((o)->op_type == OP_NULL \
1039 ? (o)->op_targ \
1040 : (o)->op_type) \
1041 == (type) )
1042
1043#define OP_TYPE_IS_OR_WAS(o, type) \
1044 ( (o) && OP_TYPE_IS_OR_WAS_NN(o, type) )
1045
1046#define OP_TYPE_ISNT_AND_WASNT_NN(o, type) \
1047 ( ((o)->op_type == OP_NULL \
1048 ? (o)->op_targ \
1049 : (o)->op_type) \
1050 != (type) )
1051
1052#define OP_TYPE_ISNT_AND_WASNT(o, type) \
1053 ( (o) && OP_TYPE_ISNT_AND_WASNT_NN(o, type) )
437e3a7d 1054
1d31efef
DIM
1055/* should match anything that uses ck_ftst in regen/opcodes */
1056#define OP_IS_STAT(op) (OP_IS_FILETEST(op) || (op) == OP_LSTAT || (op) == OP_STAT)
5e24af7d 1057
859b78b1
DIM
1058#define OpHAS_SIBLING(o) (cBOOL((o)->op_moresib))
1059#define OpSIBLING(o) (0 + (o)->op_moresib ? (o)->op_sibparent : NULL)
1060#define OpMORESIB_set(o, sib) ((o)->op_moresib = 1, (o)->op_sibparent = (sib))
1061#define OpLASTSIB_set(o, parent) \
1062 ((o)->op_moresib = 0, (o)->op_sibparent = (parent))
1063#define OpMAYBESIB_set(o, sib, parent) \
1064 ((o)->op_sibparent = ((o)->op_moresib = cBOOL(sib)) ? (sib) : (parent))
5e24af7d 1065
e6dae479 1066#if !defined(PERL_CORE) && !defined(PERL_EXT)
5e24af7d 1067/* for backwards compatibility only */
e6dae479 1068# define OP_SIBLING(o) OpSIBLING(o)
29e61fd9 1069#endif
1ed44841 1070
e8f91c91
DD
1071#define newATTRSUB(f, o, p, a, b) Perl_newATTRSUB_x(aTHX_ f, o, p, a, b, FALSE)
1072#define newSUB(f, o, p, b) newATTRSUB((f), (o), (p), NULL, (b))
7bff8c33 1073
e8570548
Z
1074#ifdef USE_ITHREADS
1075# define OP_CHECK_MUTEX_INIT MUTEX_INIT(&PL_check_mutex)
1076# define OP_CHECK_MUTEX_LOCK MUTEX_LOCK(&PL_check_mutex)
1077# define OP_CHECK_MUTEX_UNLOCK MUTEX_UNLOCK(&PL_check_mutex)
1078# define OP_CHECK_MUTEX_TERM MUTEX_DESTROY(&PL_check_mutex)
1079#else
1080# define OP_CHECK_MUTEX_INIT NOOP
1081# define OP_CHECK_MUTEX_LOCK NOOP
1082# define OP_CHECK_MUTEX_UNLOCK NOOP
1083# define OP_CHECK_MUTEX_TERM NOOP
1084#endif
1085
fedf30e1
DM
1086
1087/* Stuff for OP_MULTDEREF/pp_multideref. */
1088
1089/* actions */
1090
1091/* Load another word of actions/flag bits. Must be 0 */
1092#define MDEREF_reload 0
1093
1094#define MDEREF_AV_pop_rv2av_aelem 1
1095#define MDEREF_AV_gvsv_vivify_rv2av_aelem 2
1096#define MDEREF_AV_padsv_vivify_rv2av_aelem 3
1097#define MDEREF_AV_vivify_rv2av_aelem 4
1098#define MDEREF_AV_padav_aelem 5
1099#define MDEREF_AV_gvav_aelem 6
1100
1101#define MDEREF_HV_pop_rv2hv_helem 8
1102#define MDEREF_HV_gvsv_vivify_rv2hv_helem 9
1103#define MDEREF_HV_padsv_vivify_rv2hv_helem 10
1104#define MDEREF_HV_vivify_rv2hv_helem 11
1105#define MDEREF_HV_padhv_helem 12
1106#define MDEREF_HV_gvhv_helem 13
1107
1108#define MDEREF_ACTION_MASK 0xf
1109
1110/* key / index type */
1111
1112#define MDEREF_INDEX_none 0x00 /* run external ops to generate index */
1113#define MDEREF_INDEX_const 0x10 /* index is const PV/UV */
1114#define MDEREF_INDEX_padsv 0x20 /* index is lexical var */
1115#define MDEREF_INDEX_gvsv 0x30 /* index is GV */
1116
1117#define MDEREF_INDEX_MASK 0x30
1118
1119/* bit flags */
1120
1121#define MDEREF_FLAG_last 0x40 /* the last [ah]elem; PL_op flags apply */
1122
1123#define MDEREF_MASK 0x7F
1124#define MDEREF_SHIFT 7
1125
87e05d1a 1126#if defined(PERL_IN_DOOP_C) || defined(PERL_IN_PP_C)
814eedc8
DD
1127# define FATAL_ABOVE_FF_MSG \
1128 "Use of strings with code points over 0xFF as arguments to " \
1129 "%s operator is not allowed"
87e05d1a 1130#endif
f34acfec 1131#if defined(PERL_IN_OP_C) || defined(PERL_IN_DOOP_C) || defined(PERL_IN_PERL_C)
482bf615
KW
1132# define TR_UNMAPPED (UV)-1
1133# define TR_DELETE (UV)-2
1134# define TR_R_EMPTY (UV)-3 /* rhs (replacement) is empty */
47279991 1135# define TR_OOB (UV)-4 /* Something that isn't one of the others */
84ac8fac
KW
1136# define TR_SPECIAL_HANDLING TR_DELETE /* Can occupy same value */
1137# define TR_UNLISTED TR_UNMAPPED /* A synonym whose name is clearer
1138 at times */
482bf615 1139#endif
dc8faf6b
KW
1140#if defined(PERL_IN_OP_C) || defined(PERL_IN_TOKE_C)
1141#define RANGE_INDICATOR ILLEGAL_UTF8_BYTE
1142#endif
87e05d1a 1143
f417cfa9
DM
1144/* stuff for OP_ARGCHECK */
1145
d10cf093 1146struct op_argcheck_aux {
e6158756
DM
1147 UV params; /* number of positional parameters */
1148 UV opt_params; /* number of optional positional parameters */
f417cfa9
DM
1149 char slurpy; /* presence of slurpy: may be '\0', '@' or '%' */
1150};
1151
fedf30e1 1152
e8570548 1153/*
14d04a33 1154 * ex: set ts=8 sts=4 sw=4 et:
3f2908ec 1155 */