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