This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perlapi: Slight clarification
[perl5.git] / pp.h
CommitLineData
a0d0e21e 1/* pp.h
79072805 2 *
1129b882
NC
3 * Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
4 * 2002, 2003, 2004, 2005, 2006, 2007, 2008 by Larry Wall and others
79072805 5 *
a0d0e21e
LW
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.
79072805 8 *
a0d0e21e 9 */
79072805 10
cea2e8a9 11#define PP(s) OP * Perl_##s(pTHX)
79072805 12
954c1994 13/*
ccfc67b7
JH
14=head1 Stack Manipulation Macros
15
954c1994 16=for apidoc AmU||SP
fbe13c60 17Stack pointer. This is usually handled by C<xsubpp>. See C<L</dSP>> and
954c1994
GS
18C<SPAGAIN>.
19
20=for apidoc AmU||MARK
fbe13c60 21Stack marker variable for the XSUB. See C<L</dMARK>>.
954c1994 22
c578083c 23=for apidoc Am|void|PUSHMARK|SP
fbe13c60 24Opening bracket for arguments on a callback. See C<L</PUTBACK>> and
954c1994
GS
25L<perlcall>.
26
27=for apidoc Ams||dSP
28Declares a local copy of perl's stack pointer for the XSUB, available via
fbe13c60 29the C<SP> macro. See C<L</SP>>.
954c1994 30
fac3506f
MS
31=for apidoc ms||djSP
32
154e47c8 33Declare Just C<SP>. This is actually identical to C<dSP>, and declares
fac3506f 34a local copy of perl's stack pointer, available via the C<SP> macro.
fbe13c60
KW
35See C<L<perlapi/SP>>. (Available for backward source code compatibility with
36the old (Perl 5.005) thread model.)
fac3506f 37
954c1994 38=for apidoc Ams||dMARK
fbe13c60
KW
39Declare a stack marker variable, C<mark>, for the XSUB. See C<L</MARK>> and
40C<L</dORIGMARK>>.
954c1994
GS
41
42=for apidoc Ams||dORIGMARK
fbe13c60 43Saves the original stack mark for the XSUB. See C<L</ORIGMARK>>.
954c1994
GS
44
45=for apidoc AmU||ORIGMARK
fbe13c60 46The original stack mark for the XSUB. See C<L</dORIGMARK>>.
954c1994
GS
47
48=for apidoc Ams||SPAGAIN
49Refetch the stack pointer. Used after a callback. See L<perlcall>.
50
fac3506f 51=cut */
954c1994 52
ac634a9a 53#undef SP /* Solaris 2.7 i386 has this in /usr/include/sys/reg.h */
79072805
LW
54#define SP sp
55#define MARK mark
56#define TARG targ
57
6cae08a8 58#if defined(DEBUGGING) && defined(PERL_USE_GCC_BRACE_GROUPS)
6d8b7216
DM
59
60# define PUSHMARK(p) \
6cae08a8
RU
61 STMT_START { \
62 I32 * mark_stack_entry; \
6d8b7216
DM
63 if (UNLIKELY((mark_stack_entry = ++PL_markstack_ptr) \
64 == PL_markstack_max)) \
6cae08a8
RU
65 mark_stack_entry = markstack_grow(); \
66 *mark_stack_entry = (I32)((p) - PL_stack_base); \
ac07059a
DM
67 DEBUG_s(DEBUG_v(PerlIO_printf(Perl_debug_log, \
68 "MARK push %p %"IVdf"\n", \
69 PL_markstack_ptr, (IV)*mark_stack_entry))); \
6cae08a8 70 } STMT_END
6d8b7216
DM
71
72# define TOPMARK \
6cae08a8 73 ({ \
ac07059a
DM
74 DEBUG_s(DEBUG_v(PerlIO_printf(Perl_debug_log, \
75 "MARK top %p %"IVdf"\n", \
76 PL_markstack_ptr, (IV)*PL_markstack_ptr))); \
6cae08a8
RU
77 *PL_markstack_ptr; \
78 })
6d8b7216
DM
79
80# define POPMARK \
6cae08a8 81 ({ \
ac07059a
DM
82 DEBUG_s(DEBUG_v(PerlIO_printf(Perl_debug_log, \
83 "MARK pop %p %"IVdf"\n", \
84 (PL_markstack_ptr-1), (IV)*(PL_markstack_ptr-1)))); \
6cae08a8
RU
85 assert((PL_markstack_ptr > PL_markstack) || !"MARK underflow");\
86 *PL_markstack_ptr--; \
87 })
6d8b7216
DM
88
89# define INCMARK \
6cae08a8 90 ({ \
ac07059a
DM
91 DEBUG_s(DEBUG_v(PerlIO_printf(Perl_debug_log, \
92 "MARK inc %p %"IVdf"\n", \
93 (PL_markstack_ptr+1), (IV)*(PL_markstack_ptr+1)))); \
6cae08a8
RU
94 *PL_markstack_ptr++; \
95 })
6d8b7216 96
6cae08a8 97#else
6d8b7216 98
101d6365 99# define PUSHMARK(p) \
6cae08a8
RU
100 STMT_START { \
101 I32 * mark_stack_entry; \
102 if (UNLIKELY((mark_stack_entry = ++PL_markstack_ptr) == PL_markstack_max)) \
103 mark_stack_entry = markstack_grow(); \
104 *mark_stack_entry = (I32)((p) - PL_stack_base); \
105 } STMT_END
101d6365
DM
106# define TOPMARK (*PL_markstack_ptr)
107# define POPMARK (*PL_markstack_ptr--)
108# define INCMARK (*PL_markstack_ptr++)
6cae08a8 109#endif
a0d0e21e 110
bc0d193f 111#define dSP SV **sp = PL_stack_sp
39644a26 112#define djSP dSP
5aaab254 113#define dMARK SV **mark = PL_stack_base + POPMARK
514696af 114#define dORIGMARK const I32 origmark = (I32)(mark - PL_stack_base)
3280af22 115#define ORIGMARK (PL_stack_base + origmark)
79072805 116
3280af22 117#define SPAGAIN sp = PL_stack_sp
16e7e110 118#define MSPAGAIN STMT_START { sp = PL_stack_sp; mark = ORIGMARK; } STMT_END
79072805 119
533c011a 120#define GETTARGETSTACKED targ = (PL_op->op_flags & OPf_STACKED ? POPs : PAD_SV(PL_op->op_targ))
79072805
LW
121#define dTARGETSTACKED SV * GETTARGETSTACKED
122
533c011a 123#define GETTARGET targ = PAD_SV(PL_op->op_targ)
79072805
LW
124#define dTARGET SV * GETTARGET
125
533c011a 126#define GETATARGET targ = (PL_op->op_flags & OPf_STACKED ? sp[-1] : PAD_SV(PL_op->op_targ))
79072805
LW
127#define dATARGET SV * GETATARGET
128
129#define dTARG SV *targ
130
533c011a 131#define NORMAL PL_op->op_next
9fed9930 132#define DIE return Perl_die
79072805 133
954c1994
GS
134/*
135=for apidoc Ams||PUTBACK
136Closing bracket for XSUB arguments. This is usually handled by C<xsubpp>.
fbe13c60 137See C<L</PUSHMARK>> and L<perlcall> for other uses.
954c1994
GS
138
139=for apidoc Amn|SV*|POPs
140Pops an SV off the stack.
141
142=for apidoc Amn|char*|POPp
4b7c0884 143Pops a string off the stack.
595ae481
NIS
144
145=for apidoc Amn|char*|POPpx
4b7c0884
FC
146Pops a string off the stack. Identical to POPp. There are two names for
147historical reasons.
595ae481
NIS
148
149=for apidoc Amn|char*|POPpbytex
150Pops a string off the stack which must consist of bytes i.e. characters < 256.
954c1994
GS
151
152=for apidoc Amn|NV|POPn
153Pops a double off the stack.
154
155=for apidoc Amn|IV|POPi
156Pops an integer off the stack.
157
d0554719
TC
158=for apidoc Amn|UV|POPu
159Pops an unsigned integer off the stack.
160
954c1994
GS
161=for apidoc Amn|long|POPl
162Pops a long off the stack.
163
d0554719
TC
164=for apidoc Amn|long|POPul
165Pops an unsigned long off the stack.
166
954c1994
GS
167=cut
168*/
169
3280af22 170#define PUTBACK PL_stack_sp = sp
8a67133a
NC
171#define RETURN return (PUTBACK, NORMAL)
172#define RETURNOP(o) return (PUTBACK, o)
173#define RETURNX(x) return (x, PUTBACK, NORMAL)
79072805
LW
174
175#define POPs (*sp--)
4b7c0884 176#define POPp POPpx
8c074e2a
NC
177#define POPpx (SvPVx_nolen(POPs))
178#define POPpconstx (SvPVx_nolen_const(POPs))
179#define POPpbytex (SvPVbytex_nolen(POPs))
463ee0b2 180#define POPn (SvNVx(POPs))
a0d0e21e 181#define POPi ((IV)SvIVx(POPs))
ff68c719 182#define POPu ((UV)SvUVx(POPs))
463ee0b2 183#define POPl ((long)SvIVx(POPs))
d9b3e12d 184#define POPul ((unsigned long)SvIVx(POPs))
79072805
LW
185
186#define TOPs (*sp)
56370e9f 187#define TOPm1s (*(sp-1))
7dca457a 188#define TOPp1s (*(sp+1))
4b7c0884 189#define TOPp TOPpx
95fad918 190#define TOPpx (SvPV_nolen(TOPs))
463ee0b2 191#define TOPn (SvNV(TOPs))
a0d0e21e 192#define TOPi ((IV)SvIV(TOPs))
ff68c719 193#define TOPu ((UV)SvUV(TOPs))
463ee0b2 194#define TOPl ((long)SvIV(TOPs))
c5a0f51a 195#define TOPul ((unsigned long)SvUV(TOPs))
79072805
LW
196
197/* Go to some pains in the rare event that we must extend the stack. */
954c1994
GS
198
199/*
fc16c392 200=for apidoc Am|void|EXTEND|SP|SSize_t nitems
72d33970 201Used to extend the argument stack for an XSUB's return values. Once
4375e838 202used, guarantees that there is room for at least C<nitems> to be pushed
954c1994
GS
203onto the stack.
204
205=for apidoc Am|void|PUSHs|SV* sv
aacdac46 206Push an SV onto the stack. The stack must have room for this element.
fbe13c60
KW
207Does not handle 'set' magic. Does not use C<TARG>. See also
208C<L</PUSHmortal>>, C<L</XPUSHs>>, and C<L</XPUSHmortal>>.
954c1994
GS
209
210=for apidoc Am|void|PUSHp|char* str|STRLEN len
211Push a string onto the stack. The stack must have room for this element.
d82b684c
SH
212The C<len> indicates the length of the string. Handles 'set' magic. Uses
213C<TARG>, so C<dTARGET> or C<dXSTARG> should be called to declare it. Do not
214call multiple C<TARG>-oriented macros to return lists from XSUB's - see
fbe13c60 215C<L</mPUSHp>> instead. See also C<L</XPUSHp>> and C<L</mXPUSHp>>.
954c1994
GS
216
217=for apidoc Am|void|PUSHn|NV nv
218Push a double onto the stack. The stack must have room for this element.
d82b684c
SH
219Handles 'set' magic. Uses C<TARG>, so C<dTARGET> or C<dXSTARG> should be
220called to declare it. Do not call multiple C<TARG>-oriented macros to
fbe13c60
KW
221return lists from XSUB's - see C<L</mPUSHn>> instead. See also C<L</XPUSHn>>
222and C<L</mXPUSHn>>.
954c1994
GS
223
224=for apidoc Am|void|PUSHi|IV iv
225Push an integer onto the stack. The stack must have room for this element.
d82b684c
SH
226Handles 'set' magic. Uses C<TARG>, so C<dTARGET> or C<dXSTARG> should be
227called to declare it. Do not call multiple C<TARG>-oriented macros to
fbe13c60
KW
228return lists from XSUB's - see C<L</mPUSHi>> instead. See also C<L</XPUSHi>>
229and C<L</mXPUSHi>>.
954c1994
GS
230
231=for apidoc Am|void|PUSHu|UV uv
232Push an unsigned integer onto the stack. The stack must have room for this
d82b684c
SH
233element. Handles 'set' magic. Uses C<TARG>, so C<dTARGET> or C<dXSTARG>
234should be called to declare it. Do not call multiple C<TARG>-oriented
fbe13c60
KW
235macros to return lists from XSUB's - see C<L</mPUSHu>> instead. See also
236C<L</XPUSHu>> and C<L</mXPUSHu>>.
954c1994
GS
237
238=for apidoc Am|void|XPUSHs|SV* sv
239Push an SV onto the stack, extending the stack if necessary. Does not
fbe13c60 240handle 'set' magic. Does not use C<TARG>. See also C<L</XPUSHmortal>>,
d82b684c 241C<PUSHs> and C<PUSHmortal>.
954c1994
GS
242
243=for apidoc Am|void|XPUSHp|char* str|STRLEN len
244Push a string onto the stack, extending the stack if necessary. The C<len>
d82b684c
SH
245indicates the length of the string. Handles 'set' magic. Uses C<TARG>, so
246C<dTARGET> or C<dXSTARG> should be called to declare it. Do not call
247multiple C<TARG>-oriented macros to return lists from XSUB's - see
fbe13c60 248C<L</mXPUSHp>> instead. See also C<L</PUSHp>> and C<L</mPUSHp>>.
954c1994
GS
249
250=for apidoc Am|void|XPUSHn|NV nv
251Push a double onto the stack, extending the stack if necessary. Handles
d82b684c
SH
252'set' magic. Uses C<TARG>, so C<dTARGET> or C<dXSTARG> should be called to
253declare it. Do not call multiple C<TARG>-oriented macros to return lists
fbe13c60
KW
254from XSUB's - see C<L</mXPUSHn>> instead. See also C<L</PUSHn>> and
255C<L</mPUSHn>>.
954c1994
GS
256
257=for apidoc Am|void|XPUSHi|IV iv
258Push an integer onto the stack, extending the stack if necessary. Handles
d82b684c
SH
259'set' magic. Uses C<TARG>, so C<dTARGET> or C<dXSTARG> should be called to
260declare it. Do not call multiple C<TARG>-oriented macros to return lists
fbe13c60
KW
261from XSUB's - see C<L</mXPUSHi>> instead. See also C<L</PUSHi>> and
262C<L</mPUSHi>>.
954c1994
GS
263
264=for apidoc Am|void|XPUSHu|UV uv
aacdac46 265Push an unsigned integer onto the stack, extending the stack if necessary.
d82b684c
SH
266Handles 'set' magic. Uses C<TARG>, so C<dTARGET> or C<dXSTARG> should be
267called to declare it. Do not call multiple C<TARG>-oriented macros to
fbe13c60
KW
268return lists from XSUB's - see C<L</mXPUSHu>> instead. See also C<L</PUSHu>> and
269C<L</mPUSHu>>.
d82b684c 270
6e449a3a
MHM
271=for apidoc Am|void|mPUSHs|SV* sv
272Push an SV onto the stack and mortalizes the SV. The stack must have room
fbe13c60
KW
273for this element. Does not use C<TARG>. See also C<L</PUSHs>> and
274C<L</mXPUSHs>>.
6e449a3a 275
d82b684c
SH
276=for apidoc Am|void|PUSHmortal
277Push a new mortal SV onto the stack. The stack must have room for this
fbe13c60
KW
278element. Does not use C<TARG>. See also C<L</PUSHs>>, C<L</XPUSHmortal>> and
279C<L</XPUSHs>>.
d82b684c
SH
280
281=for apidoc Am|void|mPUSHp|char* str|STRLEN len
282Push a string onto the stack. The stack must have room for this element.
121b7712 283The C<len> indicates the length of the string. Does not use C<TARG>.
fbe13c60 284See also C<L</PUSHp>>, C<L</mXPUSHp>> and C<L</XPUSHp>>.
d82b684c
SH
285
286=for apidoc Am|void|mPUSHn|NV nv
287Push a double onto the stack. The stack must have room for this element.
fbe13c60 288Does not use C<TARG>. See also C<L</PUSHn>>, C<L</mXPUSHn>> and C<L</XPUSHn>>.
d82b684c
SH
289
290=for apidoc Am|void|mPUSHi|IV iv
291Push an integer onto the stack. The stack must have room for this element.
fbe13c60 292Does not use C<TARG>. See also C<L</PUSHi>>, C<L</mXPUSHi>> and C<L</XPUSHi>>.
d82b684c
SH
293
294=for apidoc Am|void|mPUSHu|UV uv
295Push an unsigned integer onto the stack. The stack must have room for this
fbe13c60
KW
296element. Does not use C<TARG>. See also C<L</PUSHu>>, C<L</mXPUSHu>> and
297C<L</XPUSHu>>.
d82b684c 298
6e449a3a
MHM
299=for apidoc Am|void|mXPUSHs|SV* sv
300Push an SV onto the stack, extending the stack if necessary and mortalizes
fbe13c60 301the SV. Does not use C<TARG>. See also C<L</XPUSHs>> and C<L</mPUSHs>>.
6e449a3a 302
d82b684c 303=for apidoc Am|void|XPUSHmortal
121b7712 304Push a new mortal SV onto the stack, extending the stack if necessary.
fbe13c60
KW
305Does not use C<TARG>. See also C<L</XPUSHs>>, C<L</PUSHmortal>> and
306C<L</PUSHs>>.
d82b684c
SH
307
308=for apidoc Am|void|mXPUSHp|char* str|STRLEN len
309Push a string onto the stack, extending the stack if necessary. The C<len>
fbe13c60
KW
310indicates the length of the string. Does not use C<TARG>. See also
311C<L</XPUSHp>>, C<mPUSHp> and C<PUSHp>.
d82b684c
SH
312
313=for apidoc Am|void|mXPUSHn|NV nv
121b7712 314Push a double onto the stack, extending the stack if necessary.
fbe13c60 315Does not use C<TARG>. See also C<L</XPUSHn>>, C<L</mPUSHn>> and C<L</PUSHn>>.
d82b684c
SH
316
317=for apidoc Am|void|mXPUSHi|IV iv
121b7712 318Push an integer onto the stack, extending the stack if necessary.
fbe13c60 319Does not use C<TARG>. See also C<L</XPUSHi>>, C<L</mPUSHi>> and C<L</PUSHi>>.
d82b684c
SH
320
321=for apidoc Am|void|mXPUSHu|UV uv
322Push an unsigned integer onto the stack, extending the stack if necessary.
fbe13c60 323Does not use C<TARG>. See also C<L</XPUSHu>>, C<L</mPUSHu>> and C<L</PUSHu>>.
954c1994
GS
324
325=cut
326*/
327
6768377c
DM
328/* _EXTEND_SAFE_N(n): private helper macro for EXTEND().
329 * Tests whether the value of n would be truncated when implicitly cast to
330 * SSize_t as an arg to stack_grow(). If so, sets it to -1 instead to
331 * trigger a panic. It will be constant folded on platforms where this
332 * can't happen.
333 */
334
335#define _EXTEND_SAFE_N(n) \
336 (sizeof(n) > sizeof(SSize_t) && ((SSize_t)(n) != (n)) ? -1 : (n))
337
865e3ae0 338#ifdef STRESS_REALLOC
aad79b33 339# define EXTEND(p,n) STMT_START { \
6768377c 340 sp = stack_grow(sp,p,_EXTEND_SAFE_N(n)); \
aad79b33 341 PERL_UNUSED_VAR(sp); \
8094bfa4 342 } STMT_END
865e3ae0 343/* Same thing, but update mark register too. */
aad79b33 344# define MEXTEND(p,n) STMT_START { \
ff36bb50 345 const SSize_t markoff = mark - PL_stack_base; \
6768377c 346 sp = stack_grow(sp,p,_EXTEND_SAFE_N(n)); \
aad79b33
JH
347 mark = PL_stack_base + markoff; \
348 PERL_UNUSED_VAR(sp); \
349 } STMT_END
865e3ae0 350#else
6768377c
DM
351
352/* _EXTEND_NEEDS_GROW(p,n): private helper macro for EXTEND().
353 * Tests to see whether n is too big and we need to grow the stack. Be
354 * very careful if modifying this. There are many ways to get things wrong
355 * (wrapping, truncating etc) that could cause a false negative and cause
356 * the call to stack_grow() to be skipped. On the other hand, false
357 * positives are safe.
358 * Bear in mind that sizeof(p) may be less than, equal to, or greater
359 * than sizeof(n), and while n is documented to be signed, someone might
360 * pass an unsigned value or expression. In general don't use casts to
361 * avoid warnings; instead expect the caller to fix their code.
362 * It is legal for p to be greater than PL_stack_max.
363 * If the allocated stack is already very large but current usage is
364 * small, then PL_stack_max - p might wrap round to a negative value, but
365 * this just gives a safe false positive
366 */
367
368# define _EXTEND_NEEDS_GROW(p,n) ( (n) < 0 || PL_stack_max - p < (n))
369
370# define EXTEND(p,n) STMT_START { \
371 if (UNLIKELY(_EXTEND_NEEDS_GROW(p,n))) { \
372 sp = stack_grow(sp,p,_EXTEND_SAFE_N(n)); \
aad79b33
JH
373 PERL_UNUSED_VAR(sp); \
374 } } STMT_END
79072805 375/* Same thing, but update mark register too. */
6768377c
DM
376# define MEXTEND(p,n) STMT_START { \
377 if (UNLIKELY(_EXTEND_NEEDS_GROW(p,n))) { \
378 const SSize_t markoff = mark - PL_stack_base;\
379 sp = stack_grow(sp,p,_EXTEND_SAFE_N(n)); \
aad79b33
JH
380 mark = PL_stack_base + markoff; \
381 PERL_UNUSED_VAR(sp); \
382 } } STMT_END
865e3ae0 383#endif
79072805 384
edba15b0
DM
385/* set TARG to the IV value i. If do_taint is false,
386 * assume that PL_tainted can never be true */
387#define TARGi(i, do_taint) \
388 STMT_START { \
389 IV TARGi_iv = i; \
390 if (LIKELY( \
2efdfb1e 391 ((SvFLAGS(TARG) & (SVTYPEMASK|SVf_THINKFIRST|SVf_IVisUV)) == SVt_IV) \
edba15b0
DM
392 & (do_taint ? !TAINT_get : 1))) \
393 { \
394 /* Cheap SvIOK_only(). \
395 * Assert that flags which SvIOK_only() would test or \
396 * clear can't be set, because we're SVt_IV */ \
397 assert(!(SvFLAGS(TARG) & \
398 (SVf_OOK|SVf_UTF8|(SVf_OK & ~(SVf_IOK|SVp_IOK))))); \
399 SvFLAGS(TARG) |= (SVf_IOK|SVp_IOK); \
400 /* SvIV_set() where sv_any points to head */ \
401 TARG->sv_u.svu_iv = TARGi_iv; \
402 } \
403 else \
404 sv_setiv_mg(targ, TARGi_iv); \
405 } STMT_END
406
407/* set TARG to the UV value u. If do_taint is false,
408 * assume that PL_tainted can never be true */
409#define TARGu(u, do_taint) \
410 STMT_START { \
411 UV TARGu_uv = u; \
412 if (LIKELY( \
2efdfb1e 413 ((SvFLAGS(TARG) & (SVTYPEMASK|SVf_THINKFIRST|SVf_IVisUV)) == SVt_IV) \
edba15b0
DM
414 & (do_taint ? !TAINT_get : 1) \
415 & (TARGu_uv <= (UV)IV_MAX))) \
416 { \
417 /* Cheap SvIOK_only(). \
418 * Assert that flags which SvIOK_only() would test or \
419 * clear can't be set, because we're SVt_IV */ \
420 assert(!(SvFLAGS(TARG) & \
421 (SVf_OOK|SVf_UTF8|(SVf_OK & ~(SVf_IOK|SVp_IOK))))); \
422 SvFLAGS(TARG) |= (SVf_IOK|SVp_IOK); \
423 /* SvIV_set() where sv_any points to head */ \
424 TARG->sv_u.svu_iv = TARGu_uv; \
425 } \
426 else \
427 sv_setuv_mg(targ, TARGu_uv); \
428 } STMT_END
429
430/* set TARG to the NV value n. If do_taint is false,
431 * assume that PL_tainted can never be true */
432#define TARGn(n, do_taint) \
433 STMT_START { \
434 NV TARGn_nv = n; \
435 if (LIKELY( \
436 ((SvFLAGS(TARG) & (SVTYPEMASK|SVf_THINKFIRST)) == SVt_NV) \
437 & (do_taint ? !TAINT_get : 1))) \
438 { \
439 /* Cheap SvNOK_only(). \
440 * Assert that flags which SvNOK_only() would test or \
441 * clear can't be set, because we're SVt_NV */ \
442 assert(!(SvFLAGS(TARG) & \
443 (SVf_OOK|SVf_UTF8|(SVf_OK & ~(SVf_NOK|SVp_NOK))))); \
444 SvFLAGS(TARG) |= (SVf_NOK|SVp_NOK); \
445 SvNV_set(TARG, TARGn_nv); \
446 } \
447 else \
448 sv_setnv_mg(targ, TARGn_nv); \
449 } STMT_END
450
79072805 451#define PUSHs(s) (*++sp = (s))
86547924 452#define PUSHTARG STMT_START { SvSETMAGIC(TARG); PUSHs(TARG); } STMT_END
453#define PUSHp(p,l) STMT_START { sv_setpvn(TARG, (p), (l)); PUSHTARG; } STMT_END
edba15b0
DM
454#define PUSHn(n) STMT_START { TARGn(n,1); PUSHs(TARG); } STMT_END
455#define PUSHi(i) STMT_START { TARGi(i,1); PUSHs(TARG); } STMT_END
456#define PUSHu(u) STMT_START { TARGu(u,1); PUSHs(TARG); } STMT_END
79072805 457
0acfb02f 458#define XPUSHs(s) STMT_START { EXTEND(sp,1); *++sp = (s); } STMT_END
86547924 459#define XPUSHTARG STMT_START { SvSETMAGIC(TARG); XPUSHs(TARG); } STMT_END
460#define XPUSHp(p,l) STMT_START { sv_setpvn(TARG, (p), (l)); XPUSHTARG; } STMT_END
edba15b0
DM
461#define XPUSHn(n) STMT_START { TARGn(n,1); XPUSHs(TARG); } STMT_END
462#define XPUSHi(i) STMT_START { TARGi(i,1); XPUSHs(TARG); } STMT_END
463#define XPUSHu(u) STMT_START { TARGu(u,1); XPUSHs(TARG); } STMT_END
b162f9ea 464#define XPUSHundef STMT_START { SvOK_off(TARG); XPUSHs(TARG); } STMT_END
79072805 465
6e449a3a 466#define mPUSHs(s) PUSHs(sv_2mortal(s))
2cc7004b 467#define PUSHmortal PUSHs(sv_newmortal())
8f14ea01 468#define mPUSHp(p,l) PUSHs(newSVpvn_flags((p), (l), SVs_TEMP))
121b7712
MHM
469#define mPUSHn(n) sv_setnv(PUSHmortal, (NV)(n))
470#define mPUSHi(i) sv_setiv(PUSHmortal, (IV)(i))
471#define mPUSHu(u) sv_setuv(PUSHmortal, (UV)(u))
2cc7004b 472
6e449a3a 473#define mXPUSHs(s) XPUSHs(sv_2mortal(s))
2cc7004b 474#define XPUSHmortal XPUSHs(sv_newmortal())
8f14ea01 475#define mXPUSHp(p,l) STMT_START { EXTEND(sp,1); mPUSHp((p), (l)); } STMT_END
121b7712
MHM
476#define mXPUSHn(n) STMT_START { EXTEND(sp,1); sv_setnv(PUSHmortal, (NV)(n)); } STMT_END
477#define mXPUSHi(i) STMT_START { EXTEND(sp,1); sv_setiv(PUSHmortal, (IV)(i)); } STMT_END
478#define mXPUSHu(u) STMT_START { EXTEND(sp,1); sv_setuv(PUSHmortal, (UV)(u)); } STMT_END
d82b684c 479
79072805 480#define SETs(s) (*sp = s)
86547924 481#define SETTARG STMT_START { SvSETMAGIC(TARG); SETs(TARG); } STMT_END
482#define SETp(p,l) STMT_START { sv_setpvn(TARG, (p), (l)); SETTARG; } STMT_END
edba15b0
DM
483#define SETn(n) STMT_START { TARGn(n,1); SETs(TARG); } STMT_END
484#define SETi(i) STMT_START { TARGi(i,1); SETs(TARG); } STMT_END
485#define SETu(u) STMT_START { TARGu(u,1); SETs(TARG); } STMT_END
a0d0e21e 486
79072805
LW
487#define dTOPss SV *sv = TOPs
488#define dPOPss SV *sv = POPs
65202027
DS
489#define dTOPnv NV value = TOPn
490#define dPOPnv NV value = POPn
6f1401dc 491#define dPOPnv_nomg NV value = (sp--, SvNV_nomg(TOPp1s))
a0d0e21e
LW
492#define dTOPiv IV value = TOPi
493#define dPOPiv IV value = POPi
55497cff 494#define dTOPuv UV value = TOPu
495#define dPOPuv UV value = POPu
79072805 496
7a4c00b4 497#define dPOPXssrl(X) SV *right = POPs; SV *left = CAT2(X,s)
65202027 498#define dPOPXnnrl(X) NV right = POPn; NV left = CAT2(X,n)
7a4c00b4 499#define dPOPXiirl(X) IV right = POPi; IV left = CAT2(X,i)
500
501#define USE_LEFT(sv) \
6b349a5c 502 (SvOK(sv) || !(PL_op->op_flags & OPf_STACKED))
6f1401dc 503#define dPOPXiirl_ul_nomg(X) \
096c060c 504 IV right = (sp--, SvIV_nomg(TOPp1s)); \
6f1401dc 505 SV *leftsv = CAT2(X,s); \
096c060c 506 IV left = USE_LEFT(leftsv) ? SvIV_nomg(leftsv) : 0
7a4c00b4 507
508#define dPOPPOPssrl dPOPXssrl(POP)
509#define dPOPPOPnnrl dPOPXnnrl(POP)
7a4c00b4 510#define dPOPPOPiirl dPOPXiirl(POP)
7a4c00b4 511
512#define dPOPTOPssrl dPOPXssrl(TOP)
513#define dPOPTOPnnrl dPOPXnnrl(TOP)
6f1401dc
DM
514#define dPOPTOPnnrl_nomg \
515 NV right = SvNV_nomg(TOPs); NV left = (sp--, SvNV_nomg(TOPs))
7a4c00b4 516#define dPOPTOPiirl dPOPXiirl(TOP)
6f1401dc
DM
517#define dPOPTOPiirl_ul_nomg dPOPXiirl_ul_nomg(TOP)
518#define dPOPTOPiirl_nomg \
096c060c 519 IV right = SvIV_nomg(TOPs); IV left = (sp--, SvIV_nomg(TOPs))
79072805 520
3280af22
NIS
521#define RETPUSHYES RETURNX(PUSHs(&PL_sv_yes))
522#define RETPUSHNO RETURNX(PUSHs(&PL_sv_no))
523#define RETPUSHUNDEF RETURNX(PUSHs(&PL_sv_undef))
79072805 524
3280af22
NIS
525#define RETSETYES RETURNX(SETs(&PL_sv_yes))
526#define RETSETNO RETURNX(SETs(&PL_sv_no))
527#define RETSETUNDEF RETURNX(SETs(&PL_sv_undef))
5d01050a 528#define RETSETTARG STMT_START { SETTARG; RETURN; } STMT_END
79072805 529
533c011a 530#define ARGTARG PL_op->op_targ
b162f9ea 531
f3574cc6 532#define MAXARG (PL_op->op_private & OPpARG4_MASK)
79072805 533
e336de0d
GS
534#define SWITCHSTACK(f,t) \
535 STMT_START { \
677b06e3 536 AvFILLp(f) = sp - PL_stack_base; \
3280af22 537 PL_stack_base = AvARRAY(t); \
677b06e3 538 PL_stack_max = PL_stack_base + AvMAX(t); \
3280af22 539 sp = PL_stack_sp = PL_stack_base + AvFILLp(t); \
677b06e3 540 PL_curstack = t; \
e336de0d 541 } STMT_END
79072805 542
bbce6d69 543#define EXTEND_MORTAL(n) \
a953aca5
DD
544 STMT_START { \
545 SSize_t eMiX = PL_tmps_ix + (n); \
546 if (UNLIKELY(eMiX >= PL_tmps_max)) \
dc9a870f 547 (void)Perl_tmps_grow_p(aTHX_ eMiX); \
677b06e3 548 } STMT_END
bbce6d69 549
a0d0e21e
LW
550#define AMGf_noright 1
551#define AMGf_noleft 2
552#define AMGf_assign 4
553#define AMGf_unary 8
6f1401dc
DM
554#define AMGf_numeric 0x10 /* for Perl_try_amagic_bin */
555#define AMGf_set 0x20 /* for Perl_try_amagic_bin */
67288365 556#define AMGf_want_list 0x40
636ac8fc 557#define AMGf_numarg 0x80
6f1401dc
DM
558
559
560/* do SvGETMAGIC on the stack args before checking for overload */
561
562#define tryAMAGICun_MG(method, flags) STMT_START { \
5d9574c1 563 if ( UNLIKELY((SvFLAGS(TOPs) & (SVf_ROK|SVs_GMG))) \
6f1401dc
DM
564 && Perl_try_amagic_un(aTHX_ method, flags)) \
565 return NORMAL; \
566 } STMT_END
567#define tryAMAGICbin_MG(method, flags) STMT_START { \
5d9574c1 568 if ( UNLIKELY(((SvFLAGS(TOPm1s)|SvFLAGS(TOPs)) & (SVf_ROK|SVs_GMG))) \
6f1401dc
DM
569 && Perl_try_amagic_bin(aTHX_ method, flags)) \
570 return NORMAL; \
571 } STMT_END
572
31d632c3
DM
573#define AMG_CALLunary(sv,meth) \
574 amagic_call(sv,&PL_sv_undef, meth, AMGf_noright | AMGf_unary)
575
576/* No longer used in core. Use AMG_CALLunary instead */
577#define AMG_CALLun(sv,meth) AMG_CALLunary(sv, CAT2(meth,_amg))
a0d0e21e 578
fc99edcf 579#define tryAMAGICunTARGETlist(meth, jump) \
9f39b4f1 580 STMT_START { \
b5c08826
DM
581 dSP; \
582 SV *tmpsv; \
fc99edcf 583 SV *arg= *sp; \
1c23e2bd 584 U8 gimme = GIMME_V; \
5d9574c1 585 if (UNLIKELY(SvAMAGIC(arg) && \
b5c08826 586 (tmpsv = amagic_call(arg, &PL_sv_undef, meth, \
05fbd38d 587 AMGf_want_list | AMGf_noright \
5d9574c1
DM
588 |AMGf_unary)))) \
589 { \
b5c08826 590 SPAGAIN; \
67288365 591 if (gimme == G_VOID) { \
898c5644 592 NOOP; \
67288365 593 } \
05fbd38d 594 else if (gimme == G_ARRAY) { \
c70927a6
FC
595 SSize_t i; \
596 SSize_t len; \
67288365 597 assert(SvTYPE(tmpsv) == SVt_PVAV); \
b9f2b683 598 len = av_tindex((AV *)tmpsv) + 1; \
67288365
JL
599 (void)POPs; /* get rid of the arg */ \
600 EXTEND(sp, len); \
601 for (i = 0; i < len; ++i) \
602 PUSHs(av_shift((AV *)tmpsv)); \
603 } \
604 else { /* AMGf_want_scalar */ \
605 dATARGET; /* just use the arg's location */ \
606 sv_setsv(TARG, tmpsv); \
607 if (opASSIGN) \
608 sp--; \
609 SETTARG; \
610 } \
b5c08826
DM
611 PUTBACK; \
612 if (jump) { \
86e5639b
GG
613 OP *jump_o = NORMAL->op_next; \
614 while (jump_o->op_type == OP_NULL) \
615 jump_o = jump_o->op_next; \
616 assert(jump_o->op_type == OP_ENTERSUB); \
101d6365 617 (void)POPMARK; \
86e5639b 618 return jump_o->op_next; \
9f39b4f1 619 } \
b5c08826
DM
620 return NORMAL; \
621 } \
9f39b4f1
NC
622 } STMT_END
623
8897dcaa
NC
624/* This is no longer used anywhere in the core. You might wish to consider
625 calling amagic_deref_call() directly, as it has a cleaner interface. */
626#define tryAMAGICunDEREF(meth) \
9f39b4f1 627 STMT_START { \
e89bfaa6 628 sv = amagic_deref_call(*sp, CAT2(meth,_amg)); \
25a9ffce 629 SPAGAIN; \
16e7e110 630 } STMT_END
e8c20960 631
180b7b9b 632
533c011a 633#define opASSIGN (PL_op->op_flags & OPf_STACKED)
a0d0e21e 634
78f9721b
SM
635/*
636=for apidoc mU||LVRET
637True if this op will be the return value of an lvalue subroutine
638
639=cut */
9d96b2e7 640#define LVRET ((PL_op->op_private & OPpMAYBE_LVSUB) && is_lvalue_sub())
1b6737cc 641
d30e492c
VP
642#define SvCANEXISTDELETE(sv) \
643 (!SvRMAGICAL(sv) \
2c5f48c2
FC
644 || !(mg = mg_find((const SV *) sv, PERL_MAGIC_tied)) \
645 || ( (stash = SvSTASH(SvRV(SvTIED_obj(MUTABLE_SV(sv), mg)))) \
d30e492c
VP
646 && gv_fetchmethod_autoload(stash, "EXISTS", TRUE) \
647 && gv_fetchmethod_autoload(stash, "DELETE", TRUE) \
648 ) \
649 )
650
d682515d 651#ifdef PERL_CORE
557fbd17 652
d682515d
NC
653/* These are just for Perl_tied_method(), which is not part of the public API.
654 Use 0x04 rather than the next available bit, to help the compiler if the
655 architecture can generate more efficient instructions. */
656# define TIED_METHOD_MORTALIZE_NOT_NEEDED 0x04
657# define TIED_METHOD_ARGUMENTS_ON_STACK 0x08
94bc412f 658# define TIED_METHOD_SAY 0x10
557fbd17
FC
659
660/* Used in various places that need to dereference a glob or globref */
094a3eec 661# define MAYBE_DEREF_GV_flags(sv,phlags) \
557fbd17 662 ( \
094a3eec 663 (void)(phlags & SV_GMAGIC && (SvGETMAGIC(sv),0)), \
557fbd17 664 isGV_with_GP(sv) \
4e794a06 665 ? (GV *)(sv) \
f8afbfa6
FC
666 : SvROK(sv) && SvTYPE(SvRV(sv)) <= SVt_PVLV && \
667 (SvGETMAGIC(SvRV(sv)), isGV_with_GP(SvRV(sv))) \
557fbd17
FC
668 ? (GV *)SvRV(sv) \
669 : NULL \
670 )
094a3eec
FC
671# define MAYBE_DEREF_GV(sv) MAYBE_DEREF_GV_flags(sv,SV_GMAGIC)
672# define MAYBE_DEREF_GV_nomg(sv) MAYBE_DEREF_GV_flags(sv,0)
557fbd17 673
db4cf31d 674# define FIND_RUNCV_padid_eq 1
b4b0692a 675# define FIND_RUNCV_level_eq 2
70794f7b 676
d682515d
NC
677#endif
678
1b6737cc 679/*
14d04a33 680 * ex: set ts=8 sts=4 sw=4 et:
1b6737cc 681 */