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