Commit | Line | Data |
---|---|---|
e0492643 NC |
1 | -*- buffer-read-only: t -*- |
2 | ||
3 | !!!!!!! DO NOT EDIT THIS FILE !!!!!!! | |
4 | This file is built by autodoc.pl extracting documentation from the C source | |
5 | files. | |
6 | ||
954c1994 GS |
7 | =head1 NAME |
8 | ||
9 | perlapi - autogenerated documentation for the perl public API | |
10 | ||
11 | =head1 DESCRIPTION | |
d8c40edc | 12 | X<Perl API> X<API> X<api> |
954c1994 | 13 | |
1c846c1f NIS |
14 | This file contains the documentation of the perl public API generated by |
15 | embed.pl, specifically a listing of functions, macros, flags, and variables | |
16 | that may be used by extension writers. The interfaces of any functions that | |
954c1994 GS |
17 | are not listed here are subject to change without notice. For this reason, |
18 | blindly using functions listed in proto.h is to be avoided when writing | |
19 | extensions. | |
20 | ||
21 | Note that all Perl API global variables must be referenced with the C<PL_> | |
22 | prefix. Some macros are provided for compatibility with the older, | |
23 | unadorned names, but this support may be disabled in a future release. | |
24 | ||
25 | The listing is alphabetical, case insensitive. | |
26 | ||
94bdecf9 JH |
27 | |
28 | =head1 "Gimme" Values | |
29 | ||
30 | =over 8 | |
31 | ||
32 | =item GIMME | |
d8c40edc | 33 | X<GIMME> |
94bdecf9 JH |
34 | |
35 | A backward-compatible version of C<GIMME_V> which can only return | |
36 | C<G_SCALAR> or C<G_ARRAY>; in a void context, it returns C<G_SCALAR>. | |
37 | Deprecated. Use C<GIMME_V> instead. | |
38 | ||
39 | U32 GIMME | |
40 | ||
41 | =for hackers | |
42 | Found in file op.h | |
43 | ||
44 | =item GIMME_V | |
d8c40edc | 45 | X<GIMME_V> |
94bdecf9 JH |
46 | |
47 | The XSUB-writer's equivalent to Perl's C<wantarray>. Returns C<G_VOID>, | |
48 | C<G_SCALAR> or C<G_ARRAY> for void, scalar or list context, | |
49 | respectively. | |
50 | ||
51 | U32 GIMME_V | |
52 | ||
53 | =for hackers | |
54 | Found in file op.h | |
55 | ||
56 | =item G_ARRAY | |
d8c40edc | 57 | X<G_ARRAY> |
94bdecf9 JH |
58 | |
59 | Used to indicate list context. See C<GIMME_V>, C<GIMME> and | |
60 | L<perlcall>. | |
61 | ||
62 | =for hackers | |
63 | Found in file cop.h | |
64 | ||
65 | =item G_DISCARD | |
d8c40edc | 66 | X<G_DISCARD> |
94bdecf9 JH |
67 | |
68 | Indicates that arguments returned from a callback should be discarded. See | |
69 | L<perlcall>. | |
70 | ||
71 | =for hackers | |
72 | Found in file cop.h | |
73 | ||
74 | =item G_EVAL | |
d8c40edc | 75 | X<G_EVAL> |
94bdecf9 JH |
76 | |
77 | Used to force a Perl C<eval> wrapper around a callback. See | |
78 | L<perlcall>. | |
79 | ||
80 | =for hackers | |
81 | Found in file cop.h | |
82 | ||
83 | =item G_NOARGS | |
d8c40edc | 84 | X<G_NOARGS> |
94bdecf9 JH |
85 | |
86 | Indicates that no arguments are being sent to a callback. See | |
87 | L<perlcall>. | |
88 | ||
89 | =for hackers | |
90 | Found in file cop.h | |
91 | ||
92 | =item G_SCALAR | |
d8c40edc | 93 | X<G_SCALAR> |
94bdecf9 JH |
94 | |
95 | Used to indicate scalar context. See C<GIMME_V>, C<GIMME>, and | |
96 | L<perlcall>. | |
97 | ||
98 | =for hackers | |
99 | Found in file cop.h | |
100 | ||
101 | =item G_VOID | |
d8c40edc | 102 | X<G_VOID> |
94bdecf9 JH |
103 | |
104 | Used to indicate void context. See C<GIMME_V> and L<perlcall>. | |
105 | ||
106 | =for hackers | |
107 | Found in file cop.h | |
108 | ||
109 | ||
110 | =back | |
111 | ||
112 | =head1 Array Manipulation Functions | |
113 | ||
954c1994 GS |
114 | =over 8 |
115 | ||
116 | =item AvFILL | |
d8c40edc | 117 | X<AvFILL> |
954c1994 GS |
118 | |
119 | Same as C<av_len()>. Deprecated, use C<av_len()> instead. | |
120 | ||
121 | int AvFILL(AV* av) | |
122 | ||
497711e7 GS |
123 | =for hackers |
124 | Found in file av.h | |
125 | ||
954c1994 | 126 | =item av_clear |
d8c40edc | 127 | X<av_clear> |
954c1994 GS |
128 | |
129 | Clears an array, making it empty. Does not free the memory used by the | |
130 | array itself. | |
131 | ||
132 | void av_clear(AV* ar) | |
133 | ||
497711e7 GS |
134 | =for hackers |
135 | Found in file av.c | |
136 | ||
bcdf7404 YO |
137 | =item av_create_and_push |
138 | X<av_create_and_push> | |
139 | ||
140 | Push an SV onto the end of the array, creating the array if necessary. | |
141 | A small internal helper function to remove a commonly duplicated idiom. | |
142 | ||
143 | NOTE: this function is experimental and may change or be | |
144 | removed without notice. | |
145 | ||
146 | void av_create_and_push(AV **const avp, SV *const val) | |
147 | ||
148 | =for hackers | |
149 | Found in file av.c | |
150 | ||
151 | =item av_create_and_unshift_one | |
152 | X<av_create_and_unshift_one> | |
153 | ||
154 | Unshifts an SV onto the beginning of the array, creating the array if | |
155 | necessary. | |
156 | A small internal helper function to remove a commonly duplicated idiom. | |
157 | ||
158 | NOTE: this function is experimental and may change or be | |
159 | removed without notice. | |
160 | ||
161 | SV** av_create_and_unshift_one(AV **const avp, SV *const val) | |
162 | ||
163 | =for hackers | |
164 | Found in file av.c | |
165 | ||
f3b76584 | 166 | =item av_delete |
d8c40edc | 167 | X<av_delete> |
f3b76584 SC |
168 | |
169 | Deletes the element indexed by C<key> from the array. Returns the | |
b9381830 JP |
170 | deleted element. If C<flags> equals C<G_DISCARD>, the element is freed |
171 | and null is returned. | |
f3b76584 SC |
172 | |
173 | SV* av_delete(AV* ar, I32 key, I32 flags) | |
174 | ||
175 | =for hackers | |
176 | Found in file av.c | |
177 | ||
178 | =item av_exists | |
d8c40edc | 179 | X<av_exists> |
f3b76584 SC |
180 | |
181 | Returns true if the element indexed by C<key> has been initialized. | |
182 | ||
183 | This relies on the fact that uninitialized array elements are set to | |
184 | C<&PL_sv_undef>. | |
185 | ||
186 | bool av_exists(AV* ar, I32 key) | |
187 | ||
188 | =for hackers | |
189 | Found in file av.c | |
190 | ||
954c1994 | 191 | =item av_extend |
d8c40edc | 192 | X<av_extend> |
954c1994 GS |
193 | |
194 | Pre-extend an array. The C<key> is the index to which the array should be | |
195 | extended. | |
196 | ||
197 | void av_extend(AV* ar, I32 key) | |
198 | ||
497711e7 GS |
199 | =for hackers |
200 | Found in file av.c | |
201 | ||
954c1994 | 202 | =item av_fetch |
d8c40edc | 203 | X<av_fetch> |
954c1994 GS |
204 | |
205 | Returns the SV at the specified index in the array. The C<key> is the | |
206 | index. If C<lval> is set then the fetch will be part of a store. Check | |
207 | that the return value is non-null before dereferencing it to a C<SV*>. | |
208 | ||
96f1132b GS |
209 | See L<perlguts/"Understanding the Magic of Tied Hashes and Arrays"> for |
210 | more information on how to use this function on tied arrays. | |
954c1994 GS |
211 | |
212 | SV** av_fetch(AV* ar, I32 key, I32 lval) | |
213 | ||
497711e7 GS |
214 | =for hackers |
215 | Found in file av.c | |
216 | ||
f3b76584 | 217 | =item av_fill |
d8c40edc | 218 | X<av_fill> |
f3b76584 | 219 | |
1d51329b | 220 | Set the highest index in the array to the given number, equivalent to |
f3b76584 SC |
221 | Perl's C<$#array = $fill;>. |
222 | ||
1d51329b RGS |
223 | The number of elements in the an array will be C<fill + 1> after |
224 | av_fill() returns. If the array was previously shorter then the | |
225 | additional elements appended are set to C<PL_sv_undef>. If the array | |
226 | was longer, then the excess elements are freed. C<av_fill(av, -1)> is | |
227 | the same as C<av_clear(av)>. | |
228 | ||
f3b76584 SC |
229 | void av_fill(AV* ar, I32 fill) |
230 | ||
231 | =for hackers | |
232 | Found in file av.c | |
233 | ||
954c1994 | 234 | =item av_len |
d8c40edc | 235 | X<av_len> |
954c1994 | 236 | |
1d51329b RGS |
237 | Returns the highest index in the array. The number of elements in the |
238 | array is C<av_len(av) + 1>. Returns -1 if the array is empty. | |
954c1994 | 239 | |
35a4481c | 240 | I32 av_len(const AV* ar) |
954c1994 | 241 | |
497711e7 GS |
242 | =for hackers |
243 | Found in file av.c | |
244 | ||
954c1994 | 245 | =item av_make |
d8c40edc | 246 | X<av_make> |
954c1994 GS |
247 | |
248 | Creates a new AV and populates it with a list of SVs. The SVs are copied | |
249 | into the array, so they may be freed after the call to av_make. The new AV | |
250 | will have a reference count of 1. | |
251 | ||
252 | AV* av_make(I32 size, SV** svp) | |
253 | ||
497711e7 GS |
254 | =for hackers |
255 | Found in file av.c | |
256 | ||
954c1994 | 257 | =item av_pop |
d8c40edc | 258 | X<av_pop> |
954c1994 GS |
259 | |
260 | Pops an SV off the end of the array. Returns C<&PL_sv_undef> if the array | |
261 | is empty. | |
262 | ||
263 | SV* av_pop(AV* ar) | |
264 | ||
497711e7 GS |
265 | =for hackers |
266 | Found in file av.c | |
267 | ||
954c1994 | 268 | =item av_push |
d8c40edc | 269 | X<av_push> |
954c1994 GS |
270 | |
271 | Pushes an SV onto the end of the array. The array will grow automatically | |
272 | to accommodate the addition. | |
273 | ||
274 | void av_push(AV* ar, SV* val) | |
275 | ||
497711e7 GS |
276 | =for hackers |
277 | Found in file av.c | |
278 | ||
954c1994 | 279 | =item av_shift |
d8c40edc | 280 | X<av_shift> |
954c1994 GS |
281 | |
282 | Shifts an SV off the beginning of the array. | |
283 | ||
284 | SV* av_shift(AV* ar) | |
285 | ||
497711e7 GS |
286 | =for hackers |
287 | Found in file av.c | |
288 | ||
954c1994 | 289 | =item av_store |
d8c40edc | 290 | X<av_store> |
954c1994 GS |
291 | |
292 | Stores an SV in an array. The array index is specified as C<key>. The | |
293 | return value will be NULL if the operation failed or if the value did not | |
294 | need to be actually stored within the array (as in the case of tied | |
295 | arrays). Otherwise it can be dereferenced to get the original C<SV*>. Note | |
296 | that the caller is responsible for suitably incrementing the reference | |
297 | count of C<val> before the call, and decrementing it if the function | |
298 | returned NULL. | |
299 | ||
96f1132b | 300 | See L<perlguts/"Understanding the Magic of Tied Hashes and Arrays"> for |
954c1994 GS |
301 | more information on how to use this function on tied arrays. |
302 | ||
303 | SV** av_store(AV* ar, I32 key, SV* val) | |
304 | ||
497711e7 GS |
305 | =for hackers |
306 | Found in file av.c | |
307 | ||
954c1994 | 308 | =item av_undef |
d8c40edc | 309 | X<av_undef> |
954c1994 GS |
310 | |
311 | Undefines the array. Frees the memory used by the array itself. | |
312 | ||
313 | void av_undef(AV* ar) | |
314 | ||
497711e7 GS |
315 | =for hackers |
316 | Found in file av.c | |
317 | ||
954c1994 | 318 | =item av_unshift |
d8c40edc | 319 | X<av_unshift> |
954c1994 GS |
320 | |
321 | Unshift the given number of C<undef> values onto the beginning of the | |
322 | array. The array will grow automatically to accommodate the addition. You | |
323 | must then use C<av_store> to assign values to these new elements. | |
324 | ||
325 | void av_unshift(AV* ar, I32 num) | |
326 | ||
497711e7 GS |
327 | =for hackers |
328 | Found in file av.c | |
329 | ||
94bdecf9 | 330 | =item get_av |
d8c40edc | 331 | X<get_av> |
9f2ea798 | 332 | |
94bdecf9 JH |
333 | Returns the AV of the specified Perl array. If C<create> is set and the |
334 | Perl variable does not exist then it will be created. If C<create> is not | |
335 | set and the variable does not exist then NULL is returned. | |
9f2ea798 | 336 | |
94bdecf9 JH |
337 | NOTE: the perl_ form of this function is deprecated. |
338 | ||
339 | AV* get_av(const char* name, I32 create) | |
9f2ea798 DM |
340 | |
341 | =for hackers | |
94bdecf9 | 342 | Found in file perl.c |
9f2ea798 | 343 | |
94bdecf9 | 344 | =item newAV |
d8c40edc | 345 | X<newAV> |
f9a63242 | 346 | |
94bdecf9 | 347 | Creates a new AV. The reference count is set to 1. |
f9a63242 | 348 | |
94bdecf9 JH |
349 | AV* newAV() |
350 | ||
351 | =for hackers | |
6fc9eaaa | 352 | Found in file av.h |
94bdecf9 | 353 | |
94bdecf9 | 354 | =item sortsv |
d8c40edc | 355 | X<sortsv> |
497711e7 | 356 | |
94bdecf9 | 357 | Sort an array. Here is an example: |
497711e7 | 358 | |
94bdecf9 | 359 | sortsv(AvARRAY(av), av_len(av)+1, Perl_sv_cmp_locale); |
eebe1485 | 360 | |
7b9ef140 RH |
361 | Currently this always uses mergesort. See sortsv_flags for a more |
362 | flexible routine. | |
641d4181 | 363 | |
aa924a5a | 364 | void sortsv(SV** array, size_t num_elts, SVCOMPARE_t cmp) |
497711e7 GS |
365 | |
366 | =for hackers | |
94bdecf9 JH |
367 | Found in file pp_sort.c |
368 | ||
7b9ef140 RH |
369 | =item sortsv_flags |
370 | X<sortsv_flags> | |
371 | ||
372 | Sort an array, with various options. | |
373 | ||
374 | void sortsv_flags(SV** array, size_t num_elts, SVCOMPARE_t cmp, U32 flags) | |
375 | ||
376 | =for hackers | |
377 | Found in file pp_sort.c | |
378 | ||
94bdecf9 JH |
379 | |
380 | =back | |
381 | ||
382 | =head1 Callback Functions | |
383 | ||
384 | =over 8 | |
497711e7 | 385 | |
954c1994 | 386 | =item call_argv |
d8c40edc | 387 | X<call_argv> |
954c1994 GS |
388 | |
389 | Performs a callback to the specified Perl sub. See L<perlcall>. | |
390 | ||
391 | NOTE: the perl_ form of this function is deprecated. | |
392 | ||
8f42b153 | 393 | I32 call_argv(const char* sub_name, I32 flags, char** argv) |
954c1994 | 394 | |
497711e7 GS |
395 | =for hackers |
396 | Found in file perl.c | |
397 | ||
954c1994 | 398 | =item call_method |
d8c40edc | 399 | X<call_method> |
954c1994 GS |
400 | |
401 | Performs a callback to the specified Perl method. The blessed object must | |
402 | be on the stack. See L<perlcall>. | |
403 | ||
404 | NOTE: the perl_ form of this function is deprecated. | |
405 | ||
406 | I32 call_method(const char* methname, I32 flags) | |
407 | ||
497711e7 GS |
408 | =for hackers |
409 | Found in file perl.c | |
410 | ||
954c1994 | 411 | =item call_pv |
d8c40edc | 412 | X<call_pv> |
954c1994 GS |
413 | |
414 | Performs a callback to the specified Perl sub. See L<perlcall>. | |
415 | ||
416 | NOTE: the perl_ form of this function is deprecated. | |
417 | ||
418 | I32 call_pv(const char* sub_name, I32 flags) | |
419 | ||
497711e7 GS |
420 | =for hackers |
421 | Found in file perl.c | |
422 | ||
954c1994 | 423 | =item call_sv |
d8c40edc | 424 | X<call_sv> |
954c1994 GS |
425 | |
426 | Performs a callback to the Perl sub whose name is in the SV. See | |
427 | L<perlcall>. | |
428 | ||
429 | NOTE: the perl_ form of this function is deprecated. | |
430 | ||
8c54174d | 431 | I32 call_sv(SV* sv, VOL I32 flags) |
954c1994 | 432 | |
497711e7 GS |
433 | =for hackers |
434 | Found in file perl.c | |
435 | ||
94bdecf9 | 436 | =item ENTER |
d8c40edc | 437 | X<ENTER> |
954c1994 | 438 | |
94bdecf9 | 439 | Opening bracket on a callback. See C<LEAVE> and L<perlcall>. |
954c1994 | 440 | |
94bdecf9 | 441 | ENTER; |
954c1994 | 442 | |
497711e7 | 443 | =for hackers |
94bdecf9 | 444 | Found in file scope.h |
497711e7 | 445 | |
94bdecf9 | 446 | =item eval_pv |
d8c40edc | 447 | X<eval_pv> |
954c1994 | 448 | |
94bdecf9 | 449 | Tells Perl to C<eval> the given string and return an SV* result. |
954c1994 | 450 | |
94bdecf9 | 451 | NOTE: the perl_ form of this function is deprecated. |
954c1994 | 452 | |
94bdecf9 | 453 | SV* eval_pv(const char* p, I32 croak_on_error) |
497711e7 | 454 | |
94bdecf9 JH |
455 | =for hackers |
456 | Found in file perl.c | |
954c1994 | 457 | |
94bdecf9 | 458 | =item eval_sv |
d8c40edc | 459 | X<eval_sv> |
c9d5ac95 | 460 | |
94bdecf9 | 461 | Tells Perl to C<eval> the string in the SV. |
c9d5ac95 | 462 | |
94bdecf9 | 463 | NOTE: the perl_ form of this function is deprecated. |
954c1994 | 464 | |
94bdecf9 | 465 | I32 eval_sv(SV* sv, I32 flags) |
954c1994 | 466 | |
497711e7 | 467 | =for hackers |
94bdecf9 | 468 | Found in file perl.c |
497711e7 | 469 | |
94bdecf9 | 470 | =item FREETMPS |
d8c40edc | 471 | X<FREETMPS> |
954c1994 | 472 | |
94bdecf9 JH |
473 | Closing bracket for temporaries on a callback. See C<SAVETMPS> and |
474 | L<perlcall>. | |
954c1994 | 475 | |
94bdecf9 | 476 | FREETMPS; |
954c1994 | 477 | |
497711e7 | 478 | =for hackers |
94bdecf9 | 479 | Found in file scope.h |
beab0874 | 480 | |
94bdecf9 | 481 | =item LEAVE |
d8c40edc | 482 | X<LEAVE> |
beab0874 | 483 | |
94bdecf9 | 484 | Closing bracket on a callback. See C<ENTER> and L<perlcall>. |
beab0874 | 485 | |
94bdecf9 | 486 | LEAVE; |
beab0874 JT |
487 | |
488 | =for hackers | |
94bdecf9 | 489 | Found in file scope.h |
beab0874 | 490 | |
94bdecf9 | 491 | =item SAVETMPS |
d8c40edc | 492 | X<SAVETMPS> |
9f2ea798 | 493 | |
94bdecf9 JH |
494 | Opening bracket for temporaries on a callback. See C<FREETMPS> and |
495 | L<perlcall>. | |
9f2ea798 | 496 | |
94bdecf9 | 497 | SAVETMPS; |
9f2ea798 DM |
498 | |
499 | =for hackers | |
94bdecf9 | 500 | Found in file scope.h |
9f2ea798 | 501 | |
9f2ea798 | 502 | |
94bdecf9 | 503 | =back |
9f2ea798 | 504 | |
94bdecf9 | 505 | =head1 Character classes |
9f2ea798 | 506 | |
94bdecf9 | 507 | =over 8 |
9f2ea798 | 508 | |
94bdecf9 | 509 | =item isALNUM |
d8c40edc | 510 | X<isALNUM> |
954c1994 | 511 | |
94bdecf9 JH |
512 | Returns a boolean indicating whether the C C<char> is an ASCII alphanumeric |
513 | character (including underscore) or digit. | |
954c1994 | 514 | |
94bdecf9 | 515 | bool isALNUM(char ch) |
954c1994 | 516 | |
497711e7 | 517 | =for hackers |
94bdecf9 | 518 | Found in file handy.h |
497711e7 | 519 | |
94bdecf9 | 520 | =item isALPHA |
d8c40edc | 521 | X<isALPHA> |
954c1994 | 522 | |
94bdecf9 JH |
523 | Returns a boolean indicating whether the C C<char> is an ASCII alphabetic |
524 | character. | |
954c1994 | 525 | |
94bdecf9 | 526 | bool isALPHA(char ch) |
954c1994 | 527 | |
497711e7 | 528 | =for hackers |
94bdecf9 | 529 | Found in file handy.h |
497711e7 | 530 | |
94bdecf9 | 531 | =item isDIGIT |
d8c40edc | 532 | X<isDIGIT> |
954c1994 | 533 | |
94bdecf9 JH |
534 | Returns a boolean indicating whether the C C<char> is an ASCII |
535 | digit. | |
954c1994 | 536 | |
94bdecf9 | 537 | bool isDIGIT(char ch) |
954c1994 | 538 | |
497711e7 | 539 | =for hackers |
94bdecf9 | 540 | Found in file handy.h |
497711e7 | 541 | |
94bdecf9 | 542 | =item isLOWER |
d8c40edc | 543 | X<isLOWER> |
954c1994 | 544 | |
94bdecf9 JH |
545 | Returns a boolean indicating whether the C C<char> is a lowercase |
546 | character. | |
954c1994 | 547 | |
94bdecf9 | 548 | bool isLOWER(char ch) |
954c1994 | 549 | |
497711e7 | 550 | =for hackers |
94bdecf9 | 551 | Found in file handy.h |
497711e7 | 552 | |
94bdecf9 | 553 | =item isSPACE |
d8c40edc | 554 | X<isSPACE> |
954c1994 | 555 | |
94bdecf9 | 556 | Returns a boolean indicating whether the C C<char> is whitespace. |
954c1994 | 557 | |
94bdecf9 | 558 | bool isSPACE(char ch) |
954c1994 | 559 | |
497711e7 | 560 | =for hackers |
94bdecf9 | 561 | Found in file handy.h |
497711e7 | 562 | |
94bdecf9 | 563 | =item isUPPER |
d8c40edc | 564 | X<isUPPER> |
954c1994 | 565 | |
94bdecf9 JH |
566 | Returns a boolean indicating whether the C C<char> is an uppercase |
567 | character. | |
954c1994 | 568 | |
94bdecf9 | 569 | bool isUPPER(char ch) |
954c1994 | 570 | |
497711e7 | 571 | =for hackers |
94bdecf9 | 572 | Found in file handy.h |
497711e7 | 573 | |
94bdecf9 | 574 | =item toLOWER |
d8c40edc | 575 | X<toLOWER> |
954c1994 | 576 | |
94bdecf9 | 577 | Converts the specified character to lowercase. |
954c1994 | 578 | |
94bdecf9 | 579 | char toLOWER(char ch) |
954c1994 | 580 | |
94bdecf9 JH |
581 | =for hackers |
582 | Found in file handy.h | |
583 | ||
584 | =item toUPPER | |
d8c40edc | 585 | X<toUPPER> |
94bdecf9 JH |
586 | |
587 | Converts the specified character to uppercase. | |
588 | ||
589 | char toUPPER(char ch) | |
954c1994 | 590 | |
497711e7 | 591 | =for hackers |
94bdecf9 | 592 | Found in file handy.h |
497711e7 | 593 | |
954c1994 | 594 | |
94bdecf9 | 595 | =back |
954c1994 | 596 | |
94bdecf9 | 597 | =head1 Cloning an interpreter |
954c1994 | 598 | |
94bdecf9 JH |
599 | =over 8 |
600 | ||
601 | =item perl_clone | |
d8c40edc | 602 | X<perl_clone> |
94bdecf9 JH |
603 | |
604 | Create and return a new interpreter by cloning the current one. | |
605 | ||
4be49ee6 | 606 | perl_clone takes these flags as parameters: |
c78c2b74 | 607 | |
b0bc38e6 NC |
608 | CLONEf_COPY_STACKS - is used to, well, copy the stacks also, |
609 | without it we only clone the data and zero the stacks, | |
610 | with it we copy the stacks and the new perl interpreter is | |
611 | ready to run at the exact same point as the previous one. | |
612 | The pseudo-fork code uses COPY_STACKS while the | |
878090d5 | 613 | threads->create doesn't. |
c78c2b74 HS |
614 | |
615 | CLONEf_KEEP_PTR_TABLE | |
b0bc38e6 NC |
616 | perl_clone keeps a ptr_table with the pointer of the old |
617 | variable as a key and the new variable as a value, | |
618 | this allows it to check if something has been cloned and not | |
619 | clone it again but rather just use the value and increase the | |
620 | refcount. If KEEP_PTR_TABLE is not set then perl_clone will kill | |
621 | the ptr_table using the function | |
622 | C<ptr_table_free(PL_ptr_table); PL_ptr_table = NULL;>, | |
623 | reason to keep it around is if you want to dup some of your own | |
624 | variable who are outside the graph perl scans, example of this | |
c78c2b74 HS |
625 | code is in threads.xs create |
626 | ||
627 | CLONEf_CLONE_HOST | |
b0bc38e6 NC |
628 | This is a win32 thing, it is ignored on unix, it tells perls |
629 | win32host code (which is c++) to clone itself, this is needed on | |
630 | win32 if you want to run two threads at the same time, | |
631 | if you just want to do some stuff in a separate perl interpreter | |
632 | and then throw it away and return to the original one, | |
c78c2b74 HS |
633 | you don't need to do anything. |
634 | ||
94bdecf9 | 635 | PerlInterpreter* perl_clone(PerlInterpreter* interp, UV flags) |
954c1994 | 636 | |
497711e7 | 637 | =for hackers |
94bdecf9 | 638 | Found in file sv.c |
497711e7 | 639 | |
954c1994 | 640 | |
94bdecf9 | 641 | =back |
954c1994 | 642 | |
94bdecf9 JH |
643 | =head1 CV Manipulation Functions |
644 | ||
645 | =over 8 | |
646 | ||
647 | =item CvSTASH | |
d8c40edc | 648 | X<CvSTASH> |
94bdecf9 JH |
649 | |
650 | Returns the stash of the CV. | |
651 | ||
652 | HV* CvSTASH(CV* cv) | |
954c1994 | 653 | |
497711e7 | 654 | =for hackers |
94bdecf9 | 655 | Found in file cv.h |
497711e7 | 656 | |
94bdecf9 | 657 | =item get_cv |
d8c40edc | 658 | X<get_cv> |
954c1994 | 659 | |
36dfb072 | 660 | Uses C<strlen> to get the length of C<name>, then calls C<get_cvn_flags>. |
954c1994 | 661 | |
94bdecf9 JH |
662 | NOTE: the perl_ form of this function is deprecated. |
663 | ||
36dfb072 NC |
664 | CV* get_cv(const char* name, I32 flags) |
665 | ||
666 | =for hackers | |
667 | Found in file perl.c | |
668 | ||
669 | =item get_cvn_flags | |
670 | X<get_cvn_flags> | |
671 | ||
672 | Returns the CV of the specified Perl subroutine. C<flags> are passed to | |
673 | C<gv_fetchpvn_flags>. If C<GV_ADD> is set and the Perl subroutine does not | |
674 | exist then it will be declared (which has the same effect as saying | |
675 | C<sub name;>). If C<GV_ADD> is not set and the subroutine does not exist | |
676 | then NULL is returned. | |
677 | ||
678 | NOTE: the perl_ form of this function is deprecated. | |
679 | ||
680 | CV* get_cvn_flags(const char* name, STRLEN len, I32 flags) | |
954c1994 | 681 | |
497711e7 | 682 | =for hackers |
94bdecf9 | 683 | Found in file perl.c |
497711e7 | 684 | |
7c9e965c | 685 | |
94bdecf9 | 686 | =back |
7c9e965c | 687 | |
94bdecf9 | 688 | =head1 Embedding Functions |
7c9e965c | 689 | |
94bdecf9 | 690 | =over 8 |
7c9e965c | 691 | |
7dafbf52 | 692 | =item cv_undef |
d8c40edc | 693 | X<cv_undef> |
7dafbf52 DM |
694 | |
695 | Clear out all the active components of a CV. This can happen either | |
696 | by an explicit C<undef &foo>, or by the reference count going to zero. | |
697 | In the former case, we keep the CvOUTSIDE pointer, so that any anonymous | |
698 | children can still follow the full lexical scope chain. | |
699 | ||
700 | void cv_undef(CV* cv) | |
701 | ||
702 | =for hackers | |
703 | Found in file op.c | |
704 | ||
94bdecf9 | 705 | =item load_module |
d8c40edc | 706 | X<load_module> |
7c9e965c | 707 | |
94bdecf9 JH |
708 | Loads the module whose name is pointed to by the string part of name. |
709 | Note that the actual module name, not its filename, should be given. | |
710 | Eg, "Foo::Bar" instead of "Foo/Bar.pm". flags can be any of | |
711 | PERL_LOADMOD_DENY, PERL_LOADMOD_NOIMPORT, or PERL_LOADMOD_IMPORT_OPS | |
712 | (or 0 for no flags). ver, if specified, provides version semantics | |
713 | similar to C<use Foo::Bar VERSION>. The optional trailing SV* | |
714 | arguments can be used to specify arguments to the module's import() | |
715 | method, similar to C<use Foo::Bar VERSION LIST>. | |
7c9e965c | 716 | |
94bdecf9 | 717 | void load_module(U32 flags, SV* name, SV* ver, ...) |
7c9e965c JP |
718 | |
719 | =for hackers | |
94bdecf9 | 720 | Found in file op.c |
7c9e965c | 721 | |
62375a60 | 722 | =item nothreadhook |
d8c40edc | 723 | X<nothreadhook> |
62375a60 NIS |
724 | |
725 | Stub that provides thread hook for perl_destruct when there are | |
726 | no threads. | |
727 | ||
728 | int nothreadhook() | |
729 | ||
730 | =for hackers | |
731 | Found in file perl.c | |
732 | ||
94bdecf9 | 733 | =item perl_alloc |
d8c40edc | 734 | X<perl_alloc> |
954c1994 | 735 | |
94bdecf9 | 736 | Allocates a new Perl interpreter. See L<perlembed>. |
954c1994 | 737 | |
94bdecf9 | 738 | PerlInterpreter* perl_alloc() |
954c1994 | 739 | |
497711e7 | 740 | =for hackers |
94bdecf9 | 741 | Found in file perl.c |
497711e7 | 742 | |
94bdecf9 | 743 | =item perl_construct |
d8c40edc | 744 | X<perl_construct> |
89423764 | 745 | |
94bdecf9 | 746 | Initializes a new Perl interpreter. See L<perlembed>. |
89423764 | 747 | |
94bdecf9 | 748 | void perl_construct(PerlInterpreter* interp) |
89423764 GS |
749 | |
750 | =for hackers | |
94bdecf9 | 751 | Found in file perl.c |
954c1994 | 752 | |
94bdecf9 | 753 | =item perl_destruct |
d8c40edc | 754 | X<perl_destruct> |
954c1994 | 755 | |
94bdecf9 | 756 | Shuts down a Perl interpreter. See L<perlembed>. |
954c1994 | 757 | |
94bdecf9 | 758 | int perl_destruct(PerlInterpreter* interp) |
954c1994 | 759 | |
497711e7 GS |
760 | =for hackers |
761 | Found in file perl.c | |
762 | ||
94bdecf9 | 763 | =item perl_free |
d8c40edc | 764 | X<perl_free> |
954c1994 | 765 | |
94bdecf9 | 766 | Releases a Perl interpreter. See L<perlembed>. |
954c1994 | 767 | |
94bdecf9 | 768 | void perl_free(PerlInterpreter* interp) |
954c1994 | 769 | |
497711e7 GS |
770 | =for hackers |
771 | Found in file perl.c | |
772 | ||
94bdecf9 | 773 | =item perl_parse |
d8c40edc | 774 | X<perl_parse> |
954c1994 | 775 | |
94bdecf9 | 776 | Tells a Perl interpreter to parse a Perl script. See L<perlembed>. |
954c1994 | 777 | |
94bdecf9 | 778 | int perl_parse(PerlInterpreter* interp, XSINIT_t xsinit, int argc, char** argv, char** env) |
954c1994 | 779 | |
94bdecf9 JH |
780 | =for hackers |
781 | Found in file perl.c | |
782 | ||
783 | =item perl_run | |
d8c40edc | 784 | X<perl_run> |
94bdecf9 JH |
785 | |
786 | Tells a Perl interpreter to run. See L<perlembed>. | |
787 | ||
788 | int perl_run(PerlInterpreter* interp) | |
954c1994 | 789 | |
497711e7 GS |
790 | =for hackers |
791 | Found in file perl.c | |
792 | ||
94bdecf9 | 793 | =item require_pv |
d8c40edc | 794 | X<require_pv> |
954c1994 | 795 | |
94bdecf9 JH |
796 | Tells Perl to C<require> the file named by the string argument. It is |
797 | analogous to the Perl code C<eval "require '$file'">. It's even | |
2307c6d0 | 798 | implemented that way; consider using load_module instead. |
954c1994 GS |
799 | |
800 | NOTE: the perl_ form of this function is deprecated. | |
801 | ||
94bdecf9 | 802 | void require_pv(const char* pv) |
954c1994 | 803 | |
497711e7 GS |
804 | =for hackers |
805 | Found in file perl.c | |
806 | ||
954c1994 | 807 | |
94bdecf9 | 808 | =back |
954c1994 | 809 | |
3df15adc YO |
810 | =head1 Functions in file dump.c |
811 | ||
812 | ||
813 | =over 8 | |
814 | ||
815 | =item pv_display | |
816 | X<pv_display> | |
817 | ||
818 | char *pv_display(SV *dsv, const char *pv, STRLEN cur, STRLEN len, | |
819 | STRLEN pvlim, U32 flags) | |
820 | ||
821 | Similar to | |
822 | ||
823 | pv_escape(dsv,pv,cur,pvlim,PERL_PV_ESCAPE_QUOTE); | |
824 | ||
825 | except that an additional "\0" will be appended to the string when | |
826 | len > cur and pv[cur] is "\0". | |
827 | ||
828 | Note that the final string may be up to 7 chars longer than pvlim. | |
829 | ||
830 | char* pv_display(SV *dsv, const char *pv, STRLEN cur, STRLEN len, STRLEN pvlim) | |
831 | ||
832 | =for hackers | |
833 | Found in file dump.c | |
834 | ||
835 | =item pv_escape | |
836 | X<pv_escape> | |
837 | ||
ddc5bc0f YO |
838 | |const STRLEN count|const STRLEN max |
839 | |STRLEN const *escaped, const U32 flags | |
840 | ||
3df15adc | 841 | Escapes at most the first "count" chars of pv and puts the results into |
ddc5bc0f | 842 | dsv such that the size of the escaped string will not exceed "max" chars |
3df15adc YO |
843 | and will not contain any incomplete escape sequences. |
844 | ||
ddc5bc0f YO |
845 | If flags contains PERL_PV_ESCAPE_QUOTE then any double quotes in the string |
846 | will also be escaped. | |
3df15adc YO |
847 | |
848 | Normally the SV will be cleared before the escaped string is prepared, | |
ddc5bc0f YO |
849 | but when PERL_PV_ESCAPE_NOCLEAR is set this will not occur. |
850 | ||
38a44b82 | 851 | If PERL_PV_ESCAPE_UNI is set then the input string is treated as Unicode, |
ddc5bc0f | 852 | if PERL_PV_ESCAPE_UNI_DETECT is set then the input string is scanned |
38a44b82 | 853 | using C<is_utf8_string()> to determine if it is Unicode. |
ddc5bc0f YO |
854 | |
855 | If PERL_PV_ESCAPE_ALL is set then all input chars will be output | |
856 | using C<\x01F1> style escapes, otherwise only chars above 255 will be | |
857 | escaped using this style, other non printable chars will use octal or | |
858 | common escaped patterns like C<\n>. If PERL_PV_ESCAPE_NOBACKSLASH | |
859 | then all chars below 255 will be treated as printable and | |
860 | will be output as literals. | |
861 | ||
862 | If PERL_PV_ESCAPE_FIRSTCHAR is set then only the first char of the | |
863 | string will be escaped, regardles of max. If the string is utf8 and | |
864 | the chars value is >255 then it will be returned as a plain hex | |
865 | sequence. Thus the output will either be a single char, | |
866 | an octal escape sequence, a special escape like C<\n> or a 3 or | |
867 | more digit hex value. | |
868 | ||
44a2ac75 YO |
869 | If PERL_PV_ESCAPE_RE is set then the escape char used will be a '%' and |
870 | not a '\\'. This is because regexes very often contain backslashed | |
871 | sequences, whereas '%' is not a particularly common character in patterns. | |
872 | ||
ddc5bc0f | 873 | Returns a pointer to the escaped text as held by dsv. |
3df15adc | 874 | |
ddc5bc0f YO |
875 | NOTE: the perl_ form of this function is deprecated. |
876 | ||
877 | char* pv_escape(SV *dsv, char const * const str, const STRLEN count, const STRLEN max, STRLEN * const escaped, const U32 flags) | |
878 | ||
879 | =for hackers | |
880 | Found in file dump.c | |
3df15adc | 881 | |
ddc5bc0f YO |
882 | =item pv_pretty |
883 | X<pv_pretty> | |
884 | ||
885 | |const STRLEN count|const STRLEN max\ | |
886 | |const char const *start_color| const char const *end_color\ | |
887 | |const U32 flags | |
888 | ||
889 | Converts a string into something presentable, handling escaping via | |
95b611b0 | 890 | pv_escape() and supporting quoting and ellipses. |
ddc5bc0f YO |
891 | |
892 | If the PERL_PV_PRETTY_QUOTE flag is set then the result will be | |
893 | double quoted with any double quotes in the string escaped. Otherwise | |
894 | if the PERL_PV_PRETTY_LTGT flag is set then the result be wrapped in | |
895 | angle brackets. | |
896 | ||
95b611b0 RGS |
897 | If the PERL_PV_PRETTY_ELLIPSES flag is set and not all characters in |
898 | string were output then an ellipsis C<...> will be appended to the | |
ddc5bc0f YO |
899 | string. Note that this happens AFTER it has been quoted. |
900 | ||
901 | If start_color is non-null then it will be inserted after the opening | |
902 | quote (if there is one) but before the escaped text. If end_color | |
903 | is non-null then it will be inserted after the escaped text but before | |
95b611b0 | 904 | any quotes or ellipses. |
ddc5bc0f YO |
905 | |
906 | Returns a pointer to the prettified text as held by dsv. | |
907 | ||
3df15adc YO |
908 | NOTE: the perl_ form of this function is deprecated. |
909 | ||
ddc5bc0f | 910 | char* pv_pretty(SV *dsv, char const * const str, const STRLEN count, const STRLEN max, char const * const start_color, char const * const end_color, const U32 flags) |
3df15adc YO |
911 | |
912 | =for hackers | |
913 | Found in file dump.c | |
914 | ||
915 | ||
916 | =back | |
917 | ||
9244d4ad RGS |
918 | =head1 Functions in file mathoms.c |
919 | ||
920 | ||
921 | =over 8 | |
922 | ||
923 | =item gv_fetchmethod | |
924 | X<gv_fetchmethod> | |
925 | ||
926 | See L<gv_fetchmethod_autoload>. | |
927 | ||
928 | GV* gv_fetchmethod(HV* stash, const char* name) | |
929 | ||
930 | =for hackers | |
931 | Found in file mathoms.c | |
932 | ||
b47163a2 NC |
933 | =item pack_cat |
934 | X<pack_cat> | |
935 | ||
936 | The engine implementing pack() Perl function. Note: parameters next_in_list and | |
937 | flags are not used. This call should not be used; use packlist instead. | |
938 | ||
939 | void pack_cat(SV *cat, const char *pat, const char *patend, SV **beglist, SV **endlist, SV ***next_in_list, U32 flags) | |
940 | ||
941 | =for hackers | |
942 | Found in file mathoms.c | |
943 | ||
9244d4ad RGS |
944 | =item sv_2pvbyte_nolen |
945 | X<sv_2pvbyte_nolen> | |
946 | ||
947 | Return a pointer to the byte-encoded representation of the SV. | |
948 | May cause the SV to be downgraded from UTF-8 as a side-effect. | |
949 | ||
950 | Usually accessed via the C<SvPVbyte_nolen> macro. | |
951 | ||
952 | char* sv_2pvbyte_nolen(SV* sv) | |
953 | ||
954 | =for hackers | |
955 | Found in file mathoms.c | |
956 | ||
957 | =item sv_2pvutf8_nolen | |
958 | X<sv_2pvutf8_nolen> | |
959 | ||
960 | Return a pointer to the UTF-8-encoded representation of the SV. | |
961 | May cause the SV to be upgraded to UTF-8 as a side-effect. | |
962 | ||
963 | Usually accessed via the C<SvPVutf8_nolen> macro. | |
964 | ||
965 | char* sv_2pvutf8_nolen(SV* sv) | |
966 | ||
967 | =for hackers | |
968 | Found in file mathoms.c | |
969 | ||
970 | =item sv_2pv_nolen | |
971 | X<sv_2pv_nolen> | |
972 | ||
973 | Like C<sv_2pv()>, but doesn't return the length too. You should usually | |
974 | use the macro wrapper C<SvPV_nolen(sv)> instead. | |
975 | char* sv_2pv_nolen(SV* sv) | |
976 | ||
977 | =for hackers | |
978 | Found in file mathoms.c | |
979 | ||
980 | =item sv_catpvn_mg | |
981 | X<sv_catpvn_mg> | |
982 | ||
983 | Like C<sv_catpvn>, but also handles 'set' magic. | |
984 | ||
985 | void sv_catpvn_mg(SV *sv, const char *ptr, STRLEN len) | |
986 | ||
987 | =for hackers | |
988 | Found in file mathoms.c | |
989 | ||
990 | =item sv_catsv_mg | |
991 | X<sv_catsv_mg> | |
992 | ||
993 | Like C<sv_catsv>, but also handles 'set' magic. | |
994 | ||
995 | void sv_catsv_mg(SV *dstr, SV *sstr) | |
996 | ||
997 | =for hackers | |
998 | Found in file mathoms.c | |
999 | ||
1000 | =item sv_force_normal | |
1001 | X<sv_force_normal> | |
1002 | ||
1003 | Undo various types of fakery on an SV: if the PV is a shared string, make | |
1004 | a private copy; if we're a ref, stop refing; if we're a glob, downgrade to | |
1005 | an xpvmg. See also C<sv_force_normal_flags>. | |
1006 | ||
1007 | void sv_force_normal(SV *sv) | |
1008 | ||
1009 | =for hackers | |
1010 | Found in file mathoms.c | |
1011 | ||
1012 | =item sv_iv | |
1013 | X<sv_iv> | |
1014 | ||
1015 | A private implementation of the C<SvIVx> macro for compilers which can't | |
1016 | cope with complex macro expressions. Always use the macro instead. | |
1017 | ||
1018 | IV sv_iv(SV* sv) | |
1019 | ||
1020 | =for hackers | |
1021 | Found in file mathoms.c | |
1022 | ||
1023 | =item sv_nolocking | |
1024 | X<sv_nolocking> | |
1025 | ||
1026 | Dummy routine which "locks" an SV when there is no locking module present. | |
1027 | Exists to avoid test for a NULL function pointer and because it could | |
1028 | potentially warn under some level of strict-ness. | |
1029 | ||
1030 | "Superseded" by sv_nosharing(). | |
1031 | ||
c48640ec | 1032 | void sv_nolocking(SV *sv) |
9244d4ad RGS |
1033 | |
1034 | =for hackers | |
1035 | Found in file mathoms.c | |
1036 | ||
1037 | =item sv_nounlocking | |
1038 | X<sv_nounlocking> | |
1039 | ||
1040 | Dummy routine which "unlocks" an SV when there is no locking module present. | |
1041 | Exists to avoid test for a NULL function pointer and because it could | |
1042 | potentially warn under some level of strict-ness. | |
1043 | ||
1044 | "Superseded" by sv_nosharing(). | |
1045 | ||
c48640ec | 1046 | void sv_nounlocking(SV *sv) |
9244d4ad RGS |
1047 | |
1048 | =for hackers | |
1049 | Found in file mathoms.c | |
1050 | ||
1051 | =item sv_nv | |
1052 | X<sv_nv> | |
1053 | ||
1054 | A private implementation of the C<SvNVx> macro for compilers which can't | |
1055 | cope with complex macro expressions. Always use the macro instead. | |
1056 | ||
1057 | NV sv_nv(SV* sv) | |
1058 | ||
1059 | =for hackers | |
1060 | Found in file mathoms.c | |
1061 | ||
1062 | =item sv_pv | |
1063 | X<sv_pv> | |
1064 | ||
1065 | Use the C<SvPV_nolen> macro instead | |
1066 | ||
1067 | char* sv_pv(SV *sv) | |
1068 | ||
1069 | =for hackers | |
1070 | Found in file mathoms.c | |
1071 | ||
1072 | =item sv_pvbyte | |
1073 | X<sv_pvbyte> | |
1074 | ||
1075 | Use C<SvPVbyte_nolen> instead. | |
1076 | ||
1077 | char* sv_pvbyte(SV *sv) | |
1078 | ||
1079 | =for hackers | |
1080 | Found in file mathoms.c | |
1081 | ||
1082 | =item sv_pvbyten | |
1083 | X<sv_pvbyten> | |
1084 | ||
1085 | A private implementation of the C<SvPVbyte> macro for compilers | |
1086 | which can't cope with complex macro expressions. Always use the macro | |
1087 | instead. | |
1088 | ||
1089 | char* sv_pvbyten(SV *sv, STRLEN *len) | |
1090 | ||
1091 | =for hackers | |
1092 | Found in file mathoms.c | |
1093 | ||
1094 | =item sv_pvn | |
1095 | X<sv_pvn> | |
1096 | ||
1097 | A private implementation of the C<SvPV> macro for compilers which can't | |
1098 | cope with complex macro expressions. Always use the macro instead. | |
1099 | ||
1100 | char* sv_pvn(SV *sv, STRLEN *len) | |
1101 | ||
1102 | =for hackers | |
1103 | Found in file mathoms.c | |
1104 | ||
1105 | =item sv_pvutf8 | |
1106 | X<sv_pvutf8> | |
1107 | ||
1108 | Use the C<SvPVutf8_nolen> macro instead | |
1109 | ||
1110 | char* sv_pvutf8(SV *sv) | |
1111 | ||
1112 | =for hackers | |
1113 | Found in file mathoms.c | |
1114 | ||
1115 | =item sv_pvutf8n | |
1116 | X<sv_pvutf8n> | |
1117 | ||
1118 | A private implementation of the C<SvPVutf8> macro for compilers | |
1119 | which can't cope with complex macro expressions. Always use the macro | |
1120 | instead. | |
1121 | ||
1122 | char* sv_pvutf8n(SV *sv, STRLEN *len) | |
1123 | ||
1124 | =for hackers | |
1125 | Found in file mathoms.c | |
1126 | ||
1127 | =item sv_taint | |
1128 | X<sv_taint> | |
1129 | ||
1130 | Taint an SV. Use C<SvTAINTED_on> instead. | |
1131 | void sv_taint(SV* sv) | |
1132 | ||
1133 | =for hackers | |
1134 | Found in file mathoms.c | |
1135 | ||
1136 | =item sv_unref | |
1137 | X<sv_unref> | |
1138 | ||
1139 | Unsets the RV status of the SV, and decrements the reference count of | |
1140 | whatever was being referenced by the RV. This can almost be thought of | |
1141 | as a reversal of C<newSVrv>. This is C<sv_unref_flags> with the C<flag> | |
1142 | being zero. See C<SvROK_off>. | |
1143 | ||
1144 | void sv_unref(SV* sv) | |
1145 | ||
1146 | =for hackers | |
1147 | Found in file mathoms.c | |
1148 | ||
fed01289 SP |
1149 | =item sv_usepvn |
1150 | X<sv_usepvn> | |
1151 | ||
1152 | Tells an SV to use C<ptr> to find its string value. Implemented by | |
1153 | calling C<sv_usepvn_flags> with C<flags> of 0, hence does not handle 'set' | |
1154 | magic. See C<sv_usepvn_flags>. | |
1155 | ||
1156 | void sv_usepvn(SV* sv, char* ptr, STRLEN len) | |
1157 | ||
1158 | =for hackers | |
1159 | Found in file mathoms.c | |
1160 | ||
1161 | =item sv_usepvn_mg | |
1162 | X<sv_usepvn_mg> | |
1163 | ||
1164 | Like C<sv_usepvn>, but also handles 'set' magic. | |
1165 | ||
1166 | void sv_usepvn_mg(SV *sv, char *ptr, STRLEN len) | |
1167 | ||
1168 | =for hackers | |
1169 | Found in file mathoms.c | |
1170 | ||
9244d4ad RGS |
1171 | =item sv_uv |
1172 | X<sv_uv> | |
1173 | ||
1174 | A private implementation of the C<SvUVx> macro for compilers which can't | |
1175 | cope with complex macro expressions. Always use the macro instead. | |
1176 | ||
1177 | UV sv_uv(SV* sv) | |
1178 | ||
1179 | =for hackers | |
1180 | Found in file mathoms.c | |
1181 | ||
95be277c NC |
1182 | =item unpack_str |
1183 | X<unpack_str> | |
1184 | ||
1185 | The engine implementing unpack() Perl function. Note: parameters strbeg, new_s | |
1186 | and ocnt are not used. This call should not be used, use unpackstring instead. | |
1187 | ||
1188 | I32 unpack_str(const char *pat, const char *patend, const char *s, const char *strbeg, const char *strend, char **new_s, I32 ocnt, U32 flags) | |
1189 | ||
1190 | =for hackers | |
1191 | Found in file mathoms.c | |
1192 | ||
9244d4ad RGS |
1193 | |
1194 | =back | |
1195 | ||
daad78fc RGS |
1196 | =head1 Functions in file pp_ctl.c |
1197 | ||
1198 | ||
1199 | =over 8 | |
1200 | ||
1201 | =item find_runcv | |
1202 | X<find_runcv> | |
1203 | ||
1204 | Locate the CV corresponding to the currently executing sub or eval. | |
1205 | If db_seqp is non_null, skip CVs that are in the DB package and populate | |
1206 | *db_seqp with the cop sequence number at the point that the DB:: code was | |
1207 | entered. (allows debuggers to eval in the scope of the breakpoint rather | |
1208 | than in the scope of the debugger itself). | |
1209 | ||
1210 | CV* find_runcv(U32 *db_seqp) | |
1211 | ||
1212 | =for hackers | |
1213 | Found in file pp_ctl.c | |
1214 | ||
1215 | ||
1216 | =back | |
1217 | ||
6050d10e JP |
1218 | =head1 Functions in file pp_pack.c |
1219 | ||
1220 | ||
1221 | =over 8 | |
1222 | ||
7accc089 | 1223 | =item packlist |
d8c40edc | 1224 | X<packlist> |
6050d10e JP |
1225 | |
1226 | The engine implementing pack() Perl function. | |
1227 | ||
f7fe979e | 1228 | void packlist(SV *cat, const char *pat, const char *patend, SV **beglist, SV **endlist) |
7accc089 JH |
1229 | |
1230 | =for hackers | |
1231 | Found in file pp_pack.c | |
1232 | ||
7accc089 | 1233 | =item unpackstring |
d8c40edc | 1234 | X<unpackstring> |
6050d10e | 1235 | |
608d3aed WL |
1236 | The engine implementing unpack() Perl function. C<unpackstring> puts the |
1237 | extracted list items on the stack and returns the number of elements. | |
1238 | Issue C<PUTBACK> before and C<SPAGAIN> after the call to this function. | |
6050d10e | 1239 | |
f7fe979e | 1240 | I32 unpackstring(const char *pat, const char *patend, const char *s, const char *strend, U32 flags) |
7accc089 JH |
1241 | |
1242 | =for hackers | |
1243 | Found in file pp_pack.c | |
1244 | ||
6050d10e JP |
1245 | |
1246 | =back | |
1247 | ||
94bdecf9 | 1248 | =head1 GV Functions |
6e9d1081 | 1249 | |
94bdecf9 | 1250 | =over 8 |
6e9d1081 | 1251 | |
954c1994 | 1252 | =item GvSV |
d8c40edc | 1253 | X<GvSV> |
954c1994 GS |
1254 | |
1255 | Return the SV from the GV. | |
1256 | ||
1257 | SV* GvSV(GV* gv) | |
1258 | ||
497711e7 GS |
1259 | =for hackers |
1260 | Found in file gv.h | |
1261 | ||
9f435386 RGS |
1262 | =item gv_const_sv |
1263 | X<gv_const_sv> | |
1264 | ||
1265 | If C<gv> is a typeglob whose subroutine entry is a constant sub eligible for | |
1266 | inlining, or C<gv> is a placeholder reference that would be promoted to such | |
1267 | a typeglob, then returns the value returned by the sub. Otherwise, returns | |
1268 | NULL. | |
1269 | ||
1270 | SV* gv_const_sv(GV* gv) | |
1271 | ||
1272 | =for hackers | |
1273 | Found in file gv.c | |
1274 | ||
954c1994 | 1275 | =item gv_fetchmeth |
d8c40edc | 1276 | X<gv_fetchmeth> |
954c1994 GS |
1277 | |
1278 | Returns the glob with the given C<name> and a defined subroutine or | |
1279 | C<NULL>. The glob lives in the given C<stash>, or in the stashes | |
a453c169 | 1280 | accessible via @ISA and UNIVERSAL::. |
954c1994 GS |
1281 | |
1282 | The argument C<level> should be either 0 or -1. If C<level==0>, as a | |
1283 | side-effect creates a glob with the given C<name> in the given C<stash> | |
1284 | which in the case of success contains an alias for the subroutine, and sets | |
e1a479c5 | 1285 | up caching info for this glob. |
954c1994 GS |
1286 | |
1287 | This function grants C<"SUPER"> token as a postfix of the stash name. The | |
1288 | GV returned from C<gv_fetchmeth> may be a method cache entry, which is not | |
4929bf7b | 1289 | visible to Perl code. So when calling C<call_sv>, you should not use |
954c1994 | 1290 | the GV directly; instead, you should use the method's CV, which can be |
1c846c1f | 1291 | obtained from the GV with the C<GvCV> macro. |
954c1994 GS |
1292 | |
1293 | GV* gv_fetchmeth(HV* stash, const char* name, STRLEN len, I32 level) | |
1294 | ||
497711e7 GS |
1295 | =for hackers |
1296 | Found in file gv.c | |
1297 | ||
954c1994 | 1298 | =item gv_fetchmethod_autoload |
d8c40edc | 1299 | X<gv_fetchmethod_autoload> |
954c1994 GS |
1300 | |
1301 | Returns the glob which contains the subroutine to call to invoke the method | |
1302 | on the C<stash>. In fact in the presence of autoloading this may be the | |
1303 | glob for "AUTOLOAD". In this case the corresponding variable $AUTOLOAD is | |
1c846c1f | 1304 | already setup. |
954c1994 GS |
1305 | |
1306 | The third parameter of C<gv_fetchmethod_autoload> determines whether | |
1307 | AUTOLOAD lookup is performed if the given method is not present: non-zero | |
1c846c1f | 1308 | means yes, look for AUTOLOAD; zero means no, don't look for AUTOLOAD. |
954c1994 | 1309 | Calling C<gv_fetchmethod> is equivalent to calling C<gv_fetchmethod_autoload> |
1c846c1f | 1310 | with a non-zero C<autoload> parameter. |
954c1994 GS |
1311 | |
1312 | These functions grant C<"SUPER"> token as a prefix of the method name. Note | |
1313 | that if you want to keep the returned glob for a long time, you need to | |
1314 | check for it being "AUTOLOAD", since at the later time the call may load a | |
1315 | different subroutine due to $AUTOLOAD changing its value. Use the glob | |
1c846c1f | 1316 | created via a side effect to do this. |
954c1994 GS |
1317 | |
1318 | These functions have the same side-effects and as C<gv_fetchmeth> with | |
1319 | C<level==0>. C<name> should be writable if contains C<':'> or C<' | |
1320 | ''>. The warning against passing the GV returned by C<gv_fetchmeth> to | |
1c846c1f | 1321 | C<call_sv> apply equally to these functions. |
954c1994 GS |
1322 | |
1323 | GV* gv_fetchmethod_autoload(HV* stash, const char* name, I32 autoload) | |
1324 | ||
497711e7 GS |
1325 | =for hackers |
1326 | Found in file gv.c | |
1327 | ||
0c81b680 | 1328 | =item gv_fetchmeth_autoload |
d8c40edc | 1329 | X<gv_fetchmeth_autoload> |
0c81b680 JH |
1330 | |
1331 | Same as gv_fetchmeth(), but looks for autoloaded subroutines too. | |
1332 | Returns a glob for the subroutine. | |
1333 | ||
1334 | For an autoloaded subroutine without a GV, will create a GV even | |
1335 | if C<level < 0>. For an autoloaded subroutine without a stub, GvCV() | |
1336 | of the result may be zero. | |
1337 | ||
1338 | GV* gv_fetchmeth_autoload(HV* stash, const char* name, STRLEN len, I32 level) | |
1339 | ||
1340 | =for hackers | |
1341 | Found in file gv.c | |
1342 | ||
954c1994 | 1343 | =item gv_stashpv |
d8c40edc | 1344 | X<gv_stashpv> |
954c1994 | 1345 | |
da51bb9b | 1346 | Returns a pointer to the stash for a specified package. Uses C<strlen> to |
75c442e4 | 1347 | determine the length of C<name>, then calls C<gv_stashpvn()>. |
bc96cb06 | 1348 | |
da51bb9b | 1349 | HV* gv_stashpv(const char* name, I32 flags) |
bc96cb06 SH |
1350 | |
1351 | =for hackers | |
1352 | Found in file gv.c | |
1353 | ||
1354 | =item gv_stashpvn | |
d8c40edc | 1355 | X<gv_stashpvn> |
bc96cb06 | 1356 | |
da51bb9b NC |
1357 | Returns a pointer to the stash for a specified package. The C<namelen> |
1358 | parameter indicates the length of the C<name>, in bytes. C<flags> is passed | |
1359 | to C<gv_fetchpvn_flags()>, so if set to C<GV_ADD> then the package will be | |
1360 | created if it does not already exist. If the package does not exist and | |
1361 | C<flags> is 0 (or any other setting that does not create packages) then NULL | |
1362 | is returned. | |
954c1994 | 1363 | |
da51bb9b NC |
1364 | |
1365 | HV* gv_stashpvn(const char* name, U32 namelen, I32 flags) | |
954c1994 | 1366 | |
497711e7 GS |
1367 | =for hackers |
1368 | Found in file gv.c | |
1369 | ||
3fe05580 MHM |
1370 | =item gv_stashpvs |
1371 | X<gv_stashpvs> | |
1372 | ||
1373 | Like C<gv_stashpvn>, but takes a literal string instead of a string/length pair. | |
1374 | ||
1375 | HV* gv_stashpvs(const char* name, I32 create) | |
1376 | ||
1377 | =for hackers | |
1378 | Found in file handy.h | |
1379 | ||
954c1994 | 1380 | =item gv_stashsv |
d8c40edc | 1381 | X<gv_stashsv> |
954c1994 | 1382 | |
da51bb9b | 1383 | Returns a pointer to the stash for a specified package. See C<gv_stashpvn>. |
954c1994 | 1384 | |
da51bb9b | 1385 | HV* gv_stashsv(SV* sv, I32 flags) |
954c1994 | 1386 | |
497711e7 GS |
1387 | =for hackers |
1388 | Found in file gv.c | |
1389 | ||
954c1994 | 1390 | |
94bdecf9 | 1391 | =back |
954c1994 | 1392 | |
94bdecf9 | 1393 | =head1 Handy Values |
497711e7 | 1394 | |
94bdecf9 | 1395 | =over 8 |
954c1994 | 1396 | |
e509e693 | 1397 | =item Nullav |
d8c40edc | 1398 | X<Nullav> |
497711e7 | 1399 | |
e509e693 | 1400 | Null AV pointer. |
954c1994 | 1401 | |
3ae1b226 NC |
1402 | (deprecated - use C<(AV *)NULL> instead) |
1403 | ||
94bdecf9 | 1404 | =for hackers |
e509e693 | 1405 | Found in file av.h |
954c1994 | 1406 | |
dd2155a4 | 1407 | =item Nullch |
d8c40edc | 1408 | X<Nullch> |
94bdecf9 | 1409 | |
24792b8d | 1410 | Null character pointer. (No longer available when C<PERL_CORE> is defined.) |
2307c6d0 | 1411 | |
497711e7 | 1412 | =for hackers |
94bdecf9 | 1413 | Found in file handy.h |
497711e7 | 1414 | |
e509e693 | 1415 | =item Nullcv |
d8c40edc | 1416 | X<Nullcv> |
e509e693 SH |
1417 | |
1418 | Null CV pointer. | |
1419 | ||
3ae1b226 NC |
1420 | (deprecated - use C<(CV *)NULL> instead) |
1421 | ||
e509e693 SH |
1422 | =for hackers |
1423 | Found in file cv.h | |
1424 | ||
1425 | =item Nullhv | |
d8c40edc | 1426 | X<Nullhv> |
e509e693 SH |
1427 | |
1428 | Null HV pointer. | |
1429 | ||
3ae1b226 NC |
1430 | (deprecated - use C<(HV *)NULL> instead) |
1431 | ||
e509e693 SH |
1432 | =for hackers |
1433 | Found in file hv.h | |
1434 | ||
94bdecf9 | 1435 | =item Nullsv |
d8c40edc | 1436 | X<Nullsv> |
954c1994 | 1437 | |
24792b8d | 1438 | Null SV pointer. (No longer available when C<PERL_CORE> is defined.) |
954c1994 | 1439 | |
497711e7 | 1440 | =for hackers |
94bdecf9 | 1441 | Found in file handy.h |
497711e7 | 1442 | |
954c1994 | 1443 | |
94bdecf9 | 1444 | =back |
954c1994 | 1445 | |
94bdecf9 | 1446 | =head1 Hash Manipulation Functions |
497711e7 | 1447 | |
94bdecf9 | 1448 | =over 8 |
954c1994 | 1449 | |
94bdecf9 | 1450 | =item get_hv |
d8c40edc | 1451 | X<get_hv> |
954c1994 | 1452 | |
94bdecf9 JH |
1453 | Returns the HV of the specified Perl hash. If C<create> is set and the |
1454 | Perl variable does not exist then it will be created. If C<create> is not | |
1455 | set and the variable does not exist then NULL is returned. | |
497711e7 | 1456 | |
94bdecf9 | 1457 | NOTE: the perl_ form of this function is deprecated. |
954c1994 | 1458 | |
94bdecf9 | 1459 | HV* get_hv(const char* name, I32 create) |
954c1994 | 1460 | |
497711e7 | 1461 | =for hackers |
94bdecf9 | 1462 | Found in file perl.c |
497711e7 | 1463 | |
e509e693 | 1464 | =item HEf_SVKEY |
d8c40edc | 1465 | X<HEf_SVKEY> |
e509e693 SH |
1466 | |
1467 | This flag, used in the length slot of hash entries and magic structures, | |
1468 | specifies the structure contains an C<SV*> pointer where a C<char*> pointer | |
1469 | is to be expected. (For information only--not to be used). | |
1470 | ||
1471 | =for hackers | |
1472 | Found in file hv.h | |
1473 | ||
954c1994 | 1474 | =item HeHASH |
d8c40edc | 1475 | X<HeHASH> |
954c1994 GS |
1476 | |
1477 | Returns the computed hash stored in the hash entry. | |
1478 | ||
1479 | U32 HeHASH(HE* he) | |
1480 | ||
497711e7 GS |
1481 | =for hackers |
1482 | Found in file hv.h | |
1483 | ||
954c1994 | 1484 | =item HeKEY |
d8c40edc | 1485 | X<HeKEY> |
954c1994 GS |
1486 | |
1487 | Returns the actual pointer stored in the key slot of the hash entry. The | |
1488 | pointer may be either C<char*> or C<SV*>, depending on the value of | |
1489 | C<HeKLEN()>. Can be assigned to. The C<HePV()> or C<HeSVKEY()> macros are | |
1490 | usually preferable for finding the value of a key. | |
1491 | ||
1492 | void* HeKEY(HE* he) | |
1493 | ||
497711e7 GS |
1494 | =for hackers |
1495 | Found in file hv.h | |
1496 | ||
954c1994 | 1497 | =item HeKLEN |
d8c40edc | 1498 | X<HeKLEN> |
954c1994 GS |
1499 | |
1500 | If this is negative, and amounts to C<HEf_SVKEY>, it indicates the entry | |
1501 | holds an C<SV*> key. Otherwise, holds the actual length of the key. Can | |
1502 | be assigned to. The C<HePV()> macro is usually preferable for finding key | |
1503 | lengths. | |
1504 | ||
1505 | STRLEN HeKLEN(HE* he) | |
1506 | ||
497711e7 GS |
1507 | =for hackers |
1508 | Found in file hv.h | |
1509 | ||
954c1994 | 1510 | =item HePV |
d8c40edc | 1511 | X<HePV> |
954c1994 GS |
1512 | |
1513 | Returns the key slot of the hash entry as a C<char*> value, doing any | |
1514 | necessary dereferencing of possibly C<SV*> keys. The length of the string | |
1515 | is placed in C<len> (this is a macro, so do I<not> use C<&len>). If you do | |
1516 | not care about what the length of the key is, you may use the global | |
1517 | variable C<PL_na>, though this is rather less efficient than using a local | |
1518 | variable. Remember though, that hash keys in perl are free to contain | |
1519 | embedded nulls, so using C<strlen()> or similar is not a good way to find | |
1520 | the length of hash keys. This is very similar to the C<SvPV()> macro | |
289d3c6a NC |
1521 | described elsewhere in this document. See also C<HeUTF8>. |
1522 | ||
1523 | If you are using C<HePV> to get values to pass to C<newSVpvn()> to create a | |
1524 | new SV, you should consider using C<newSVhek(HeKEY_hek(he))> as it is more | |
1525 | efficient. | |
954c1994 GS |
1526 | |
1527 | char* HePV(HE* he, STRLEN len) | |
1528 | ||
497711e7 GS |
1529 | =for hackers |
1530 | Found in file hv.h | |
1531 | ||
954c1994 | 1532 | =item HeSVKEY |
d8c40edc | 1533 | X<HeSVKEY> |
954c1994 | 1534 | |
458cb9d2 | 1535 | Returns the key as an C<SV*>, or C<NULL> if the hash entry does not |
954c1994 GS |
1536 | contain an C<SV*> key. |
1537 | ||
1538 | SV* HeSVKEY(HE* he) | |
1539 | ||
497711e7 GS |
1540 | =for hackers |
1541 | Found in file hv.h | |
1542 | ||
954c1994 | 1543 | =item HeSVKEY_force |
d8c40edc | 1544 | X<HeSVKEY_force> |
954c1994 GS |
1545 | |
1546 | Returns the key as an C<SV*>. Will create and return a temporary mortal | |
1547 | C<SV*> if the hash entry contains only a C<char*> key. | |
1548 | ||
1549 | SV* HeSVKEY_force(HE* he) | |
1550 | ||
497711e7 GS |
1551 | =for hackers |
1552 | Found in file hv.h | |
1553 | ||
954c1994 | 1554 | =item HeSVKEY_set |
d8c40edc | 1555 | X<HeSVKEY_set> |
954c1994 GS |
1556 | |
1557 | Sets the key to a given C<SV*>, taking care to set the appropriate flags to | |
1558 | indicate the presence of an C<SV*> key, and returns the same | |
1559 | C<SV*>. | |
1560 | ||
1561 | SV* HeSVKEY_set(HE* he, SV* sv) | |
1562 | ||
497711e7 GS |
1563 | =for hackers |
1564 | Found in file hv.h | |
1565 | ||
289d3c6a NC |
1566 | =item HeUTF8 |
1567 | X<HeUTF8> | |
1568 | ||
1569 | Returns whether the C<char *> value returned by C<HePV> is encoded in UTF-8, | |
1570 | doing any necessary dereferencing of possibly C<SV*> keys. The value returned | |
0a0b43fa | 1571 | will be 0 or non-0, not necessarily 1 (or even a value with any low bits set), |
289d3c6a NC |
1572 | so B<do not> blindly assign this to a C<bool> variable, as C<bool> may be a |
1573 | typedef for C<char>. | |
1574 | ||
1575 | char* HeUTF8(HE* he, STRLEN len) | |
1576 | ||
1577 | =for hackers | |
1578 | Found in file hv.h | |
1579 | ||
954c1994 | 1580 | =item HeVAL |
d8c40edc | 1581 | X<HeVAL> |
954c1994 GS |
1582 | |
1583 | Returns the value slot (type C<SV*>) stored in the hash entry. | |
1584 | ||
1585 | SV* HeVAL(HE* he) | |
1586 | ||
497711e7 GS |
1587 | =for hackers |
1588 | Found in file hv.h | |
1589 | ||
954c1994 | 1590 | =item HvNAME |
d8c40edc | 1591 | X<HvNAME> |
954c1994 | 1592 | |
9282b5fd SH |
1593 | Returns the package name of a stash, or NULL if C<stash> isn't a stash. |
1594 | See C<SvSTASH>, C<CvSTASH>. | |
954c1994 GS |
1595 | |
1596 | char* HvNAME(HV* stash) | |
1597 | ||
497711e7 GS |
1598 | =for hackers |
1599 | Found in file hv.h | |
1600 | ||
ecae49c0 | 1601 | =item hv_assert |
d8c40edc | 1602 | X<hv_assert> |
ecae49c0 NC |
1603 | |
1604 | Check that a hash is in an internally consistent state. | |
1605 | ||
1606 | void hv_assert(HV* tb) | |
1607 | ||
1608 | =for hackers | |
1609 | Found in file hv.c | |
1610 | ||
954c1994 | 1611 | =item hv_clear |
d8c40edc | 1612 | X<hv_clear> |
954c1994 GS |
1613 | |
1614 | Clears a hash, making it empty. | |
1615 | ||
1616 | void hv_clear(HV* tb) | |
1617 | ||
497711e7 GS |
1618 | =for hackers |
1619 | Found in file hv.c | |
1620 | ||
3540d4ce | 1621 | =item hv_clear_placeholders |
d8c40edc | 1622 | X<hv_clear_placeholders> |
3540d4ce AB |
1623 | |
1624 | Clears any placeholders from a hash. If a restricted hash has any of its keys | |
1625 | marked as readonly and the key is subsequently deleted, the key is not actually | |
1626 | deleted but is marked by assigning it a value of &PL_sv_placeholder. This tags | |
1627 | it so it will be ignored by future operations such as iterating over the hash, | |
fa11829f | 1628 | but will still allow the hash to have a value reassigned to the key at some |
3540d4ce AB |
1629 | future point. This function clears any such placeholder keys from the hash. |
1630 | See Hash::Util::lock_keys() for an example of its use. | |
1631 | ||
1632 | void hv_clear_placeholders(HV* hb) | |
1633 | ||
1634 | =for hackers | |
1635 | Found in file hv.c | |
1636 | ||
954c1994 | 1637 | =item hv_delete |
d8c40edc | 1638 | X<hv_delete> |
954c1994 GS |
1639 | |
1640 | Deletes a key/value pair in the hash. The value SV is removed from the | |
1c846c1f | 1641 | hash and returned to the caller. The C<klen> is the length of the key. |
954c1994 GS |
1642 | The C<flags> value will normally be zero; if set to G_DISCARD then NULL |
1643 | will be returned. | |
1644 | ||
da58a35d | 1645 | SV* hv_delete(HV* tb, const char* key, I32 klen, I32 flags) |
954c1994 | 1646 | |
497711e7 GS |
1647 | =for hackers |
1648 | Found in file hv.c | |
1649 | ||
954c1994 | 1650 | =item hv_delete_ent |
d8c40edc | 1651 | X<hv_delete_ent> |
954c1994 GS |
1652 | |
1653 | Deletes a key/value pair in the hash. The value SV is removed from the | |
1654 | hash and returned to the caller. The C<flags> value will normally be zero; | |
1655 | if set to G_DISCARD then NULL will be returned. C<hash> can be a valid | |
1656 | precomputed hash value, or 0 to ask for it to be computed. | |
1657 | ||
1658 | SV* hv_delete_ent(HV* tb, SV* key, I32 flags, U32 hash) | |
1659 | ||
497711e7 GS |
1660 | =for hackers |
1661 | Found in file hv.c | |
1662 | ||
954c1994 | 1663 | =item hv_exists |
d8c40edc | 1664 | X<hv_exists> |
954c1994 GS |
1665 | |
1666 | Returns a boolean indicating whether the specified hash key exists. The | |
1667 | C<klen> is the length of the key. | |
1668 | ||
da58a35d | 1669 | bool hv_exists(HV* tb, const char* key, I32 klen) |
954c1994 | 1670 | |
497711e7 GS |
1671 | =for hackers |
1672 | Found in file hv.c | |
1673 | ||
954c1994 | 1674 | =item hv_exists_ent |
d8c40edc | 1675 | X<hv_exists_ent> |
954c1994 GS |
1676 | |
1677 | Returns a boolean indicating whether the specified hash key exists. C<hash> | |
1678 | can be a valid precomputed hash value, or 0 to ask for it to be | |
1679 | computed. | |
1680 | ||
1681 | bool hv_exists_ent(HV* tb, SV* key, U32 hash) | |
1682 | ||
497711e7 GS |
1683 | =for hackers |
1684 | Found in file hv.c | |
1685 | ||
954c1994 | 1686 | =item hv_fetch |
d8c40edc | 1687 | X<hv_fetch> |
954c1994 GS |
1688 | |
1689 | Returns the SV which corresponds to the specified key in the hash. The | |
1690 | C<klen> is the length of the key. If C<lval> is set then the fetch will be | |
1691 | part of a store. Check that the return value is non-null before | |
f4758303 | 1692 | dereferencing it to an C<SV*>. |
954c1994 | 1693 | |
96f1132b | 1694 | See L<perlguts/"Understanding the Magic of Tied Hashes and Arrays"> for more |
954c1994 GS |
1695 | information on how to use this function on tied hashes. |
1696 | ||
da58a35d | 1697 | SV** hv_fetch(HV* tb, const char* key, I32 klen, I32 lval) |
954c1994 | 1698 | |
497711e7 GS |
1699 | =for hackers |
1700 | Found in file hv.c | |
1701 | ||
3fe05580 MHM |
1702 | =item hv_fetchs |
1703 | X<hv_fetchs> | |
1704 | ||
1705 | Like C<hv_fetch>, but takes a literal string instead of a string/length pair. | |
1706 | ||
1707 | SV** hv_fetchs(HV* tb, const char* key, I32 lval) | |
1708 | ||
1709 | =for hackers | |
1710 | Found in file handy.h | |
1711 | ||
954c1994 | 1712 | =item hv_fetch_ent |
d8c40edc | 1713 | X<hv_fetch_ent> |
954c1994 GS |
1714 | |
1715 | Returns the hash entry which corresponds to the specified key in the hash. | |
1716 | C<hash> must be a valid precomputed hash number for the given C<key>, or 0 | |
1717 | if you want the function to compute it. IF C<lval> is set then the fetch | |
1718 | will be part of a store. Make sure the return value is non-null before | |
1719 | accessing it. The return value when C<tb> is a tied hash is a pointer to a | |
1720 | static location, so be sure to make a copy of the structure if you need to | |
1c846c1f | 1721 | store it somewhere. |
954c1994 | 1722 | |
96f1132b | 1723 | See L<perlguts/"Understanding the Magic of Tied Hashes and Arrays"> for more |
954c1994 GS |
1724 | information on how to use this function on tied hashes. |
1725 | ||
1726 | HE* hv_fetch_ent(HV* tb, SV* key, I32 lval, U32 hash) | |
1727 | ||
497711e7 GS |
1728 | =for hackers |
1729 | Found in file hv.c | |
1730 | ||
954c1994 | 1731 | =item hv_iterinit |
d8c40edc | 1732 | X<hv_iterinit> |
954c1994 GS |
1733 | |
1734 | Prepares a starting point to traverse a hash table. Returns the number of | |
1735 | keys in the hash (i.e. the same as C<HvKEYS(tb)>). The return value is | |
1c846c1f | 1736 | currently only meaningful for hashes without tie magic. |
954c1994 GS |
1737 | |
1738 | NOTE: Before version 5.004_65, C<hv_iterinit> used to return the number of | |
1739 | hash buckets that happen to be in use. If you still need that esoteric | |
1740 | value, you can get it through the macro C<HvFILL(tb)>. | |
1741 | ||
641d4181 | 1742 | |
954c1994 GS |
1743 | I32 hv_iterinit(HV* tb) |
1744 | ||
497711e7 GS |
1745 | =for hackers |
1746 | Found in file hv.c | |
1747 | ||
954c1994 | 1748 | =item hv_iterkey |
d8c40edc | 1749 | X<hv_iterkey> |
954c1994 GS |
1750 | |
1751 | Returns the key from the current position of the hash iterator. See | |
1752 | C<hv_iterinit>. | |
1753 | ||
1754 | char* hv_iterkey(HE* entry, I32* retlen) | |
1755 | ||
497711e7 GS |
1756 | =for hackers |
1757 | Found in file hv.c | |
1758 | ||
954c1994 | 1759 | =item hv_iterkeysv |
d8c40edc | 1760 | X<hv_iterkeysv> |
954c1994 GS |
1761 | |
1762 | Returns the key as an C<SV*> from the current position of the hash | |
1763 | iterator. The return value will always be a mortal copy of the key. Also | |
1764 | see C<hv_iterinit>. | |
1765 | ||
1766 | SV* hv_iterkeysv(HE* entry) | |
1767 | ||
497711e7 GS |
1768 | =for hackers |
1769 | Found in file hv.c | |
1770 | ||
954c1994 | 1771 | =item hv_iternext |
d8c40edc | 1772 | X<hv_iternext> |
954c1994 GS |
1773 | |
1774 | Returns entries from a hash iterator. See C<hv_iterinit>. | |
1775 | ||
641d4181 JH |
1776 | You may call C<hv_delete> or C<hv_delete_ent> on the hash entry that the |
1777 | iterator currently points to, without losing your place or invalidating your | |
1778 | iterator. Note that in this case the current entry is deleted from the hash | |
1779 | with your iterator holding the last reference to it. Your iterator is flagged | |
1780 | to free the entry on the next call to C<hv_iternext>, so you must not discard | |
1781 | your iterator immediately else the entry will leak - call C<hv_iternext> to | |
1782 | trigger the resource deallocation. | |
1783 | ||
954c1994 GS |
1784 | HE* hv_iternext(HV* tb) |
1785 | ||
497711e7 GS |
1786 | =for hackers |
1787 | Found in file hv.c | |
1788 | ||
954c1994 | 1789 | =item hv_iternextsv |
d8c40edc | 1790 | X<hv_iternextsv> |
954c1994 GS |
1791 | |
1792 | Performs an C<hv_iternext>, C<hv_iterkey>, and C<hv_iterval> in one | |
1793 | operation. | |
1794 | ||
1795 | SV* hv_iternextsv(HV* hv, char** key, I32* retlen) | |
1796 | ||
497711e7 GS |
1797 | =for hackers |
1798 | Found in file hv.c | |
1799 | ||
641d4181 | 1800 | =item hv_iternext_flags |
d8c40edc | 1801 | X<hv_iternext_flags> |
641d4181 JH |
1802 | |
1803 | Returns entries from a hash iterator. See C<hv_iterinit> and C<hv_iternext>. | |
1804 | The C<flags> value will normally be zero; if HV_ITERNEXT_WANTPLACEHOLDERS is | |
1805 | set the placeholders keys (for restricted hashes) will be returned in addition | |
1806 | to normal keys. By default placeholders are automatically skipped over. | |
384679aa RGS |
1807 | Currently a placeholder is implemented with a value that is |
1808 | C<&Perl_sv_placeholder>. Note that the implementation of placeholders and | |
641d4181 JH |
1809 | restricted hashes may change, and the implementation currently is |
1810 | insufficiently abstracted for any change to be tidy. | |
1811 | ||
1812 | NOTE: this function is experimental and may change or be | |
1813 | removed without notice. | |
1814 | ||
1815 | HE* hv_iternext_flags(HV* tb, I32 flags) | |
1816 | ||
1817 | =for hackers | |
1818 | Found in file hv.c | |
1819 | ||
954c1994 | 1820 | =item hv_iterval |
d8c40edc | 1821 | X<hv_iterval> |
954c1994 GS |
1822 | |
1823 | Returns the value from the current position of the hash iterator. See | |
1824 | C<hv_iterkey>. | |
1825 | ||
1826 | SV* hv_iterval(HV* tb, HE* entry) | |
1827 | ||
497711e7 GS |
1828 | =for hackers |
1829 | Found in file hv.c | |
1830 | ||
954c1994 | 1831 | =item hv_magic |
d8c40edc | 1832 | X<hv_magic> |
954c1994 GS |
1833 | |
1834 | Adds magic to a hash. See C<sv_magic>. | |
1835 | ||
1836 | void hv_magic(HV* hv, GV* gv, int how) | |
1837 | ||
497711e7 GS |
1838 | =for hackers |
1839 | Found in file hv.c | |
1840 | ||
a3bcc51e | 1841 | =item hv_scalar |
d8c40edc | 1842 | X<hv_scalar> |
a3bcc51e TP |
1843 | |
1844 | Evaluates the hash in scalar context and returns the result. Handles magic when the hash is tied. | |
1845 | ||
1846 | SV* hv_scalar(HV* hv) | |
1847 | ||
1848 | =for hackers | |
1849 | Found in file hv.c | |
1850 | ||
954c1994 | 1851 | =item hv_store |
d8c40edc | 1852 | X<hv_store> |
954c1994 GS |
1853 | |
1854 | Stores an SV in a hash. The hash key is specified as C<key> and C<klen> is | |
1855 | the length of the key. The C<hash> parameter is the precomputed hash | |
1856 | value; if it is zero then Perl will compute it. The return value will be | |
1857 | NULL if the operation failed or if the value did not need to be actually | |
1858 | stored within the hash (as in the case of tied hashes). Otherwise it can | |
1859 | be dereferenced to get the original C<SV*>. Note that the caller is | |
1860 | responsible for suitably incrementing the reference count of C<val> before | |
7e8c5dac HS |
1861 | the call, and decrementing it if the function returned NULL. Effectively |
1862 | a successful hv_store takes ownership of one reference to C<val>. This is | |
1863 | usually what you want; a newly created SV has a reference count of one, so | |
1864 | if all your code does is create SVs then store them in a hash, hv_store | |
1865 | will own the only reference to the new SV, and your code doesn't need to do | |
1866 | anything further to tidy up. hv_store is not implemented as a call to | |
1867 | hv_store_ent, and does not create a temporary SV for the key, so if your | |
1868 | key data is not already in SV form then use hv_store in preference to | |
1869 | hv_store_ent. | |
954c1994 | 1870 | |
96f1132b | 1871 | See L<perlguts/"Understanding the Magic of Tied Hashes and Arrays"> for more |
954c1994 GS |
1872 | information on how to use this function on tied hashes. |
1873 | ||
da58a35d | 1874 | SV** hv_store(HV* tb, const char* key, I32 klen, SV* val, U32 hash) |
954c1994 | 1875 | |
497711e7 GS |
1876 | =for hackers |
1877 | Found in file hv.c | |
1878 | ||
3fe05580 MHM |
1879 | =item hv_stores |
1880 | X<hv_stores> | |
1881 | ||
1882 | Like C<hv_store>, but takes a literal string instead of a string/length pair | |
1883 | and omits the hash parameter. | |
1884 | ||
1885 | SV** hv_stores(HV* tb, const char* key, NULLOK SV* val) | |
1886 | ||
1887 | =for hackers | |
1888 | Found in file handy.h | |
1889 | ||
954c1994 | 1890 | =item hv_store_ent |
d8c40edc | 1891 | X<hv_store_ent> |
954c1994 GS |
1892 | |
1893 | Stores C<val> in a hash. The hash key is specified as C<key>. The C<hash> | |
1894 | parameter is the precomputed hash value; if it is zero then Perl will | |
1895 | compute it. The return value is the new hash entry so created. It will be | |
1896 | NULL if the operation failed or if the value did not need to be actually | |
1897 | stored within the hash (as in the case of tied hashes). Otherwise the | |
f22d8e4b | 1898 | contents of the return value can be accessed using the C<He?> macros |
954c1994 GS |
1899 | described here. Note that the caller is responsible for suitably |
1900 | incrementing the reference count of C<val> before the call, and | |
7e8c5dac HS |
1901 | decrementing it if the function returned NULL. Effectively a successful |
1902 | hv_store_ent takes ownership of one reference to C<val>. This is | |
1903 | usually what you want; a newly created SV has a reference count of one, so | |
1904 | if all your code does is create SVs then store them in a hash, hv_store | |
1905 | will own the only reference to the new SV, and your code doesn't need to do | |
1906 | anything further to tidy up. Note that hv_store_ent only reads the C<key>; | |
1907 | unlike C<val> it does not take ownership of it, so maintaining the correct | |
1908 | reference count on C<key> is entirely the caller's responsibility. hv_store | |
1909 | is not implemented as a call to hv_store_ent, and does not create a temporary | |
1910 | SV for the key, so if your key data is not already in SV form then use | |
1911 | hv_store in preference to hv_store_ent. | |
954c1994 | 1912 | |
96f1132b | 1913 | See L<perlguts/"Understanding the Magic of Tied Hashes and Arrays"> for more |
954c1994 GS |
1914 | information on how to use this function on tied hashes. |
1915 | ||
1916 | HE* hv_store_ent(HV* tb, SV* key, SV* val, U32 hash) | |
1917 | ||
497711e7 GS |
1918 | =for hackers |
1919 | Found in file hv.c | |
1920 | ||
954c1994 | 1921 | =item hv_undef |
d8c40edc | 1922 | X<hv_undef> |
954c1994 GS |
1923 | |
1924 | Undefines the hash. | |
1925 | ||
1926 | void hv_undef(HV* tb) | |
1927 | ||
497711e7 GS |
1928 | =for hackers |
1929 | Found in file hv.c | |
1930 | ||
94bdecf9 | 1931 | =item newHV |
d8c40edc | 1932 | X<newHV> |
d2cc3551 | 1933 | |
94bdecf9 | 1934 | Creates a new HV. The reference count is set to 1. |
d2cc3551 | 1935 | |
94bdecf9 | 1936 | HV* newHV() |
d2cc3551 JH |
1937 | |
1938 | =for hackers | |
6fc9eaaa | 1939 | Found in file hv.h |
d2cc3551 | 1940 | |
954c1994 | 1941 | |
94bdecf9 | 1942 | =back |
954c1994 | 1943 | |
94bdecf9 | 1944 | =head1 Magical Functions |
954c1994 | 1945 | |
94bdecf9 | 1946 | =over 8 |
497711e7 | 1947 | |
94bdecf9 | 1948 | =item mg_clear |
d8c40edc | 1949 | X<mg_clear> |
954c1994 | 1950 | |
94bdecf9 | 1951 | Clear something magical that the SV represents. See C<sv_magic>. |
954c1994 | 1952 | |
94bdecf9 | 1953 | int mg_clear(SV* sv) |
954c1994 | 1954 | |
497711e7 | 1955 | =for hackers |
94bdecf9 | 1956 | Found in file mg.c |
497711e7 | 1957 | |
94bdecf9 | 1958 | =item mg_copy |
d8c40edc | 1959 | X<mg_copy> |
954c1994 | 1960 | |
94bdecf9 | 1961 | Copies the magic from one SV to another. See C<sv_magic>. |
954c1994 | 1962 | |
94bdecf9 | 1963 | int mg_copy(SV* sv, SV* nsv, const char* key, I32 klen) |
954c1994 | 1964 | |
497711e7 | 1965 | =for hackers |
94bdecf9 | 1966 | Found in file mg.c |
497711e7 | 1967 | |
94bdecf9 | 1968 | =item mg_find |
d8c40edc | 1969 | X<mg_find> |
954c1994 | 1970 | |
94bdecf9 | 1971 | Finds the magic pointer for type matching the SV. See C<sv_magic>. |
954c1994 | 1972 | |
35a4481c | 1973 | MAGIC* mg_find(const SV* sv, int type) |
954c1994 | 1974 | |
497711e7 | 1975 | =for hackers |
94bdecf9 | 1976 | Found in file mg.c |
497711e7 | 1977 | |
94bdecf9 | 1978 | =item mg_free |
d8c40edc | 1979 | X<mg_free> |
954c1994 | 1980 | |
94bdecf9 | 1981 | Free any magic storage used by the SV. See C<sv_magic>. |
954c1994 | 1982 | |
94bdecf9 | 1983 | int mg_free(SV* sv) |
954c1994 | 1984 | |
497711e7 | 1985 | =for hackers |
94bdecf9 | 1986 | Found in file mg.c |
497711e7 | 1987 | |
94bdecf9 | 1988 | =item mg_get |
d8c40edc | 1989 | X<mg_get> |
eebe1485 | 1990 | |
94bdecf9 | 1991 | Do magic after a value is retrieved from the SV. See C<sv_magic>. |
282f25c9 | 1992 | |
94bdecf9 | 1993 | int mg_get(SV* sv) |
eebe1485 SC |
1994 | |
1995 | =for hackers | |
94bdecf9 | 1996 | Found in file mg.c |
eebe1485 | 1997 | |
94bdecf9 | 1998 | =item mg_length |
d8c40edc | 1999 | X<mg_length> |
eebe1485 | 2000 | |
94bdecf9 | 2001 | Report on the SV's length. See C<sv_magic>. |
eebe1485 | 2002 | |
94bdecf9 | 2003 | U32 mg_length(SV* sv) |
eebe1485 SC |
2004 | |
2005 | =for hackers | |
94bdecf9 | 2006 | Found in file mg.c |
eebe1485 | 2007 | |
94bdecf9 | 2008 | =item mg_magical |
d8c40edc | 2009 | X<mg_magical> |
954c1994 | 2010 | |
94bdecf9 | 2011 | Turns on the magical status of an SV. See C<sv_magic>. |
954c1994 | 2012 | |
94bdecf9 | 2013 | void mg_magical(SV* sv) |
954c1994 | 2014 | |
497711e7 | 2015 | =for hackers |
94bdecf9 | 2016 | Found in file mg.c |
497711e7 | 2017 | |
94bdecf9 | 2018 | =item mg_set |
d8c40edc | 2019 | X<mg_set> |
954c1994 | 2020 | |
94bdecf9 | 2021 | Do magic after a value is assigned to the SV. See C<sv_magic>. |
954c1994 | 2022 | |
94bdecf9 | 2023 | int mg_set(SV* sv) |
954c1994 | 2024 | |
497711e7 | 2025 | =for hackers |
94bdecf9 | 2026 | Found in file mg.c |
497711e7 | 2027 | |
94bdecf9 | 2028 | =item SvGETMAGIC |
d8c40edc | 2029 | X<SvGETMAGIC> |
954c1994 | 2030 | |
94bdecf9 JH |
2031 | Invokes C<mg_get> on an SV if it has 'get' magic. This macro evaluates its |
2032 | argument more than once. | |
954c1994 | 2033 | |
94bdecf9 | 2034 | void SvGETMAGIC(SV* sv) |
954c1994 | 2035 | |
497711e7 | 2036 | =for hackers |
94bdecf9 | 2037 | Found in file sv.h |
497711e7 | 2038 | |
a4f1a029 | 2039 | =item SvLOCK |
d8c40edc | 2040 | X<SvLOCK> |
a4f1a029 NIS |
2041 | |
2042 | Arranges for a mutual exclusion lock to be obtained on sv if a suitable module | |
2043 | has been loaded. | |
2044 | ||
2045 | void SvLOCK(SV* sv) | |
2046 | ||
2047 | =for hackers | |
2048 | Found in file sv.h | |
2049 | ||
94bdecf9 | 2050 | =item SvSETMAGIC |
d8c40edc | 2051 | X<SvSETMAGIC> |
7d3fb230 | 2052 | |
94bdecf9 JH |
2053 | Invokes C<mg_set> on an SV if it has 'set' magic. This macro evaluates its |
2054 | argument more than once. | |
7d3fb230 | 2055 | |
94bdecf9 | 2056 | void SvSETMAGIC(SV* sv) |
7d3fb230 BS |
2057 | |
2058 | =for hackers | |
94bdecf9 | 2059 | Found in file sv.h |
7d3fb230 | 2060 | |
94bdecf9 | 2061 | =item SvSetMagicSV |
d8c40edc | 2062 | X<SvSetMagicSV> |
954c1994 | 2063 | |
94bdecf9 | 2064 | Like C<SvSetSV>, but does any set magic required afterwards. |
954c1994 | 2065 | |
94bdecf9 | 2066 | void SvSetMagicSV(SV* dsb, SV* ssv) |
954c1994 | 2067 | |
497711e7 | 2068 | =for hackers |
94bdecf9 | 2069 | Found in file sv.h |
497711e7 | 2070 | |
a4f1a029 | 2071 | =item SvSetMagicSV_nosteal |
d8c40edc | 2072 | X<SvSetMagicSV_nosteal> |
a4f1a029 | 2073 | |
80663158 | 2074 | Like C<SvSetSV_nosteal>, but does any set magic required afterwards. |
a4f1a029 NIS |
2075 | |
2076 | void SvSetMagicSV_nosteal(SV* dsv, SV* ssv) | |
2077 | ||
2078 | =for hackers | |
2079 | Found in file sv.h | |
2080 | ||
94bdecf9 | 2081 | =item SvSetSV |
d8c40edc | 2082 | X<SvSetSV> |
954c1994 | 2083 | |
94bdecf9 JH |
2084 | Calls C<sv_setsv> if dsv is not the same as ssv. May evaluate arguments |
2085 | more than once. | |
2086 | ||
2087 | void SvSetSV(SV* dsb, SV* ssv) | |
954c1994 | 2088 | |
497711e7 | 2089 | =for hackers |
94bdecf9 | 2090 | Found in file sv.h |
497711e7 | 2091 | |
94bdecf9 | 2092 | =item SvSetSV_nosteal |
d8c40edc | 2093 | X<SvSetSV_nosteal> |
954c1994 | 2094 | |
94bdecf9 JH |
2095 | Calls a non-destructive version of C<sv_setsv> if dsv is not the same as |
2096 | ssv. May evaluate arguments more than once. | |
954c1994 | 2097 | |
94bdecf9 | 2098 | void SvSetSV_nosteal(SV* dsv, SV* ssv) |
954c1994 | 2099 | |
497711e7 | 2100 | =for hackers |
94bdecf9 | 2101 | Found in file sv.h |
497711e7 | 2102 | |
a4f1a029 | 2103 | =item SvSHARE |
d8c40edc | 2104 | X<SvSHARE> |
a4f1a029 NIS |
2105 | |
2106 | Arranges for sv to be shared between threads if a suitable module | |
2107 | has been loaded. | |
2108 | ||
2109 | void SvSHARE(SV* sv) | |
2110 | ||
2111 | =for hackers | |
2112 | Found in file sv.h | |
2113 | ||
e509e693 | 2114 | =item SvUNLOCK |
d8c40edc | 2115 | X<SvUNLOCK> |
e509e693 SH |
2116 | |
2117 | Releases a mutual exclusion lock on sv if a suitable module | |
2118 | has been loaded. | |
2119 | ||
2120 | void SvUNLOCK(SV* sv) | |
2121 | ||
2122 | =for hackers | |
2123 | Found in file sv.h | |
2124 | ||
954c1994 | 2125 | |
94bdecf9 | 2126 | =back |
954c1994 | 2127 | |
94bdecf9 | 2128 | =head1 Memory Management |
954c1994 | 2129 | |
94bdecf9 | 2130 | =over 8 |
497711e7 | 2131 | |
94bdecf9 | 2132 | =item Copy |
d8c40edc | 2133 | X<Copy> |
954c1994 | 2134 | |
94bdecf9 JH |
2135 | The XSUB-writer's interface to the C C<memcpy> function. The C<src> is the |
2136 | source, C<dest> is the destination, C<nitems> is the number of items, and C<type> is | |
2137 | the type. May fail on overlapping copies. See also C<Move>. | |
954c1994 | 2138 | |
94bdecf9 | 2139 | void Copy(void* src, void* dest, int nitems, type) |
954c1994 | 2140 | |
497711e7 | 2141 | =for hackers |
94bdecf9 | 2142 | Found in file handy.h |
497711e7 | 2143 | |
e90e2364 | 2144 | =item CopyD |
d8c40edc | 2145 | X<CopyD> |
e90e2364 NC |
2146 | |
2147 | Like C<Copy> but returns dest. Useful for encouraging compilers to tail-call | |
2148 | optimise. | |
2149 | ||
2150 | void * CopyD(void* src, void* dest, int nitems, type) | |
2151 | ||
2152 | =for hackers | |
2153 | Found in file handy.h | |
2154 | ||
94bdecf9 | 2155 | =item Move |
d8c40edc | 2156 | X<Move> |
954c1994 | 2157 | |
94bdecf9 JH |
2158 | The XSUB-writer's interface to the C C<memmove> function. The C<src> is the |
2159 | source, C<dest> is the destination, C<nitems> is the number of items, and C<type> is | |
2160 | the type. Can do overlapping moves. See also C<Copy>. | |
954c1994 | 2161 | |
94bdecf9 | 2162 | void Move(void* src, void* dest, int nitems, type) |
954c1994 | 2163 | |
497711e7 | 2164 | =for hackers |
94bdecf9 | 2165 | Found in file handy.h |
497711e7 | 2166 | |
e90e2364 | 2167 | =item MoveD |
d8c40edc | 2168 | X<MoveD> |
e90e2364 NC |
2169 | |
2170 | Like C<Move> but returns dest. Useful for encouraging compilers to tail-call | |
2171 | optimise. | |
2172 | ||
2173 | void * MoveD(void* src, void* dest, int nitems, type) | |
2174 | ||
2175 | =for hackers | |
2176 | Found in file handy.h | |
2177 | ||
a02a5408 | 2178 | =item Newx |
d8c40edc | 2179 | X<Newx> |
954c1994 | 2180 | |
94bdecf9 | 2181 | The XSUB-writer's interface to the C C<malloc> function. |
954c1994 | 2182 | |
c5008215 JC |
2183 | In 5.9.3, Newx() and friends replace the older New() API, and drops |
2184 | the first parameter, I<x>, a debug aid which allowed callers to identify | |
37b8b4c9 | 2185 | themselves. This aid has been superseded by a new build option, |
c5008215 JC |
2186 | PERL_MEM_LOG (see L<perlhack/PERL_MEM_LOG>). The older API is still |
2187 | there for use in XS modules supporting older perls. | |
2188 | ||
a02a5408 | 2189 | void Newx(void* ptr, int nitems, type) |
954c1994 | 2190 | |
497711e7 | 2191 | =for hackers |
94bdecf9 | 2192 | Found in file handy.h |
497711e7 | 2193 | |
a02a5408 | 2194 | =item Newxc |
d8c40edc | 2195 | X<Newxc> |
954c1994 | 2196 | |
94bdecf9 | 2197 | The XSUB-writer's interface to the C C<malloc> function, with |
c5008215 | 2198 | cast. See also C<Newx>. |
954c1994 | 2199 | |
a02a5408 | 2200 | void Newxc(void* ptr, int nitems, type, cast) |
954c1994 | 2201 | |
497711e7 | 2202 | =for hackers |
94bdecf9 | 2203 | Found in file handy.h |
954c1994 | 2204 | |
a02a5408 | 2205 | =item Newxz |
d8c40edc | 2206 | X<Newxz> |
954c1994 | 2207 | |
94bdecf9 | 2208 | The XSUB-writer's interface to the C C<malloc> function. The allocated |
c5008215 | 2209 | memory is zeroed with C<memzero>. See also C<Newx>. |
a02a5408 JC |
2210 | |
2211 | void Newxz(void* ptr, int nitems, type) | |
954c1994 | 2212 | |
497711e7 GS |
2213 | =for hackers |
2214 | Found in file handy.h | |
2215 | ||
9965345d | 2216 | =item Poison |
d8c40edc | 2217 | X<Poison> |
9965345d | 2218 | |
7e337ee0 | 2219 | PoisonWith(0xEF) for catching access to freed memory. |
9965345d JH |
2220 | |
2221 | void Poison(void* dest, int nitems, type) | |
2222 | ||
2223 | =for hackers | |
2224 | Found in file handy.h | |
2225 | ||
3fe05580 MHM |
2226 | =item PoisonFree |
2227 | X<PoisonFree> | |
2228 | ||
2229 | PoisonWith(0xEF) for catching access to freed memory. | |
2230 | ||
2231 | void PoisonFree(void* dest, int nitems, type) | |
2232 | ||
2233 | =for hackers | |
2234 | Found in file handy.h | |
2235 | ||
7e337ee0 JH |
2236 | =item PoisonNew |
2237 | X<PoisonNew> | |
2238 | ||
2239 | PoisonWith(0xAB) for catching access to allocated but uninitialized memory. | |
2240 | ||
2241 | void PoisonNew(void* dest, int nitems, type) | |
2242 | ||
2243 | =for hackers | |
2244 | Found in file handy.h | |
2245 | ||
2246 | =item PoisonWith | |
2247 | X<PoisonWith> | |
2248 | ||
2249 | Fill up memory with a byte pattern (a byte repeated over and over | |
2250 | again) that hopefully catches attempts to access uninitialized memory. | |
2251 | ||
2252 | void PoisonWith(void* dest, int nitems, type, U8 byte) | |
2253 | ||
2254 | =for hackers | |
2255 | Found in file handy.h | |
2256 | ||
94bdecf9 | 2257 | =item Renew |
d8c40edc | 2258 | X<Renew> |
954c1994 | 2259 | |
94bdecf9 | 2260 | The XSUB-writer's interface to the C C<realloc> function. |
954c1994 | 2261 | |
94bdecf9 | 2262 | void Renew(void* ptr, int nitems, type) |
954c1994 | 2263 | |
497711e7 GS |
2264 | =for hackers |
2265 | Found in file handy.h | |
2266 | ||
94bdecf9 | 2267 | =item Renewc |
d8c40edc | 2268 | X<Renewc> |
954c1994 | 2269 | |
94bdecf9 JH |
2270 | The XSUB-writer's interface to the C C<realloc> function, with |
2271 | cast. | |
954c1994 | 2272 | |
94bdecf9 | 2273 | void Renewc(void* ptr, int nitems, type, cast) |
954c1994 | 2274 | |
497711e7 | 2275 | =for hackers |
94bdecf9 | 2276 | Found in file handy.h |
497711e7 | 2277 | |
94bdecf9 | 2278 | =item Safefree |
d8c40edc | 2279 | X<Safefree> |
954c1994 | 2280 | |
94bdecf9 | 2281 | The XSUB-writer's interface to the C C<free> function. |
954c1994 | 2282 | |
94bdecf9 | 2283 | void Safefree(void* ptr) |
954c1994 | 2284 | |
497711e7 GS |
2285 | =for hackers |
2286 | Found in file handy.h | |
2287 | ||
94bdecf9 | 2288 | =item savepv |
d8c40edc | 2289 | X<savepv> |
954c1994 | 2290 | |
641d4181 JH |
2291 | Perl's version of C<strdup()>. Returns a pointer to a newly allocated |
2292 | string which is a duplicate of C<pv>. The size of the string is | |
2293 | determined by C<strlen()>. The memory allocated for the new string can | |
2294 | be freed with the C<Safefree()> function. | |
954c1994 | 2295 | |
641d4181 | 2296 | char* savepv(const char* pv) |
954c1994 | 2297 | |
497711e7 | 2298 | =for hackers |
94bdecf9 | 2299 | Found in file util.c |
497711e7 | 2300 | |
94bdecf9 | 2301 | =item savepvn |
d8c40edc | 2302 | X<savepvn> |
954c1994 | 2303 | |
641d4181 JH |
2304 | Perl's version of what C<strndup()> would be if it existed. Returns a |
2305 | pointer to a newly allocated string which is a duplicate of the first | |
cbf82dd0 NC |
2306 | C<len> bytes from C<pv>, plus a trailing NUL byte. The memory allocated for |
2307 | the new string can be freed with the C<Safefree()> function. | |
954c1994 | 2308 | |
641d4181 | 2309 | char* savepvn(const char* pv, I32 len) |
954c1994 | 2310 | |
497711e7 | 2311 | =for hackers |
94bdecf9 | 2312 | Found in file util.c |
497711e7 | 2313 | |
3fe05580 MHM |
2314 | =item savepvs |
2315 | X<savepvs> | |
2316 | ||
2317 | Like C<savepvn>, but takes a literal string instead of a string/length pair. | |
2318 | ||
2319 | char* savepvs(const char* s) | |
2320 | ||
2321 | =for hackers | |
2322 | Found in file handy.h | |
2323 | ||
a4f1a029 | 2324 | =item savesharedpv |
d8c40edc | 2325 | X<savesharedpv> |
a4f1a029 | 2326 | |
641d4181 JH |
2327 | A version of C<savepv()> which allocates the duplicate string in memory |
2328 | which is shared between threads. | |
a4f1a029 | 2329 | |
641d4181 | 2330 | char* savesharedpv(const char* pv) |
a4f1a029 NIS |
2331 | |
2332 | =for hackers | |
2333 | Found in file util.c | |
2334 | ||
d9095cec NC |
2335 | =item savesharedpvn |
2336 | X<savesharedpvn> | |
2337 | ||
2338 | A version of C<savepvn()> which allocates the duplicate string in memory | |
2339 | which is shared between threads. (With the specific difference that a NULL | |
2340 | pointer is not acceptable) | |
2341 | ||
2342 | char* savesharedpvn(const char *const pv, const STRLEN len) | |
2343 | ||
2344 | =for hackers | |
2345 | Found in file util.c | |
2346 | ||
766f8916 | 2347 | =item savesvpv |
d8c40edc | 2348 | X<savesvpv> |
766f8916 | 2349 | |
9c2fe30c | 2350 | A version of C<savepv()>/C<savepvn()> which gets the string to duplicate from |
766f8916 MHM |
2351 | the passed in SV using C<SvPV()> |
2352 | ||
2353 | char* savesvpv(SV* sv) | |
2354 | ||
2355 | =for hackers | |
2356 | Found in file util.c | |
2357 | ||
94bdecf9 | 2358 | =item StructCopy |
d8c40edc | 2359 | X<StructCopy> |
954c1994 | 2360 | |
94bdecf9 | 2361 | This is an architecture-independent macro to copy one structure to another. |
954c1994 | 2362 | |
94bdecf9 | 2363 | void StructCopy(type src, type dest, type) |
954c1994 | 2364 | |
497711e7 | 2365 | =for hackers |
94bdecf9 | 2366 | Found in file handy.h |
497711e7 | 2367 | |
94bdecf9 | 2368 | =item Zero |
d8c40edc | 2369 | X<Zero> |
954c1994 | 2370 | |
94bdecf9 JH |
2371 | The XSUB-writer's interface to the C C<memzero> function. The C<dest> is the |
2372 | destination, C<nitems> is the number of items, and C<type> is the type. | |
954c1994 | 2373 | |
94bdecf9 | 2374 | void Zero(void* dest, int nitems, type) |
954c1994 | 2375 | |
497711e7 | 2376 | =for hackers |
94bdecf9 | 2377 | Found in file handy.h |
497711e7 | 2378 | |
e90e2364 | 2379 | =item ZeroD |
d8c40edc | 2380 | X<ZeroD> |
e90e2364 NC |
2381 | |
2382 | Like C<Zero> but returns dest. Useful for encouraging compilers to tail-call | |
2383 | optimise. | |
2384 | ||
2385 | void * ZeroD(void* dest, int nitems, type) | |
2386 | ||
2387 | =for hackers | |
2388 | Found in file handy.h | |
2389 | ||
954c1994 | 2390 | |
94bdecf9 | 2391 | =back |
954c1994 | 2392 | |
94bdecf9 | 2393 | =head1 Miscellaneous Functions |
954c1994 | 2394 | |
94bdecf9 | 2395 | =over 8 |
497711e7 | 2396 | |
94bdecf9 | 2397 | =item fbm_compile |
d8c40edc | 2398 | X<fbm_compile> |
8b4ac5a4 | 2399 | |
94bdecf9 JH |
2400 | Analyses the string in order to make fast searches on it using fbm_instr() |
2401 | -- the Boyer-Moore algorithm. | |
8b4ac5a4 | 2402 | |
94bdecf9 | 2403 | void fbm_compile(SV* sv, U32 flags) |
8b4ac5a4 JH |
2404 | |
2405 | =for hackers | |
94bdecf9 | 2406 | Found in file util.c |
8b4ac5a4 | 2407 | |
94bdecf9 | 2408 | =item fbm_instr |
d8c40edc | 2409 | X<fbm_instr> |
954c1994 | 2410 | |
94bdecf9 | 2411 | Returns the location of the SV in the string delimited by C<str> and |
bd61b366 | 2412 | C<strend>. It returns C<NULL> if the string can't be found. The C<sv> |
94bdecf9 JH |
2413 | does not have to be fbm_compiled, but the search will not be as fast |
2414 | then. | |
954c1994 | 2415 | |
94bdecf9 | 2416 | char* fbm_instr(unsigned char* big, unsigned char* bigend, SV* littlesv, U32 flags) |
954c1994 | 2417 | |
497711e7 | 2418 | =for hackers |
94bdecf9 | 2419 | Found in file util.c |
497711e7 | 2420 | |
94bdecf9 | 2421 | =item form |
d8c40edc | 2422 | X<form> |
954c1994 | 2423 | |
94bdecf9 JH |
2424 | Takes a sprintf-style format pattern and conventional |
2425 | (non-SV) arguments and returns the formatted string. | |
954c1994 | 2426 | |
94bdecf9 | 2427 | (char *) Perl_form(pTHX_ const char* pat, ...) |
954c1994 | 2428 | |
94bdecf9 | 2429 | can be used any place a string (char *) is required: |
497711e7 | 2430 | |
94bdecf9 | 2431 | char * s = Perl_form("%d.%d",major,minor); |
954c1994 | 2432 | |
94bdecf9 JH |
2433 | Uses a single private buffer so if you want to format several strings you |
2434 | must explicitly copy the earlier strings away (and free the copies when you | |
2435 | are done). | |
954c1994 | 2436 | |
94bdecf9 | 2437 | char* form(const char* pat, ...) |
954c1994 | 2438 | |
497711e7 | 2439 | =for hackers |
94bdecf9 | 2440 | Found in file util.c |
497711e7 | 2441 | |
94bdecf9 | 2442 | =item getcwd_sv |
d8c40edc | 2443 | X<getcwd_sv> |
954c1994 | 2444 | |
94bdecf9 | 2445 | Fill the sv with current working directory |
954c1994 | 2446 | |
94bdecf9 | 2447 | int getcwd_sv(SV* sv) |
954c1994 | 2448 | |
497711e7 | 2449 | =for hackers |
94bdecf9 | 2450 | Found in file util.c |
497711e7 | 2451 | |
d9fad198 JH |
2452 | =item my_snprintf |
2453 | X<my_snprintf> | |
2454 | ||
2455 | The C library C<snprintf> functionality, if available and | |
5b692037 | 2456 | standards-compliant (uses C<vsnprintf>, actually). However, if the |
d9fad198 | 2457 | C<vsnprintf> is not available, will unfortunately use the unsafe |
5b692037 JH |
2458 | C<vsprintf> which can overrun the buffer (there is an overrun check, |
2459 | but that may be too late). Consider using C<sv_vcatpvf> instead, or | |
2460 | getting C<vsnprintf>. | |
d9fad198 JH |
2461 | |
2462 | int my_snprintf(char *buffer, const Size_t len, const char *format, ...) | |
2463 | ||
2464 | =for hackers | |
2465 | Found in file util.c | |
2466 | ||
9244d4ad RGS |
2467 | =item my_sprintf |
2468 | X<my_sprintf> | |
2469 | ||
2470 | The C library C<sprintf>, wrapped if necessary, to ensure that it will return | |
2471 | the length of the string written to the buffer. Only rare pre-ANSI systems | |
2472 | need the wrapper function - usually this is a direct call to C<sprintf>. | |
2473 | ||
2474 | int my_sprintf(char *buffer, const char *pat, ...) | |
2475 | ||
2476 | =for hackers | |
2477 | Found in file util.c | |
2478 | ||
d9fad198 JH |
2479 | =item my_vsnprintf |
2480 | X<my_vsnprintf> | |
2481 | ||
5b692037 JH |
2482 | The C library C<vsnprintf> if available and standards-compliant. |
2483 | However, if if the C<vsnprintf> is not available, will unfortunately | |
2484 | use the unsafe C<vsprintf> which can overrun the buffer (there is an | |
2485 | overrun check, but that may be too late). Consider using | |
2486 | C<sv_vcatpvf> instead, or getting C<vsnprintf>. | |
d9fad198 JH |
2487 | |
2488 | int my_vsnprintf(char *buffer, const Size_t len, const char *format, va_list ap) | |
2489 | ||
2490 | =for hackers | |
2491 | Found in file util.c | |
2492 | ||
f333445c | 2493 | =item new_version |
d8c40edc | 2494 | X<new_version> |
f333445c JP |
2495 | |
2496 | Returns a new version object based on the passed in SV: | |
2497 | ||
2498 | SV *sv = new_version(SV *ver); | |
2499 | ||
2500 | Does not alter the passed in ver SV. See "upg_version" if you | |
2501 | want to upgrade the SV. | |
2502 | ||
2503 | SV* new_version(SV *ver) | |
2504 | ||
2505 | =for hackers | |
2506 | Found in file util.c | |
2507 | ||
2508 | =item scan_version | |
d8c40edc | 2509 | X<scan_version> |
f333445c JP |
2510 | |
2511 | Returns a pointer to the next character after the parsed | |
2512 | version string, as well as upgrading the passed in SV to | |
2513 | an RV. | |
2514 | ||
2515 | Function must be called with an already existing SV like | |
2516 | ||
137d6fc0 | 2517 | sv = newSV(0); |
8a0be661 | 2518 | s = scan_version(s, SV *sv, bool qv); |
f333445c JP |
2519 | |
2520 | Performs some preprocessing to the string to ensure that | |
2521 | it has the correct characteristics of a version. Flags the | |
2522 | object if it contains an underscore (which denotes this | |
8a0be661 | 2523 | is an alpha version). The boolean qv denotes that the version |
137d6fc0 JP |
2524 | should be interpreted as if it had multiple decimals, even if |
2525 | it doesn't. | |
f333445c | 2526 | |
9137345a | 2527 | const char* scan_version(const char *vstr, SV *sv, bool qv) |
f333445c JP |
2528 | |
2529 | =for hackers | |
2530 | Found in file util.c | |
2531 | ||
94bdecf9 | 2532 | =item strEQ |
d8c40edc | 2533 | X<strEQ> |
954c1994 | 2534 | |
94bdecf9 | 2535 | Test two strings to see if they are equal. Returns true or false. |
954c1994 | 2536 | |
94bdecf9 | 2537 | bool strEQ(char* s1, char* s2) |
954c1994 | 2538 | |
497711e7 | 2539 | =for hackers |
94bdecf9 | 2540 | Found in file handy.h |
497711e7 | 2541 | |
94bdecf9 | 2542 | =item strGE |
d8c40edc | 2543 | X<strGE> |
1c846c1f | 2544 | |
94bdecf9 JH |
2545 | Test two strings to see if the first, C<s1>, is greater than or equal to |
2546 | the second, C<s2>. Returns true or false. | |
1c846c1f | 2547 | |
94bdecf9 | 2548 | bool strGE(char* s1, char* s2) |
1c846c1f NIS |
2549 | |
2550 | =for hackers | |
94bdecf9 | 2551 | Found in file handy.h |
1c846c1f | 2552 | |
94bdecf9 | 2553 | =item strGT |
d8c40edc | 2554 | X<strGT> |
954c1994 | 2555 | |
94bdecf9 JH |
2556 | Test two strings to see if the first, C<s1>, is greater than the second, |
2557 | C<s2>. Returns true or false. | |
954c1994 | 2558 | |
94bdecf9 | 2559 | bool strGT(char* s1, char* s2) |
954c1994 | 2560 | |
497711e7 | 2561 | =for hackers |
94bdecf9 | 2562 | Found in file handy.h |
497711e7 | 2563 | |
94bdecf9 | 2564 | =item strLE |
d8c40edc | 2565 | X<strLE> |
954c1994 | 2566 | |
94bdecf9 JH |
2567 | Test two strings to see if the first, C<s1>, is less than or equal to the |
2568 | second, C<s2>. Returns true or false. | |
954c1994 | 2569 | |
94bdecf9 | 2570 | bool strLE(char* s1, char* s2) |
954c1994 | 2571 | |
497711e7 | 2572 | =for hackers |
94bdecf9 | 2573 | Found in file handy.h |
497711e7 | 2574 | |
94bdecf9 | 2575 | =item strLT |
d8c40edc | 2576 | X<strLT> |
1a3327fb | 2577 | |
94bdecf9 JH |
2578 | Test two strings to see if the first, C<s1>, is less than the second, |
2579 | C<s2>. Returns true or false. | |
1a3327fb | 2580 | |
94bdecf9 | 2581 | bool strLT(char* s1, char* s2) |
1a3327fb | 2582 | |
497711e7 | 2583 | =for hackers |
94bdecf9 | 2584 | Found in file handy.h |
497711e7 | 2585 | |
94bdecf9 | 2586 | =item strNE |
d8c40edc | 2587 | X<strNE> |
954c1994 | 2588 | |
94bdecf9 JH |
2589 | Test two strings to see if they are different. Returns true or |
2590 | false. | |
2591 | ||
2592 | bool strNE(char* s1, char* s2) | |
954c1994 | 2593 | |
497711e7 | 2594 | =for hackers |
94bdecf9 | 2595 | Found in file handy.h |
497711e7 | 2596 | |
94bdecf9 | 2597 | =item strnEQ |
d8c40edc | 2598 | X<strnEQ> |
954c1994 | 2599 | |
94bdecf9 JH |
2600 | Test two strings to see if they are equal. The C<len> parameter indicates |
2601 | the number of bytes to compare. Returns true or false. (A wrapper for | |
2602 | C<strncmp>). | |
2603 | ||
2604 | bool strnEQ(char* s1, char* s2, STRLEN len) | |
954c1994 | 2605 | |
497711e7 | 2606 | =for hackers |
94bdecf9 | 2607 | Found in file handy.h |
497711e7 | 2608 | |
94bdecf9 | 2609 | =item strnNE |
d8c40edc | 2610 | X<strnNE> |
954c1994 | 2611 | |
94bdecf9 JH |
2612 | Test two strings to see if they are different. The C<len> parameter |
2613 | indicates the number of bytes to compare. Returns true or false. (A | |
2614 | wrapper for C<strncmp>). | |
954c1994 | 2615 | |
94bdecf9 | 2616 | bool strnNE(char* s1, char* s2, STRLEN len) |
954c1994 | 2617 | |
497711e7 GS |
2618 | =for hackers |
2619 | Found in file handy.h | |
2620 | ||
eba16661 JH |
2621 | =item sv_destroyable |
2622 | X<sv_destroyable> | |
2623 | ||
2624 | Dummy routine which reports that object can be destroyed when there is no | |
2625 | sharing module present. It ignores its single SV argument, and returns | |
2626 | 'true'. Exists to avoid test for a NULL function pointer and because it | |
2627 | could potentially warn under some level of strict-ness. | |
2628 | ||
2629 | bool sv_destroyable(SV *sv) | |
2630 | ||
2631 | =for hackers | |
2632 | Found in file util.c | |
2633 | ||
f333445c | 2634 | =item sv_nosharing |
d8c40edc | 2635 | X<sv_nosharing> |
f333445c JP |
2636 | |
2637 | Dummy routine which "shares" an SV when there is no sharing module present. | |
9244d4ad RGS |
2638 | Or "locks" it. Or "unlocks" it. In other words, ignores its single SV argument. |
2639 | Exists to avoid test for a NULL function pointer and because it could | |
2640 | potentially warn under some level of strict-ness. | |
f333445c | 2641 | |
c48640ec | 2642 | void sv_nosharing(SV *sv) |
f333445c JP |
2643 | |
2644 | =for hackers | |
2645 | Found in file util.c | |
2646 | ||
f333445c | 2647 | =item upg_version |
d8c40edc | 2648 | X<upg_version> |
f333445c JP |
2649 | |
2650 | In-place upgrade of the supplied SV to a version object. | |
2651 | ||
ac0e6a2f | 2652 | SV *sv = upg_version(SV *sv, bool qv); |
f333445c | 2653 | |
ac0e6a2f RGS |
2654 | Returns a pointer to the upgraded SV. Set the boolean qv if you want |
2655 | to force this SV to be interpreted as an "extended" version. | |
f333445c | 2656 | |
ac0e6a2f | 2657 | SV* upg_version(SV *ver, bool qv) |
f333445c JP |
2658 | |
2659 | =for hackers | |
2660 | Found in file util.c | |
2661 | ||
2662 | =item vcmp | |
d8c40edc | 2663 | X<vcmp> |
f333445c JP |
2664 | |
2665 | Version object aware cmp. Both operands must already have been | |
2666 | converted into version objects. | |
2667 | ||
2668 | int vcmp(SV *lvs, SV *rvs) | |
2669 | ||
2670 | =for hackers | |
2671 | Found in file util.c | |
2672 | ||
b9381830 | 2673 | =item vnormal |
d8c40edc | 2674 | X<vnormal> |
b9381830 JP |
2675 | |
2676 | Accepts a version object and returns the normalized string | |
2677 | representation. Call like: | |
2678 | ||
2679 | sv = vnormal(rv); | |
2680 | ||
2681 | NOTE: you can pass either the object directly or the SV | |
2682 | contained within the RV. | |
2683 | ||
2684 | SV* vnormal(SV *vs) | |
2685 | ||
2686 | =for hackers | |
2687 | Found in file util.c | |
2688 | ||
f333445c | 2689 | =item vnumify |
d8c40edc | 2690 | X<vnumify> |
f333445c JP |
2691 | |
2692 | Accepts a version object and returns the normalized floating | |
2693 | point representation. Call like: | |
2694 | ||
2695 | sv = vnumify(rv); | |
2696 | ||
2697 | NOTE: you can pass either the object directly or the SV | |
2698 | contained within the RV. | |
2699 | ||
2700 | SV* vnumify(SV *vs) | |
2701 | ||
2702 | =for hackers | |
2703 | Found in file util.c | |
2704 | ||
2705 | =item vstringify | |
d8c40edc | 2706 | X<vstringify> |
f333445c | 2707 | |
b9381830 JP |
2708 | In order to maintain maximum compatibility with earlier versions |
2709 | of Perl, this function will return either the floating point | |
2710 | notation or the multiple dotted notation, depending on whether | |
2711 | the original version contained 1 or more dots, respectively | |
f333445c JP |
2712 | |
2713 | SV* vstringify(SV *vs) | |
2714 | ||
2715 | =for hackers | |
2716 | Found in file util.c | |
2717 | ||
e0218a61 | 2718 | =item vverify |
d8c40edc | 2719 | X<vverify> |
e0218a61 JP |
2720 | |
2721 | Validates that the SV contains a valid version object. | |
2722 | ||
2723 | bool vverify(SV *vobj); | |
2724 | ||
2725 | Note that it only confirms the bare minimum structure (so as not to get | |
2726 | confused by derived classes which may contain additional hash entries): | |
2727 | ||
2728 | bool vverify(SV *vs) | |
2729 | ||
2730 | =for hackers | |
2731 | Found in file util.c | |
2732 | ||
f4758303 | 2733 | |
94bdecf9 | 2734 | =back |
7207e29d | 2735 | |
47c9dd14 BB |
2736 | =head1 MRO Functions |
2737 | ||
2738 | =over 8 | |
2739 | ||
2740 | =item mro_get_linear_isa | |
2741 | X<mro_get_linear_isa> | |
2742 | ||
2743 | Returns either C<mro_get_linear_isa_c3> or | |
2744 | C<mro_get_linear_isa_dfs> for the given stash, | |
2745 | dependant upon which MRO is in effect | |
2746 | for that stash. The return value is a | |
2747 | read-only AV*. | |
2748 | ||
2749 | You are responsible for C<SvREFCNT_inc()> on the | |
2750 | return value if you plan to store it anywhere | |
2751 | semi-permanently (otherwise it might be deleted | |
2752 | out from under you the next time the cache is | |
2753 | invalidated). | |
2754 | ||
2755 | AV* mro_get_linear_isa(HV* stash) | |
2756 | ||
2757 | =for hackers | |
2758 | Found in file mro.c | |
2759 | ||
47c9dd14 BB |
2760 | =item mro_method_changed_in |
2761 | X<mro_method_changed_in> | |
2762 | ||
2763 | Invalidates method caching on any child classes | |
2764 | of the given stash, so that they might notice | |
2765 | the changes in this one. | |
2766 | ||
2767 | Ideally, all instances of C<PL_sub_generation++> in | |
dd69841b BB |
2768 | perl source outside of C<mro.c> should be |
2769 | replaced by calls to this. | |
2770 | ||
2771 | Perl automatically handles most of the common | |
2772 | ways a method might be redefined. However, there | |
2773 | are a few ways you could change a method in a stash | |
2774 | without the cache code noticing, in which case you | |
2775 | need to call this method afterwards: | |
2776 | ||
2777 | 1) Directly manipulating the stash HV entries from | |
2778 | XS code. | |
2779 | ||
2780 | 2) Assigning a reference to a readonly scalar | |
2781 | constant into a stash entry in order to create | |
2782 | a constant subroutine (like constant.pm | |
2783 | does). | |
2784 | ||
2785 | This same method is available from pure perl | |
2786 | via, C<mro::method_changed_in(classname)>. | |
47c9dd14 BB |
2787 | |
2788 | void mro_method_changed_in(HV* stash) | |
2789 | ||
2790 | =for hackers | |
2791 | Found in file mro.c | |
2792 | ||
2793 | ||
2794 | =back | |
2795 | ||
cd299c6e RGS |
2796 | =head1 Multicall Functions |
2797 | ||
2798 | =over 8 | |
2799 | ||
2800 | =item dMULTICALL | |
2801 | X<dMULTICALL> | |
2802 | ||
2803 | Declare local variables for a multicall. See L<perlcall/Lightweight Callbacks>. | |
2804 | ||
2805 | dMULTICALL; | |
2806 | ||
2807 | =for hackers | |
2808 | Found in file cop.h | |
2809 | ||
2810 | =item MULTICALL | |
2811 | X<MULTICALL> | |
2812 | ||
2813 | Make a lightweight callback. See L<perlcall/Lightweight Callbacks>. | |
2814 | ||
2815 | MULTICALL; | |
2816 | ||
2817 | =for hackers | |
2818 | Found in file cop.h | |
2819 | ||
2820 | =item POP_MULTICALL | |
2821 | X<POP_MULTICALL> | |
2822 | ||
2823 | Closing bracket for a lightweight callback. | |
2824 | See L<perlcall/Lightweight Callbacks>. | |
2825 | ||
2826 | POP_MULTICALL; | |
2827 | ||
2828 | =for hackers | |
2829 | Found in file cop.h | |
2830 | ||
2831 | =item PUSH_MULTICALL | |
2832 | X<PUSH_MULTICALL> | |
2833 | ||
2834 | Opening bracket for a lightweight callback. | |
2835 | See L<perlcall/Lightweight Callbacks>. | |
2836 | ||
2837 | PUSH_MULTICALL; | |
2838 | ||
2839 | =for hackers | |
2840 | Found in file cop.h | |
2841 | ||
2842 | ||
2843 | =back | |
2844 | ||
94bdecf9 | 2845 | =head1 Numeric functions |
7207e29d | 2846 | |
94bdecf9 | 2847 | =over 8 |
f4758303 | 2848 | |
94bdecf9 | 2849 | =item grok_bin |
d8c40edc | 2850 | X<grok_bin> |
f4758303 | 2851 | |
94bdecf9 JH |
2852 | converts a string representing a binary number to numeric form. |
2853 | ||
2854 | On entry I<start> and I<*len> give the string to scan, I<*flags> gives | |
2855 | conversion flags, and I<result> should be NULL or a pointer to an NV. | |
2856 | The scan stops at the end of the string, or the first invalid character. | |
7b667b5f MHM |
2857 | Unless C<PERL_SCAN_SILENT_ILLDIGIT> is set in I<*flags>, encountering an |
2858 | invalid character will also trigger a warning. | |
2859 | On return I<*len> is set to the length of the scanned string, | |
2860 | and I<*flags> gives output flags. | |
94bdecf9 | 2861 | |
7fc63493 | 2862 | If the value is <= C<UV_MAX> it is returned as a UV, the output flags are clear, |
94bdecf9 JH |
2863 | and nothing is written to I<*result>. If the value is > UV_MAX C<grok_bin> |
2864 | returns UV_MAX, sets C<PERL_SCAN_GREATER_THAN_UV_MAX> in the output flags, | |
2865 | and writes the value to I<*result> (or the value is discarded if I<result> | |
2866 | is NULL). | |
2867 | ||
7b667b5f | 2868 | The binary number may optionally be prefixed with "0b" or "b" unless |
94bdecf9 JH |
2869 | C<PERL_SCAN_DISALLOW_PREFIX> is set in I<*flags> on entry. If |
2870 | C<PERL_SCAN_ALLOW_UNDERSCORES> is set in I<*flags> then the binary | |
2871 | number may use '_' characters to separate digits. | |
2872 | ||
a3b680e6 | 2873 | UV grok_bin(const char* start, STRLEN* len_p, I32* flags, NV *result) |
f4758303 JP |
2874 | |
2875 | =for hackers | |
94bdecf9 | 2876 | Found in file numeric.c |
f4758303 | 2877 | |
94bdecf9 | 2878 | =item grok_hex |
d8c40edc | 2879 | X<grok_hex> |
954c1994 | 2880 | |
94bdecf9 JH |
2881 | converts a string representing a hex number to numeric form. |
2882 | ||
2883 | On entry I<start> and I<*len> give the string to scan, I<*flags> gives | |
2884 | conversion flags, and I<result> should be NULL or a pointer to an NV. | |
7b667b5f MHM |
2885 | The scan stops at the end of the string, or the first invalid character. |
2886 | Unless C<PERL_SCAN_SILENT_ILLDIGIT> is set in I<*flags>, encountering an | |
2887 | invalid character will also trigger a warning. | |
2888 | On return I<*len> is set to the length of the scanned string, | |
2889 | and I<*flags> gives output flags. | |
94bdecf9 JH |
2890 | |
2891 | If the value is <= UV_MAX it is returned as a UV, the output flags are clear, | |
2892 | and nothing is written to I<*result>. If the value is > UV_MAX C<grok_hex> | |
2893 | returns UV_MAX, sets C<PERL_SCAN_GREATER_THAN_UV_MAX> in the output flags, | |
2894 | and writes the value to I<*result> (or the value is discarded if I<result> | |
2895 | is NULL). | |
2896 | ||
2897 | The hex number may optionally be prefixed with "0x" or "x" unless | |
2898 | C<PERL_SCAN_DISALLOW_PREFIX> is set in I<*flags> on entry. If | |
2899 | C<PERL_SCAN_ALLOW_UNDERSCORES> is set in I<*flags> then the hex | |
2900 | number may use '_' characters to separate digits. | |
2901 | ||
a3b680e6 | 2902 | UV grok_hex(const char* start, STRLEN* len_p, I32* flags, NV *result) |
954c1994 | 2903 | |
497711e7 | 2904 | =for hackers |
94bdecf9 | 2905 | Found in file numeric.c |
497711e7 | 2906 | |
94bdecf9 | 2907 | =item grok_number |
d8c40edc | 2908 | X<grok_number> |
954c1994 | 2909 | |
94bdecf9 JH |
2910 | Recognise (or not) a number. The type of the number is returned |
2911 | (0 if unrecognised), otherwise it is a bit-ORed combination of | |
2912 | IS_NUMBER_IN_UV, IS_NUMBER_GREATER_THAN_UV_MAX, IS_NUMBER_NOT_INT, | |
2913 | IS_NUMBER_NEG, IS_NUMBER_INFINITY, IS_NUMBER_NAN (defined in perl.h). | |
2914 | ||
2915 | If the value of the number can fit an in UV, it is returned in the *valuep | |
2916 | IS_NUMBER_IN_UV will be set to indicate that *valuep is valid, IS_NUMBER_IN_UV | |
2917 | will never be set unless *valuep is valid, but *valuep may have been assigned | |
2918 | to during processing even though IS_NUMBER_IN_UV is not set on return. | |
2919 | If valuep is NULL, IS_NUMBER_IN_UV will be set for the same cases as when | |
2920 | valuep is non-NULL, but no actual assignment (or SEGV) will occur. | |
2921 | ||
2922 | IS_NUMBER_NOT_INT will be set with IS_NUMBER_IN_UV if trailing decimals were | |
2923 | seen (in which case *valuep gives the true value truncated to an integer), and | |
2924 | IS_NUMBER_NEG if the number is negative (in which case *valuep holds the | |
2925 | absolute value). IS_NUMBER_IN_UV is not set if e notation was used or the | |
2926 | number is larger than a UV. | |
2927 | ||
2928 | int grok_number(const char *pv, STRLEN len, UV *valuep) | |
954c1994 | 2929 | |
497711e7 | 2930 | =for hackers |
94bdecf9 | 2931 | Found in file numeric.c |
497711e7 | 2932 | |
94bdecf9 | 2933 | =item grok_numeric_radix |
d8c40edc | 2934 | X<grok_numeric_radix> |
954c1994 | 2935 | |
94bdecf9 JH |
2936 | Scan and skip for a numeric decimal separator (radix). |
2937 | ||
2938 | bool grok_numeric_radix(const char **sp, const char *send) | |
954c1994 | 2939 | |
497711e7 | 2940 | =for hackers |
94bdecf9 | 2941 | Found in file numeric.c |
497711e7 | 2942 | |
94bdecf9 | 2943 | =item grok_oct |
d8c40edc | 2944 | X<grok_oct> |
954c1994 | 2945 | |
7b667b5f MHM |
2946 | converts a string representing an octal number to numeric form. |
2947 | ||
2948 | On entry I<start> and I<*len> give the string to scan, I<*flags> gives | |
2949 | conversion flags, and I<result> should be NULL or a pointer to an NV. | |
2950 | The scan stops at the end of the string, or the first invalid character. | |
2951 | Unless C<PERL_SCAN_SILENT_ILLDIGIT> is set in I<*flags>, encountering an | |
2952 | invalid character will also trigger a warning. | |
2953 | On return I<*len> is set to the length of the scanned string, | |
2954 | and I<*flags> gives output flags. | |
2955 | ||
2956 | If the value is <= UV_MAX it is returned as a UV, the output flags are clear, | |
2957 | and nothing is written to I<*result>. If the value is > UV_MAX C<grok_oct> | |
2958 | returns UV_MAX, sets C<PERL_SCAN_GREATER_THAN_UV_MAX> in the output flags, | |
2959 | and writes the value to I<*result> (or the value is discarded if I<result> | |
2960 | is NULL). | |
2961 | ||
2962 | If C<PERL_SCAN_ALLOW_UNDERSCORES> is set in I<*flags> then the octal | |
2963 | number may use '_' characters to separate digits. | |
94bdecf9 | 2964 | |
a3b680e6 | 2965 | UV grok_oct(const char* start, STRLEN* len_p, I32* flags, NV *result) |
954c1994 | 2966 | |
497711e7 | 2967 | =for hackers |
94bdecf9 | 2968 | Found in file numeric.c |
497711e7 | 2969 | |
ed140128 AD |
2970 | =item Perl_signbit |
2971 | X<Perl_signbit> | |
2972 | ||
2973 | Return a non-zero integer if the sign bit on an NV is set, and 0 if | |
2974 | it is not. | |
2975 | ||
2976 | If Configure detects this system has a signbit() that will work with | |
2977 | our NVs, then we just use it via the #define in perl.h. Otherwise, | |
2978 | fall back on this implementation. As a first pass, this gets everything | |
2979 | right except -0.0. Alas, catching -0.0 is the main use for this function, | |
2980 | so this is not too helpful yet. Still, at least we have the scaffolding | |
2981 | in place to support other systems, should that prove useful. | |
2982 | ||
2983 | ||
2984 | Configure notes: This function is called 'Perl_signbit' instead of a | |
2985 | plain 'signbit' because it is easy to imagine a system having a signbit() | |
2986 | function or macro that doesn't happen to work with our particular choice | |
2987 | of NVs. We shouldn't just re-#define signbit as Perl_signbit and expect | |
2988 | the standard system headers to be happy. Also, this is a no-context | |
2989 | function (no pTHX_) because Perl_signbit() is usually re-#defined in | |
2990 | perl.h as a simple macro call to the system's signbit(). | |
2991 | Users should just always call Perl_signbit(). | |
2992 | ||
2993 | NOTE: this function is experimental and may change or be | |
2994 | removed without notice. | |
2995 | ||
2996 | int Perl_signbit(NV f) | |
2997 | ||
2998 | =for hackers | |
2999 | Found in file numeric.c | |
3000 | ||
94bdecf9 | 3001 | =item scan_bin |
d8c40edc | 3002 | X<scan_bin> |
954c1994 | 3003 | |
94bdecf9 JH |
3004 | For backwards compatibility. Use C<grok_bin> instead. |
3005 | ||
73d840c0 | 3006 | NV scan_bin(const char* start, STRLEN len, STRLEN* retlen) |
954c1994 | 3007 | |
497711e7 | 3008 | =for hackers |
94bdecf9 | 3009 | Found in file numeric.c |
497711e7 | 3010 | |
94bdecf9 | 3011 | =item scan_hex |
d8c40edc | 3012 | X<scan_hex> |
954c1994 | 3013 | |
94bdecf9 JH |
3014 | For backwards compatibility. Use C<grok_hex> instead. |
3015 | ||
73d840c0 | 3016 | NV scan_hex(const char* start, STRLEN len, STRLEN* retlen) |
954c1994 | 3017 | |
497711e7 | 3018 | =for hackers |
94bdecf9 | 3019 | Found in file numeric.c |
497711e7 | 3020 | |
94bdecf9 | 3021 | =item scan_oct |
d8c40edc | 3022 | X<scan_oct> |
954c1994 | 3023 | |
94bdecf9 | 3024 | For backwards compatibility. Use C<grok_oct> instead. |
954c1994 | 3025 | |
73d840c0 | 3026 | NV scan_oct(const char* start, STRLEN len, STRLEN* retlen) |
954c1994 | 3027 | |
497711e7 | 3028 | =for hackers |
94bdecf9 | 3029 | Found in file numeric.c |
497711e7 | 3030 | |
645c22ef | 3031 | |
94bdecf9 | 3032 | =back |
645c22ef | 3033 | |
94bdecf9 JH |
3034 | =head1 Optree Manipulation Functions |
3035 | ||
3036 | =over 8 | |
3037 | ||
3038 | =item cv_const_sv | |
d8c40edc | 3039 | X<cv_const_sv> |
94bdecf9 JH |
3040 | |
3041 | If C<cv> is a constant sub eligible for inlining. returns the constant | |
3042 | value returned by the sub. Otherwise, returns NULL. | |
3043 | ||
3044 | Constant subs can be created with C<newCONSTSUB> or as described in | |
3045 | L<perlsub/"Constant Functions">. | |
3046 | ||
3047 | SV* cv_const_sv(CV* cv) | |
645c22ef DM |
3048 | |
3049 | =for hackers | |
94bdecf9 | 3050 | Found in file op.c |
645c22ef | 3051 | |
94bdecf9 | 3052 | =item newCONSTSUB |
d8c40edc | 3053 | X<newCONSTSUB> |
954c1994 | 3054 | |
94bdecf9 JH |
3055 | Creates a constant sub equivalent to Perl C<sub FOO () { 123 }> which is |
3056 | eligible for inlining at compile-time. | |
954c1994 | 3057 | |
e1ec3a88 | 3058 | CV* newCONSTSUB(HV* stash, const char* name, SV* sv) |
954c1994 | 3059 | |
497711e7 | 3060 | =for hackers |
94bdecf9 | 3061 | Found in file op.c |
497711e7 | 3062 | |
94bdecf9 | 3063 | =item newXS |
d8c40edc | 3064 | X<newXS> |
954c1994 | 3065 | |
77004dee NC |
3066 | Used by C<xsubpp> to hook up XSUBs as Perl subs. I<filename> needs to be |
3067 | static storage, as it is used directly as CvFILE(), without a copy being made. | |
954c1994 | 3068 | |
94bdecf9 JH |
3069 | =for hackers |
3070 | Found in file op.c | |
3071 | ||
3072 | ||
3073 | =back | |
3074 | ||
dd2155a4 DM |
3075 | =head1 Pad Data Structures |
3076 | ||
3077 | =over 8 | |
3078 | ||
3079 | =item pad_sv | |
d8c40edc | 3080 | X<pad_sv> |
dd2155a4 DM |
3081 | |
3082 | Get the value at offset po in the current pad. | |
3083 | Use macro PAD_SV instead of calling this function directly. | |
3084 | ||
3085 | SV* pad_sv(PADOFFSET po) | |
3086 | ||
3087 | =for hackers | |
3088 | Found in file pad.c | |
3089 | ||
3090 | ||
3091 | =back | |
907b3e23 DM |
3092 | |
3093 | =head1 Per-Interpreter Variables | |
3094 | ||
3095 | =over 8 | |
3096 | ||
3097 | =item PL_modglobal | |
3098 | X<PL_modglobal> | |
3099 | ||
3100 | C<PL_modglobal> is a general purpose, interpreter global HV for use by | |
3101 | extensions that need to keep information on a per-interpreter basis. | |
3102 | In a pinch, it can also be used as a symbol table for extensions | |
3103 | to share data among each other. It is a good idea to use keys | |
3104 | prefixed by the package name of the extension that owns the data. | |
3105 | ||
3106 | HV* PL_modglobal | |
3107 | ||
3108 | =for hackers | |
3109 | Found in file intrpvar.h | |
3110 | ||
3111 | =item PL_na | |
3112 | X<PL_na> | |
3113 | ||
3114 | A convenience variable which is typically used with C<SvPV> when one | |
3115 | doesn't care about the length of the string. It is usually more efficient | |
3116 | to either declare a local variable and use that instead or to use the | |
3117 | C<SvPV_nolen> macro. | |
3118 | ||
3119 | STRLEN PL_na | |
3120 | ||
3121 | =for hackers | |
3122 | Found in file intrpvar.h | |
3123 | ||
3124 | =item PL_sv_no | |
3125 | X<PL_sv_no> | |
3126 | ||
3127 | This is the C<false> SV. See C<PL_sv_yes>. Always refer to this as | |
3128 | C<&PL_sv_no>. | |
3129 | ||
3130 | SV PL_sv_no | |
3131 | ||
3132 | =for hackers | |
3133 | Found in file intrpvar.h | |
3134 | ||
3135 | =item PL_sv_undef | |
3136 | X<PL_sv_undef> | |
3137 | ||
3138 | This is the C<undef> SV. Always refer to this as C<&PL_sv_undef>. | |
3139 | ||
3140 | SV PL_sv_undef | |
3141 | ||
3142 | =for hackers | |
3143 | Found in file intrpvar.h | |
3144 | ||
3145 | =item PL_sv_yes | |
3146 | X<PL_sv_yes> | |
3147 | ||
3148 | This is the C<true> SV. See C<PL_sv_no>. Always refer to this as | |
3149 | C<&PL_sv_yes>. | |
3150 | ||
3151 | SV PL_sv_yes | |
3152 | ||
3153 | =for hackers | |
3154 | Found in file intrpvar.h | |
3155 | ||
3156 | ||
3157 | =back | |
f7e71195 AB |
3158 | |
3159 | =head1 REGEXP Functions | |
3160 | ||
3161 | =over 8 | |
3162 | ||
3163 | =item SvRX | |
3164 | X<SvRX> | |
3165 | ||
3166 | Convenience macro to get the REGEXP from a SV. This is approximately | |
3167 | equivalent to the following snippet: | |
3168 | ||
3169 | if (SvMAGICAL(sv)) | |
3170 | mg_get(sv); | |
3171 | if (SvROK(sv) && | |
3172 | (tmpsv = (SV*)SvRV(sv)) && | |
3173 | SvTYPE(tmpsv) == SVt_PVMG && | |
3174 | (tmpmg = mg_find(tmpsv, PERL_MAGIC_qr))) | |
3175 | { | |
3176 | return (REGEXP *)tmpmg->mg_obj; | |
3177 | } | |
3178 | ||
3179 | NULL will be returned if a REGEXP* is not found. | |
3180 | ||
3181 | REGEXP * SvRX(SV *sv) | |
3182 | ||
3183 | =for hackers | |
3184 | Found in file regexp.h | |
3185 | ||
3186 | =item SvRXOK | |
3187 | X<SvRXOK> | |
3188 | ||
3189 | Returns a boolean indicating whether the SV contains qr magic | |
3190 | (PERL_MAGIC_qr). | |
3191 | ||
3192 | If you want to do something with the REGEXP* later use SvRX instead | |
3193 | and check for NULL. | |
3194 | ||
3195 | bool SvRXOK(SV* sv) | |
3196 | ||
3197 | =for hackers | |
3198 | Found in file regexp.h | |
3199 | ||
3200 | ||
3201 | =back | |
dd2155a4 | 3202 | |
59887a99 MHM |
3203 | =head1 Simple Exception Handling Macros |
3204 | ||
3205 | =over 8 | |
3206 | ||
3207 | =item dXCPT | |
d8c40edc | 3208 | X<dXCPT> |
59887a99 | 3209 | |
2dfe1b17 | 3210 | Set up necessary local variables for exception handling. |
59887a99 MHM |
3211 | See L<perlguts/"Exception Handling">. |
3212 | ||
3213 | dXCPT; | |
3214 | ||
3215 | =for hackers | |
3216 | Found in file XSUB.h | |
3217 | ||
3218 | =item XCPT_CATCH | |
d8c40edc | 3219 | X<XCPT_CATCH> |
59887a99 MHM |
3220 | |
3221 | Introduces a catch block. See L<perlguts/"Exception Handling">. | |
3222 | ||
3223 | =for hackers | |
3224 | Found in file XSUB.h | |
3225 | ||
3226 | =item XCPT_RETHROW | |
d8c40edc | 3227 | X<XCPT_RETHROW> |
59887a99 MHM |
3228 | |
3229 | Rethrows a previously caught exception. See L<perlguts/"Exception Handling">. | |
3230 | ||
3231 | XCPT_RETHROW; | |
3232 | ||
3233 | =for hackers | |
3234 | Found in file XSUB.h | |
3235 | ||
3236 | =item XCPT_TRY_END | |
d8c40edc | 3237 | X<XCPT_TRY_END> |
59887a99 MHM |
3238 | |
3239 | Ends a try block. See L<perlguts/"Exception Handling">. | |
3240 | ||
3241 | =for hackers | |
3242 | Found in file XSUB.h | |
3243 | ||
3244 | =item XCPT_TRY_START | |
d8c40edc | 3245 | X<XCPT_TRY_START> |
59887a99 MHM |
3246 | |
3247 | Starts a try block. See L<perlguts/"Exception Handling">. | |
3248 | ||
3249 | =for hackers | |
3250 | Found in file XSUB.h | |
3251 | ||
3252 | ||
3253 | =back | |
3254 | ||
94bdecf9 JH |
3255 | =head1 Stack Manipulation Macros |
3256 | ||
3257 | =over 8 | |
3258 | ||
3259 | =item dMARK | |
d8c40edc | 3260 | X<dMARK> |
954c1994 | 3261 | |
94bdecf9 JH |
3262 | Declare a stack marker variable, C<mark>, for the XSUB. See C<MARK> and |
3263 | C<dORIGMARK>. | |
954c1994 | 3264 | |
94bdecf9 | 3265 | dMARK; |
954c1994 | 3266 | |
497711e7 | 3267 | =for hackers |
94bdecf9 | 3268 | Found in file pp.h |
497711e7 | 3269 | |
94bdecf9 | 3270 | =item dORIGMARK |
d8c40edc | 3271 | X<dORIGMARK> |
954c1994 | 3272 | |
94bdecf9 | 3273 | Saves the original stack mark for the XSUB. See C<ORIGMARK>. |
954c1994 | 3274 | |
94bdecf9 | 3275 | dORIGMARK; |
954c1994 | 3276 | |
497711e7 | 3277 | =for hackers |
94bdecf9 | 3278 | Found in file pp.h |
497711e7 | 3279 | |
94bdecf9 | 3280 | =item dSP |
d8c40edc | 3281 | X<dSP> |
954c1994 | 3282 | |
94bdecf9 JH |
3283 | Declares a local copy of perl's stack pointer for the XSUB, available via |
3284 | the C<SP> macro. See C<SP>. | |
954c1994 | 3285 | |
94bdecf9 | 3286 | dSP; |
954c1994 | 3287 | |
497711e7 | 3288 | =for hackers |
94bdecf9 | 3289 | Found in file pp.h |
497711e7 | 3290 | |
94bdecf9 | 3291 | =item EXTEND |
d8c40edc | 3292 | X<EXTEND> |
954c1994 | 3293 | |
94bdecf9 JH |
3294 | Used to extend the argument stack for an XSUB's return values. Once |
3295 | used, guarantees that there is room for at least C<nitems> to be pushed | |
3296 | onto the stack. | |
954c1994 | 3297 | |
94bdecf9 | 3298 | void EXTEND(SP, int nitems) |
954c1994 | 3299 | |
497711e7 | 3300 | =for hackers |
94bdecf9 | 3301 | Found in file pp.h |
954c1994 | 3302 | |
94bdecf9 | 3303 | =item MARK |
d8c40edc | 3304 | X<MARK> |
954c1994 | 3305 | |
94bdecf9 | 3306 | Stack marker variable for the XSUB. See C<dMARK>. |
954c1994 | 3307 | |
497711e7 | 3308 | =for hackers |
94bdecf9 | 3309 | Found in file pp.h |
954c1994 | 3310 | |
d82b684c | 3311 | =item mPUSHi |
d8c40edc | 3312 | X<mPUSHi> |
d82b684c SH |
3313 | |
3314 | Push an integer onto the stack. The stack must have room for this element. | |
121b7712 | 3315 | Does not use C<TARG>. See also C<PUSHi>, C<mXPUSHi> and C<XPUSHi>. |
d82b684c SH |
3316 | |
3317 | void mPUSHi(IV iv) | |
3318 | ||
3319 | =for hackers | |
3320 | Found in file pp.h | |
3321 | ||
3322 | =item mPUSHn | |
d8c40edc | 3323 | X<mPUSHn> |
d82b684c SH |
3324 | |
3325 | Push a double onto the stack. The stack must have room for this element. | |
121b7712 | 3326 | Does not use C<TARG>. See also C<PUSHn>, C<mXPUSHn> and C<XPUSHn>. |
d82b684c SH |
3327 | |
3328 | void mPUSHn(NV nv) | |
3329 | ||
3330 | =for hackers | |
3331 | Found in file pp.h | |
3332 | ||
3333 | =item mPUSHp | |
d8c40edc | 3334 | X<mPUSHp> |
d82b684c SH |
3335 | |
3336 | Push a string onto the stack. The stack must have room for this element. | |
121b7712 MHM |
3337 | The C<len> indicates the length of the string. Does not use C<TARG>. |
3338 | See also C<PUSHp>, C<mXPUSHp> and C<XPUSHp>. | |
d82b684c SH |
3339 | |
3340 | void mPUSHp(char* str, STRLEN len) | |
3341 | ||
3342 | =for hackers | |
3343 | Found in file pp.h | |
3344 | ||
ae374e95 SH |
3345 | =item mPUSHs |
3346 | X<mPUSHs> | |
3347 | ||
3348 | Push an SV onto the stack and mortalizes the SV. The stack must have room | |
121b7712 | 3349 | for this element. Does not use C<TARG>. See also C<PUSHs> and C<mXPUSHs>. |
ae374e95 SH |
3350 | |
3351 | void mPUSHs(SV* sv) | |
3352 | ||
3353 | =for hackers | |
3354 | Found in file pp.h | |
3355 | ||
d82b684c | 3356 | =item mPUSHu |
d8c40edc | 3357 | X<mPUSHu> |
d82b684c SH |
3358 | |
3359 | Push an unsigned integer onto the stack. The stack must have room for this | |
121b7712 | 3360 | element. Does not use C<TARG>. See also C<PUSHu>, C<mXPUSHu> and C<XPUSHu>. |
d82b684c SH |
3361 | |
3362 | void mPUSHu(UV uv) | |
3363 | ||
3364 | =for hackers | |
3365 | Found in file pp.h | |
3366 | ||
3367 | =item mXPUSHi | |
d8c40edc | 3368 | X<mXPUSHi> |
d82b684c | 3369 | |
121b7712 MHM |
3370 | Push an integer onto the stack, extending the stack if necessary. |
3371 | Does not use C<TARG>. See also C<XPUSHi>, C<mPUSHi> and C<PUSHi>. | |
d82b684c SH |
3372 | |
3373 | void mXPUSHi(IV iv) | |
3374 | ||
3375 | =for hackers | |
3376 | Found in file pp.h | |
3377 | ||
3378 | =item mXPUSHn | |
d8c40edc | 3379 | X<mXPUSHn> |
d82b684c | 3380 | |
121b7712 MHM |
3381 | Push a double onto the stack, extending the stack if necessary. |
3382 | Does not use C<TARG>. See also C<XPUSHn>, C<mPUSHn> and C<PUSHn>. | |
d82b684c SH |
3383 | |
3384 | void mXPUSHn(NV nv) | |
3385 | ||
3386 | =for hackers | |
3387 | Found in file pp.h | |
3388 | ||
3389 | =item mXPUSHp | |
d8c40edc | 3390 | X<mXPUSHp> |
d82b684c SH |
3391 | |
3392 | Push a string onto the stack, extending the stack if necessary. The C<len> | |
121b7712 MHM |
3393 | indicates the length of the string. Does not use C<TARG>. See also C<XPUSHp>, |
3394 | C<mPUSHp> and C<PUSHp>. | |
d82b684c SH |
3395 | |
3396 | void mXPUSHp(char* str, STRLEN len) | |
3397 | ||
3398 | =for hackers | |
3399 | Found in file pp.h | |
3400 | ||
ae374e95 SH |
3401 | =item mXPUSHs |
3402 | X<mXPUSHs> | |
3403 | ||
3404 | Push an SV onto the stack, extending the stack if necessary and mortalizes | |
121b7712 | 3405 | the SV. Does not use C<TARG>. See also C<XPUSHs> and C<mPUSHs>. |
ae374e95 SH |
3406 | |
3407 | void mXPUSHs(SV* sv) | |
3408 | ||
3409 | =for hackers | |
3410 | Found in file pp.h | |
3411 | ||
d82b684c | 3412 | =item mXPUSHu |
d8c40edc | 3413 | X<mXPUSHu> |
d82b684c SH |
3414 | |
3415 | Push an unsigned integer onto the stack, extending the stack if necessary. | |
121b7712 | 3416 | Does not use C<TARG>. See also C<XPUSHu>, C<mPUSHu> and C<PUSHu>. |
d82b684c SH |
3417 | |
3418 | void mXPUSHu(UV uv) | |
3419 | ||
3420 | =for hackers | |
3421 | Found in file pp.h | |
3422 | ||
94bdecf9 | 3423 | =item ORIGMARK |
d8c40edc | 3424 | X<ORIGMARK> |
954c1994 | 3425 | |
94bdecf9 | 3426 | The original stack mark for the XSUB. See C<dORIGMARK>. |
954c1994 | 3427 | |
497711e7 | 3428 | =for hackers |
94bdecf9 | 3429 | Found in file pp.h |
497711e7 | 3430 | |
954c1994 | 3431 | =item POPi |
d8c40edc | 3432 | X<POPi> |
954c1994 GS |
3433 | |
3434 | Pops an integer off the stack. | |
3435 | ||
3436 | IV POPi | |
3437 | ||
497711e7 GS |
3438 | =for hackers |
3439 | Found in file pp.h | |
3440 | ||
954c1994 | 3441 | =item POPl |
d8c40edc | 3442 | X<POPl> |
954c1994 GS |
3443 | |
3444 | Pops a long off the stack. | |
3445 | ||
3446 | long POPl | |
3447 | ||
497711e7 GS |
3448 | =for hackers |
3449 | Found in file pp.h | |
3450 | ||
954c1994 | 3451 | =item POPn |
d8c40edc | 3452 | X<POPn> |
954c1994 GS |
3453 | |
3454 | Pops a double off the stack. | |
3455 | ||
3456 | NV POPn | |
3457 | ||
497711e7 GS |
3458 | =for hackers |
3459 | Found in file pp.h | |
3460 | ||
954c1994 | 3461 | =item POPp |
d8c40edc | 3462 | X<POPp> |
954c1994 | 3463 | |
184499a4 | 3464 | Pops a string off the stack. Deprecated. New code should use POPpx. |
954c1994 GS |
3465 | |
3466 | char* POPp | |
3467 | ||
497711e7 GS |
3468 | =for hackers |
3469 | Found in file pp.h | |
3470 | ||
fa519979 | 3471 | =item POPpbytex |
d8c40edc | 3472 | X<POPpbytex> |
fa519979 JH |
3473 | |
3474 | Pops a string off the stack which must consist of bytes i.e. characters < 256. | |
fa519979 JH |
3475 | |
3476 | char* POPpbytex | |
3477 | ||
3478 | =for hackers | |
3479 | Found in file pp.h | |
3480 | ||
3481 | =item POPpx | |
d8c40edc | 3482 | X<POPpx> |
fa519979 JH |
3483 | |
3484 | Pops a string off the stack. | |
fa519979 JH |
3485 | |
3486 | char* POPpx | |
3487 | ||
3488 | =for hackers | |
3489 | Found in file pp.h | |
3490 | ||
954c1994 | 3491 | =item POPs |
d8c40edc | 3492 | X<POPs> |
954c1994 GS |
3493 | |
3494 | Pops an SV off the stack. | |
3495 | ||
3496 | SV* POPs | |
3497 | ||
497711e7 GS |
3498 | =for hackers |
3499 | Found in file pp.h | |
3500 | ||
954c1994 | 3501 | =item PUSHi |
d8c40edc | 3502 | X<PUSHi> |
954c1994 GS |
3503 | |
3504 | Push an integer onto the stack. The stack must have room for this element. | |
d82b684c SH |
3505 | Handles 'set' magic. Uses C<TARG>, so C<dTARGET> or C<dXSTARG> should be |
3506 | called to declare it. Do not call multiple C<TARG>-oriented macros to | |
3507 | return lists from XSUB's - see C<mPUSHi> instead. See also C<XPUSHi> and | |
3508 | C<mXPUSHi>. | |
954c1994 GS |
3509 | |
3510 | void PUSHi(IV iv) | |
3511 | ||