This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Bytecode mustn't save the NVX for hashes now that the NVX is a union
[perl5.git] / pp.h
CommitLineData
a0d0e21e 1/* pp.h
79072805 2 *
4bb101f2 3 * Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1998, 1999,
1d325971 4 * 2000, 2001, 2002, 2003, 2004, 2005 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
GS
16=for apidoc AmU||SP
17Stack pointer. This is usually handled by C<xsubpp>. See C<dSP> and
18C<SPAGAIN>.
19
20=for apidoc AmU||MARK
21Stack marker variable for the XSUB. See C<dMARK>.
22
c578083c 23=for apidoc Am|void|PUSHMARK|SP
954c1994
GS
24Opening bracket for arguments on a callback. See C<PUTBACK> and
25L<perlcall>.
26
27=for apidoc Ams||dSP
28Declares a local copy of perl's stack pointer for the XSUB, available via
29the C<SP> macro. See C<SP>.
30
fac3506f
MS
31=for apidoc ms||djSP
32
33Declare Just C<SP>. This is actually identical to C<dSP>, and declares
34a local copy of perl's stack pointer, available via the C<SP> macro.
35See C<SP>. (Available for backward source code compatibility with the
36old (Perl 5.005) thread model.)
37
954c1994
GS
38=for apidoc Ams||dMARK
39Declare a stack marker variable, C<mark>, for the XSUB. See C<MARK> and
40C<dORIGMARK>.
41
42=for apidoc Ams||dORIGMARK
43Saves the original stack mark for the XSUB. See C<ORIGMARK>.
44
45=for apidoc AmU||ORIGMARK
46The original stack mark for the XSUB. See C<dORIGMARK>.
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
16e7e110
TH
58#define PUSHMARK(p) \
59 STMT_START { \
60 if (++PL_markstack_ptr == PL_markstack_max) \
61 markstack_grow(); \
62 *PL_markstack_ptr = (p) - PL_stack_base; \
63 } STMT_END
a0d0e21e 64
3280af22
NIS
65#define TOPMARK (*PL_markstack_ptr)
66#define POPMARK (*PL_markstack_ptr--)
a0d0e21e 67
39644a26
TJ
68#define dSP register SV **sp = PL_stack_sp
69#define djSP dSP
3280af22 70#define dMARK register SV **mark = PL_stack_base + POPMARK
a3b680e6 71#define dORIGMARK const I32 origmark = mark - PL_stack_base
3280af22 72#define ORIGMARK (PL_stack_base + origmark)
79072805 73
3280af22 74#define SPAGAIN sp = PL_stack_sp
16e7e110 75#define MSPAGAIN STMT_START { sp = PL_stack_sp; mark = ORIGMARK; } STMT_END
79072805 76
533c011a 77#define GETTARGETSTACKED targ = (PL_op->op_flags & OPf_STACKED ? POPs : PAD_SV(PL_op->op_targ))
79072805
LW
78#define dTARGETSTACKED SV * GETTARGETSTACKED
79
533c011a 80#define GETTARGET targ = PAD_SV(PL_op->op_targ)
79072805
LW
81#define dTARGET SV * GETTARGET
82
533c011a 83#define GETATARGET targ = (PL_op->op_flags & OPf_STACKED ? sp[-1] : PAD_SV(PL_op->op_targ))
79072805
LW
84#define dATARGET SV * GETATARGET
85
86#define dTARG SV *targ
87
533c011a 88#define NORMAL PL_op->op_next
cea2e8a9 89#define DIE return Perl_die
5df617be 90#define DIE_NULL return DieNull
79072805 91
954c1994
GS
92/*
93=for apidoc Ams||PUTBACK
94Closing bracket for XSUB arguments. This is usually handled by C<xsubpp>.
95See C<PUSHMARK> and L<perlcall> for other uses.
96
97=for apidoc Amn|SV*|POPs
98Pops an SV off the stack.
99
100=for apidoc Amn|char*|POPp
595ae481
NIS
101Pops a string off the stack. Deprecated. New code should provide
102a STRLEN n_a and use POPpx.
103
104=for apidoc Amn|char*|POPpx
954c1994 105Pops a string off the stack.
595ae481
NIS
106Requires a variable STRLEN n_a in scope.
107
108=for apidoc Amn|char*|POPpbytex
109Pops a string off the stack which must consist of bytes i.e. characters < 256.
110Requires a variable STRLEN n_a in scope.
954c1994
GS
111
112=for apidoc Amn|NV|POPn
113Pops a double off the stack.
114
115=for apidoc Amn|IV|POPi
116Pops an integer off the stack.
117
118=for apidoc Amn|long|POPl
119Pops a long off the stack.
120
121=cut
122*/
123
3280af22 124#define PUTBACK PL_stack_sp = sp
79072805
LW
125#define RETURN return PUTBACK, NORMAL
126#define RETURNOP(o) return PUTBACK, o
127#define RETURNX(x) return x, PUTBACK, NORMAL
128
129#define POPs (*sp--)
2d8e6c8d
GS
130#define POPp (SvPVx(POPs, PL_na)) /* deprecated */
131#define POPpx (SvPVx(POPs, n_a))
595ae481 132#define POPpbytex (SvPVbytex(POPs, n_a))
463ee0b2 133#define POPn (SvNVx(POPs))
a0d0e21e 134#define POPi ((IV)SvIVx(POPs))
ff68c719 135#define POPu ((UV)SvUVx(POPs))
463ee0b2 136#define POPl ((long)SvIVx(POPs))
d9b3e12d 137#define POPul ((unsigned long)SvIVx(POPs))
1b8cd678 138#ifdef HAS_QUAD
d9b3e12d 139#define POPq ((Quad_t)SvIVx(POPs))
c5a0f51a 140#define POPuq ((Uquad_t)SvUVx(POPs))
d9b3e12d 141#endif
79072805
LW
142
143#define TOPs (*sp)
56370e9f 144#define TOPm1s (*(sp-1))
7dca457a 145#define TOPp1s (*(sp+1))
2d8e6c8d
GS
146#define TOPp (SvPV(TOPs, PL_na)) /* deprecated */
147#define TOPpx (SvPV(TOPs, n_a))
463ee0b2 148#define TOPn (SvNV(TOPs))
a0d0e21e 149#define TOPi ((IV)SvIV(TOPs))
ff68c719 150#define TOPu ((UV)SvUV(TOPs))
463ee0b2 151#define TOPl ((long)SvIV(TOPs))
c5a0f51a 152#define TOPul ((unsigned long)SvUV(TOPs))
1b8cd678 153#ifdef HAS_QUAD
d9b3e12d 154#define TOPq ((Quad_t)SvIV(TOPs))
c5a0f51a 155#define TOPuq ((Uquad_t)SvUV(TOPs))
d9b3e12d 156#endif
79072805
LW
157
158/* Go to some pains in the rare event that we must extend the stack. */
954c1994
GS
159
160/*
161=for apidoc Am|void|EXTEND|SP|int nitems
162Used to extend the argument stack for an XSUB's return values. Once
4375e838 163used, guarantees that there is room for at least C<nitems> to be pushed
954c1994
GS
164onto the stack.
165
166=for apidoc Am|void|PUSHs|SV* sv
aacdac46 167Push an SV onto the stack. The stack must have room for this element.
d82b684c
SH
168Does not handle 'set' magic. Does not use C<TARG>. See also C<PUSHmortal>,
169C<XPUSHs> and C<XPUSHmortal>.
954c1994
GS
170
171=for apidoc Am|void|PUSHp|char* str|STRLEN len
172Push a string onto the stack. The stack must have room for this element.
d82b684c
SH
173The C<len> indicates the length of the string. Handles 'set' magic. Uses
174C<TARG>, so C<dTARGET> or C<dXSTARG> should be called to declare it. Do not
175call multiple C<TARG>-oriented macros to return lists from XSUB's - see
176C<mPUSHp> instead. See also C<XPUSHp> and C<mXPUSHp>.
954c1994
GS
177
178=for apidoc Am|void|PUSHn|NV nv
179Push a double onto the stack. The stack must have room for this element.
d82b684c
SH
180Handles 'set' magic. Uses C<TARG>, so C<dTARGET> or C<dXSTARG> should be
181called to declare it. Do not call multiple C<TARG>-oriented macros to
182return lists from XSUB's - see C<mPUSHn> instead. See also C<XPUSHn> and
183C<mXPUSHn>.
954c1994
GS
184
185=for apidoc Am|void|PUSHi|IV iv
186Push an integer onto the stack. The stack must have room for this element.
d82b684c
SH
187Handles 'set' magic. Uses C<TARG>, so C<dTARGET> or C<dXSTARG> should be
188called to declare it. Do not call multiple C<TARG>-oriented macros to
189return lists from XSUB's - see C<mPUSHi> instead. See also C<XPUSHi> and
190C<mXPUSHi>.
954c1994
GS
191
192=for apidoc Am|void|PUSHu|UV uv
193Push an unsigned integer onto the stack. The stack must have room for this
d82b684c
SH
194element. Handles 'set' magic. Uses C<TARG>, so C<dTARGET> or C<dXSTARG>
195should be called to declare it. Do not call multiple C<TARG>-oriented
196macros to return lists from XSUB's - see C<mPUSHu> instead. See also
197C<XPUSHu> and C<mXPUSHu>.
954c1994
GS
198
199=for apidoc Am|void|XPUSHs|SV* sv
200Push an SV onto the stack, extending the stack if necessary. Does not
d82b684c
SH
201handle 'set' magic. Does not use C<TARG>. See also C<XPUSHmortal>,
202C<PUSHs> and C<PUSHmortal>.
954c1994
GS
203
204=for apidoc Am|void|XPUSHp|char* str|STRLEN len
205Push a string onto the stack, extending the stack if necessary. The C<len>
d82b684c
SH
206indicates the length of the string. Handles 'set' magic. Uses C<TARG>, so
207C<dTARGET> or C<dXSTARG> should be called to declare it. Do not call
208multiple C<TARG>-oriented macros to return lists from XSUB's - see
209C<mXPUSHp> instead. See also C<PUSHp> and C<mPUSHp>.
954c1994
GS
210
211=for apidoc Am|void|XPUSHn|NV nv
212Push a double onto the stack, extending the stack if necessary. Handles
d82b684c
SH
213'set' magic. Uses C<TARG>, so C<dTARGET> or C<dXSTARG> should be called to
214declare it. Do not call multiple C<TARG>-oriented macros to return lists
215from XSUB's - see C<mXPUSHn> instead. See also C<PUSHn> and C<mPUSHn>.
954c1994
GS
216
217=for apidoc Am|void|XPUSHi|IV iv
218Push an integer onto the stack, extending the stack if necessary. Handles
d82b684c
SH
219'set' magic. Uses C<TARG>, so C<dTARGET> or C<dXSTARG> should be called to
220declare it. Do not call multiple C<TARG>-oriented macros to return lists
221from XSUB's - see C<mXPUSHi> instead. See also C<PUSHi> and C<mPUSHi>.
954c1994
GS
222
223=for apidoc Am|void|XPUSHu|UV uv
aacdac46 224Push an unsigned integer onto the stack, extending the stack if necessary.
d82b684c
SH
225Handles 'set' magic. Uses C<TARG>, so C<dTARGET> or C<dXSTARG> should be
226called to declare it. Do not call multiple C<TARG>-oriented macros to
227return lists from XSUB's - see C<mXPUSHu> instead. See also C<PUSHu> and
228C<mPUSHu>.
229
230=for apidoc Am|void|PUSHmortal
231Push a new mortal SV onto the stack. The stack must have room for this
232element. Does not handle 'set' magic. Does not use C<TARG>. See also
233C<PUSHs>, C<XPUSHmortal> and C<XPUSHs>.
234
235=for apidoc Am|void|mPUSHp|char* str|STRLEN len
236Push a string onto the stack. The stack must have room for this element.
de4f2208
RGS
237The C<len> indicates the length of the string. Handles 'set' magic. Does
238not use C<TARG>. See also C<PUSHp>, C<mXPUSHp> and C<XPUSHp>.
d82b684c
SH
239
240=for apidoc Am|void|mPUSHn|NV nv
241Push a double onto the stack. The stack must have room for this element.
de4f2208
RGS
242Handles 'set' magic. Does not use C<TARG>. See also C<PUSHn>, C<mXPUSHn>
243and C<XPUSHn>.
d82b684c
SH
244
245=for apidoc Am|void|mPUSHi|IV iv
246Push an integer onto the stack. The stack must have room for this element.
de4f2208
RGS
247Handles 'set' magic. Does not use C<TARG>. See also C<PUSHi>, C<mXPUSHi>
248and C<XPUSHi>.
d82b684c
SH
249
250=for apidoc Am|void|mPUSHu|UV uv
251Push an unsigned integer onto the stack. The stack must have room for this
de4f2208
RGS
252element. Handles 'set' magic. Does not use C<TARG>. See also C<PUSHu>,
253C<mXPUSHu> and C<XPUSHu>.
d82b684c
SH
254
255=for apidoc Am|void|XPUSHmortal
256Push a new mortal SV onto the stack, extending the stack if necessary. Does
257not handle 'set' magic. Does not use C<TARG>. See also C<XPUSHs>,
258C<PUSHmortal> and C<PUSHs>.
259
260=for apidoc Am|void|mXPUSHp|char* str|STRLEN len
261Push a string onto the stack, extending the stack if necessary. The C<len>
de4f2208
RGS
262indicates the length of the string. Handles 'set' magic. Does not use
263C<TARG>. See also C<XPUSHp>, C<mPUSHp> and C<PUSHp>.
d82b684c
SH
264
265=for apidoc Am|void|mXPUSHn|NV nv
de4f2208
RGS
266Push a double onto the stack, extending the stack if necessary. Handles
267'set' magic. Does not use C<TARG>. See also C<XPUSHn>, C<mPUSHn> and
268C<PUSHn>.
d82b684c
SH
269
270=for apidoc Am|void|mXPUSHi|IV iv
de4f2208
RGS
271Push an integer onto the stack, extending the stack if necessary. Handles
272'set' magic. Does not use C<TARG>. See also C<XPUSHi>, C<mPUSHi> and
273C<PUSHi>.
d82b684c
SH
274
275=for apidoc Am|void|mXPUSHu|UV uv
276Push an unsigned integer onto the stack, extending the stack if necessary.
de4f2208
RGS
277Handles 'set' magic. Does not use C<TARG>. See also C<XPUSHu>, C<mPUSHu>
278and C<PUSHu>.
954c1994
GS
279
280=cut
281*/
282
c5661c80 283#define EXTEND(p,n) STMT_START { if (PL_stack_max - p < (int)(n)) { \
bbce6d69 284 sp = stack_grow(sp,p, (int) (n)); \
86547924 285 } } STMT_END
a0d0e21e 286
79072805 287/* Same thing, but update mark register too. */
c5661c80 288#define MEXTEND(p,n) STMT_START {if (PL_stack_max - p < (int)(n)) { \
3280af22 289 int markoff = mark - PL_stack_base; \
bbce6d69 290 sp = stack_grow(sp,p,(int) (n)); \
3280af22 291 mark = PL_stack_base + markoff; \
86547924 292 } } STMT_END
79072805
LW
293
294#define PUSHs(s) (*++sp = (s))
86547924 295#define PUSHTARG STMT_START { SvSETMAGIC(TARG); PUSHs(TARG); } STMT_END
296#define PUSHp(p,l) STMT_START { sv_setpvn(TARG, (p), (l)); PUSHTARG; } STMT_END
65202027 297#define PUSHn(n) STMT_START { sv_setnv(TARG, (NV)(n)); PUSHTARG; } STMT_END
86547924 298#define PUSHi(i) STMT_START { sv_setiv(TARG, (IV)(i)); PUSHTARG; } STMT_END
55497cff 299#define PUSHu(u) STMT_START { sv_setuv(TARG, (UV)(u)); PUSHTARG; } STMT_END
79072805 300
86547924 301#define XPUSHs(s) STMT_START { EXTEND(sp,1); (*++sp = (s)); } STMT_END
302#define XPUSHTARG STMT_START { SvSETMAGIC(TARG); XPUSHs(TARG); } STMT_END
303#define XPUSHp(p,l) STMT_START { sv_setpvn(TARG, (p), (l)); XPUSHTARG; } STMT_END
65202027 304#define XPUSHn(n) STMT_START { sv_setnv(TARG, (NV)(n)); XPUSHTARG; } STMT_END
86547924 305#define XPUSHi(i) STMT_START { sv_setiv(TARG, (IV)(i)); XPUSHTARG; } STMT_END
55497cff 306#define XPUSHu(u) STMT_START { sv_setuv(TARG, (UV)(u)); XPUSHTARG; } STMT_END
b162f9ea 307#define XPUSHundef STMT_START { SvOK_off(TARG); XPUSHs(TARG); } STMT_END
79072805 308
2cc7004b
MHM
309#define PUSHmortal PUSHs(sv_newmortal())
310#define mPUSHp(p,l) sv_setpvn_mg(PUSHmortal, (p), (l))
311#define mPUSHn(n) sv_setnv_mg(PUSHmortal, (NV)(n))
312#define mPUSHi(i) sv_setiv_mg(PUSHmortal, (IV)(i))
313#define mPUSHu(u) sv_setuv_mg(PUSHmortal, (UV)(u))
314
315#define XPUSHmortal XPUSHs(sv_newmortal())
316#define mXPUSHp(p,l) STMT_START { EXTEND(sp,1); sv_setpvn_mg(PUSHmortal, (p), (l)); } STMT_END
317#define mXPUSHn(n) STMT_START { EXTEND(sp,1); sv_setnv_mg(PUSHmortal, (NV)(n)); } STMT_END
318#define mXPUSHi(i) STMT_START { EXTEND(sp,1); sv_setiv_mg(PUSHmortal, (IV)(i)); } STMT_END
319#define mXPUSHu(u) STMT_START { EXTEND(sp,1); sv_setuv_mg(PUSHmortal, (UV)(u)); } STMT_END
d82b684c 320
79072805 321#define SETs(s) (*sp = s)
86547924 322#define SETTARG STMT_START { SvSETMAGIC(TARG); SETs(TARG); } STMT_END
323#define SETp(p,l) STMT_START { sv_setpvn(TARG, (p), (l)); SETTARG; } STMT_END
65202027 324#define SETn(n) STMT_START { sv_setnv(TARG, (NV)(n)); SETTARG; } STMT_END
86547924 325#define SETi(i) STMT_START { sv_setiv(TARG, (IV)(i)); SETTARG; } STMT_END
55497cff 326#define SETu(u) STMT_START { sv_setuv(TARG, (UV)(u)); SETTARG; } STMT_END
a0d0e21e 327
79072805
LW
328#define dTOPss SV *sv = TOPs
329#define dPOPss SV *sv = POPs
65202027
DS
330#define dTOPnv NV value = TOPn
331#define dPOPnv NV value = POPn
a0d0e21e
LW
332#define dTOPiv IV value = TOPi
333#define dPOPiv IV value = POPi
55497cff 334#define dTOPuv UV value = TOPu
335#define dPOPuv UV value = POPu
1b8cd678 336#ifdef HAS_QUAD
2d4389e4
JH
337#define dTOPqv Quad_t value = TOPu
338#define dPOPqv Quad_t value = POPu
339#define dTOPuqv Uquad_t value = TOPuq
340#define dPOPuqv Uquad_t value = POPuq
341#endif
79072805 342
7a4c00b4 343#define dPOPXssrl(X) SV *right = POPs; SV *left = CAT2(X,s)
65202027 344#define dPOPXnnrl(X) NV right = POPn; NV left = CAT2(X,n)
7a4c00b4 345#define dPOPXiirl(X) IV right = POPi; IV left = CAT2(X,i)
346
347#define USE_LEFT(sv) \
533c011a 348 (SvOK(sv) || SvGMAGICAL(sv) || !(PL_op->op_flags & OPf_STACKED))
7a4c00b4 349#define dPOPXnnrl_ul(X) \
65202027 350 NV right = POPn; \
7a4c00b4 351 SV *leftsv = CAT2(X,s); \
65202027 352 NV left = USE_LEFT(leftsv) ? SvNV(leftsv) : 0.0
7a4c00b4 353#define dPOPXiirl_ul(X) \
354 IV right = POPi; \
355 SV *leftsv = CAT2(X,s); \
356 IV left = USE_LEFT(leftsv) ? SvIV(leftsv) : 0
357
358#define dPOPPOPssrl dPOPXssrl(POP)
359#define dPOPPOPnnrl dPOPXnnrl(POP)
360#define dPOPPOPnnrl_ul dPOPXnnrl_ul(POP)
361#define dPOPPOPiirl dPOPXiirl(POP)
362#define dPOPPOPiirl_ul dPOPXiirl_ul(POP)
363
364#define dPOPTOPssrl dPOPXssrl(TOP)
365#define dPOPTOPnnrl dPOPXnnrl(TOP)
366#define dPOPTOPnnrl_ul dPOPXnnrl_ul(TOP)
367#define dPOPTOPiirl dPOPXiirl(TOP)
368#define dPOPTOPiirl_ul dPOPXiirl_ul(TOP)
79072805 369
3280af22
NIS
370#define RETPUSHYES RETURNX(PUSHs(&PL_sv_yes))
371#define RETPUSHNO RETURNX(PUSHs(&PL_sv_no))
372#define RETPUSHUNDEF RETURNX(PUSHs(&PL_sv_undef))
79072805 373
3280af22
NIS
374#define RETSETYES RETURNX(SETs(&PL_sv_yes))
375#define RETSETNO RETURNX(SETs(&PL_sv_no))
376#define RETSETUNDEF RETURNX(SETs(&PL_sv_undef))
79072805 377
533c011a 378#define ARGTARG PL_op->op_targ
b162f9ea
IZ
379
380 /* See OPpTARGET_MY: */
381#define MAXARG (PL_op->op_private & 15)
79072805 382
e336de0d
GS
383#define SWITCHSTACK(f,t) \
384 STMT_START { \
677b06e3 385 AvFILLp(f) = sp - PL_stack_base; \
3280af22 386 PL_stack_base = AvARRAY(t); \
677b06e3 387 PL_stack_max = PL_stack_base + AvMAX(t); \
3280af22 388 sp = PL_stack_sp = PL_stack_base + AvFILLp(t); \
677b06e3 389 PL_curstack = t; \
e336de0d 390 } STMT_END
79072805 391
bbce6d69 392#define EXTEND_MORTAL(n) \
677b06e3
GS
393 STMT_START { \
394 if (PL_tmps_ix + (n) >= PL_tmps_max) \
395 tmps_grow(n); \
396 } STMT_END
bbce6d69 397
a0d0e21e
LW
398#define AMGf_noright 1
399#define AMGf_noleft 2
400#define AMGf_assign 4
401#define AMGf_unary 8
402
86547924 403#define tryAMAGICbinW(meth,assign,set) STMT_START { \
3280af22 404 if (PL_amagic_generation) { \
a0d0e21e
LW
405 SV* tmpsv; \
406 SV* right= *(sp); SV* left= *(sp-1);\
407 if ((SvAMAGIC(left)||SvAMAGIC(right))&&\
408 (tmpsv=amagic_call(left, \
409 right, \
410 CAT2(meth,_amg), \
411 (assign)? AMGf_assign: 0))) {\
412 SPAGAIN; \
413 (void)POPs; set(tmpsv); RETURN; } \
414 } \
86547924 415 } STMT_END
a0d0e21e
LW
416
417#define tryAMAGICbin(meth,assign) tryAMAGICbinW(meth,assign,SETsv)
418#define tryAMAGICbinSET(meth,assign) tryAMAGICbinW(meth,assign,SETs)
419
3280af22 420#define AMG_CALLun(sv,meth) amagic_call(sv,&PL_sv_undef, \
a0d0e21e
LW
421 CAT2(meth,_amg),AMGf_noright | AMGf_unary)
422#define AMG_CALLbinL(left,right,meth) \
423 amagic_call(left,right,CAT2(meth,_amg),AMGf_noright)
424
e8c20960 425#define tryAMAGICunW(meth,set,shift,ret) STMT_START { \
3280af22 426 if (PL_amagic_generation) { \
a0d0e21e 427 SV* tmpsv; \
f5284f61 428 SV* arg= sp[shift]; \
c4459e09 429 if(0) goto am_again; /* shut up unused warning */ \
f5284f61 430 am_again: \
a0d0e21e
LW
431 if ((SvAMAGIC(arg))&&\
432 (tmpsv=AMG_CALLun(arg,meth))) {\
f5284f61 433 SPAGAIN; if (shift) sp += shift; \
e8c20960 434 set(tmpsv); ret; } \
a0d0e21e 435 } \
86547924 436 } STMT_END
a0d0e21e 437
f5284f61
IZ
438#define FORCE_SETs(sv) STMT_START { sv_setsv(TARG, (sv)); SETTARG; } STMT_END
439
b162f9ea
IZ
440#define tryAMAGICun(meth) tryAMAGICunW(meth,SETsvUN,0,RETURN)
441#define tryAMAGICunSET(meth) tryAMAGICunW(meth,SETs,0,RETURN)
f5284f61 442#define tryAMAGICunTARGET(meth, shift) \
16e7e110 443 STMT_START { dSP; sp--; /* get TARGET from below PL_stack_sp */ \
f5284f61 444 { dTARGETSTACKED; \
16e7e110
TH
445 { dSP; tryAMAGICunW(meth,FORCE_SETs,shift,RETURN);}}} STMT_END
446
447#define setAGAIN(ref) \
448 STMT_START { \
449 sv = ref; \
450 if (!SvROK(ref)) \
451 Perl_croak(aTHX_ "Overloaded dereference did not return a reference"); \
452 if (ref != arg && SvRV(ref) != SvRV(arg)) { \
453 arg = ref; \
454 goto am_again; \
455 } \
456 } STMT_END
e8c20960 457
0f4592ef 458#define tryAMAGICunDEREF(meth) tryAMAGICunW(meth,setAGAIN,0,(void)0)
a0d0e21e 459
533c011a 460#define opASSIGN (PL_op->op_flags & OPf_STACKED)
e9905555 461#define SETsv(sv) STMT_START { \
b162f9ea
IZ
462 if (opASSIGN || (SvFLAGS(TARG) & SVs_PADMY)) \
463 { sv_setsv(TARG, (sv)); SETTARG; } \
464 else SETs(sv); } STMT_END
465
466#define SETsvUN(sv) STMT_START { \
467 if (SvFLAGS(TARG) & SVs_PADMY) \
468 { sv_setsv(TARG, (sv)); SETTARG; } \
e9905555 469 else SETs(sv); } STMT_END
a0d0e21e
LW
470
471/* newSVsv does not behave as advertised, so we copy missing
472 * information by hand */
473
76e3520e
GS
474/* SV* ref causes confusion with the member variable
475 changed SV* ref to SV* tmpRef */
476#define RvDEEPCP(rv) STMT_START { SV* tmpRef=SvRV(rv); \
477 if (SvREFCNT(tmpRef)>1) { \
b162af07 478 SvRV_set(rv, AMG_CALLun(rv,copy)); \
76e3520e 479 SvREFCNT_dec(tmpRef); \
86547924 480 } } STMT_END
78f9721b
SM
481
482/*
483=for apidoc mU||LVRET
484True if this op will be the return value of an lvalue subroutine
485
486=cut */
9d96b2e7 487#define LVRET ((PL_op->op_private & OPpMAYBE_LVSUB) && is_lvalue_sub())