Commit | Line | Data |
a0d0e21e |
1 | /* pp.h |
79072805 |
2 | * |
1761cee5 |
3 | * Copyright (c) 1991-2000, Larry Wall |
79072805 |
4 | * |
a0d0e21e |
5 | * You may distribute under the terms of either the GNU General Public |
6 | * License or the Artistic License, as specified in the README file. |
79072805 |
7 | * |
a0d0e21e |
8 | */ |
79072805 |
9 | |
11343788 |
10 | #ifdef USE_THREADS |
11 | #define ARGS thr |
52e1cb5e |
12 | #define dARGS struct perl_thread *thr; |
11343788 |
13 | #else |
79072805 |
14 | #define ARGS |
79072805 |
15 | #define dARGS |
11343788 |
16 | #endif /* USE_THREADS */ |
22c35a8c |
17 | |
cea2e8a9 |
18 | #define PP(s) OP * Perl_##s(pTHX) |
79072805 |
19 | |
954c1994 |
20 | /* |
21 | =for apidoc AmU||SP |
22 | Stack pointer. This is usually handled by C<xsubpp>. See C<dSP> and |
23 | C<SPAGAIN>. |
24 | |
25 | =for apidoc AmU||MARK |
26 | Stack marker variable for the XSUB. See C<dMARK>. |
27 | |
28 | =for apidoc Ams||PUSHMARK |
29 | Opening bracket for arguments on a callback. See C<PUTBACK> and |
30 | L<perlcall>. |
31 | |
32 | =for apidoc Ams||dSP |
33 | Declares a local copy of perl's stack pointer for the XSUB, available via |
34 | the C<SP> macro. See C<SP>. |
35 | |
36 | =for apidoc Ams||dMARK |
37 | Declare a stack marker variable, C<mark>, for the XSUB. See C<MARK> and |
38 | C<dORIGMARK>. |
39 | |
40 | =for apidoc Ams||dORIGMARK |
41 | Saves the original stack mark for the XSUB. See C<ORIGMARK>. |
42 | |
43 | =for apidoc AmU||ORIGMARK |
44 | The original stack mark for the XSUB. See C<dORIGMARK>. |
45 | |
46 | =for apidoc Ams||SPAGAIN |
47 | Refetch the stack pointer. Used after a callback. See L<perlcall>. |
48 | |
49 | =cut |
50 | */ |
51 | |
79072805 |
52 | #define SP sp |
53 | #define MARK mark |
54 | #define TARG targ |
55 | |
3280af22 |
56 | #define PUSHMARK(p) if (++PL_markstack_ptr == PL_markstack_max) \ |
a0d0e21e |
57 | markstack_grow(); \ |
3280af22 |
58 | *PL_markstack_ptr = (p) - PL_stack_base |
a0d0e21e |
59 | |
3280af22 |
60 | #define TOPMARK (*PL_markstack_ptr) |
61 | #define POPMARK (*PL_markstack_ptr--) |
a0d0e21e |
62 | |
3280af22 |
63 | #define djSP register SV **sp = PL_stack_sp |
4e35701f |
64 | #define dSP dTHR; djSP |
3280af22 |
65 | #define dMARK register SV **mark = PL_stack_base + POPMARK |
66 | #define dORIGMARK I32 origmark = mark - PL_stack_base |
67 | #define SETORIGMARK origmark = mark - PL_stack_base |
68 | #define ORIGMARK (PL_stack_base + origmark) |
79072805 |
69 | |
3280af22 |
70 | #define SPAGAIN sp = PL_stack_sp |
71 | #define MSPAGAIN sp = PL_stack_sp; mark = ORIGMARK |
79072805 |
72 | |
533c011a |
73 | #define GETTARGETSTACKED targ = (PL_op->op_flags & OPf_STACKED ? POPs : PAD_SV(PL_op->op_targ)) |
79072805 |
74 | #define dTARGETSTACKED SV * GETTARGETSTACKED |
75 | |
533c011a |
76 | #define GETTARGET targ = PAD_SV(PL_op->op_targ) |
79072805 |
77 | #define dTARGET SV * GETTARGET |
78 | |
533c011a |
79 | #define GETATARGET targ = (PL_op->op_flags & OPf_STACKED ? sp[-1] : PAD_SV(PL_op->op_targ)) |
79072805 |
80 | #define dATARGET SV * GETATARGET |
81 | |
82 | #define dTARG SV *targ |
83 | |
533c011a |
84 | #define NORMAL PL_op->op_next |
cea2e8a9 |
85 | #define DIE return Perl_die |
79072805 |
86 | |
954c1994 |
87 | /* |
88 | =for apidoc Ams||PUTBACK |
89 | Closing bracket for XSUB arguments. This is usually handled by C<xsubpp>. |
90 | See C<PUSHMARK> and L<perlcall> for other uses. |
91 | |
92 | =for apidoc Amn|SV*|POPs |
93 | Pops an SV off the stack. |
94 | |
95 | =for apidoc Amn|char*|POPp |
96 | Pops a string off the stack. |
97 | |
98 | =for apidoc Amn|NV|POPn |
99 | Pops a double off the stack. |
100 | |
101 | =for apidoc Amn|IV|POPi |
102 | Pops an integer off the stack. |
103 | |
104 | =for apidoc Amn|long|POPl |
105 | Pops a long off the stack. |
106 | |
107 | =cut |
108 | */ |
109 | |
3280af22 |
110 | #define PUTBACK PL_stack_sp = sp |
79072805 |
111 | #define RETURN return PUTBACK, NORMAL |
112 | #define RETURNOP(o) return PUTBACK, o |
113 | #define RETURNX(x) return x, PUTBACK, NORMAL |
114 | |
115 | #define POPs (*sp--) |
2d8e6c8d |
116 | #define POPp (SvPVx(POPs, PL_na)) /* deprecated */ |
117 | #define POPpx (SvPVx(POPs, n_a)) |
463ee0b2 |
118 | #define POPn (SvNVx(POPs)) |
a0d0e21e |
119 | #define POPi ((IV)SvIVx(POPs)) |
ff68c719 |
120 | #define POPu ((UV)SvUVx(POPs)) |
463ee0b2 |
121 | #define POPl ((long)SvIVx(POPs)) |
d9b3e12d |
122 | #define POPul ((unsigned long)SvIVx(POPs)) |
1b8cd678 |
123 | #ifdef HAS_QUAD |
d9b3e12d |
124 | #define POPq ((Quad_t)SvIVx(POPs)) |
c5a0f51a |
125 | #define POPuq ((Uquad_t)SvUVx(POPs)) |
d9b3e12d |
126 | #endif |
79072805 |
127 | |
128 | #define TOPs (*sp) |
2d8e6c8d |
129 | #define TOPp (SvPV(TOPs, PL_na)) /* deprecated */ |
130 | #define TOPpx (SvPV(TOPs, n_a)) |
463ee0b2 |
131 | #define TOPn (SvNV(TOPs)) |
a0d0e21e |
132 | #define TOPi ((IV)SvIV(TOPs)) |
ff68c719 |
133 | #define TOPu ((UV)SvUV(TOPs)) |
463ee0b2 |
134 | #define TOPl ((long)SvIV(TOPs)) |
c5a0f51a |
135 | #define TOPul ((unsigned long)SvUV(TOPs)) |
1b8cd678 |
136 | #ifdef HAS_QUAD |
d9b3e12d |
137 | #define TOPq ((Quad_t)SvIV(TOPs)) |
c5a0f51a |
138 | #define TOPuq ((Uquad_t)SvUV(TOPs)) |
d9b3e12d |
139 | #endif |
79072805 |
140 | |
141 | /* Go to some pains in the rare event that we must extend the stack. */ |
954c1994 |
142 | |
143 | /* |
144 | =for apidoc Am|void|EXTEND|SP|int nitems |
145 | Used to extend the argument stack for an XSUB's return values. Once |
146 | used, guarrantees that there is room for at least C<nitems> to be pushed |
147 | onto the stack. |
148 | |
149 | =for apidoc Am|void|PUSHs|SV* sv |
150 | Push an SV onto the stack. The stack must have room for this element. |
151 | Does not handle 'set' magic. See C<XPUSHs>. |
152 | |
153 | =for apidoc Am|void|PUSHp|char* str|STRLEN len |
154 | Push a string onto the stack. The stack must have room for this element. |
155 | The C<len> indicates the length of the string. Handles 'set' magic. See |
156 | C<XPUSHp>. |
157 | |
158 | =for apidoc Am|void|PUSHn|NV nv |
159 | Push a double onto the stack. The stack must have room for this element. |
160 | Handles 'set' magic. See C<XPUSHn>. |
161 | |
162 | =for apidoc Am|void|PUSHi|IV iv |
163 | Push an integer onto the stack. The stack must have room for this element. |
164 | Handles 'set' magic. See C<XPUSHi>. |
165 | |
166 | =for apidoc Am|void|PUSHu|UV uv |
167 | Push an unsigned integer onto the stack. The stack must have room for this |
168 | element. See C<XPUSHu>. |
169 | |
170 | =for apidoc Am|void|XPUSHs|SV* sv |
171 | Push an SV onto the stack, extending the stack if necessary. Does not |
172 | handle 'set' magic. See C<PUSHs>. |
173 | |
174 | =for apidoc Am|void|XPUSHp|char* str|STRLEN len |
175 | Push a string onto the stack, extending the stack if necessary. The C<len> |
176 | indicates the length of the string. Handles 'set' magic. See |
177 | C<PUSHp>. |
178 | |
179 | =for apidoc Am|void|XPUSHn|NV nv |
180 | Push a double onto the stack, extending the stack if necessary. Handles |
181 | 'set' magic. See C<PUSHn>. |
182 | |
183 | =for apidoc Am|void|XPUSHi|IV iv |
184 | Push an integer onto the stack, extending the stack if necessary. Handles |
185 | 'set' magic. See C<PUSHi>. |
186 | |
187 | =for apidoc Am|void|XPUSHu|UV uv |
188 | Push an unsigned integer onto the stack, extending the stack if necessary. |
189 | See C<PUSHu>. |
190 | |
191 | =cut |
192 | */ |
193 | |
3280af22 |
194 | #define EXTEND(p,n) STMT_START { if (PL_stack_max - p < (n)) { \ |
bbce6d69 |
195 | sp = stack_grow(sp,p, (int) (n)); \ |
86547924 |
196 | } } STMT_END |
a0d0e21e |
197 | |
79072805 |
198 | /* Same thing, but update mark register too. */ |
3280af22 |
199 | #define MEXTEND(p,n) STMT_START {if (PL_stack_max - p < (n)) { \ |
200 | int markoff = mark - PL_stack_base; \ |
bbce6d69 |
201 | sp = stack_grow(sp,p,(int) (n)); \ |
3280af22 |
202 | mark = PL_stack_base + markoff; \ |
86547924 |
203 | } } STMT_END |
79072805 |
204 | |
205 | #define PUSHs(s) (*++sp = (s)) |
86547924 |
206 | #define PUSHTARG STMT_START { SvSETMAGIC(TARG); PUSHs(TARG); } STMT_END |
207 | #define PUSHp(p,l) STMT_START { sv_setpvn(TARG, (p), (l)); PUSHTARG; } STMT_END |
65202027 |
208 | #define PUSHn(n) STMT_START { sv_setnv(TARG, (NV)(n)); PUSHTARG; } STMT_END |
86547924 |
209 | #define PUSHi(i) STMT_START { sv_setiv(TARG, (IV)(i)); PUSHTARG; } STMT_END |
55497cff |
210 | #define PUSHu(u) STMT_START { sv_setuv(TARG, (UV)(u)); PUSHTARG; } STMT_END |
79072805 |
211 | |
86547924 |
212 | #define XPUSHs(s) STMT_START { EXTEND(sp,1); (*++sp = (s)); } STMT_END |
213 | #define XPUSHTARG STMT_START { SvSETMAGIC(TARG); XPUSHs(TARG); } STMT_END |
214 | #define XPUSHp(p,l) STMT_START { sv_setpvn(TARG, (p), (l)); XPUSHTARG; } STMT_END |
65202027 |
215 | #define XPUSHn(n) STMT_START { sv_setnv(TARG, (NV)(n)); XPUSHTARG; } STMT_END |
86547924 |
216 | #define XPUSHi(i) STMT_START { sv_setiv(TARG, (IV)(i)); XPUSHTARG; } STMT_END |
55497cff |
217 | #define XPUSHu(u) STMT_START { sv_setuv(TARG, (UV)(u)); XPUSHTARG; } STMT_END |
b162f9ea |
218 | #define XPUSHundef STMT_START { SvOK_off(TARG); XPUSHs(TARG); } STMT_END |
79072805 |
219 | |
220 | #define SETs(s) (*sp = s) |
86547924 |
221 | #define SETTARG STMT_START { SvSETMAGIC(TARG); SETs(TARG); } STMT_END |
222 | #define SETp(p,l) STMT_START { sv_setpvn(TARG, (p), (l)); SETTARG; } STMT_END |
65202027 |
223 | #define SETn(n) STMT_START { sv_setnv(TARG, (NV)(n)); SETTARG; } STMT_END |
86547924 |
224 | #define SETi(i) STMT_START { sv_setiv(TARG, (IV)(i)); SETTARG; } STMT_END |
55497cff |
225 | #define SETu(u) STMT_START { sv_setuv(TARG, (UV)(u)); SETTARG; } STMT_END |
a0d0e21e |
226 | |
79072805 |
227 | #define dTOPss SV *sv = TOPs |
228 | #define dPOPss SV *sv = POPs |
65202027 |
229 | #define dTOPnv NV value = TOPn |
230 | #define dPOPnv NV value = POPn |
a0d0e21e |
231 | #define dTOPiv IV value = TOPi |
232 | #define dPOPiv IV value = POPi |
55497cff |
233 | #define dTOPuv UV value = TOPu |
234 | #define dPOPuv UV value = POPu |
1b8cd678 |
235 | #ifdef HAS_QUAD |
2d4389e4 |
236 | #define dTOPqv Quad_t value = TOPu |
237 | #define dPOPqv Quad_t value = POPu |
238 | #define dTOPuqv Uquad_t value = TOPuq |
239 | #define dPOPuqv Uquad_t value = POPuq |
240 | #endif |
79072805 |
241 | |
7a4c00b4 |
242 | #define dPOPXssrl(X) SV *right = POPs; SV *left = CAT2(X,s) |
65202027 |
243 | #define dPOPXnnrl(X) NV right = POPn; NV left = CAT2(X,n) |
7a4c00b4 |
244 | #define dPOPXiirl(X) IV right = POPi; IV left = CAT2(X,i) |
245 | |
246 | #define USE_LEFT(sv) \ |
533c011a |
247 | (SvOK(sv) || SvGMAGICAL(sv) || !(PL_op->op_flags & OPf_STACKED)) |
7a4c00b4 |
248 | #define dPOPXnnrl_ul(X) \ |
65202027 |
249 | NV right = POPn; \ |
7a4c00b4 |
250 | SV *leftsv = CAT2(X,s); \ |
65202027 |
251 | NV left = USE_LEFT(leftsv) ? SvNV(leftsv) : 0.0 |
7a4c00b4 |
252 | #define dPOPXiirl_ul(X) \ |
253 | IV right = POPi; \ |
254 | SV *leftsv = CAT2(X,s); \ |
255 | IV left = USE_LEFT(leftsv) ? SvIV(leftsv) : 0 |
256 | |
257 | #define dPOPPOPssrl dPOPXssrl(POP) |
258 | #define dPOPPOPnnrl dPOPXnnrl(POP) |
259 | #define dPOPPOPnnrl_ul dPOPXnnrl_ul(POP) |
260 | #define dPOPPOPiirl dPOPXiirl(POP) |
261 | #define dPOPPOPiirl_ul dPOPXiirl_ul(POP) |
262 | |
263 | #define dPOPTOPssrl dPOPXssrl(TOP) |
264 | #define dPOPTOPnnrl dPOPXnnrl(TOP) |
265 | #define dPOPTOPnnrl_ul dPOPXnnrl_ul(TOP) |
266 | #define dPOPTOPiirl dPOPXiirl(TOP) |
267 | #define dPOPTOPiirl_ul dPOPXiirl_ul(TOP) |
79072805 |
268 | |
3280af22 |
269 | #define RETPUSHYES RETURNX(PUSHs(&PL_sv_yes)) |
270 | #define RETPUSHNO RETURNX(PUSHs(&PL_sv_no)) |
271 | #define RETPUSHUNDEF RETURNX(PUSHs(&PL_sv_undef)) |
79072805 |
272 | |
3280af22 |
273 | #define RETSETYES RETURNX(SETs(&PL_sv_yes)) |
274 | #define RETSETNO RETURNX(SETs(&PL_sv_no)) |
275 | #define RETSETUNDEF RETURNX(SETs(&PL_sv_undef)) |
79072805 |
276 | |
533c011a |
277 | #define ARGTARG PL_op->op_targ |
b162f9ea |
278 | |
279 | /* See OPpTARGET_MY: */ |
280 | #define MAXARG (PL_op->op_private & 15) |
79072805 |
281 | |
e336de0d |
282 | #define SWITCHSTACK(f,t) \ |
283 | STMT_START { \ |
677b06e3 |
284 | AvFILLp(f) = sp - PL_stack_base; \ |
3280af22 |
285 | PL_stack_base = AvARRAY(t); \ |
677b06e3 |
286 | PL_stack_max = PL_stack_base + AvMAX(t); \ |
3280af22 |
287 | sp = PL_stack_sp = PL_stack_base + AvFILLp(t); \ |
677b06e3 |
288 | PL_curstack = t; \ |
e336de0d |
289 | } STMT_END |
79072805 |
290 | |
bbce6d69 |
291 | #define EXTEND_MORTAL(n) \ |
677b06e3 |
292 | STMT_START { \ |
293 | if (PL_tmps_ix + (n) >= PL_tmps_max) \ |
294 | tmps_grow(n); \ |
295 | } STMT_END |
bbce6d69 |
296 | |
a0d0e21e |
297 | #define AMGf_noright 1 |
298 | #define AMGf_noleft 2 |
299 | #define AMGf_assign 4 |
300 | #define AMGf_unary 8 |
301 | |
86547924 |
302 | #define tryAMAGICbinW(meth,assign,set) STMT_START { \ |
3280af22 |
303 | if (PL_amagic_generation) { \ |
a0d0e21e |
304 | SV* tmpsv; \ |
305 | SV* right= *(sp); SV* left= *(sp-1);\ |
306 | if ((SvAMAGIC(left)||SvAMAGIC(right))&&\ |
307 | (tmpsv=amagic_call(left, \ |
308 | right, \ |
309 | CAT2(meth,_amg), \ |
310 | (assign)? AMGf_assign: 0))) {\ |
311 | SPAGAIN; \ |
312 | (void)POPs; set(tmpsv); RETURN; } \ |
313 | } \ |
86547924 |
314 | } STMT_END |
a0d0e21e |
315 | |
316 | #define tryAMAGICbin(meth,assign) tryAMAGICbinW(meth,assign,SETsv) |
317 | #define tryAMAGICbinSET(meth,assign) tryAMAGICbinW(meth,assign,SETs) |
318 | |
3280af22 |
319 | #define AMG_CALLun(sv,meth) amagic_call(sv,&PL_sv_undef, \ |
a0d0e21e |
320 | CAT2(meth,_amg),AMGf_noright | AMGf_unary) |
321 | #define AMG_CALLbinL(left,right,meth) \ |
322 | amagic_call(left,right,CAT2(meth,_amg),AMGf_noright) |
323 | |
e8c20960 |
324 | #define tryAMAGICunW(meth,set,shift,ret) STMT_START { \ |
3280af22 |
325 | if (PL_amagic_generation) { \ |
a0d0e21e |
326 | SV* tmpsv; \ |
f5284f61 |
327 | SV* arg= sp[shift]; \ |
328 | am_again: \ |
a0d0e21e |
329 | if ((SvAMAGIC(arg))&&\ |
330 | (tmpsv=AMG_CALLun(arg,meth))) {\ |
f5284f61 |
331 | SPAGAIN; if (shift) sp += shift; \ |
e8c20960 |
332 | set(tmpsv); ret; } \ |
a0d0e21e |
333 | } \ |
86547924 |
334 | } STMT_END |
a0d0e21e |
335 | |
f5284f61 |
336 | #define FORCE_SETs(sv) STMT_START { sv_setsv(TARG, (sv)); SETTARG; } STMT_END |
337 | |
b162f9ea |
338 | #define tryAMAGICun(meth) tryAMAGICunW(meth,SETsvUN,0,RETURN) |
339 | #define tryAMAGICunSET(meth) tryAMAGICunW(meth,SETs,0,RETURN) |
f5284f61 |
340 | #define tryAMAGICunTARGET(meth, shift) \ |
341 | { dSP; sp--; /* get TARGET from below PL_stack_sp */ \ |
342 | { dTARGETSTACKED; \ |
e8c20960 |
343 | { dSP; tryAMAGICunW(meth,FORCE_SETs,shift,RETURN);}}} |
344 | |
345 | #define setAGAIN(ref) sv = arg = ref; \ |
346 | if (!SvROK(ref)) \ |
cea2e8a9 |
347 | Perl_croak(aTHX_ "Overloaded dereference did not return a reference"); \ |
e8c20960 |
348 | goto am_again; |
349 | |
0f4592ef |
350 | #define tryAMAGICunDEREF(meth) tryAMAGICunW(meth,setAGAIN,0,(void)0) |
a0d0e21e |
351 | |
533c011a |
352 | #define opASSIGN (PL_op->op_flags & OPf_STACKED) |
e9905555 |
353 | #define SETsv(sv) STMT_START { \ |
b162f9ea |
354 | if (opASSIGN || (SvFLAGS(TARG) & SVs_PADMY)) \ |
355 | { sv_setsv(TARG, (sv)); SETTARG; } \ |
356 | else SETs(sv); } STMT_END |
357 | |
358 | #define SETsvUN(sv) STMT_START { \ |
359 | if (SvFLAGS(TARG) & SVs_PADMY) \ |
360 | { sv_setsv(TARG, (sv)); SETTARG; } \ |
e9905555 |
361 | else SETs(sv); } STMT_END |
a0d0e21e |
362 | |
363 | /* newSVsv does not behave as advertised, so we copy missing |
364 | * information by hand */ |
365 | |
76e3520e |
366 | /* SV* ref causes confusion with the member variable |
367 | changed SV* ref to SV* tmpRef */ |
368 | #define RvDEEPCP(rv) STMT_START { SV* tmpRef=SvRV(rv); \ |
369 | if (SvREFCNT(tmpRef)>1) { \ |
370 | SvREFCNT_dec(tmpRef); \ |
748a9306 |
371 | SvRV(rv)=AMG_CALLun(rv,copy); \ |
86547924 |
372 | } } STMT_END |