Make S_readpipe_override() compile with threads; regenerate perlapi.pod
[p5sagit/p5-mst-13.2.git] / pod / perlapi.pod
1 -*- buffer-read-only: t -*-
2
3 !!!!!!!   DO NOT EDIT THIS FILE   !!!!!!!
4 This file is built by autodoc.pl extracting documentation from the C source
5 files.
6
7 =head1 NAME
8
9 perlapi - autogenerated documentation for the perl public API
10
11 =head1 DESCRIPTION
12 X<Perl API> X<API> X<api>
13
14 This file contains the documentation of the perl public API generated by
15 embed.pl, specifically a listing of functions, macros, flags, and variables
16 that may be used by extension writers.  The interfaces of any functions that
17 are not listed here are subject to change without notice.  For this reason,
18 blindly using functions listed in proto.h is to be avoided when writing
19 extensions.
20
21 Note that all Perl API global variables must be referenced with the C<PL_>
22 prefix.  Some macros are provided for compatibility with the older,
23 unadorned names, but this support may be disabled in a future release.
24
25 The listing is alphabetical, case insensitive.
26
27
28 =head1 "Gimme" Values
29
30 =over 8
31
32 =item GIMME
33 X<GIMME>
34
35 A backward-compatible version of C<GIMME_V> which can only return
36 C<G_SCALAR> or C<G_ARRAY>; in a void context, it returns C<G_SCALAR>.
37 Deprecated.  Use C<GIMME_V> instead.
38
39         U32     GIMME
40
41 =for hackers
42 Found in file op.h
43
44 =item GIMME_V
45 X<GIMME_V>
46
47 The XSUB-writer's equivalent to Perl's C<wantarray>.  Returns C<G_VOID>,
48 C<G_SCALAR> or C<G_ARRAY> for void, scalar or list context,
49 respectively.
50
51         U32     GIMME_V
52
53 =for hackers
54 Found in file op.h
55
56 =item G_ARRAY
57 X<G_ARRAY>
58
59 Used to indicate list context.  See C<GIMME_V>, C<GIMME> and
60 L<perlcall>.
61
62 =for hackers
63 Found in file cop.h
64
65 =item G_DISCARD
66 X<G_DISCARD>
67
68 Indicates that arguments returned from a callback should be discarded.  See
69 L<perlcall>.
70
71 =for hackers
72 Found in file cop.h
73
74 =item G_EVAL
75 X<G_EVAL>
76
77 Used to force a Perl C<eval> wrapper around a callback.  See
78 L<perlcall>.
79
80 =for hackers
81 Found in file cop.h
82
83 =item G_NOARGS
84 X<G_NOARGS>
85
86 Indicates that no arguments are being sent to a callback.  See
87 L<perlcall>.
88
89 =for hackers
90 Found in file cop.h
91
92 =item G_SCALAR
93 X<G_SCALAR>
94
95 Used to indicate scalar context.  See C<GIMME_V>, C<GIMME>, and
96 L<perlcall>.
97
98 =for hackers
99 Found in file cop.h
100
101 =item G_VOID
102 X<G_VOID>
103
104 Used to indicate void context.  See C<GIMME_V> and L<perlcall>.
105
106 =for hackers
107 Found in file cop.h
108
109
110 =back
111
112 =head1 Array Manipulation Functions
113
114 =over 8
115
116 =item AvFILL
117 X<AvFILL>
118
119 Same as C<av_len()>.  Deprecated, use C<av_len()> instead.
120
121         int     AvFILL(AV* av)
122
123 =for hackers
124 Found in file av.h
125
126 =item av_clear
127 X<av_clear>
128
129 Clears an array, making it empty.  Does not free the memory used by the
130 array itself.
131
132         void    av_clear(AV* ar)
133
134 =for hackers
135 Found in file av.c
136
137 =item av_delete
138 X<av_delete>
139
140 Deletes the element indexed by C<key> from the array.  Returns the
141 deleted element. If C<flags> equals C<G_DISCARD>, the element is freed
142 and null is returned.
143
144         SV*     av_delete(AV* ar, I32 key, I32 flags)
145
146 =for hackers
147 Found in file av.c
148
149 =item av_exists
150 X<av_exists>
151
152 Returns true if the element indexed by C<key> has been initialized.
153
154 This relies on the fact that uninitialized array elements are set to
155 C<&PL_sv_undef>.
156
157         bool    av_exists(AV* ar, I32 key)
158
159 =for hackers
160 Found in file av.c
161
162 =item av_extend
163 X<av_extend>
164
165 Pre-extend an array.  The C<key> is the index to which the array should be
166 extended.
167
168         void    av_extend(AV* ar, I32 key)
169
170 =for hackers
171 Found in file av.c
172
173 =item av_fetch
174 X<av_fetch>
175
176 Returns the SV at the specified index in the array.  The C<key> is the
177 index.  If C<lval> is set then the fetch will be part of a store.  Check
178 that the return value is non-null before dereferencing it to a C<SV*>.
179
180 See L<perlguts/"Understanding the Magic of Tied Hashes and Arrays"> for
181 more information on how to use this function on tied arrays. 
182
183         SV**    av_fetch(AV* ar, I32 key, I32 lval)
184
185 =for hackers
186 Found in file av.c
187
188 =item av_fill
189 X<av_fill>
190
191 Set the highest index in the array to the given number, equivalent to
192 Perl's C<$#array = $fill;>.
193
194 The number of elements in the an array will be C<fill + 1> after
195 av_fill() returns.  If the array was previously shorter then the
196 additional elements appended are set to C<PL_sv_undef>.  If the array
197 was longer, then the excess elements are freed.  C<av_fill(av, -1)> is
198 the same as C<av_clear(av)>.
199
200         void    av_fill(AV* ar, I32 fill)
201
202 =for hackers
203 Found in file av.c
204
205 =item av_len
206 X<av_len>
207
208 Returns the highest index in the array.  The number of elements in the
209 array is C<av_len(av) + 1>.  Returns -1 if the array is empty.
210
211         I32     av_len(const AV* ar)
212
213 =for hackers
214 Found in file av.c
215
216 =item av_make
217 X<av_make>
218
219 Creates a new AV and populates it with a list of SVs.  The SVs are copied
220 into the array, so they may be freed after the call to av_make.  The new AV
221 will have a reference count of 1.
222
223         AV*     av_make(I32 size, SV** svp)
224
225 =for hackers
226 Found in file av.c
227
228 =item av_pop
229 X<av_pop>
230
231 Pops an SV off the end of the array.  Returns C<&PL_sv_undef> if the array
232 is empty.
233
234         SV*     av_pop(AV* ar)
235
236 =for hackers
237 Found in file av.c
238
239 =item av_push
240 X<av_push>
241
242 Pushes an SV onto the end of the array.  The array will grow automatically
243 to accommodate the addition.
244
245         void    av_push(AV* ar, SV* val)
246
247 =for hackers
248 Found in file av.c
249
250 =item av_shift
251 X<av_shift>
252
253 Shifts an SV off the beginning of the array.
254
255         SV*     av_shift(AV* ar)
256
257 =for hackers
258 Found in file av.c
259
260 =item av_store
261 X<av_store>
262
263 Stores an SV in an array.  The array index is specified as C<key>.  The
264 return value will be NULL if the operation failed or if the value did not
265 need to be actually stored within the array (as in the case of tied
266 arrays). Otherwise it can be dereferenced to get the original C<SV*>.  Note
267 that the caller is responsible for suitably incrementing the reference
268 count of C<val> before the call, and decrementing it if the function
269 returned NULL.
270
271 See L<perlguts/"Understanding the Magic of Tied Hashes and Arrays"> for
272 more information on how to use this function on tied arrays.
273
274         SV**    av_store(AV* ar, I32 key, SV* val)
275
276 =for hackers
277 Found in file av.c
278
279 =item av_undef
280 X<av_undef>
281
282 Undefines the array.  Frees the memory used by the array itself.
283
284         void    av_undef(AV* ar)
285
286 =for hackers
287 Found in file av.c
288
289 =item av_unshift
290 X<av_unshift>
291
292 Unshift the given number of C<undef> values onto the beginning of the
293 array.  The array will grow automatically to accommodate the addition.  You
294 must then use C<av_store> to assign values to these new elements.
295
296         void    av_unshift(AV* ar, I32 num)
297
298 =for hackers
299 Found in file av.c
300
301 =item get_av
302 X<get_av>
303
304 Returns the AV of the specified Perl array.  If C<create> is set and the
305 Perl variable does not exist then it will be created.  If C<create> is not
306 set and the variable does not exist then NULL is returned.
307
308 NOTE: the perl_ form of this function is deprecated.
309
310         AV*     get_av(const char* name, I32 create)
311
312 =for hackers
313 Found in file perl.c
314
315 =item newAV
316 X<newAV>
317
318 Creates a new AV.  The reference count is set to 1.
319
320         AV*     newAV()
321
322 =for hackers
323 Found in file av.c
324
325 =item sortsv
326 X<sortsv>
327
328 Sort an array. Here is an example:
329
330     sortsv(AvARRAY(av), av_len(av)+1, Perl_sv_cmp_locale);
331
332 Currently this always uses mergesort. See sortsv_flags for a more
333 flexible routine.
334
335         void    sortsv(SV** array, size_t num_elts, SVCOMPARE_t cmp)
336
337 =for hackers
338 Found in file pp_sort.c
339
340 =item sortsv_flags
341 X<sortsv_flags>
342
343 Sort an array, with various options.
344
345         void    sortsv_flags(SV** array, size_t num_elts, SVCOMPARE_t cmp, U32 flags)
346
347 =for hackers
348 Found in file pp_sort.c
349
350
351 =back
352
353 =head1 Callback Functions
354
355 =over 8
356
357 =item call_argv
358 X<call_argv>
359
360 Performs a callback to the specified Perl sub.  See L<perlcall>.
361
362 NOTE: the perl_ form of this function is deprecated.
363
364         I32     call_argv(const char* sub_name, I32 flags, char** argv)
365
366 =for hackers
367 Found in file perl.c
368
369 =item call_method
370 X<call_method>
371
372 Performs a callback to the specified Perl method.  The blessed object must
373 be on the stack.  See L<perlcall>.
374
375 NOTE: the perl_ form of this function is deprecated.
376
377         I32     call_method(const char* methname, I32 flags)
378
379 =for hackers
380 Found in file perl.c
381
382 =item call_pv
383 X<call_pv>
384
385 Performs a callback to the specified Perl sub.  See L<perlcall>.
386
387 NOTE: the perl_ form of this function is deprecated.
388
389         I32     call_pv(const char* sub_name, I32 flags)
390
391 =for hackers
392 Found in file perl.c
393
394 =item call_sv
395 X<call_sv>
396
397 Performs a callback to the Perl sub whose name is in the SV.  See
398 L<perlcall>.
399
400 NOTE: the perl_ form of this function is deprecated.
401
402         I32     call_sv(SV* sv, I32 flags)
403
404 =for hackers
405 Found in file perl.c
406
407 =item ENTER
408 X<ENTER>
409
410 Opening bracket on a callback.  See C<LEAVE> and L<perlcall>.
411
412                 ENTER;
413
414 =for hackers
415 Found in file scope.h
416
417 =item eval_pv
418 X<eval_pv>
419
420 Tells Perl to C<eval> the given string and return an SV* result.
421
422 NOTE: the perl_ form of this function is deprecated.
423
424         SV*     eval_pv(const char* p, I32 croak_on_error)
425
426 =for hackers
427 Found in file perl.c
428
429 =item eval_sv
430 X<eval_sv>
431
432 Tells Perl to C<eval> the string in the SV.
433
434 NOTE: the perl_ form of this function is deprecated.
435
436         I32     eval_sv(SV* sv, I32 flags)
437
438 =for hackers
439 Found in file perl.c
440
441 =item FREETMPS
442 X<FREETMPS>
443
444 Closing bracket for temporaries on a callback.  See C<SAVETMPS> and
445 L<perlcall>.
446
447                 FREETMPS;
448
449 =for hackers
450 Found in file scope.h
451
452 =item LEAVE
453 X<LEAVE>
454
455 Closing bracket on a callback.  See C<ENTER> and L<perlcall>.
456
457                 LEAVE;
458
459 =for hackers
460 Found in file scope.h
461
462 =item SAVETMPS
463 X<SAVETMPS>
464
465 Opening bracket for temporaries on a callback.  See C<FREETMPS> and
466 L<perlcall>.
467
468                 SAVETMPS;
469
470 =for hackers
471 Found in file scope.h
472
473
474 =back
475
476 =head1 Character classes
477
478 =over 8
479
480 =item isALNUM
481 X<isALNUM>
482
483 Returns a boolean indicating whether the C C<char> is an ASCII alphanumeric
484 character (including underscore) or digit.
485
486         bool    isALNUM(char ch)
487
488 =for hackers
489 Found in file handy.h
490
491 =item isALPHA
492 X<isALPHA>
493
494 Returns a boolean indicating whether the C C<char> is an ASCII alphabetic
495 character.
496
497         bool    isALPHA(char ch)
498
499 =for hackers
500 Found in file handy.h
501
502 =item isDIGIT
503 X<isDIGIT>
504
505 Returns a boolean indicating whether the C C<char> is an ASCII
506 digit.
507
508         bool    isDIGIT(char ch)
509
510 =for hackers
511 Found in file handy.h
512
513 =item isLOWER
514 X<isLOWER>
515
516 Returns a boolean indicating whether the C C<char> is a lowercase
517 character.
518
519         bool    isLOWER(char ch)
520
521 =for hackers
522 Found in file handy.h
523
524 =item isSPACE
525 X<isSPACE>
526
527 Returns a boolean indicating whether the C C<char> is whitespace.
528
529         bool    isSPACE(char ch)
530
531 =for hackers
532 Found in file handy.h
533
534 =item isUPPER
535 X<isUPPER>
536
537 Returns a boolean indicating whether the C C<char> is an uppercase
538 character.
539
540         bool    isUPPER(char ch)
541
542 =for hackers
543 Found in file handy.h
544
545 =item toLOWER
546 X<toLOWER>
547
548 Converts the specified character to lowercase.
549
550         char    toLOWER(char ch)
551
552 =for hackers
553 Found in file handy.h
554
555 =item toUPPER
556 X<toUPPER>
557
558 Converts the specified character to uppercase.
559
560         char    toUPPER(char ch)
561
562 =for hackers
563 Found in file handy.h
564
565
566 =back
567
568 =head1 Cloning an interpreter
569
570 =over 8
571
572 =item perl_clone
573 X<perl_clone>
574
575 Create and return a new interpreter by cloning the current one.
576
577 perl_clone takes these flags as parameters:
578
579 CLONEf_COPY_STACKS - is used to, well, copy the stacks also,
580 without it we only clone the data and zero the stacks,
581 with it we copy the stacks and the new perl interpreter is
582 ready to run at the exact same point as the previous one.
583 The pseudo-fork code uses COPY_STACKS while the
584 threads->new doesn't.
585
586 CLONEf_KEEP_PTR_TABLE
587 perl_clone keeps a ptr_table with the pointer of the old
588 variable as a key and the new variable as a value,
589 this allows it to check if something has been cloned and not
590 clone it again but rather just use the value and increase the
591 refcount. If KEEP_PTR_TABLE is not set then perl_clone will kill
592 the ptr_table using the function
593 C<ptr_table_free(PL_ptr_table); PL_ptr_table = NULL;>,
594 reason to keep it around is if you want to dup some of your own
595 variable who are outside the graph perl scans, example of this
596 code is in threads.xs create
597
598 CLONEf_CLONE_HOST
599 This is a win32 thing, it is ignored on unix, it tells perls
600 win32host code (which is c++) to clone itself, this is needed on
601 win32 if you want to run two threads at the same time,
602 if you just want to do some stuff in a separate perl interpreter
603 and then throw it away and return to the original one,
604 you don't need to do anything.
605
606         PerlInterpreter*        perl_clone(PerlInterpreter* interp, UV flags)
607
608 =for hackers
609 Found in file sv.c
610
611
612 =back
613
614 =head1 CV Manipulation Functions
615
616 =over 8
617
618 =item CvSTASH
619 X<CvSTASH>
620
621 Returns the stash of the CV.
622
623         HV*     CvSTASH(CV* cv)
624
625 =for hackers
626 Found in file cv.h
627
628 =item get_cv
629 X<get_cv>
630
631 Returns the CV of the specified Perl subroutine.  If C<create> is set and
632 the Perl subroutine does not exist then it will be declared (which has the
633 same effect as saying C<sub name;>).  If C<create> is not set and the
634 subroutine does not exist then NULL is returned.
635
636 NOTE: the perl_ form of this function is deprecated.
637
638         CV*     get_cv(const char* name, I32 create)
639
640 =for hackers
641 Found in file perl.c
642
643
644 =back
645
646 =head1 Embedding Functions
647
648 =over 8
649
650 =item cv_undef
651 X<cv_undef>
652
653 Clear out all the active components of a CV. This can happen either
654 by an explicit C<undef &foo>, or by the reference count going to zero.
655 In the former case, we keep the CvOUTSIDE pointer, so that any anonymous
656 children can still follow the full lexical scope chain.
657
658         void    cv_undef(CV* cv)
659
660 =for hackers
661 Found in file op.c
662
663 =item load_module
664 X<load_module>
665
666 Loads the module whose name is pointed to by the string part of name.
667 Note that the actual module name, not its filename, should be given.
668 Eg, "Foo::Bar" instead of "Foo/Bar.pm".  flags can be any of
669 PERL_LOADMOD_DENY, PERL_LOADMOD_NOIMPORT, or PERL_LOADMOD_IMPORT_OPS
670 (or 0 for no flags). ver, if specified, provides version semantics
671 similar to C<use Foo::Bar VERSION>.  The optional trailing SV*
672 arguments can be used to specify arguments to the module's import()
673 method, similar to C<use Foo::Bar VERSION LIST>.
674
675         void    load_module(U32 flags, SV* name, SV* ver, ...)
676
677 =for hackers
678 Found in file op.c
679
680 =item nothreadhook
681 X<nothreadhook>
682
683 Stub that provides thread hook for perl_destruct when there are
684 no threads.
685
686         int     nothreadhook()
687
688 =for hackers
689 Found in file perl.c
690
691 =item perl_alloc
692 X<perl_alloc>
693
694 Allocates a new Perl interpreter.  See L<perlembed>.
695
696         PerlInterpreter*        perl_alloc()
697
698 =for hackers
699 Found in file perl.c
700
701 =item perl_construct
702 X<perl_construct>
703
704 Initializes a new Perl interpreter.  See L<perlembed>.
705
706         void    perl_construct(PerlInterpreter* interp)
707
708 =for hackers
709 Found in file perl.c
710
711 =item perl_destruct
712 X<perl_destruct>
713
714 Shuts down a Perl interpreter.  See L<perlembed>.
715
716         int     perl_destruct(PerlInterpreter* interp)
717
718 =for hackers
719 Found in file perl.c
720
721 =item perl_free
722 X<perl_free>
723
724 Releases a Perl interpreter.  See L<perlembed>.
725
726         void    perl_free(PerlInterpreter* interp)
727
728 =for hackers
729 Found in file perl.c
730
731 =item perl_parse
732 X<perl_parse>
733
734 Tells a Perl interpreter to parse a Perl script.  See L<perlembed>.
735
736         int     perl_parse(PerlInterpreter* interp, XSINIT_t xsinit, int argc, char** argv, char** env)
737
738 =for hackers
739 Found in file perl.c
740
741 =item perl_run
742 X<perl_run>
743
744 Tells a Perl interpreter to run.  See L<perlembed>.
745
746         int     perl_run(PerlInterpreter* interp)
747
748 =for hackers
749 Found in file perl.c
750
751 =item require_pv
752 X<require_pv>
753
754 Tells Perl to C<require> the file named by the string argument.  It is
755 analogous to the Perl code C<eval "require '$file'">.  It's even
756 implemented that way; consider using load_module instead.
757
758 NOTE: the perl_ form of this function is deprecated.
759
760         void    require_pv(const char* pv)
761
762 =for hackers
763 Found in file perl.c
764
765
766 =back
767
768 =head1 Functions in file dump.c
769
770
771 =over 8
772
773 =item pv_display
774 X<pv_display>
775
776   char *pv_display(SV *dsv, const char *pv, STRLEN cur, STRLEN len,
777                    STRLEN pvlim, U32 flags)
778
779 Similar to
780
781   pv_escape(dsv,pv,cur,pvlim,PERL_PV_ESCAPE_QUOTE);
782
783 except that an additional "\0" will be appended to the string when
784 len > cur and pv[cur] is "\0".
785
786 Note that the final string may be up to 7 chars longer than pvlim.
787
788         char*   pv_display(SV *dsv, const char *pv, STRLEN cur, STRLEN len, STRLEN pvlim)
789
790 =for hackers
791 Found in file dump.c
792
793 =item pv_escape
794 X<pv_escape>
795
796                |const STRLEN count|const STRLEN max
797                |STRLEN const *escaped, const U32 flags
798
799 Escapes at most the first "count" chars of pv and puts the results into
800 dsv such that the size of the escaped string will not exceed "max" chars
801 and will not contain any incomplete escape sequences.
802
803 If flags contains PERL_PV_ESCAPE_QUOTE then any double quotes in the string
804 will also be escaped.
805
806 Normally the SV will be cleared before the escaped string is prepared,
807 but when PERL_PV_ESCAPE_NOCLEAR is set this will not occur.
808
809 If PERL_PV_ESCAPE_UNI is set then the input string is treated as unicode,
810 if PERL_PV_ESCAPE_UNI_DETECT is set then the input string is scanned
811 using C<is_utf8_string()> to determine if it is unicode.
812
813 If PERL_PV_ESCAPE_ALL is set then all input chars will be output
814 using C<\x01F1> style escapes, otherwise only chars above 255 will be
815 escaped using this style, other non printable chars will use octal or
816 common escaped patterns like C<\n>. If PERL_PV_ESCAPE_NOBACKSLASH
817 then all chars below 255 will be treated as printable and 
818 will be output as literals.
819
820 If PERL_PV_ESCAPE_FIRSTCHAR is set then only the first char of the
821 string will be escaped, regardles of max. If the string is utf8 and 
822 the chars value is >255 then it will be returned as a plain hex 
823 sequence. Thus the output will either be a single char, 
824 an octal escape sequence, a special escape like C<\n> or a 3 or 
825 more digit hex value. 
826
827 Returns a pointer to the escaped text as held by dsv.
828
829 NOTE: the perl_ form of this function is deprecated.
830
831         char*   pv_escape(SV *dsv, char const * const str, const STRLEN count, const STRLEN max, STRLEN * const escaped, const U32 flags)
832
833 =for hackers
834 Found in file dump.c
835
836 =item pv_pretty
837 X<pv_pretty>
838
839            |const STRLEN count|const STRLEN max\
840            |const char const *start_color| const char const *end_color\
841            |const U32 flags
842
843 Converts a string into something presentable, handling escaping via
844 pv_escape() and supporting quoting and elipses. 
845
846 If the PERL_PV_PRETTY_QUOTE flag is set then the result will be 
847 double quoted with any double quotes in the string escaped. Otherwise
848 if the PERL_PV_PRETTY_LTGT flag is set then the result be wrapped in
849 angle brackets. 
850            
851 If the PERL_PV_PRETTY_ELIPSES flag is set and not all characters in
852 string were output then an elipses C<...> will be appended to the 
853 string. Note that this happens AFTER it has been quoted.
854            
855 If start_color is non-null then it will be inserted after the opening
856 quote (if there is one) but before the escaped text. If end_color
857 is non-null then it will be inserted after the escaped text but before
858 any quotes or elipses.
859
860 Returns a pointer to the prettified text as held by dsv.
861            
862 NOTE: the perl_ form of this function is deprecated.
863
864         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)
865
866 =for hackers
867 Found in file dump.c
868
869
870 =back
871
872 =head1 Functions in file mathoms.c
873
874
875 =over 8
876
877 =item gv_fetchmethod
878 X<gv_fetchmethod>
879
880 See L<gv_fetchmethod_autoload>.
881
882         GV*     gv_fetchmethod(HV* stash, const char* name)
883
884 =for hackers
885 Found in file mathoms.c
886
887 =item pack_cat
888 X<pack_cat>
889
890 The engine implementing pack() Perl function. Note: parameters next_in_list and
891 flags are not used. This call should not be used; use packlist instead.
892
893         void    pack_cat(SV *cat, const char *pat, const char *patend, SV **beglist, SV **endlist, SV ***next_in_list, U32 flags)
894
895 =for hackers
896 Found in file mathoms.c
897
898 =item sv_2pvbyte_nolen
899 X<sv_2pvbyte_nolen>
900
901 Return a pointer to the byte-encoded representation of the SV.
902 May cause the SV to be downgraded from UTF-8 as a side-effect.
903
904 Usually accessed via the C<SvPVbyte_nolen> macro.
905
906         char*   sv_2pvbyte_nolen(SV* sv)
907
908 =for hackers
909 Found in file mathoms.c
910
911 =item sv_2pvutf8_nolen
912 X<sv_2pvutf8_nolen>
913
914 Return a pointer to the UTF-8-encoded representation of the SV.
915 May cause the SV to be upgraded to UTF-8 as a side-effect.
916
917 Usually accessed via the C<SvPVutf8_nolen> macro.
918
919         char*   sv_2pvutf8_nolen(SV* sv)
920
921 =for hackers
922 Found in file mathoms.c
923
924 =item sv_2pv_nolen
925 X<sv_2pv_nolen>
926
927 Like C<sv_2pv()>, but doesn't return the length too. You should usually
928 use the macro wrapper C<SvPV_nolen(sv)> instead.
929         char*   sv_2pv_nolen(SV* sv)
930
931 =for hackers
932 Found in file mathoms.c
933
934 =item sv_catpvn_mg
935 X<sv_catpvn_mg>
936
937 Like C<sv_catpvn>, but also handles 'set' magic.
938
939         void    sv_catpvn_mg(SV *sv, const char *ptr, STRLEN len)
940
941 =for hackers
942 Found in file mathoms.c
943
944 =item sv_catsv_mg
945 X<sv_catsv_mg>
946
947 Like C<sv_catsv>, but also handles 'set' magic.
948
949         void    sv_catsv_mg(SV *dstr, SV *sstr)
950
951 =for hackers
952 Found in file mathoms.c
953
954 =item sv_force_normal
955 X<sv_force_normal>
956
957 Undo various types of fakery on an SV: if the PV is a shared string, make
958 a private copy; if we're a ref, stop refing; if we're a glob, downgrade to
959 an xpvmg. See also C<sv_force_normal_flags>.
960
961         void    sv_force_normal(SV *sv)
962
963 =for hackers
964 Found in file mathoms.c
965
966 =item sv_iv
967 X<sv_iv>
968
969 A private implementation of the C<SvIVx> macro for compilers which can't
970 cope with complex macro expressions. Always use the macro instead.
971
972         IV      sv_iv(SV* sv)
973
974 =for hackers
975 Found in file mathoms.c
976
977 =item sv_nolocking
978 X<sv_nolocking>
979
980 Dummy routine which "locks" an SV when there is no locking module present.
981 Exists to avoid test for a NULL function pointer and because it could
982 potentially warn under some level of strict-ness.
983
984 "Superseded" by sv_nosharing().
985
986         void    sv_nolocking(SV *sv)
987
988 =for hackers
989 Found in file mathoms.c
990
991 =item sv_nounlocking
992 X<sv_nounlocking>
993
994 Dummy routine which "unlocks" an SV when there is no locking module present.
995 Exists to avoid test for a NULL function pointer and because it could
996 potentially warn under some level of strict-ness.
997
998 "Superseded" by sv_nosharing().
999
1000         void    sv_nounlocking(SV *sv)
1001
1002 =for hackers
1003 Found in file mathoms.c
1004
1005 =item sv_nv
1006 X<sv_nv>
1007
1008 A private implementation of the C<SvNVx> macro for compilers which can't
1009 cope with complex macro expressions. Always use the macro instead.
1010
1011         NV      sv_nv(SV* sv)
1012
1013 =for hackers
1014 Found in file mathoms.c
1015
1016 =item sv_pv
1017 X<sv_pv>
1018
1019 Use the C<SvPV_nolen> macro instead
1020
1021         char*   sv_pv(SV *sv)
1022
1023 =for hackers
1024 Found in file mathoms.c
1025
1026 =item sv_pvbyte
1027 X<sv_pvbyte>
1028
1029 Use C<SvPVbyte_nolen> instead.
1030
1031         char*   sv_pvbyte(SV *sv)
1032
1033 =for hackers
1034 Found in file mathoms.c
1035
1036 =item sv_pvbyten
1037 X<sv_pvbyten>
1038
1039 A private implementation of the C<SvPVbyte> macro for compilers
1040 which can't cope with complex macro expressions. Always use the macro
1041 instead.
1042
1043         char*   sv_pvbyten(SV *sv, STRLEN *len)
1044
1045 =for hackers
1046 Found in file mathoms.c
1047
1048 =item sv_pvn
1049 X<sv_pvn>
1050
1051 A private implementation of the C<SvPV> macro for compilers which can't
1052 cope with complex macro expressions. Always use the macro instead.
1053
1054         char*   sv_pvn(SV *sv, STRLEN *len)
1055
1056 =for hackers
1057 Found in file mathoms.c
1058
1059 =item sv_pvutf8
1060 X<sv_pvutf8>
1061
1062 Use the C<SvPVutf8_nolen> macro instead
1063
1064         char*   sv_pvutf8(SV *sv)
1065
1066 =for hackers
1067 Found in file mathoms.c
1068
1069 =item sv_pvutf8n
1070 X<sv_pvutf8n>
1071
1072 A private implementation of the C<SvPVutf8> macro for compilers
1073 which can't cope with complex macro expressions. Always use the macro
1074 instead.
1075
1076         char*   sv_pvutf8n(SV *sv, STRLEN *len)
1077
1078 =for hackers
1079 Found in file mathoms.c
1080
1081 =item sv_taint
1082 X<sv_taint>
1083
1084 Taint an SV. Use C<SvTAINTED_on> instead.
1085         void    sv_taint(SV* sv)
1086
1087 =for hackers
1088 Found in file mathoms.c
1089
1090 =item sv_unref
1091 X<sv_unref>
1092
1093 Unsets the RV status of the SV, and decrements the reference count of
1094 whatever was being referenced by the RV.  This can almost be thought of
1095 as a reversal of C<newSVrv>.  This is C<sv_unref_flags> with the C<flag>
1096 being zero.  See C<SvROK_off>.
1097
1098         void    sv_unref(SV* sv)
1099
1100 =for hackers
1101 Found in file mathoms.c
1102
1103 =item sv_usepvn
1104 X<sv_usepvn>
1105
1106 Tells an SV to use C<ptr> to find its string value. Implemented by
1107 calling C<sv_usepvn_flags> with C<flags> of 0, hence does not handle 'set'
1108 magic. See C<sv_usepvn_flags>.
1109
1110         void    sv_usepvn(SV* sv, char* ptr, STRLEN len)
1111
1112 =for hackers
1113 Found in file mathoms.c
1114
1115 =item sv_usepvn_mg
1116 X<sv_usepvn_mg>
1117
1118 Like C<sv_usepvn>, but also handles 'set' magic.
1119
1120         void    sv_usepvn_mg(SV *sv, char *ptr, STRLEN len)
1121
1122 =for hackers
1123 Found in file mathoms.c
1124
1125 =item sv_uv
1126 X<sv_uv>
1127
1128 A private implementation of the C<SvUVx> macro for compilers which can't
1129 cope with complex macro expressions. Always use the macro instead.
1130
1131         UV      sv_uv(SV* sv)
1132
1133 =for hackers
1134 Found in file mathoms.c
1135
1136 =item unpack_str
1137 X<unpack_str>
1138
1139 The engine implementing unpack() Perl function. Note: parameters strbeg, new_s
1140 and ocnt are not used. This call should not be used, use unpackstring instead.
1141
1142         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)
1143
1144 =for hackers
1145 Found in file mathoms.c
1146
1147
1148 =back
1149
1150 =head1 Functions in file pp_pack.c
1151
1152
1153 =over 8
1154
1155 =item packlist
1156 X<packlist>
1157
1158 The engine implementing pack() Perl function.
1159
1160         void    packlist(SV *cat, const char *pat, const char *patend, SV **beglist, SV **endlist)
1161
1162 =for hackers
1163 Found in file pp_pack.c
1164
1165 =item unpackstring
1166 X<unpackstring>
1167
1168 The engine implementing unpack() Perl function. C<unpackstring> puts the
1169 extracted list items on the stack and returns the number of elements.
1170 Issue C<PUTBACK> before and C<SPAGAIN> after the call to this function.
1171
1172         I32     unpackstring(const char *pat, const char *patend, const char *s, const char *strend, U32 flags)
1173
1174 =for hackers
1175 Found in file pp_pack.c
1176
1177
1178 =back
1179
1180 =head1 Global Variables
1181
1182 =over 8
1183
1184 =item PL_modglobal
1185 X<PL_modglobal>
1186
1187 C<PL_modglobal> is a general purpose, interpreter global HV for use by
1188 extensions that need to keep information on a per-interpreter basis.
1189 In a pinch, it can also be used as a symbol table for extensions
1190 to share data among each other.  It is a good idea to use keys
1191 prefixed by the package name of the extension that owns the data.
1192
1193         HV*     PL_modglobal
1194
1195 =for hackers
1196 Found in file intrpvar.h
1197
1198 =item PL_na
1199 X<PL_na>
1200
1201 A convenience variable which is typically used with C<SvPV> when one
1202 doesn't care about the length of the string.  It is usually more efficient
1203 to either declare a local variable and use that instead or to use the
1204 C<SvPV_nolen> macro.
1205
1206         STRLEN  PL_na
1207
1208 =for hackers
1209 Found in file thrdvar.h
1210
1211 =item PL_sv_no
1212 X<PL_sv_no>
1213
1214 This is the C<false> SV.  See C<PL_sv_yes>.  Always refer to this as
1215 C<&PL_sv_no>.
1216
1217         SV      PL_sv_no
1218
1219 =for hackers
1220 Found in file intrpvar.h
1221
1222 =item PL_sv_undef
1223 X<PL_sv_undef>
1224
1225 This is the C<undef> SV.  Always refer to this as C<&PL_sv_undef>.
1226
1227         SV      PL_sv_undef
1228
1229 =for hackers
1230 Found in file intrpvar.h
1231
1232 =item PL_sv_yes
1233 X<PL_sv_yes>
1234
1235 This is the C<true> SV.  See C<PL_sv_no>.  Always refer to this as
1236 C<&PL_sv_yes>.
1237
1238         SV      PL_sv_yes
1239
1240 =for hackers
1241 Found in file intrpvar.h
1242
1243
1244 =back
1245
1246 =head1 GV Functions
1247
1248 =over 8
1249
1250 =item GvSV
1251 X<GvSV>
1252
1253 Return the SV from the GV.
1254
1255         SV*     GvSV(GV* gv)
1256
1257 =for hackers
1258 Found in file gv.h
1259
1260 =item gv_const_sv
1261 X<gv_const_sv>
1262
1263 If C<gv> is a typeglob whose subroutine entry is a constant sub eligible for
1264 inlining, or C<gv> is a placeholder reference that would be promoted to such
1265 a typeglob, then returns the value returned by the sub.  Otherwise, returns
1266 NULL.
1267
1268         SV*     gv_const_sv(GV* gv)
1269
1270 =for hackers
1271 Found in file gv.c
1272
1273 =item gv_fetchmeth
1274 X<gv_fetchmeth>
1275
1276 Returns the glob with the given C<name> and a defined subroutine or
1277 C<NULL>.  The glob lives in the given C<stash>, or in the stashes
1278 accessible via @ISA and UNIVERSAL::.
1279
1280 The argument C<level> should be either 0 or -1.  If C<level==0>, as a
1281 side-effect creates a glob with the given C<name> in the given C<stash>
1282 which in the case of success contains an alias for the subroutine, and sets
1283 up caching info for this glob.  Similarly for all the searched stashes.
1284
1285 This function grants C<"SUPER"> token as a postfix of the stash name. The
1286 GV returned from C<gv_fetchmeth> may be a method cache entry, which is not
1287 visible to Perl code.  So when calling C<call_sv>, you should not use
1288 the GV directly; instead, you should use the method's CV, which can be
1289 obtained from the GV with the C<GvCV> macro.
1290
1291         GV*     gv_fetchmeth(HV* stash, const char* name, STRLEN len, I32 level)
1292
1293 =for hackers
1294 Found in file gv.c
1295
1296 =item gv_fetchmethod_autoload
1297 X<gv_fetchmethod_autoload>
1298
1299 Returns the glob which contains the subroutine to call to invoke the method
1300 on the C<stash>.  In fact in the presence of autoloading this may be the
1301 glob for "AUTOLOAD".  In this case the corresponding variable $AUTOLOAD is
1302 already setup.
1303
1304 The third parameter of C<gv_fetchmethod_autoload> determines whether
1305 AUTOLOAD lookup is performed if the given method is not present: non-zero
1306 means yes, look for AUTOLOAD; zero means no, don't look for AUTOLOAD.
1307 Calling C<gv_fetchmethod> is equivalent to calling C<gv_fetchmethod_autoload>
1308 with a non-zero C<autoload> parameter.
1309
1310 These functions grant C<"SUPER"> token as a prefix of the method name. Note
1311 that if you want to keep the returned glob for a long time, you need to
1312 check for it being "AUTOLOAD", since at the later time the call may load a
1313 different subroutine due to $AUTOLOAD changing its value. Use the glob
1314 created via a side effect to do this.
1315
1316 These functions have the same side-effects and as C<gv_fetchmeth> with
1317 C<level==0>.  C<name> should be writable if contains C<':'> or C<'
1318 ''>. The warning against passing the GV returned by C<gv_fetchmeth> to
1319 C<call_sv> apply equally to these functions.
1320
1321         GV*     gv_fetchmethod_autoload(HV* stash, const char* name, I32 autoload)
1322
1323 =for hackers
1324 Found in file gv.c
1325
1326 =item gv_fetchmeth_autoload
1327 X<gv_fetchmeth_autoload>
1328
1329 Same as gv_fetchmeth(), but looks for autoloaded subroutines too.
1330 Returns a glob for the subroutine.
1331
1332 For an autoloaded subroutine without a GV, will create a GV even
1333 if C<level < 0>.  For an autoloaded subroutine without a stub, GvCV()
1334 of the result may be zero.
1335
1336         GV*     gv_fetchmeth_autoload(HV* stash, const char* name, STRLEN len, I32 level)
1337
1338 =for hackers
1339 Found in file gv.c
1340
1341 =item gv_stashpv
1342 X<gv_stashpv>
1343
1344 Returns a pointer to the stash for a specified package.  C<name> should
1345 be a valid UTF-8 string and must be null-terminated.  If C<create> is set
1346 then the package will be created if it does not already exist.  If C<create>
1347 is not set and the package does not exist then NULL is returned.
1348
1349         HV*     gv_stashpv(const char* name, I32 create)
1350
1351 =for hackers
1352 Found in file gv.c
1353
1354 =item gv_stashpvn
1355 X<gv_stashpvn>
1356
1357 Returns a pointer to the stash for a specified package.  C<name> should
1358 be a valid UTF-8 string.  The C<namelen> parameter indicates the length of
1359 the C<name>, in bytes.  If C<create> is set then the package will be
1360 created if it does not already exist.  If C<create> is not set and the
1361 package does not exist then NULL is returned.
1362
1363         HV*     gv_stashpvn(const char* name, U32 namelen, I32 create)
1364
1365 =for hackers
1366 Found in file gv.c
1367
1368 =item gv_stashpvs
1369 X<gv_stashpvs>
1370
1371 Like C<gv_stashpvn>, but takes a literal string instead of a string/length pair.
1372
1373         HV*     gv_stashpvs(const char* name, I32 create)
1374
1375 =for hackers
1376 Found in file handy.h
1377
1378 =item gv_stashsv
1379 X<gv_stashsv>
1380
1381 Returns a pointer to the stash for a specified package, which must be a
1382 valid UTF-8 string.  See C<gv_stashpv>.
1383
1384         HV*     gv_stashsv(SV* sv, I32 create)
1385
1386 =for hackers
1387 Found in file gv.c
1388
1389
1390 =back
1391
1392 =head1 Handy Values
1393
1394 =over 8
1395
1396 =item Nullav
1397 X<Nullav>
1398
1399 Null AV pointer.
1400
1401 =for hackers
1402 Found in file av.h
1403
1404 =item Nullch
1405 X<Nullch>
1406
1407 Null character pointer.
1408
1409 =for hackers
1410 Found in file handy.h
1411
1412 =item Nullcv
1413 X<Nullcv>
1414
1415 Null CV pointer.
1416
1417 =for hackers
1418 Found in file cv.h
1419
1420 =item Nullhv
1421 X<Nullhv>
1422
1423 Null HV pointer.
1424
1425 =for hackers
1426 Found in file hv.h
1427
1428 =item Nullsv
1429 X<Nullsv>
1430
1431 Null SV pointer.
1432
1433 =for hackers
1434 Found in file handy.h
1435
1436
1437 =back
1438
1439 =head1 Hash Manipulation Functions
1440
1441 =over 8
1442
1443 =item get_hv
1444 X<get_hv>
1445
1446 Returns the HV of the specified Perl hash.  If C<create> is set and the
1447 Perl variable does not exist then it will be created.  If C<create> is not
1448 set and the variable does not exist then NULL is returned.
1449
1450 NOTE: the perl_ form of this function is deprecated.
1451
1452         HV*     get_hv(const char* name, I32 create)
1453
1454 =for hackers
1455 Found in file perl.c
1456
1457 =item HEf_SVKEY
1458 X<HEf_SVKEY>
1459
1460 This flag, used in the length slot of hash entries and magic structures,
1461 specifies the structure contains an C<SV*> pointer where a C<char*> pointer
1462 is to be expected. (For information only--not to be used).
1463
1464 =for hackers
1465 Found in file hv.h
1466
1467 =item HeHASH
1468 X<HeHASH>
1469
1470 Returns the computed hash stored in the hash entry.
1471
1472         U32     HeHASH(HE* he)
1473
1474 =for hackers
1475 Found in file hv.h
1476
1477 =item HeKEY
1478 X<HeKEY>
1479
1480 Returns the actual pointer stored in the key slot of the hash entry. The
1481 pointer may be either C<char*> or C<SV*>, depending on the value of
1482 C<HeKLEN()>.  Can be assigned to.  The C<HePV()> or C<HeSVKEY()> macros are
1483 usually preferable for finding the value of a key.
1484
1485         void*   HeKEY(HE* he)
1486
1487 =for hackers
1488 Found in file hv.h
1489
1490 =item HeKLEN
1491 X<HeKLEN>
1492
1493 If this is negative, and amounts to C<HEf_SVKEY>, it indicates the entry
1494 holds an C<SV*> key.  Otherwise, holds the actual length of the key.  Can
1495 be assigned to. The C<HePV()> macro is usually preferable for finding key
1496 lengths.
1497
1498         STRLEN  HeKLEN(HE* he)
1499
1500 =for hackers
1501 Found in file hv.h
1502
1503 =item HePV
1504 X<HePV>
1505
1506 Returns the key slot of the hash entry as a C<char*> value, doing any
1507 necessary dereferencing of possibly C<SV*> keys.  The length of the string
1508 is placed in C<len> (this is a macro, so do I<not> use C<&len>).  If you do
1509 not care about what the length of the key is, you may use the global
1510 variable C<PL_na>, though this is rather less efficient than using a local
1511 variable.  Remember though, that hash keys in perl are free to contain
1512 embedded nulls, so using C<strlen()> or similar is not a good way to find
1513 the length of hash keys. This is very similar to the C<SvPV()> macro
1514 described elsewhere in this document.
1515
1516         char*   HePV(HE* he, STRLEN len)
1517
1518 =for hackers
1519 Found in file hv.h
1520
1521 =item HeSVKEY
1522 X<HeSVKEY>
1523
1524 Returns the key as an C<SV*>, or C<NULL> if the hash entry does not
1525 contain an C<SV*> key.
1526
1527         SV*     HeSVKEY(HE* he)
1528
1529 =for hackers
1530 Found in file hv.h
1531
1532 =item HeSVKEY_force
1533 X<HeSVKEY_force>
1534
1535 Returns the key as an C<SV*>.  Will create and return a temporary mortal
1536 C<SV*> if the hash entry contains only a C<char*> key.
1537
1538         SV*     HeSVKEY_force(HE* he)
1539
1540 =for hackers
1541 Found in file hv.h
1542
1543 =item HeSVKEY_set
1544 X<HeSVKEY_set>
1545
1546 Sets the key to a given C<SV*>, taking care to set the appropriate flags to
1547 indicate the presence of an C<SV*> key, and returns the same
1548 C<SV*>.
1549
1550         SV*     HeSVKEY_set(HE* he, SV* sv)
1551
1552 =for hackers
1553 Found in file hv.h
1554
1555 =item HeVAL
1556 X<HeVAL>
1557
1558 Returns the value slot (type C<SV*>) stored in the hash entry.
1559
1560         SV*     HeVAL(HE* he)
1561
1562 =for hackers
1563 Found in file hv.h
1564
1565 =item HvNAME
1566 X<HvNAME>
1567
1568 Returns the package name of a stash, or NULL if C<stash> isn't a stash.
1569 See C<SvSTASH>, C<CvSTASH>.
1570
1571         char*   HvNAME(HV* stash)
1572
1573 =for hackers
1574 Found in file hv.h
1575
1576 =item hv_assert
1577 X<hv_assert>
1578
1579 Check that a hash is in an internally consistent state.
1580
1581         void    hv_assert(HV* tb)
1582
1583 =for hackers
1584 Found in file hv.c
1585
1586 =item hv_clear
1587 X<hv_clear>
1588
1589 Clears a hash, making it empty.
1590
1591         void    hv_clear(HV* tb)
1592
1593 =for hackers
1594 Found in file hv.c
1595
1596 =item hv_clear_placeholders
1597 X<hv_clear_placeholders>
1598
1599 Clears any placeholders from a hash.  If a restricted hash has any of its keys
1600 marked as readonly and the key is subsequently deleted, the key is not actually
1601 deleted but is marked by assigning it a value of &PL_sv_placeholder.  This tags
1602 it so it will be ignored by future operations such as iterating over the hash,
1603 but will still allow the hash to have a value reassigned to the key at some
1604 future point.  This function clears any such placeholder keys from the hash.
1605 See Hash::Util::lock_keys() for an example of its use.
1606
1607         void    hv_clear_placeholders(HV* hb)
1608
1609 =for hackers
1610 Found in file hv.c
1611
1612 =item hv_delete
1613 X<hv_delete>
1614
1615 Deletes a key/value pair in the hash.  The value SV is removed from the
1616 hash and returned to the caller.  The C<klen> is the length of the key.
1617 The C<flags> value will normally be zero; if set to G_DISCARD then NULL
1618 will be returned.
1619
1620         SV*     hv_delete(HV* tb, const char* key, I32 klen, I32 flags)
1621
1622 =for hackers
1623 Found in file hv.c
1624
1625 =item hv_delete_ent
1626 X<hv_delete_ent>
1627
1628 Deletes a key/value pair in the hash.  The value SV is removed from the
1629 hash and returned to the caller.  The C<flags> value will normally be zero;
1630 if set to G_DISCARD then NULL will be returned.  C<hash> can be a valid
1631 precomputed hash value, or 0 to ask for it to be computed.
1632
1633         SV*     hv_delete_ent(HV* tb, SV* key, I32 flags, U32 hash)
1634
1635 =for hackers
1636 Found in file hv.c
1637
1638 =item hv_exists
1639 X<hv_exists>
1640
1641 Returns a boolean indicating whether the specified hash key exists.  The
1642 C<klen> is the length of the key.
1643
1644         bool    hv_exists(HV* tb, const char* key, I32 klen)
1645
1646 =for hackers
1647 Found in file hv.c
1648
1649 =item hv_exists_ent
1650 X<hv_exists_ent>
1651
1652 Returns a boolean indicating whether the specified hash key exists. C<hash>
1653 can be a valid precomputed hash value, or 0 to ask for it to be
1654 computed.
1655
1656         bool    hv_exists_ent(HV* tb, SV* key, U32 hash)
1657
1658 =for hackers
1659 Found in file hv.c
1660
1661 =item hv_fetch
1662 X<hv_fetch>
1663
1664 Returns the SV which corresponds to the specified key in the hash.  The
1665 C<klen> is the length of the key.  If C<lval> is set then the fetch will be
1666 part of a store.  Check that the return value is non-null before
1667 dereferencing it to an C<SV*>.
1668
1669 See L<perlguts/"Understanding the Magic of Tied Hashes and Arrays"> for more
1670 information on how to use this function on tied hashes.
1671
1672         SV**    hv_fetch(HV* tb, const char* key, I32 klen, I32 lval)
1673
1674 =for hackers
1675 Found in file hv.c
1676
1677 =item hv_fetchs
1678 X<hv_fetchs>
1679
1680 Like C<hv_fetch>, but takes a literal string instead of a string/length pair.
1681
1682         SV**    hv_fetchs(HV* tb, const char* key, I32 lval)
1683
1684 =for hackers
1685 Found in file handy.h
1686
1687 =item hv_fetch_ent
1688 X<hv_fetch_ent>
1689
1690 Returns the hash entry which corresponds to the specified key in the hash.
1691 C<hash> must be a valid precomputed hash number for the given C<key>, or 0
1692 if you want the function to compute it.  IF C<lval> is set then the fetch
1693 will be part of a store.  Make sure the return value is non-null before
1694 accessing it.  The return value when C<tb> is a tied hash is a pointer to a
1695 static location, so be sure to make a copy of the structure if you need to
1696 store it somewhere.
1697
1698 See L<perlguts/"Understanding the Magic of Tied Hashes and Arrays"> for more
1699 information on how to use this function on tied hashes.
1700
1701         HE*     hv_fetch_ent(HV* tb, SV* key, I32 lval, U32 hash)
1702
1703 =for hackers
1704 Found in file hv.c
1705
1706 =item hv_iterinit
1707 X<hv_iterinit>
1708
1709 Prepares a starting point to traverse a hash table.  Returns the number of
1710 keys in the hash (i.e. the same as C<HvKEYS(tb)>).  The return value is
1711 currently only meaningful for hashes without tie magic.
1712
1713 NOTE: Before version 5.004_65, C<hv_iterinit> used to return the number of
1714 hash buckets that happen to be in use.  If you still need that esoteric
1715 value, you can get it through the macro C<HvFILL(tb)>.
1716
1717
1718         I32     hv_iterinit(HV* tb)
1719
1720 =for hackers
1721 Found in file hv.c
1722
1723 =item hv_iterkey
1724 X<hv_iterkey>
1725
1726 Returns the key from the current position of the hash iterator.  See
1727 C<hv_iterinit>.
1728
1729         char*   hv_iterkey(HE* entry, I32* retlen)
1730
1731 =for hackers
1732 Found in file hv.c
1733
1734 =item hv_iterkeysv
1735 X<hv_iterkeysv>
1736
1737 Returns the key as an C<SV*> from the current position of the hash
1738 iterator.  The return value will always be a mortal copy of the key.  Also
1739 see C<hv_iterinit>.
1740
1741         SV*     hv_iterkeysv(HE* entry)
1742
1743 =for hackers
1744 Found in file hv.c
1745
1746 =item hv_iternext
1747 X<hv_iternext>
1748
1749 Returns entries from a hash iterator.  See C<hv_iterinit>.
1750
1751 You may call C<hv_delete> or C<hv_delete_ent> on the hash entry that the
1752 iterator currently points to, without losing your place or invalidating your
1753 iterator.  Note that in this case the current entry is deleted from the hash
1754 with your iterator holding the last reference to it.  Your iterator is flagged
1755 to free the entry on the next call to C<hv_iternext>, so you must not discard
1756 your iterator immediately else the entry will leak - call C<hv_iternext> to
1757 trigger the resource deallocation.
1758
1759         HE*     hv_iternext(HV* tb)
1760
1761 =for hackers
1762 Found in file hv.c
1763
1764 =item hv_iternextsv
1765 X<hv_iternextsv>
1766
1767 Performs an C<hv_iternext>, C<hv_iterkey>, and C<hv_iterval> in one
1768 operation.
1769
1770         SV*     hv_iternextsv(HV* hv, char** key, I32* retlen)
1771
1772 =for hackers
1773 Found in file hv.c
1774
1775 =item hv_iternext_flags
1776 X<hv_iternext_flags>
1777
1778 Returns entries from a hash iterator.  See C<hv_iterinit> and C<hv_iternext>.
1779 The C<flags> value will normally be zero; if HV_ITERNEXT_WANTPLACEHOLDERS is
1780 set the placeholders keys (for restricted hashes) will be returned in addition
1781 to normal keys. By default placeholders are automatically skipped over.
1782 Currently a placeholder is implemented with a value that is
1783 C<&Perl_sv_placeholder>. Note that the implementation of placeholders and
1784 restricted hashes may change, and the implementation currently is
1785 insufficiently abstracted for any change to be tidy.
1786
1787 NOTE: this function is experimental and may change or be
1788 removed without notice.
1789
1790         HE*     hv_iternext_flags(HV* tb, I32 flags)
1791
1792 =for hackers
1793 Found in file hv.c
1794
1795 =item hv_iterval
1796 X<hv_iterval>
1797
1798 Returns the value from the current position of the hash iterator.  See
1799 C<hv_iterkey>.
1800
1801         SV*     hv_iterval(HV* tb, HE* entry)
1802
1803 =for hackers
1804 Found in file hv.c
1805
1806 =item hv_magic
1807 X<hv_magic>
1808
1809 Adds magic to a hash.  See C<sv_magic>.
1810
1811         void    hv_magic(HV* hv, GV* gv, int how)
1812
1813 =for hackers
1814 Found in file hv.c
1815
1816 =item hv_scalar
1817 X<hv_scalar>
1818
1819 Evaluates the hash in scalar context and returns the result. Handles magic when the hash is tied.
1820
1821         SV*     hv_scalar(HV* hv)
1822
1823 =for hackers
1824 Found in file hv.c
1825
1826 =item hv_store
1827 X<hv_store>
1828
1829 Stores an SV in a hash.  The hash key is specified as C<key> and C<klen> is
1830 the length of the key.  The C<hash> parameter is the precomputed hash
1831 value; if it is zero then Perl will compute it.  The return value will be
1832 NULL if the operation failed or if the value did not need to be actually
1833 stored within the hash (as in the case of tied hashes).  Otherwise it can
1834 be dereferenced to get the original C<SV*>.  Note that the caller is
1835 responsible for suitably incrementing the reference count of C<val> before
1836 the call, and decrementing it if the function returned NULL.  Effectively
1837 a successful hv_store takes ownership of one reference to C<val>.  This is
1838 usually what you want; a newly created SV has a reference count of one, so
1839 if all your code does is create SVs then store them in a hash, hv_store
1840 will own the only reference to the new SV, and your code doesn't need to do
1841 anything further to tidy up.  hv_store is not implemented as a call to
1842 hv_store_ent, and does not create a temporary SV for the key, so if your
1843 key data is not already in SV form then use hv_store in preference to
1844 hv_store_ent.
1845
1846 See L<perlguts/"Understanding the Magic of Tied Hashes and Arrays"> for more
1847 information on how to use this function on tied hashes.
1848
1849         SV**    hv_store(HV* tb, const char* key, I32 klen, SV* val, U32 hash)
1850
1851 =for hackers
1852 Found in file hv.c
1853
1854 =item hv_stores
1855 X<hv_stores>
1856
1857 Like C<hv_store>, but takes a literal string instead of a string/length pair
1858 and omits the hash parameter.
1859
1860         SV**    hv_stores(HV* tb, const char* key, NULLOK SV* val)
1861
1862 =for hackers
1863 Found in file handy.h
1864
1865 =item hv_store_ent
1866 X<hv_store_ent>
1867
1868 Stores C<val> in a hash.  The hash key is specified as C<key>.  The C<hash>
1869 parameter is the precomputed hash value; if it is zero then Perl will
1870 compute it.  The return value is the new hash entry so created.  It will be
1871 NULL if the operation failed or if the value did not need to be actually
1872 stored within the hash (as in the case of tied hashes).  Otherwise the
1873 contents of the return value can be accessed using the C<He?> macros
1874 described here.  Note that the caller is responsible for suitably
1875 incrementing the reference count of C<val> before the call, and
1876 decrementing it if the function returned NULL.  Effectively a successful
1877 hv_store_ent takes ownership of one reference to C<val>.  This is
1878 usually what you want; a newly created SV has a reference count of one, so
1879 if all your code does is create SVs then store them in a hash, hv_store
1880 will own the only reference to the new SV, and your code doesn't need to do
1881 anything further to tidy up.  Note that hv_store_ent only reads the C<key>;
1882 unlike C<val> it does not take ownership of it, so maintaining the correct
1883 reference count on C<key> is entirely the caller's responsibility.  hv_store
1884 is not implemented as a call to hv_store_ent, and does not create a temporary
1885 SV for the key, so if your key data is not already in SV form then use
1886 hv_store in preference to hv_store_ent.
1887
1888 See L<perlguts/"Understanding the Magic of Tied Hashes and Arrays"> for more
1889 information on how to use this function on tied hashes.
1890
1891         HE*     hv_store_ent(HV* tb, SV* key, SV* val, U32 hash)
1892
1893 =for hackers
1894 Found in file hv.c
1895
1896 =item hv_undef
1897 X<hv_undef>
1898
1899 Undefines the hash.
1900
1901         void    hv_undef(HV* tb)
1902
1903 =for hackers
1904 Found in file hv.c
1905
1906 =item newHV
1907 X<newHV>
1908
1909 Creates a new HV.  The reference count is set to 1.
1910
1911         HV*     newHV()
1912
1913 =for hackers
1914 Found in file hv.c
1915
1916
1917 =back
1918
1919 =head1 Magical Functions
1920
1921 =over 8
1922
1923 =item mg_clear
1924 X<mg_clear>
1925
1926 Clear something magical that the SV represents.  See C<sv_magic>.
1927
1928         int     mg_clear(SV* sv)
1929
1930 =for hackers
1931 Found in file mg.c
1932
1933 =item mg_copy
1934 X<mg_copy>
1935
1936 Copies the magic from one SV to another.  See C<sv_magic>.
1937
1938         int     mg_copy(SV* sv, SV* nsv, const char* key, I32 klen)
1939
1940 =for hackers
1941 Found in file mg.c
1942
1943 =item mg_find
1944 X<mg_find>
1945
1946 Finds the magic pointer for type matching the SV.  See C<sv_magic>.
1947
1948         MAGIC*  mg_find(const SV* sv, int type)
1949
1950 =for hackers
1951 Found in file mg.c
1952
1953 =item mg_free
1954 X<mg_free>
1955
1956 Free any magic storage used by the SV.  See C<sv_magic>.
1957
1958         int     mg_free(SV* sv)
1959
1960 =for hackers
1961 Found in file mg.c
1962
1963 =item mg_get
1964 X<mg_get>
1965
1966 Do magic after a value is retrieved from the SV.  See C<sv_magic>.
1967
1968         int     mg_get(SV* sv)
1969
1970 =for hackers
1971 Found in file mg.c
1972
1973 =item mg_length
1974 X<mg_length>
1975
1976 Report on the SV's length.  See C<sv_magic>.
1977
1978         U32     mg_length(SV* sv)
1979
1980 =for hackers
1981 Found in file mg.c
1982
1983 =item mg_magical
1984 X<mg_magical>
1985
1986 Turns on the magical status of an SV.  See C<sv_magic>.
1987
1988         void    mg_magical(SV* sv)
1989
1990 =for hackers
1991 Found in file mg.c
1992
1993 =item mg_set
1994 X<mg_set>
1995
1996 Do magic after a value is assigned to the SV.  See C<sv_magic>.
1997
1998         int     mg_set(SV* sv)
1999
2000 =for hackers
2001 Found in file mg.c
2002
2003 =item SvGETMAGIC
2004 X<SvGETMAGIC>
2005
2006 Invokes C<mg_get> on an SV if it has 'get' magic.  This macro evaluates its
2007 argument more than once.
2008
2009         void    SvGETMAGIC(SV* sv)
2010
2011 =for hackers
2012 Found in file sv.h
2013
2014 =item SvLOCK
2015 X<SvLOCK>
2016
2017 Arranges for a mutual exclusion lock to be obtained on sv if a suitable module
2018 has been loaded.
2019
2020         void    SvLOCK(SV* sv)
2021
2022 =for hackers
2023 Found in file sv.h
2024
2025 =item SvSETMAGIC
2026 X<SvSETMAGIC>
2027
2028 Invokes C<mg_set> on an SV if it has 'set' magic.  This macro evaluates its
2029 argument more than once.
2030
2031         void    SvSETMAGIC(SV* sv)
2032
2033 =for hackers
2034 Found in file sv.h
2035
2036 =item SvSetMagicSV
2037 X<SvSetMagicSV>
2038
2039 Like C<SvSetSV>, but does any set magic required afterwards.
2040
2041         void    SvSetMagicSV(SV* dsb, SV* ssv)
2042
2043 =for hackers
2044 Found in file sv.h
2045
2046 =item SvSetMagicSV_nosteal
2047 X<SvSetMagicSV_nosteal>
2048
2049 Like C<SvSetSV_nosteal>, but does any set magic required afterwards.
2050
2051         void    SvSetMagicSV_nosteal(SV* dsv, SV* ssv)
2052
2053 =for hackers
2054 Found in file sv.h
2055
2056 =item SvSetSV
2057 X<SvSetSV>
2058
2059 Calls C<sv_setsv> if dsv is not the same as ssv.  May evaluate arguments
2060 more than once.
2061
2062         void    SvSetSV(SV* dsb, SV* ssv)
2063
2064 =for hackers
2065 Found in file sv.h
2066
2067 =item SvSetSV_nosteal
2068 X<SvSetSV_nosteal>
2069
2070 Calls a non-destructive version of C<sv_setsv> if dsv is not the same as
2071 ssv. May evaluate arguments more than once.
2072
2073         void    SvSetSV_nosteal(SV* dsv, SV* ssv)
2074
2075 =for hackers
2076 Found in file sv.h
2077
2078 =item SvSHARE
2079 X<SvSHARE>
2080
2081 Arranges for sv to be shared between threads if a suitable module
2082 has been loaded.
2083
2084         void    SvSHARE(SV* sv)
2085
2086 =for hackers
2087 Found in file sv.h
2088
2089 =item SvUNLOCK
2090 X<SvUNLOCK>
2091
2092 Releases a mutual exclusion lock on sv if a suitable module
2093 has been loaded.
2094
2095         void    SvUNLOCK(SV* sv)
2096
2097 =for hackers
2098 Found in file sv.h
2099
2100
2101 =back
2102
2103 =head1 Memory Management
2104
2105 =over 8
2106
2107 =item Copy
2108 X<Copy>
2109
2110 The XSUB-writer's interface to the C C<memcpy> function.  The C<src> is the
2111 source, C<dest> is the destination, C<nitems> is the number of items, and C<type> is
2112 the type.  May fail on overlapping copies.  See also C<Move>.
2113
2114         void    Copy(void* src, void* dest, int nitems, type)
2115
2116 =for hackers
2117 Found in file handy.h
2118
2119 =item CopyD
2120 X<CopyD>
2121
2122 Like C<Copy> but returns dest. Useful for encouraging compilers to tail-call
2123 optimise.
2124
2125         void *  CopyD(void* src, void* dest, int nitems, type)
2126
2127 =for hackers
2128 Found in file handy.h
2129
2130 =item Move
2131 X<Move>
2132
2133 The XSUB-writer's interface to the C C<memmove> function.  The C<src> is the
2134 source, C<dest> is the destination, C<nitems> is the number of items, and C<type> is
2135 the type.  Can do overlapping moves.  See also C<Copy>.
2136
2137         void    Move(void* src, void* dest, int nitems, type)
2138
2139 =for hackers
2140 Found in file handy.h
2141
2142 =item MoveD
2143 X<MoveD>
2144
2145 Like C<Move> but returns dest. Useful for encouraging compilers to tail-call
2146 optimise.
2147
2148         void *  MoveD(void* src, void* dest, int nitems, type)
2149
2150 =for hackers
2151 Found in file handy.h
2152
2153 =item Newx
2154 X<Newx>
2155
2156 The XSUB-writer's interface to the C C<malloc> function.
2157
2158 In 5.9.3, Newx() and friends replace the older New() API, and drops
2159 the first parameter, I<x>, a debug aid which allowed callers to identify
2160 themselves.  This aid has been superseded by a new build option,
2161 PERL_MEM_LOG (see L<perlhack/PERL_MEM_LOG>).  The older API is still
2162 there for use in XS modules supporting older perls.
2163
2164         void    Newx(void* ptr, int nitems, type)
2165
2166 =for hackers
2167 Found in file handy.h
2168
2169 =item Newxc
2170 X<Newxc>
2171
2172 The XSUB-writer's interface to the C C<malloc> function, with
2173 cast.  See also C<Newx>.
2174
2175         void    Newxc(void* ptr, int nitems, type, cast)
2176
2177 =for hackers
2178 Found in file handy.h
2179
2180 =item Newxz
2181 X<Newxz>
2182
2183 The XSUB-writer's interface to the C C<malloc> function.  The allocated
2184 memory is zeroed with C<memzero>.  See also C<Newx>.
2185
2186         void    Newxz(void* ptr, int nitems, type)
2187
2188 =for hackers
2189 Found in file handy.h
2190
2191 =item Poison
2192 X<Poison>
2193
2194 PoisonWith(0xEF) for catching access to freed memory.
2195
2196         void    Poison(void* dest, int nitems, type)
2197
2198 =for hackers
2199 Found in file handy.h
2200
2201 =item PoisonFree
2202 X<PoisonFree>
2203
2204 PoisonWith(0xEF) for catching access to freed memory.
2205
2206         void    PoisonFree(void* dest, int nitems, type)
2207
2208 =for hackers
2209 Found in file handy.h
2210
2211 =item PoisonNew
2212 X<PoisonNew>
2213
2214 PoisonWith(0xAB) for catching access to allocated but uninitialized memory.
2215
2216         void    PoisonNew(void* dest, int nitems, type)
2217
2218 =for hackers
2219 Found in file handy.h
2220
2221 =item PoisonWith
2222 X<PoisonWith>
2223
2224 Fill up memory with a byte pattern (a byte repeated over and over
2225 again) that hopefully catches attempts to access uninitialized memory.
2226
2227         void    PoisonWith(void* dest, int nitems, type, U8 byte)
2228
2229 =for hackers
2230 Found in file handy.h
2231
2232 =item Renew
2233 X<Renew>
2234
2235 The XSUB-writer's interface to the C C<realloc> function.
2236
2237         void    Renew(void* ptr, int nitems, type)
2238
2239 =for hackers
2240 Found in file handy.h
2241
2242 =item Renewc
2243 X<Renewc>
2244
2245 The XSUB-writer's interface to the C C<realloc> function, with
2246 cast.
2247
2248         void    Renewc(void* ptr, int nitems, type, cast)
2249
2250 =for hackers
2251 Found in file handy.h
2252
2253 =item Safefree
2254 X<Safefree>
2255
2256 The XSUB-writer's interface to the C C<free> function.
2257
2258         void    Safefree(void* ptr)
2259
2260 =for hackers
2261 Found in file handy.h
2262
2263 =item savepv
2264 X<savepv>
2265
2266 Perl's version of C<strdup()>. Returns a pointer to a newly allocated
2267 string which is a duplicate of C<pv>. The size of the string is
2268 determined by C<strlen()>. The memory allocated for the new string can
2269 be freed with the C<Safefree()> function.
2270
2271         char*   savepv(const char* pv)
2272
2273 =for hackers
2274 Found in file util.c
2275
2276 =item savepvn
2277 X<savepvn>
2278
2279 Perl's version of what C<strndup()> would be if it existed. Returns a
2280 pointer to a newly allocated string which is a duplicate of the first
2281 C<len> bytes from C<pv>, plus a trailing NUL byte. The memory allocated for
2282 the new string can be freed with the C<Safefree()> function.
2283
2284         char*   savepvn(const char* pv, I32 len)
2285
2286 =for hackers
2287 Found in file util.c
2288
2289 =item savepvs
2290 X<savepvs>
2291
2292 Like C<savepvn>, but takes a literal string instead of a string/length pair.
2293
2294         char*   savepvs(const char* s)
2295
2296 =for hackers
2297 Found in file handy.h
2298
2299 =item savesharedpv
2300 X<savesharedpv>
2301
2302 A version of C<savepv()> which allocates the duplicate string in memory
2303 which is shared between threads.
2304
2305         char*   savesharedpv(const char* pv)
2306
2307 =for hackers
2308 Found in file util.c
2309
2310 =item savesvpv
2311 X<savesvpv>
2312
2313 A version of C<savepv()>/C<savepvn()> which gets the string to duplicate from
2314 the passed in SV using C<SvPV()>
2315
2316         char*   savesvpv(SV* sv)
2317
2318 =for hackers
2319 Found in file util.c
2320
2321 =item StructCopy
2322 X<StructCopy>
2323
2324 This is an architecture-independent macro to copy one structure to another.
2325
2326         void    StructCopy(type src, type dest, type)
2327
2328 =for hackers
2329 Found in file handy.h
2330
2331 =item Zero
2332 X<Zero>
2333
2334 The XSUB-writer's interface to the C C<memzero> function.  The C<dest> is the
2335 destination, C<nitems> is the number of items, and C<type> is the type.
2336
2337         void    Zero(void* dest, int nitems, type)
2338
2339 =for hackers
2340 Found in file handy.h
2341
2342 =item ZeroD
2343 X<ZeroD>
2344
2345 Like C<Zero> but returns dest. Useful for encouraging compilers to tail-call
2346 optimise.
2347
2348         void *  ZeroD(void* dest, int nitems, type)
2349
2350 =for hackers
2351 Found in file handy.h
2352
2353
2354 =back
2355
2356 =head1 Miscellaneous Functions
2357
2358 =over 8
2359
2360 =item fbm_compile
2361 X<fbm_compile>
2362
2363 Analyses the string in order to make fast searches on it using fbm_instr()
2364 -- the Boyer-Moore algorithm.
2365
2366         void    fbm_compile(SV* sv, U32 flags)
2367
2368 =for hackers
2369 Found in file util.c
2370
2371 =item fbm_instr
2372 X<fbm_instr>
2373
2374 Returns the location of the SV in the string delimited by C<str> and
2375 C<strend>.  It returns C<NULL> if the string can't be found.  The C<sv>
2376 does not have to be fbm_compiled, but the search will not be as fast
2377 then.
2378
2379         char*   fbm_instr(unsigned char* big, unsigned char* bigend, SV* littlesv, U32 flags)
2380
2381 =for hackers
2382 Found in file util.c
2383
2384 =item form
2385 X<form>
2386
2387 Takes a sprintf-style format pattern and conventional
2388 (non-SV) arguments and returns the formatted string.
2389
2390     (char *) Perl_form(pTHX_ const char* pat, ...)
2391
2392 can be used any place a string (char *) is required:
2393
2394     char * s = Perl_form("%d.%d",major,minor);
2395
2396 Uses a single private buffer so if you want to format several strings you
2397 must explicitly copy the earlier strings away (and free the copies when you
2398 are done).
2399
2400         char*   form(const char* pat, ...)
2401
2402 =for hackers
2403 Found in file util.c
2404
2405 =item getcwd_sv
2406 X<getcwd_sv>
2407
2408 Fill the sv with current working directory
2409
2410         int     getcwd_sv(SV* sv)
2411
2412 =for hackers
2413 Found in file util.c
2414
2415 =item my_snprintf
2416 X<my_snprintf>
2417
2418 The C library C<snprintf> functionality, if available and
2419 standards-compliant (uses C<vsnprintf>, actually).  However, if the
2420 C<vsnprintf> is not available, will unfortunately use the unsafe
2421 C<vsprintf> which can overrun the buffer (there is an overrun check,
2422 but that may be too late).  Consider using C<sv_vcatpvf> instead, or
2423 getting C<vsnprintf>.
2424
2425         int     my_snprintf(char *buffer, const Size_t len, const char *format, ...)
2426
2427 =for hackers
2428 Found in file util.c
2429
2430 =item my_sprintf
2431 X<my_sprintf>
2432
2433 The C library C<sprintf>, wrapped if necessary, to ensure that it will return
2434 the length of the string written to the buffer. Only rare pre-ANSI systems
2435 need the wrapper function - usually this is a direct call to C<sprintf>.
2436
2437         int     my_sprintf(char *buffer, const char *pat, ...)
2438
2439 =for hackers
2440 Found in file util.c
2441
2442 =item my_vsnprintf
2443 X<my_vsnprintf>
2444
2445 The C library C<vsnprintf> if available and standards-compliant.
2446 However, if if the C<vsnprintf> is not available, will unfortunately
2447 use the unsafe C<vsprintf> which can overrun the buffer (there is an
2448 overrun check, but that may be too late).  Consider using
2449 C<sv_vcatpvf> instead, or getting C<vsnprintf>.
2450
2451         int     my_vsnprintf(char *buffer, const Size_t len, const char *format, va_list ap)
2452
2453 =for hackers
2454 Found in file util.c
2455
2456 =item new_version
2457 X<new_version>
2458
2459 Returns a new version object based on the passed in SV:
2460
2461     SV *sv = new_version(SV *ver);
2462
2463 Does not alter the passed in ver SV.  See "upg_version" if you
2464 want to upgrade the SV.
2465
2466         SV*     new_version(SV *ver)
2467
2468 =for hackers
2469 Found in file util.c
2470
2471 =item scan_version
2472 X<scan_version>
2473
2474 Returns a pointer to the next character after the parsed
2475 version string, as well as upgrading the passed in SV to
2476 an RV.
2477
2478 Function must be called with an already existing SV like
2479
2480     sv = newSV(0);
2481     s = scan_version(s,SV *sv, bool qv);
2482
2483 Performs some preprocessing to the string to ensure that
2484 it has the correct characteristics of a version.  Flags the
2485 object if it contains an underscore (which denotes this
2486 is a alpha version).  The boolean qv denotes that the version
2487 should be interpreted as if it had multiple decimals, even if
2488 it doesn't.
2489
2490         const char*     scan_version(const char *vstr, SV *sv, bool qv)
2491
2492 =for hackers
2493 Found in file util.c
2494
2495 =item strEQ
2496 X<strEQ>
2497
2498 Test two strings to see if they are equal.  Returns true or false.
2499
2500         bool    strEQ(char* s1, char* s2)
2501
2502 =for hackers
2503 Found in file handy.h
2504
2505 =item strGE
2506 X<strGE>
2507
2508 Test two strings to see if the first, C<s1>, is greater than or equal to
2509 the second, C<s2>.  Returns true or false.
2510
2511         bool    strGE(char* s1, char* s2)
2512
2513 =for hackers
2514 Found in file handy.h
2515
2516 =item strGT
2517 X<strGT>
2518
2519 Test two strings to see if the first, C<s1>, is greater than the second,
2520 C<s2>.  Returns true or false.
2521
2522         bool    strGT(char* s1, char* s2)
2523
2524 =for hackers
2525 Found in file handy.h
2526
2527 =item strLE
2528 X<strLE>
2529
2530 Test two strings to see if the first, C<s1>, is less than or equal to the
2531 second, C<s2>.  Returns true or false.
2532
2533         bool    strLE(char* s1, char* s2)
2534
2535 =for hackers
2536 Found in file handy.h
2537
2538 =item strLT
2539 X<strLT>
2540
2541 Test two strings to see if the first, C<s1>, is less than the second,
2542 C<s2>.  Returns true or false.
2543
2544         bool    strLT(char* s1, char* s2)
2545
2546 =for hackers
2547 Found in file handy.h
2548
2549 =item strNE
2550 X<strNE>
2551
2552 Test two strings to see if they are different.  Returns true or
2553 false.
2554
2555         bool    strNE(char* s1, char* s2)
2556
2557 =for hackers
2558 Found in file handy.h
2559
2560 =item strnEQ
2561 X<strnEQ>
2562
2563 Test two strings to see if they are equal.  The C<len> parameter indicates
2564 the number of bytes to compare.  Returns true or false. (A wrapper for
2565 C<strncmp>).
2566
2567         bool    strnEQ(char* s1, char* s2, STRLEN len)
2568
2569 =for hackers
2570 Found in file handy.h
2571
2572 =item strnNE
2573 X<strnNE>
2574
2575 Test two strings to see if they are different.  The C<len> parameter
2576 indicates the number of bytes to compare.  Returns true or false. (A
2577 wrapper for C<strncmp>).
2578
2579         bool    strnNE(char* s1, char* s2, STRLEN len)
2580
2581 =for hackers
2582 Found in file handy.h
2583
2584 =item sv_nosharing
2585 X<sv_nosharing>
2586
2587 Dummy routine which "shares" an SV when there is no sharing module present.
2588 Or "locks" it. Or "unlocks" it. In other words, ignores its single SV argument.
2589 Exists to avoid test for a NULL function pointer and because it could
2590 potentially warn under some level of strict-ness.
2591
2592         void    sv_nosharing(SV *sv)
2593
2594 =for hackers
2595 Found in file util.c
2596
2597 =item upg_version
2598 X<upg_version>
2599
2600 In-place upgrade of the supplied SV to a version object.
2601
2602     SV *sv = upg_version(SV *sv);
2603
2604 Returns a pointer to the upgraded SV.
2605
2606         SV*     upg_version(SV *ver)
2607
2608 =for hackers
2609 Found in file util.c
2610
2611 =item vcmp
2612 X<vcmp>
2613
2614 Version object aware cmp.  Both operands must already have been 
2615 converted into version objects.
2616
2617         int     vcmp(SV *lvs, SV *rvs)
2618
2619 =for hackers
2620 Found in file util.c
2621
2622 =item vnormal
2623 X<vnormal>
2624
2625 Accepts a version object and returns the normalized string
2626 representation.  Call like:
2627
2628     sv = vnormal(rv);
2629
2630 NOTE: you can pass either the object directly or the SV
2631 contained within the RV.
2632
2633         SV*     vnormal(SV *vs)
2634
2635 =for hackers
2636 Found in file util.c
2637
2638 =item vnumify
2639 X<vnumify>
2640
2641 Accepts a version object and returns the normalized floating
2642 point representation.  Call like:
2643
2644     sv = vnumify(rv);
2645
2646 NOTE: you can pass either the object directly or the SV
2647 contained within the RV.
2648
2649         SV*     vnumify(SV *vs)
2650
2651 =for hackers
2652 Found in file util.c
2653
2654 =item vstringify
2655 X<vstringify>
2656
2657 In order to maintain maximum compatibility with earlier versions
2658 of Perl, this function will return either the floating point
2659 notation or the multiple dotted notation, depending on whether
2660 the original version contained 1 or more dots, respectively
2661
2662         SV*     vstringify(SV *vs)
2663
2664 =for hackers
2665 Found in file util.c
2666
2667 =item vverify
2668 X<vverify>
2669
2670 Validates that the SV contains a valid version object.
2671
2672     bool vverify(SV *vobj);
2673
2674 Note that it only confirms the bare minimum structure (so as not to get
2675 confused by derived classes which may contain additional hash entries):
2676
2677         bool    vverify(SV *vs)
2678
2679 =for hackers
2680 Found in file util.c
2681
2682
2683 =back
2684
2685 =head1 Multicall Functions
2686
2687 =over 8
2688
2689 =item dMULTICALL
2690 X<dMULTICALL>
2691
2692 Declare local variables for a multicall. See L<perlcall/Lightweight Callbacks>.
2693
2694                 dMULTICALL;
2695
2696 =for hackers
2697 Found in file cop.h
2698
2699 =item MULTICALL
2700 X<MULTICALL>
2701
2702 Make a lightweight callback. See L<perlcall/Lightweight Callbacks>.
2703
2704                 MULTICALL;
2705
2706 =for hackers
2707 Found in file cop.h
2708
2709 =item POP_MULTICALL
2710 X<POP_MULTICALL>
2711
2712 Closing bracket for a lightweight callback.
2713 See L<perlcall/Lightweight Callbacks>.
2714
2715                 POP_MULTICALL;
2716
2717 =for hackers
2718 Found in file cop.h
2719
2720 =item PUSH_MULTICALL
2721 X<PUSH_MULTICALL>
2722
2723 Opening bracket for a lightweight callback.
2724 See L<perlcall/Lightweight Callbacks>.
2725
2726                 PUSH_MULTICALL;
2727
2728 =for hackers
2729 Found in file cop.h
2730
2731
2732 =back
2733
2734 =head1 Numeric functions
2735
2736 =over 8
2737
2738 =item grok_bin
2739 X<grok_bin>
2740
2741 converts a string representing a binary number to numeric form.
2742
2743 On entry I<start> and I<*len> give the string to scan, I<*flags> gives
2744 conversion flags, and I<result> should be NULL or a pointer to an NV.
2745 The scan stops at the end of the string, or the first invalid character.
2746 Unless C<PERL_SCAN_SILENT_ILLDIGIT> is set in I<*flags>, encountering an
2747 invalid character will also trigger a warning.
2748 On return I<*len> is set to the length of the scanned string,
2749 and I<*flags> gives output flags.
2750
2751 If the value is <= C<UV_MAX> it is returned as a UV, the output flags are clear,
2752 and nothing is written to I<*result>. If the value is > UV_MAX C<grok_bin>
2753 returns UV_MAX, sets C<PERL_SCAN_GREATER_THAN_UV_MAX> in the output flags,
2754 and writes the value to I<*result> (or the value is discarded if I<result>
2755 is NULL).
2756
2757 The binary number may optionally be prefixed with "0b" or "b" unless
2758 C<PERL_SCAN_DISALLOW_PREFIX> is set in I<*flags> on entry. If
2759 C<PERL_SCAN_ALLOW_UNDERSCORES> is set in I<*flags> then the binary
2760 number may use '_' characters to separate digits.
2761
2762         UV      grok_bin(const char* start, STRLEN* len_p, I32* flags, NV *result)
2763
2764 =for hackers
2765 Found in file numeric.c
2766
2767 =item grok_hex
2768 X<grok_hex>
2769
2770 converts a string representing a hex number to numeric form.
2771
2772 On entry I<start> and I<*len> give the string to scan, I<*flags> gives
2773 conversion flags, and I<result> should be NULL or a pointer to an NV.
2774 The scan stops at the end of the string, or the first invalid character.
2775 Unless C<PERL_SCAN_SILENT_ILLDIGIT> is set in I<*flags>, encountering an
2776 invalid character will also trigger a warning.
2777 On return I<*len> is set to the length of the scanned string,
2778 and I<*flags> gives output flags.
2779
2780 If the value is <= UV_MAX it is returned as a UV, the output flags are clear,
2781 and nothing is written to I<*result>. If the value is > UV_MAX C<grok_hex>
2782 returns UV_MAX, sets C<PERL_SCAN_GREATER_THAN_UV_MAX> in the output flags,
2783 and writes the value to I<*result> (or the value is discarded if I<result>
2784 is NULL).
2785
2786 The hex number may optionally be prefixed with "0x" or "x" unless
2787 C<PERL_SCAN_DISALLOW_PREFIX> is set in I<*flags> on entry. If
2788 C<PERL_SCAN_ALLOW_UNDERSCORES> is set in I<*flags> then the hex
2789 number may use '_' characters to separate digits.
2790
2791         UV      grok_hex(const char* start, STRLEN* len_p, I32* flags, NV *result)
2792
2793 =for hackers
2794 Found in file numeric.c
2795
2796 =item grok_number
2797 X<grok_number>
2798
2799 Recognise (or not) a number.  The type of the number is returned
2800 (0 if unrecognised), otherwise it is a bit-ORed combination of
2801 IS_NUMBER_IN_UV, IS_NUMBER_GREATER_THAN_UV_MAX, IS_NUMBER_NOT_INT,
2802 IS_NUMBER_NEG, IS_NUMBER_INFINITY, IS_NUMBER_NAN (defined in perl.h).
2803
2804 If the value of the number can fit an in UV, it is returned in the *valuep
2805 IS_NUMBER_IN_UV will be set to indicate that *valuep is valid, IS_NUMBER_IN_UV
2806 will never be set unless *valuep is valid, but *valuep may have been assigned
2807 to during processing even though IS_NUMBER_IN_UV is not set on return.
2808 If valuep is NULL, IS_NUMBER_IN_UV will be set for the same cases as when
2809 valuep is non-NULL, but no actual assignment (or SEGV) will occur.
2810
2811 IS_NUMBER_NOT_INT will be set with IS_NUMBER_IN_UV if trailing decimals were
2812 seen (in which case *valuep gives the true value truncated to an integer), and
2813 IS_NUMBER_NEG if the number is negative (in which case *valuep holds the
2814 absolute value).  IS_NUMBER_IN_UV is not set if e notation was used or the
2815 number is larger than a UV.
2816
2817         int     grok_number(const char *pv, STRLEN len, UV *valuep)
2818
2819 =for hackers
2820 Found in file numeric.c
2821
2822 =item grok_numeric_radix
2823 X<grok_numeric_radix>
2824
2825 Scan and skip for a numeric decimal separator (radix).
2826
2827         bool    grok_numeric_radix(const char **sp, const char *send)
2828
2829 =for hackers
2830 Found in file numeric.c
2831
2832 =item grok_oct
2833 X<grok_oct>
2834
2835 converts a string representing an octal number to numeric form.
2836
2837 On entry I<start> and I<*len> give the string to scan, I<*flags> gives
2838 conversion flags, and I<result> should be NULL or a pointer to an NV.
2839 The scan stops at the end of the string, or the first invalid character.
2840 Unless C<PERL_SCAN_SILENT_ILLDIGIT> is set in I<*flags>, encountering an
2841 invalid character will also trigger a warning.
2842 On return I<*len> is set to the length of the scanned string,
2843 and I<*flags> gives output flags.
2844
2845 If the value is <= UV_MAX it is returned as a UV, the output flags are clear,
2846 and nothing is written to I<*result>. If the value is > UV_MAX C<grok_oct>
2847 returns UV_MAX, sets C<PERL_SCAN_GREATER_THAN_UV_MAX> in the output flags,
2848 and writes the value to I<*result> (or the value is discarded if I<result>
2849 is NULL).
2850
2851 If C<PERL_SCAN_ALLOW_UNDERSCORES> is set in I<*flags> then the octal
2852 number may use '_' characters to separate digits.
2853
2854         UV      grok_oct(const char* start, STRLEN* len_p, I32* flags, NV *result)
2855
2856 =for hackers
2857 Found in file numeric.c
2858
2859 =item scan_bin
2860 X<scan_bin>
2861
2862 For backwards compatibility. Use C<grok_bin> instead.
2863
2864         NV      scan_bin(const char* start, STRLEN len, STRLEN* retlen)
2865
2866 =for hackers
2867 Found in file numeric.c
2868
2869 =item scan_hex
2870 X<scan_hex>
2871
2872 For backwards compatibility. Use C<grok_hex> instead.
2873
2874         NV      scan_hex(const char* start, STRLEN len, STRLEN* retlen)
2875
2876 =for hackers
2877 Found in file numeric.c
2878
2879 =item scan_oct
2880 X<scan_oct>
2881
2882 For backwards compatibility. Use C<grok_oct> instead.
2883
2884         NV      scan_oct(const char* start, STRLEN len, STRLEN* retlen)
2885
2886 =for hackers
2887 Found in file numeric.c
2888
2889
2890 =back
2891
2892 =head1 Optree Manipulation Functions
2893
2894 =over 8
2895
2896 =item cv_const_sv
2897 X<cv_const_sv>
2898
2899 If C<cv> is a constant sub eligible for inlining. returns the constant
2900 value returned by the sub.  Otherwise, returns NULL.
2901
2902 Constant subs can be created with C<newCONSTSUB> or as described in
2903 L<perlsub/"Constant Functions">.
2904
2905         SV*     cv_const_sv(CV* cv)
2906
2907 =for hackers
2908 Found in file op.c
2909
2910 =item newCONSTSUB
2911 X<newCONSTSUB>
2912
2913 Creates a constant sub equivalent to Perl C<sub FOO () { 123 }> which is
2914 eligible for inlining at compile-time.
2915
2916         CV*     newCONSTSUB(HV* stash, const char* name, SV* sv)
2917
2918 =for hackers
2919 Found in file op.c
2920
2921 =item newXS
2922 X<newXS>
2923
2924 Used by C<xsubpp> to hook up XSUBs as Perl subs.  I<filename> needs to be
2925 static storage, as it is used directly as CvFILE(), without a copy being made.
2926
2927 =for hackers
2928 Found in file op.c
2929
2930
2931 =back
2932
2933 =head1 Pad Data Structures
2934
2935 =over 8
2936
2937 =item pad_sv
2938 X<pad_sv>
2939
2940 Get the value at offset po in the current pad.
2941 Use macro PAD_SV instead of calling this function directly.
2942
2943         SV*     pad_sv(PADOFFSET po)
2944
2945 =for hackers
2946 Found in file pad.c
2947
2948
2949 =back
2950
2951 =head1 Simple Exception Handling Macros
2952
2953 =over 8
2954
2955 =item dXCPT
2956 X<dXCPT>
2957
2958 Set up necessary local variables for exception handling.
2959 See L<perlguts/"Exception Handling">.
2960
2961                 dXCPT;
2962
2963 =for hackers
2964 Found in file XSUB.h
2965
2966 =item XCPT_CATCH
2967 X<XCPT_CATCH>
2968
2969 Introduces a catch block.  See L<perlguts/"Exception Handling">.
2970
2971 =for hackers
2972 Found in file XSUB.h
2973
2974 =item XCPT_RETHROW
2975 X<XCPT_RETHROW>
2976
2977 Rethrows a previously caught exception.  See L<perlguts/"Exception Handling">.
2978
2979                 XCPT_RETHROW;
2980
2981 =for hackers
2982 Found in file XSUB.h
2983
2984 =item XCPT_TRY_END
2985 X<XCPT_TRY_END>
2986
2987 Ends a try block.  See L<perlguts/"Exception Handling">.
2988
2989 =for hackers
2990 Found in file XSUB.h
2991
2992 =item XCPT_TRY_START
2993 X<XCPT_TRY_START>
2994
2995 Starts a try block.  See L<perlguts/"Exception Handling">.
2996
2997 =for hackers
2998 Found in file XSUB.h
2999
3000
3001 =back
3002
3003 =head1 Stack Manipulation Macros
3004
3005 =over 8
3006
3007 =item dMARK
3008 X<dMARK>
3009
3010 Declare a stack marker variable, C<mark>, for the XSUB.  See C<MARK> and
3011 C<dORIGMARK>.
3012
3013                 dMARK;
3014
3015 =for hackers
3016 Found in file pp.h
3017
3018 =item dORIGMARK
3019 X<dORIGMARK>
3020
3021 Saves the original stack mark for the XSUB.  See C<ORIGMARK>.
3022
3023                 dORIGMARK;
3024
3025 =for hackers
3026 Found in file pp.h
3027
3028 =item dSP
3029 X<dSP>
3030
3031 Declares a local copy of perl's stack pointer for the XSUB, available via
3032 the C<SP> macro.  See C<SP>.
3033
3034                 dSP;
3035
3036 =for hackers
3037 Found in file pp.h
3038
3039 =item EXTEND
3040 X<EXTEND>
3041
3042 Used to extend the argument stack for an XSUB's return values. Once
3043 used, guarantees that there is room for at least C<nitems> to be pushed
3044 onto the stack.
3045
3046         void    EXTEND(SP, int nitems)
3047
3048 =for hackers
3049 Found in file pp.h
3050
3051 =item MARK
3052 X<MARK>
3053
3054 Stack marker variable for the XSUB.  See C<dMARK>.
3055
3056 =for hackers
3057 Found in file pp.h
3058
3059 =item mPUSHi
3060 X<mPUSHi>
3061
3062 Push an integer onto the stack.  The stack must have room for this element.
3063 Handles 'set' magic.  Does not use C<TARG>.  See also C<PUSHi>, C<mXPUSHi>
3064 and C<XPUSHi>.
3065
3066         void    mPUSHi(IV iv)
3067
3068 =for hackers
3069 Found in file pp.h
3070
3071 =item mPUSHn
3072 X<mPUSHn>
3073
3074 Push a double onto the stack.  The stack must have room for this element.
3075 Handles 'set' magic.  Does not use C<TARG>.  See also C<PUSHn>, C<mXPUSHn>
3076 and C<XPUSHn>.
3077
3078         void    mPUSHn(NV nv)
3079
3080 =for hackers
3081 Found in file pp.h
3082
3083 =item mPUSHp
3084 X<mPUSHp>
3085
3086 Push a string onto the stack.  The stack must have room for this element.
3087 The C<len> indicates the length of the string.  Handles 'set' magic.  Does
3088 not use C<TARG>.  See also C<PUSHp>, C<mXPUSHp> and C<XPUSHp>.
3089
3090         void    mPUSHp(char* str, STRLEN len)
3091
3092 =for hackers
3093 Found in file pp.h
3094
3095 =item mPUSHu
3096 X<mPUSHu>
3097
3098 Push an unsigned integer onto the stack.  The stack must have room for this
3099 element.  Handles 'set' magic.  Does not use C<TARG>.  See also C<PUSHu>,
3100 C<mXPUSHu> and C<XPUSHu>.
3101
3102         void    mPUSHu(UV uv)
3103
3104 =for hackers
3105 Found in file pp.h
3106
3107 =item mXPUSHi
3108 X<mXPUSHi>
3109
3110 Push an integer onto the stack, extending the stack if necessary.  Handles
3111 'set' magic.  Does not use C<TARG>.  See also C<XPUSHi>, C<mPUSHi> and
3112 C<PUSHi>.
3113
3114         void    mXPUSHi(IV iv)
3115
3116 =for hackers
3117 Found in file pp.h
3118
3119 =item mXPUSHn
3120 X<mXPUSHn>
3121
3122 Push a double onto the stack, extending the stack if necessary.  Handles
3123 'set' magic.  Does not use C<TARG>.  See also C<XPUSHn>, C<mPUSHn> and
3124 C<PUSHn>.
3125
3126         void    mXPUSHn(NV nv)
3127
3128 =for hackers
3129 Found in file pp.h
3130
3131 =item mXPUSHp
3132 X<mXPUSHp>
3133
3134 Push a string onto the stack, extending the stack if necessary.  The C<len>
3135 indicates the length of the string.  Handles 'set' magic.  Does not use
3136 C<TARG>.  See also C<XPUSHp>, C<mPUSHp> and C<PUSHp>.
3137
3138         void    mXPUSHp(char* str, STRLEN len)
3139
3140 =for hackers
3141 Found in file pp.h
3142
3143 =item mXPUSHu
3144 X<mXPUSHu>
3145
3146 Push an unsigned integer onto the stack, extending the stack if necessary.
3147 Handles 'set' magic.  Does not use C<TARG>.  See also C<XPUSHu>, C<mPUSHu>
3148 and C<PUSHu>.
3149
3150         void    mXPUSHu(UV uv)
3151
3152 =for hackers
3153 Found in file pp.h
3154
3155 =item ORIGMARK
3156 X<ORIGMARK>
3157
3158 The original stack mark for the XSUB.  See C<dORIGMARK>.
3159
3160 =for hackers
3161 Found in file pp.h
3162
3163 =item POPi
3164 X<POPi>
3165
3166 Pops an integer off the stack.
3167
3168         IV      POPi
3169
3170 =for hackers
3171 Found in file pp.h
3172
3173 =item POPl
3174 X<POPl>
3175
3176 Pops a long off the stack.
3177
3178         long    POPl
3179
3180 =for hackers
3181 Found in file pp.h
3182
3183 =item POPn
3184 X<POPn>
3185
3186 Pops a double off the stack.
3187
3188         NV      POPn
3189
3190 =for hackers
3191 Found in file pp.h
3192
3193 =item POPp
3194 X<POPp>
3195
3196 Pops a string off the stack. Deprecated. New code should use POPpx.
3197
3198         char*   POPp
3199
3200 =for hackers
3201 Found in file pp.h
3202
3203 =item POPpbytex
3204 X<POPpbytex>
3205
3206 Pops a string off the stack which must consist of bytes i.e. characters < 256.
3207
3208         char*   POPpbytex
3209
3210 =for hackers
3211 Found in file pp.h
3212
3213 =item POPpx
3214 X<POPpx>
3215
3216 Pops a string off the stack.
3217
3218         char*   POPpx
3219
3220 =for hackers
3221 Found in file pp.h
3222
3223 =item POPs
3224 X<POPs>
3225
3226 Pops an SV off the stack.
3227
3228         SV*     POPs
3229
3230 =for hackers
3231 Found in file pp.h
3232
3233 =item PUSHi
3234 X<PUSHi>
3235
3236 Push an integer onto the stack.  The stack must have room for this element.
3237 Handles 'set' magic.  Uses C<TARG>, so C<dTARGET> or C<dXSTARG> should be
3238 called to declare it.  Do not call multiple C<TARG>-oriented macros to 
3239 return lists from XSUB's - see C<mPUSHi> instead.  See also C<XPUSHi> and
3240 C<mXPUSHi>.
3241
3242         void    PUSHi(IV iv)
3243
3244 =for hackers
3245 Found in file pp.h
3246
3247 =item PUSHMARK
3248 X<PUSHMARK>
3249
3250 Opening bracket for arguments on a callback.  See C<PUTBACK> and
3251 L<perlcall>.
3252
3253         void    PUSHMARK(SP)
3254
3255 =for hackers
3256 Found in file pp.h
3257
3258 =item PUSHmortal
3259 X<PUSHmortal>
3260
3261 Push a new mortal SV onto the stack.  The stack must have room for this
3262 element.  Does not handle 'set' magic.  Does not use C<TARG>.  See also
3263 C<PUSHs>, C<XPUSHmortal> and C<XPUSHs>.
3264
3265         void    PUSHmortal()
3266
3267 =for hackers
3268 Found in file pp.h
3269
3270 =item PUSHn
3271 X<PUSHn>
3272
3273 Push a double onto the stack.  The stack must have room for this element.
3274 Handles 'set' magic.  Uses C<TARG>, so C<dTARGET> or C<dXSTARG> should be
3275 called to declare it.  Do not call multiple C<TARG>-oriented macros to
3276 return lists from XSUB's - see C<mPUSHn> instead.  See also C<XPUSHn> and
3277 C<mXPUSHn>.
3278
3279         void    PUSHn(NV nv)
3280
3281 =for hackers
3282 Found in file pp.h
3283
3284 =item PUSHp
3285 X<PUSHp>
3286
3287 Push a string onto the stack.  The stack must have room for this element.
3288 The C<len> indicates the length of the string.  Handles 'set' magic.  Uses
3289 C<TARG>, so C<dTARGET> or C<dXSTARG> should be called to declare it.  Do not
3290 call multiple C<TARG>-oriented macros to return lists from XSUB's - see
3291 C<mPUSHp> instead.  See also C<XPUSHp> and C<mXPUSHp>.
3292
3293         void    PUSHp(char* str, STRLEN len)
3294
3295 =for hackers
3296 Found in file pp.h
3297
3298 =item PUSHs
3299 X<PUSHs>
3300
3301 Push an SV onto the stack.  The stack must have room for this element.
3302 Does not handle 'set' magic.  Does not use C<TARG>.  See also C<PUSHmortal>,
3303 C<XPUSHs> and C<XPUSHmortal>.
3304
3305         void    PUSHs(SV* sv)
3306
3307 =for hackers
3308 Found in file pp.h
3309
3310 =item PUSHu
3311 X<PUSHu>
3312
3313 Push an unsigned integer onto the stack.  The stack must have room for this
3314 element.  Handles 'set' magic.  Uses C<TARG>, so C<dTARGET> or C<dXSTARG>
3315 should be called to declare it.  Do not call multiple C<TARG>-oriented
3316 macros to return lists from XSUB's - see C<mPUSHu> instead.  See also
3317 C<XPUSHu> and C<mXPUSHu>.
3318
3319         void    PUSHu(UV uv)
3320
3321 =for hackers
3322 Found in file pp.h
3323
3324 =item PUTBACK
3325 X<PUTBACK>
3326
3327 Closing bracket for XSUB arguments.  This is usually handled by C<xsubpp>.
3328 See C<PUSHMARK> and L<perlcall> for other uses.
3329
3330                 PUTBACK;
3331
3332 =for hackers
3333 Found in file pp.h
3334
3335 =item SP
3336 X<SP>
3337
3338 Stack pointer.  This is usually handled by C<xsubpp>.  See C<dSP> and
3339 C<SPAGAIN>.
3340
3341 =for hackers
3342 Found in file pp.h
3343
3344 =item SPAGAIN
3345 X<SPAGAIN>
3346
3347 Refetch the stack pointer.  Used after a callback.  See L<perlcall>.
3348
3349                 SPAGAIN;
3350
3351 =for hackers
3352 Found in file pp.h
3353
3354 =item XPUSHi
3355 X<XPUSHi>
3356
3357 Push an integer onto the stack, extending the stack if necessary.  Handles
3358 'set' magic.  Uses C<TARG>, so C<dTARGET> or C<dXSTARG> should be called to
3359 declare it.  Do not call multiple C<TARG>-oriented macros to return lists
3360 from XSUB's - see C<mXPUSHi> instead.  See also C<PUSHi> and C<mPUSHi>.
3361
3362         void    XPUSHi(IV iv)
3363
3364 =for hackers
3365 Found in file pp.h
3366
3367 =item XPUSHmortal
3368 X<XPUSHmortal>
3369
3370 Push a new mortal SV onto the stack, extending the stack if necessary.  Does
3371 not handle 'set' magic.  Does not use C<TARG>.  See also C<XPUSHs>,
3372 C<PUSHmortal> and C<PUSHs>.
3373
3374         void    XPUSHmortal()
3375
3376 =for hackers
3377 Found in file pp.h
3378
3379 =item XPUSHn
3380 X<XPUSHn>
3381
3382 Push a double onto the stack, extending the stack if necessary.  Handles
3383 'set' magic.  Uses C<TARG>, so C<dTARGET> or C<dXSTARG> should be called to
3384 declare it.  Do not call multiple C<TARG>-oriented macros to return lists
3385 from XSUB's - see C<mXPUSHn> instead.  See also C<PUSHn> and C<mPUSHn>.
3386
3387         void    XPUSHn(NV nv)
3388
3389 =for hackers
3390 Found in file pp.h
3391
3392 =item XPUSHp
3393 X<XPUSHp>
3394
3395 Push a string onto the stack, extending the stack if necessary.  The C<len>
3396 indicates the length of the string.  Handles 'set' magic.  Uses C<TARG>, so
3397 C<dTARGET> or C<dXSTARG> should be called to declare it.  Do not call
3398 multiple C<TARG>-oriented macros to return lists from XSUB's - see
3399 C<mXPUSHp> instead.  See also C<PUSHp> and C<mPUSHp>.
3400
3401         void    XPUSHp(char* str, STRLEN len)
3402
3403 =for hackers
3404 Found in file pp.h
3405
3406 =item XPUSHs
3407 X<XPUSHs>
3408
3409 Push an SV onto the stack, extending the stack if necessary.  Does not
3410 handle 'set' magic.  Does not use C<TARG>.  See also C<XPUSHmortal>,
3411 C<PUSHs> and C<PUSHmortal>.
3412
3413         void    XPUSHs(SV* sv)
3414
3415 =for hackers
3416 Found in file pp.h
3417
3418 =item XPUSHu
3419 X<XPUSHu>
3420
3421 Push an unsigned integer onto the stack, extending the stack if necessary.
3422 Handles 'set' magic.  Uses C<TARG>, so C<dTARGET> or C<dXSTARG> should be
3423 called to declare it.  Do not call multiple C<TARG>-oriented macros to
3424 return lists from XSUB's - see C<mXPUSHu> instead.  See also C<PUSHu> and
3425 C<mPUSHu>.
3426
3427         void    XPUSHu(UV uv)
3428
3429 =for hackers
3430 Found in file pp.h
3431
3432 =item XSRETURN
3433 X<XSRETURN>
3434
3435 Return from XSUB, indicating number of items on the stack.  This is usually
3436 handled by C<xsubpp>.
3437
3438         void    XSRETURN(int nitems)
3439
3440 =for hackers
3441 Found in file XSUB.h
3442
3443 =item XSRETURN_EMPTY
3444 X<XSRETURN_EMPTY>
3445
3446 Return an empty list from an XSUB immediately.
3447
3448                 XSRETURN_EMPTY;
3449
3450 =for hackers
3451 Found in file XSUB.h
3452
3453 =item XSRETURN_IV
3454 X<XSRETURN_IV>
3455
3456 Return an integer from an XSUB immediately.  Uses C<XST_mIV>.
3457
3458         void    XSRETURN_IV(IV iv)
3459
3460 =for hackers
3461 Found in file XSUB.h
3462
3463 =item XSRETURN_NO
3464 X<XSRETURN_NO>
3465
3466 Return C<&PL_sv_no> from an XSUB immediately.  Uses C<XST_mNO>.
3467
3468                 XSRETURN_NO;
3469
3470 =for hackers
3471 Found in file XSUB.h
3472
3473 =item XSRETURN_NV
3474 X<XSRETURN_NV>
3475
3476 Return a double from an XSUB immediately.  Uses C<XST_mNV>.
3477
3478         void    XSRETURN_NV(NV nv)
3479
3480 =for hackers
3481 Found in file XSUB.h
3482
3483 =item XSRETURN_PV
3484 X<XSRETURN_PV>
3485
3486 Return a copy of a string from an XSUB immediately.  Uses C<XST_mPV>.
3487
3488         void    XSRETURN_PV(char* str)
3489
3490 =for hackers
3491 Found in file XSUB.h
3492
3493 =item XSRETURN_UNDEF
3494 X<XSRETURN_UNDEF>
3495
3496 Return C<&PL_sv_undef> from an XSUB immediately.  Uses C<XST_mUNDEF>.
3497
3498                 XSRETURN_UNDEF;
3499
3500 =for hackers
3501 Found in file XSUB.h
3502
3503 =item XSRETURN_UV
3504 X<XSRETURN_UV>
3505
3506 Return an integer from an XSUB immediately.  Uses C<XST_mUV>.
3507
3508         void    XSRETURN_UV(IV uv)
3509
3510 =for hackers
3511 Found in file XSUB.h
3512
3513 =item XSRETURN_YES
3514 X<XSRETURN_YES>
3515
3516 Return C<&PL_sv_yes> from an XSUB immediately.  Uses C<XST_mYES>.
3517
3518                 XSRETURN_YES;
3519
3520 =for hackers
3521 Found in file XSUB.h
3522
3523 =item XST_mIV
3524 X<XST_mIV>
3525
3526 Place an integer into the specified position C<pos> on the stack.  The
3527 value is stored in a new mortal SV.
3528
3529         void    XST_mIV(int pos, IV iv)
3530
3531 =for hackers
3532 Found in file XSUB.h
3533
3534 =item XST_mNO
3535 X<XST_mNO>
3536
3537 Place C<&PL_sv_no> into the specified position C<pos> on the
3538 stack.
3539
3540         void    XST_mNO(int pos)
3541
3542 =for hackers
3543 Found in file XSUB.h
3544
3545 =item XST_mNV
3546 X<XST_mNV>
3547
3548 Place a double into the specified position C<pos> on the stack.  The value
3549 is stored in a new mortal SV.
3550
3551         void    XST_mNV(int pos, NV nv)
3552
3553 =for hackers
3554 Found in file XSUB.h
3555
3556 =item XST_mPV
3557 X<XST_mPV>
3558
3559 Place a copy of a string into the specified position C<pos> on the stack. 
3560 The value is stored in a new mortal SV.
3561
3562         void    XST_mPV(int pos, char* str)
3563
3564 =for hackers
3565 Found in file XSUB.h
3566
3567 =item XST_mUNDEF
3568 X<XST_mUNDEF>
3569
3570 Place C<&PL_sv_undef> into the specified position C<pos> on the
3571 stack.
3572
3573         void    XST_mUNDEF(int pos)
3574
3575 =for hackers
3576 Found in file XSUB.h
3577
3578 =item XST_mYES
3579 X<XST_mYES>
3580
3581 Place C<&PL_sv_yes> into the specified position C<pos> on the
3582 stack.
3583
3584         void    XST_mYES(int pos)
3585
3586 =for hackers
3587 Found in file XSUB.h
3588
3589
3590 =back
3591
3592 =head1 SV Flags
3593
3594 =over 8
3595
3596 =item svtype
3597 X<svtype>
3598
3599 An enum of flags for Perl types.  These are found in the file B<sv.h>
3600 in the C<svtype> enum.  Test these flags with the C<SvTYPE> macro.
3601
3602 =for hackers
3603 Found in file sv.h
3604
3605 =item SVt_IV
3606 X<SVt_IV>
3607
3608 Integer type flag for scalars.  See C<svtype>.
3609
3610 =for hackers
3611 Found in file sv.h
3612
3613 =item SVt_NV
3614 X<SVt_NV>
3615
3616 Double type flag for scalars.  See C<svtype>.
3617
3618 =for hackers
3619 Found in file sv.h
3620
3621 =item SVt_PV
3622 X<SVt_PV>
3623
3624 Pointer type flag for scalars.  See C<svtype>.
3625
3626 =for hackers
3627 Found in file sv.h
3628
3629 =item SVt_PVAV
3630 X<SVt_PVAV>
3631
3632 Type flag for arrays.  See C<svtype>.
3633
3634 =for hackers
3635 Found in file sv.h
3636
3637 =item SVt_PVCV
3638 X<SVt_PVCV>
3639
3640 Type flag for code refs.  See C<svtype>.
3641
3642 =for hackers
3643 Found in file sv.h
3644
3645 =item SVt_PVHV
3646 X<SVt_PVHV>
3647
3648 Type flag for hashes.  See C<svtype>.
3649
3650 =for hackers
3651 Found in file sv.h
3652
3653 =item SVt_PVMG
3654 X<SVt_PVMG>
3655
3656 Type flag for blessed scalars.  See C<svtype>.
3657
3658 =for hackers
3659 Found in file sv.h
3660
3661
3662 =back
3663
3664 =head1 SV Manipulation Functions
3665
3666 =over 8
3667
3668 =item get_sv
3669 X<get_sv>
3670
3671 Returns the SV of the specified Perl scalar.  If C<create> is set and the
3672 Perl variable does not exist then it will be created.  If C<create> is not
3673 set and the variable does not exist then NULL is returned.
3674
3675 NOTE: the perl_ form of this function is deprecated.
3676
3677         SV*     get_sv(const char* name, I32 create)
3678
3679 =for hackers
3680 Found in file perl.c
3681
3682 =item newRV_inc
3683 X<newRV_inc>
3684
3685 Creates an RV wrapper for an SV.  The reference count for the original SV is
3686 incremented.
3687
3688         SV*     newRV_inc(SV* sv)
3689
3690 =for hackers
3691 Found in file sv.h
3692
3693 =item SvCUR
3694 X<SvCUR>
3695
3696 Returns the length of the string which is in the SV.  See C<SvLEN>.
3697
3698         STRLEN  SvCUR(SV* sv)
3699
3700 =for hackers
3701 Found in file sv.h
3702
3703 =item SvCUR_set
3704 X<SvCUR_set>
3705
3706 Set the current length of the string which is in the SV.  See C<SvCUR>
3707 and C<SvIV_set>.
3708
3709         void    SvCUR_set(SV* sv, STRLEN len)
3710
3711 =for hackers
3712 Found in file sv.h
3713
3714 =item SvEND
3715 X<SvEND>
3716
3717 Returns a pointer to the last character in the string which is in the SV.
3718 See C<SvCUR>.  Access the character as *(SvEND(sv)).
3719
3720         char*   SvEND(SV* sv)
3721
3722 =for hackers
3723 Found in file sv.h
3724
3725 =item SvGAMAGIC
3726 X<SvGAMAGIC>
3727
3728 Returns true if the SV has get magic or overloading. If either is true then
3729 the scalar is active data, and has the potential to return a new value every
3730 time it is accessed. Hence you must be careful to only read it once per user
3731 logical operation and work with that returned value. If neither is true then
3732 the scalar's value cannot change unless written to.
3733
3734         char*   SvGAMAGIC(SV* sv)
3735
3736 =for hackers
3737 Found in file sv.h
3738
3739 =item SvGROW
3740 X<SvGROW>
3741
3742 Expands the character buffer in the SV so that it has room for the
3743 indicated number of bytes (remember to reserve space for an extra trailing
3744 NUL character).  Calls C<sv_grow> to perform the expansion if necessary.
3745 Returns a pointer to the character buffer.
3746
3747         char *  SvGROW(SV* sv, STRLEN len)
3748
3749 =for hackers
3750 Found in file sv.h
3751
3752 =item SvIOK
3753 X<SvIOK>
3754
3755 Returns a boolean indicating whether the SV contains an integer.
3756
3757         bool    SvIOK(SV* sv)
3758
3759 =for hackers
3760 Found in file sv.h
3761
3762 =item SvIOKp
3763 X<SvIOKp>
3764
3765 Returns a boolean indicating whether the SV contains an integer.  Checks
3766 the B<private> setting.  Use C<SvIOK>.
3767
3768         bool    SvIOKp(SV* sv)
3769
3770 =for hackers
3771 Found in file sv.h
3772
3773 =item SvIOK_notUV
3774 X<SvIOK_notUV>
3775
3776 Returns a boolean indicating whether the SV contains a signed integer.
3777
3778         bool    SvIOK_notUV(SV* sv)
3779
3780 =for hackers
3781 Found in file sv.h
3782
3783 =item SvIOK_off
3784 X<SvIOK_off>
3785
3786 Unsets the IV status of an SV.
3787
3788         void    SvIOK_off(SV* sv)
3789
3790 =for hackers
3791 Found in file sv.h
3792
3793 =item SvIOK_on
3794 X<SvIOK_on>
3795
3796 Tells an SV that it is an integer.
3797
3798         void    SvIOK_on(SV* sv)
3799
3800 =for hackers
3801 Found in file sv.h
3802
3803 =item SvIOK_only
3804 X<SvIOK_only>
3805
3806 Tells an SV that it is an integer and disables all other OK bits.
3807
3808         void    SvIOK_only(SV* sv)
3809
3810 =for hackers
3811 Found in file sv.h
3812
3813 =item SvIOK_only_UV
3814 X<SvIOK_only_UV>
3815
3816 Tells and SV that it is an unsigned integer and disables all other OK bits.
3817
3818         void    SvIOK_only_UV(SV* sv)
3819
3820 =for hackers
3821 Found in file sv.h
3822
3823 =item SvIOK_UV
3824 X<SvIOK_UV>
3825
3826 Returns a boolean indicating whether the SV contains an unsigned integer.
3827
3828         bool    SvIOK_UV(SV* sv)
3829
3830 =for hackers
3831 Found in file sv.h
3832
3833 =item SvIsCOW
3834 X<SvIsCOW>
3835
3836 Returns a boolean indicating whether the SV is Copy-On-Write. (either shared
3837 hash key scalars, or full Copy On Write scalars if 5.9.0 is configured for
3838 COW)
3839
3840         bool    SvIsCOW(SV* sv)
3841
3842 =for hackers
3843 Found in file sv.h
3844
3845 =item SvIsCOW_shared_hash
3846 X<SvIsCOW_shared_hash>
3847
3848 Returns a boolean indicating whether the SV is Copy-On-Write shared hash key
3849 scalar.
3850
3851         bool    SvIsCOW_shared_hash(SV* sv)
3852
3853 =for hackers
3854 Found in file sv.h
3855
3856 =item SvIV
3857 X<SvIV>
3858
3859 Coerces the given SV to an integer and returns it. See  C<SvIVx> for a
3860 version which guarantees to evaluate sv only once.
3861
3862         IV      SvIV(SV* sv)
3863
3864 =for hackers
3865 Found in file sv.h
3866
3867 =item SvIVX
3868 X<SvIVX>
3869
3870 Returns the raw value in the SV's IV slot, without checks or conversions.
3871 Only use when you are sure SvIOK is true. See also C<SvIV()>.
3872
3873         IV      SvIVX(SV* sv)
3874
3875 =for hackers
3876 Found in file sv.h
3877
3878 =item SvIVx
3879 X<SvIVx>
3880
3881 Coerces the given SV to an integer and returns it. Guarantees to evaluate
3882 sv only once. Use the more efficient C<SvIV> otherwise.
3883
3884         IV      SvIVx(SV* sv)
3885
3886 =for hackers
3887 Found in file sv.h
3888
3889 =item SvIV_nomg
3890 X<SvIV_nomg>
3891
3892 Like C<SvIV> but doesn't process magic.
3893
3894         IV      SvIV_nomg(SV* sv)
3895
3896 =for hackers
3897 Found in file sv.h
3898
3899 =item SvIV_set
3900 X<SvIV_set>
3901
3902 Set the value of the IV pointer in sv to val.  It is possible to perform
3903 the same function of this macro with an lvalue assignment to C<SvIVX>.
3904 With future Perls, however, it will be more efficient to use 
3905 C<SvIV_set> instead of the lvalue assignment to C<SvIVX>.
3906
3907         void    SvIV_set(SV* sv, IV val)
3908
3909 =for hackers
3910 Found in file sv.h
3911
3912 =item SvLEN
3913 X<SvLEN>
3914
3915 Returns the size of the string buffer in the SV, not including any part
3916 attributable to C<SvOOK>.  See C<SvCUR>.
3917
3918         STRLEN  SvLEN(SV* sv)
3919
3920 =for hackers
3921 Found in file sv.h
3922
3923 =item SvLEN_set
3924 X<SvLEN_set>
3925
3926 Set the actual length of the string which is in the SV.  See C<SvIV_set>.
3927
3928         void    SvLEN_set(SV* sv, STRLEN len)
3929
3930 =for hackers
3931 Found in file sv.h
3932
3933 =item SvMAGIC_set
3934 X<SvMAGIC_set>
3935
3936 Set the value of the MAGIC pointer in sv to val.  See C<SvIV_set>.
3937
3938         void    SvMAGIC_set(SV* sv, MAGIC* val)
3939
3940 =for hackers
3941 Found in file sv.h
3942
3943 =item SvNIOK
3944 X<SvNIOK>
3945
3946 Returns a boolean indicating whether the SV contains a number, integer or
3947 double.
3948
3949         bool    SvNIOK(SV* sv)
3950
3951 =for hackers
3952 Found in file sv.h
3953
3954 =item SvNIOKp
3955 X<SvNIOKp>
3956
3957 Returns a boolean indicating whether the SV contains a number, integer or
3958 double.  Checks the B<private> setting.  Use C<SvNIOK>.
3959
3960         bool    SvNIOKp(SV* sv)
3961
3962 =for hackers
3963 Found in file sv.h
3964
3965 =item SvNIOK_off
3966 X<SvNIOK_off>
3967
3968 Unsets the NV/IV status of an SV.
3969
3970         void    SvNIOK_off(SV* sv)
3971
3972 =for hackers
3973 Found in file sv.h
3974
3975 =item SvNOK
3976 X<SvNOK>
3977
3978 Returns a boolean indicating whether the SV contains a double.
3979
3980         bool    SvNOK(SV* sv)
3981
3982 =for hackers
3983 Found in file sv.h
3984
3985 =item SvNOKp
3986 X<SvNOKp>
3987
3988 Returns a boolean indicating whether the SV contains a double.  Checks the
3989 B<private> setting.  Use C<SvNOK>.
3990
3991         bool    SvNOKp(SV* sv)
3992
3993 =for hackers
3994 Found in file sv.h
3995
3996 =item SvNOK_off
3997 X<SvNOK_off>
3998
3999 Unsets the NV status of an SV.
4000
4001         void    SvNOK_off(SV* sv)
4002
4003 =for hackers
4004 Found in file sv.h
4005
4006 =item SvNOK_on
4007 X<SvNOK_on>
4008
4009 Tells an SV that it is a double.
4010
4011         void    SvNOK_on(SV* sv)
4012
4013 =for hackers
4014 Found in file sv.h
4015
4016 =item SvNOK_only
4017 X<SvNOK_only>
4018
4019 Tells an SV that it is a double and disables all other OK bits.
4020
4021         void    SvNOK_only(SV* sv)
4022
4023 =for hackers
4024 Found in file sv.h
4025
4026 =item SvNV
4027 X<SvNV>
4028
4029 Coerce the given SV to a double and return it. See  C<SvNVx> for a version
4030 which guarantees to evaluate sv only once.
4031
4032         NV      SvNV(SV* sv)
4033
4034 =for hackers
4035 Found in file sv.h
4036
4037 =item SvNVX
4038 X<SvNVX>
4039
4040 Returns the raw value in the SV's NV slot, without checks or conversions.
4041 Only use when you are sure SvNOK is true. See also C<SvNV()>.
4042
4043         NV      SvNVX(SV* sv)
4044
4045 =for hackers
4046 Found in file sv.h
4047
4048 =item SvNVx
4049 X<SvNVx>
4050
4051 Coerces the given SV to a double and returns it. Guarantees to evaluate
4052 sv only once. Use the more efficient C<SvNV> otherwise.
4053
4054         NV      SvNVx(SV* sv)
4055
4056 =for hackers
4057 Found in file sv.h
4058
4059 =item SvNV_set
4060 X<SvNV_set>
4061
4062 Set the value of the NV pointer in sv to val.  See C<SvIV_set>.
4063
4064         void    SvNV_set(SV* sv, NV val)
4065
4066 =for hackers
4067 Found in file sv.h
4068
4069 =item SvOK
4070 X<SvOK>
4071
4072 Returns a boolean indicating whether the value is an SV. It also tells
4073 whether the value is defined or not.
4074
4075         bool    SvOK(SV* sv)
4076
4077 =for hackers
4078 Found in file sv.h
4079
4080 =item SvOOK
4081 X<SvOOK>
4082
4083 Returns a boolean indicating whether the SvIVX is a valid offset value for
4084 the SvPVX.  This hack is used internally to speed up removal of characters
4085 from the beginning of a SvPV.  When SvOOK is true, then the start of the
4086 allocated string buffer is really (SvPVX - SvIVX).
4087
4088         bool    SvOOK(SV* sv)
4089
4090 =for hackers
4091 Found in file sv.h
4092
4093 =item SvPOK
4094 X<SvPOK>
4095
4096 Returns a boolean indicating whether the SV contains a character
4097 string.
4098
4099         bool    SvPOK(SV* sv)
4100
4101 =for hackers
4102 Found in file sv.h
4103
4104 =item SvPOKp
4105 X<SvPOKp>
4106
4107 Returns a boolean indicating whether the SV contains a character string.
4108 Checks the B<private> setting.  Use C<SvPOK>.
4109
4110         bool    SvPOKp(SV* sv)
4111
4112 =for hackers
4113 Found in file sv.h
4114
4115 =item SvPOK_off
4116 X<SvPOK_off>
4117
4118 Unsets the PV status of an SV.
4119
4120         void    SvPOK_off(SV* sv)
4121
4122 =for hackers
4123 Found in file sv.h
4124
4125 =item SvPOK_on
4126 X<SvPOK_on>
4127
4128 Tells an SV that it is a string.
4129
4130         void    SvPOK_on(SV* sv)
4131
4132 =for hackers
4133 Found in file sv.h
4134
4135 =item SvPOK_only
4136 X<SvPOK_only>
4137
4138 Tells an SV that it is a string and disables all other OK bits.
4139 Will also turn off the UTF-8 status.
4140
4141         void    SvPOK_only(SV* sv)
4142
4143 =for hackers
4144 Found in file sv.h
4145
4146 =item SvPOK_only_UTF8
4147 X<SvPOK_only_UTF8>
4148
4149 Tells an SV that it is a string and disables all other OK bits,
4150 and leaves the UTF-8 status as it was.
4151
4152         void    SvPOK_only_UTF8(SV* sv)
4153
4154 =for hackers
4155 Found in file sv.h
4156
4157 =item SvPV
4158 X<SvPV>
4159
4160 Returns a pointer to the string in the SV, or a stringified form of
4161 the SV if the SV does not contain a string.  The SV may cache the
4162 stringified version becoming C<SvPOK>.  Handles 'get' magic. See also
4163 C<SvPVx> for a version which guarantees to evaluate sv only once.
4164
4165         char*   SvPV(SV* sv, STRLEN len)
4166
4167 =for hackers
4168 Found in file sv.h
4169
4170 =item SvPVbyte
4171 X<SvPVbyte>
4172
4173 Like C<SvPV>, but converts sv to byte representation first if necessary.
4174
4175         char*   SvPVbyte(SV* sv, STRLEN len)
4176
4177 =for hackers
4178 Found in file sv.h
4179
4180 =item SvPVbytex
4181 X<SvPVbytex>
4182
4183 Like C<SvPV>, but converts sv to byte representation first if necessary.
4184 Guarantees to evaluate sv only once; use the more efficient C<SvPVbyte>
4185 otherwise.
4186
4187         char*   SvPVbytex(SV* sv, STRLEN len)
4188
4189 =for hackers
4190 Found in file sv.h
4191
4192 =item SvPVbytex_force
4193 X<SvPVbytex_force>
4194
4195 Like C<SvPV_force>, but converts sv to byte representation first if necessary.
4196 Guarantees to evaluate sv only once; use the more efficient C<SvPVbyte_force>
4197 otherwise.
4198
4199         char*   SvPVbytex_force(SV* sv, STRLEN len)
4200
4201 =for hackers
4202 Found in file sv.h
4203
4204 =item SvPVbyte_force
4205 X<SvPVbyte_force>
4206
4207 Like C<SvPV_force>, but converts sv to byte representation first if necessary.
4208
4209         char*   SvPVbyte_force(SV* sv, STRLEN len)
4210
4211 =for hackers
4212 Found in file sv.h
4213
4214 =item SvPVbyte_nolen
4215 X<SvPVbyte_nolen>
4216
4217 Like C<SvPV_nolen>, but converts sv to byte representation first if necessary.
4218
4219         char*   SvPVbyte_nolen(SV* sv)
4220
4221 =for hackers
4222 Found in file sv.h
4223
4224 =item SvPVutf8
4225 X<SvPVutf8>
4226
4227 Like C<SvPV>, but converts sv to utf8 first if necessary.
4228
4229         char*   SvPVutf8(SV* sv, STRLEN len)
4230
4231 =for hackers
4232 Found in file sv.h
4233
4234 =item SvPVutf8x
4235 X<SvPVutf8x>
4236
4237 Like C<SvPV>, but converts sv to utf8 first if necessary.
4238 Guarantees to evaluate sv only once; use the more efficient C<SvPVutf8>
4239 otherwise.
4240
4241         char*   SvPVutf8x(SV* sv, STRLEN len)
4242
4243 =for hackers
4244 Found in file sv.h
4245
4246 =item SvPVutf8x_force
4247 X<SvPVutf8x_force>
4248
4249 Like C<SvPV_force>, but converts sv to utf8 first if necessary.
4250 Guarantees to evaluate sv only once; use the more efficient C<SvPVutf8_force>
4251 otherwise.
4252
4253         char*   SvPVutf8x_force(SV* sv, STRLEN len)
4254
4255 =for hackers
4256 Found in file sv.h
4257
4258 =item SvPVutf8_force
4259 X<SvPVutf8_force>
4260
4261 Like C<SvPV_force>, but converts sv to utf8 first if necessary.
4262
4263         char*   SvPVutf8_force(SV* sv, STRLEN len)
4264
4265 =for hackers
4266 Found in file sv.h
4267
4268 =item SvPVutf8_nolen
4269 X<SvPVutf8_nolen>
4270
4271 Like C<SvPV_nolen>, but converts sv to utf8 first if necessary.
4272
4273         char*   SvPVutf8_nolen(SV* sv)
4274
4275 =for hackers
4276 Found in file sv.h
4277
4278 =item SvPVX
4279 X<SvPVX>
4280
4281 Returns a pointer to the physical string in the SV.  The SV must contain a
4282 string.
4283
4284         char*   SvPVX(SV* sv)
4285
4286 =for hackers
4287 Found in file sv.h
4288
4289 =item SvPVx
4290 X<SvPVx>
4291
4292 A version of C<SvPV> which guarantees to evaluate sv only once.
4293
4294         char*   SvPVx(SV* sv, STRLEN len)
4295
4296 =for hackers
4297 Found in file sv.h
4298
4299 =item SvPV_force
4300 X<SvPV_force>
4301
4302 Like C<SvPV> but will force the SV into containing just a string
4303 (C<SvPOK_only>).  You want force if you are going to update the C<SvPVX>
4304 directly.
4305
4306         char*   SvPV_force(SV* sv, STRLEN len)
4307
4308 =for hackers
4309 Found in file sv.h
4310
4311 =item SvPV_force_nomg
4312 X<SvPV_force_nomg>
4313
4314 Like C<SvPV> but will force the SV into containing just a string
4315 (C<SvPOK_only>).  You want force if you are going to update the C<SvPVX>
4316 directly. Doesn't process magic.
4317
4318         char*   SvPV_force_nomg(SV* sv, STRLEN len)
4319
4320 =for hackers
4321 Found in file sv.h
4322
4323 =item SvPV_nolen
4324 X<SvPV_nolen>
4325
4326 Returns a pointer to the string in the SV, or a stringified form of
4327 the SV if the SV does not contain a string.  The SV may cache the
4328 stringified form becoming C<SvPOK>.  Handles 'get' magic.
4329
4330         char*   SvPV_nolen(SV* sv)
4331
4332 =for hackers
4333 Found in file sv.h
4334
4335 =item SvPV_nomg
4336 X<SvPV_nomg>
4337
4338 Like C<SvPV> but doesn't process magic.
4339
4340         char*   SvPV_nomg(SV* sv, STRLEN len)
4341
4342 =for hackers
4343 Found in file sv.h
4344
4345 =item SvPV_set
4346 X<SvPV_set>
4347
4348 Set the value of the PV pointer in sv to val.  See C<SvIV_set>.
4349
4350         void    SvPV_set(SV* sv, char* val)
4351
4352 =for hackers
4353 Found in file sv.h
4354
4355 =item SvREFCNT
4356 X<SvREFCNT>
4357
4358 Returns the value of the object's reference count.
4359
4360         U32     SvREFCNT(SV* sv)
4361
4362 =for hackers
4363 Found in file sv.h
4364
4365 =item SvREFCNT_dec
4366 X<SvREFCNT_dec>
4367
4368 Decrements the reference count of the given SV.
4369
4370         void    SvREFCNT_dec(SV* sv)
4371
4372 =for hackers
4373 Found in file sv.h
4374
4375 =item SvREFCNT_inc
4376 X<SvREFCNT_inc>
4377
4378 Increments the reference count of the given SV.
4379
4380 All of the following SvREFCNT_inc* macros are optimized versions of
4381 SvREFCNT_inc, and can be replaced with SvREFCNT_inc.
4382
4383         SV*     SvREFCNT_inc(SV* sv)
4384
4385 =for hackers
4386 Found in file sv.h
4387
4388 =item SvREFCNT_inc_NN
4389 X<SvREFCNT_inc_NN>
4390
4391 Same as SvREFCNT_inc, but can only be used if you know I<sv>
4392 is not NULL.  Since we don't have to check the NULLness, it's faster
4393 and smaller.
4394
4395         SV*     SvREFCNT_inc_NN(SV* sv)
4396
4397 =for hackers
4398 Found in file sv.h
4399
4400 =item SvREFCNT_inc_simple
4401 X<SvREFCNT_inc_simple>
4402
4403 Same as SvREFCNT_inc, but can only be used with simple variables, not
4404 expressions or pointer dereferences.  Since we don't have to store a
4405 temporary value, it's faster.
4406
4407         SV*     SvREFCNT_inc_simple(SV* sv)
4408
4409 =for hackers
4410 Found in file sv.h
4411
4412 =item SvREFCNT_inc_simple_NN
4413 X<SvREFCNT_inc_simple_NN>
4414
4415 Same as SvREFCNT_inc_simple, but can only be used if you know I<sv>
4416 is not NULL.  Since we don't have to check the NULLness, it's faster
4417 and smaller.
4418
4419         SV*     SvREFCNT_inc_simple_NN(SV* sv)
4420
4421 =for hackers
4422 Found in file sv.h
4423
4424 =item SvREFCNT_inc_simple_void
4425 X<SvREFCNT_inc_simple_void>
4426
4427 Same as SvREFCNT_inc_simple, but can only be used if you don't need the
4428 return value.  The macro doesn't need to return a meaningful value.
4429
4430         void    SvREFCNT_inc_simple_void(SV* sv)
4431
4432 =for hackers
4433 Found in file sv.h
4434
4435 =item SvREFCNT_inc_simple_void_NN
4436 X<SvREFCNT_inc_simple_void_NN>
4437
4438 Same as SvREFCNT_inc, but can only be used if you don't need the return
4439 value, and you know that I<sv> is not NULL.  The macro doesn't need
4440 to return a meaningful value, or check for NULLness, so it's smaller
4441 and faster.
4442
4443         void    SvREFCNT_inc_simple_void_NN(SV* sv)
4444
4445 =for hackers
4446 Found in file sv.h
4447
4448 =item SvREFCNT_inc_void
4449 X<SvREFCNT_inc_void>
4450
4451 Same as SvREFCNT_inc, but can only be used if you don't need the
4452 return value.  The macro doesn't need to return a meaningful value.
4453
4454         void    SvREFCNT_inc_void(SV* sv)
4455
4456 =for hackers
4457 Found in file sv.h
4458
4459 =item SvREFCNT_inc_void_NN
4460 X<SvREFCNT_inc_void_NN>
4461
4462 Same as SvREFCNT_inc, but can only be used if you don't need the return
4463 value, and you know that I<sv> is not NULL.  The macro doesn't need
4464 to return a meaningful value, or check for NULLness, so it's smaller
4465 and faster.
4466
4467         void    SvREFCNT_inc_void_NN(SV* sv)
4468
4469 =for hackers
4470 Found in file sv.h
4471
4472 =item SvROK
4473 X<SvROK>
4474
4475 Tests if the SV is an RV.
4476
4477         bool    SvROK(SV* sv)
4478
4479 =for hackers
4480 Found in file sv.h
4481
4482 =item SvROK_off
4483 X<SvROK_off>
4484
4485 Unsets the RV status of an SV.
4486
4487         void    SvROK_off(SV* sv)
4488
4489 =for hackers
4490 Found in file sv.h
4491
4492 =item SvROK_on
4493 X<SvROK_on>
4494
4495 Tells an SV that it is an RV.
4496
4497         void    SvROK_on(SV* sv)
4498
4499 =for hackers
4500 Found in file sv.h
4501
4502 =item SvRV
4503 X<SvRV>
4504
4505 Dereferences an RV to return the SV.
4506
4507         SV*     SvRV(SV* sv)
4508
4509 =for hackers
4510 Found in file sv.h
4511
4512 =item SvRV_set
4513 X<SvRV_set>
4514
4515 Set the value of the RV pointer in sv to val.  See C<SvIV_set>.
4516
4517         void    SvRV_set(SV* sv, SV* val)
4518
4519 =for hackers
4520 Found in file sv.h
4521
4522 =item SvSTASH
4523 X<SvSTASH>
4524
4525 Returns the stash of the SV.
4526
4527         HV*     SvSTASH(SV* sv)
4528
4529 =for hackers
4530 Found in file sv.h
4531
4532 =item SvSTASH_set
4533 X<SvSTASH_set>
4534
4535 Set the value of the STASH pointer in sv to val.  See C<SvIV_set>.
4536
4537         void    SvSTASH_set(SV* sv, HV* val)
4538
4539 =for hackers
4540 Found in file sv.h
4541
4542 =item SvTAINT
4543 X<SvTAINT>
4544
4545 Taints an SV if tainting is enabled.
4546
4547         void    SvTAINT(SV* sv)
4548
4549 =for hackers
4550 Found in file sv.h
4551
4552 =item SvTAINTED
4553 X<SvTAINTED>
4554
4555 Checks to see if an SV is tainted. Returns TRUE if it is, FALSE if
4556 not.
4557
4558         bool    SvTAINTED(SV* sv)
4559
4560 =for hackers
4561 Found in file sv.h
4562
4563 =item SvTAINTED_off
4564 X<SvTAINTED_off>
4565
4566 Untaints an SV. Be I<very> careful with this routine, as it short-circuits
4567 some of Perl's fundamental security features. XS module authors should not
4568 use this function unless they fully understand all the implications of
4569 unconditionally untainting the value. Untainting should be done in the
4570 standard perl fashion, via a carefully crafted regexp, rather than directly
4571 untainting variables.
4572
4573         void    SvTAINTED_off(SV* sv)
4574
4575 =for hackers
4576 Found in file sv.h
4577
4578 =item SvTAINTED_on
4579 X<SvTAINTED_on>
4580
4581 Marks an SV as tainted if tainting is enabled.
4582
4583         void    SvTAINTED_on(SV* sv)
4584
4585 =for hackers
4586 Found in file sv.h
4587
4588 =item SvTRUE
4589 X<SvTRUE>
4590
4591 Returns a boolean indicating whether Perl would evaluate the SV as true or
4592 false, defined or undefined.  Does not handle 'get' magic.
4593
4594         bool    SvTRUE(SV* sv)
4595
4596 =for hackers
4597 Found in file sv.h
4598
4599 =item SvTYPE
4600 X<SvTYPE>
4601
4602 Returns the type of the SV.  See C<svtype>.
4603
4604         svtype  SvTYPE(SV* sv)
4605
4606 =for hackers
4607 Found in file sv.h
4608
4609 =item SvUOK
4610 X<SvUOK>
4611
4612 Returns a boolean indicating whether the SV contains an unsigned integer.
4613
4614         void    SvUOK(SV* sv)
4615
4616 =for hackers
4617 Found in file sv.h
4618
4619 =item SvUPGRADE
4620 X<SvUPGRADE>
4621
4622 Used to upgrade an SV to a more complex form.  Uses C<sv_upgrade> to
4623 perform the upgrade if necessary.  See C<svtype>.
4624
4625         void    SvUPGRADE(SV* sv, svtype type)
4626
4627 =for hackers
4628 Found in file sv.h
4629
4630 =item SvUTF8
4631 X<SvUTF8>
4632
4633 Returns a boolean indicating whether the SV contains UTF-8 encoded data.
4634
4635         bool    SvUTF8(SV* sv)
4636
4637 =for hackers
4638 Found in file sv.h
4639
4640 =item SvUTF8_off
4641 X<SvUTF8_off>
4642
4643 Unsets the UTF-8 status of an SV.
4644
4645         void    SvUTF8_off(SV *sv)
4646
4647 =for hackers
4648 Found in file sv.h
4649
4650 =item SvUTF8_on
4651 X<SvUTF8_on>
4652
4653 Turn on the UTF-8 status of an SV (the data is not changed, just the flag).
4654 Do not use frivolously.
4655
4656         void    SvUTF8_on(SV *sv)
4657
4658 =for hackers
4659 Found in file sv.h
4660
4661 =item SvUV
4662 X<SvUV>
4663
4664 Coerces the given SV to an unsigned integer and returns it.  See C<SvUVx>
4665 for a version which guarantees to evaluate sv only once.
4666
4667         UV      SvUV(SV* sv)
4668
4669 =for hackers
4670 Found in file sv.h
4671
4672 =item SvUVX
4673 X<SvUVX>
4674
4675 Returns the raw value in the SV's UV slot, without checks or conversions.
4676 Only use when you are sure SvIOK is true. See also C<SvUV()>.
4677
4678         UV      SvUVX(SV* sv)
4679
4680 =for hackers
4681 Found in file sv.h
4682
4683 =item SvUVx
4684 X<SvUVx>
4685
4686 Coerces the given SV to an unsigned integer and returns it. Guarantees to
4687 evaluate sv only once. Use the more efficient C<SvUV> otherwise.
4688
4689         UV      SvUVx(SV* sv)
4690
4691 =for hackers
4692 Found in file sv.h
4693
4694 =item SvUV_nomg
4695 X<SvUV_nomg>
4696
4697 Like C<SvUV> but doesn't process magic.
4698
4699         UV      SvUV_nomg(SV* sv)
4700
4701 =for hackers
4702 Found in file sv.h
4703
4704 =item SvUV_set
4705 X<SvUV_set>
4706
4707 Set the value of the UV pointer in sv to val.  See C<SvIV_set>.
4708
4709         void    SvUV_set(SV* sv, UV val)
4710
4711 =for hackers
4712 Found in file sv.h
4713
4714 =item SvVOK
4715 X<SvVOK>
4716
4717 Returns a boolean indicating whether the SV contains a v-string.
4718
4719         bool    SvVOK(SV* sv)
4720
4721 =for hackers
4722 Found in file sv.h
4723
4724 =item sv_catpvn_nomg
4725 X<sv_catpvn_nomg>
4726
4727 Like C<sv_catpvn> but doesn't process magic.
4728
4729         void    sv_catpvn_nomg(SV* sv, const char* ptr, STRLEN len)
4730
4731 =for hackers
4732 Found in file sv.h
4733
4734 =item sv_catsv_nomg
4735 X<sv_catsv_nomg>
4736
4737 Like C<sv_catsv> but doesn't process magic.
4738
4739         void    sv_catsv_nomg(SV* dsv, SV* ssv)
4740
4741 =for hackers
4742 Found in file sv.h
4743
4744 =item sv_derived_from
4745 X<sv_derived_from>
4746
4747 Returns a boolean indicating whether the SV is derived from the specified class
4748 I<at the C level>.  To check derivation at the Perl level, call C<isa()> as a
4749 normal Perl method.
4750
4751         bool    sv_derived_from(SV* sv, const char* name)
4752
4753 =for hackers
4754 Found in file universal.c
4755
4756 =item sv_does
4757 X<sv_does>
4758
4759 Returns a boolean indicating whether the SV performs a specific, named role.
4760 The SV can be a Perl object or the name of a Perl class.
4761
4762         bool    sv_does(SV* sv, const char* name)
4763
4764 =for hackers
4765 Found in file universal.c
4766
4767 =item sv_report_used
4768 X<sv_report_used>
4769
4770 Dump the contents of all SVs not yet freed. (Debugging aid).
4771
4772         void    sv_report_used()
4773
4774 =for hackers
4775 Found in file sv.c
4776
4777 =item sv_setsv_nomg
4778 X<sv_setsv_nomg>
4779
4780 Like C<sv_setsv> but doesn't process magic.
4781
4782         void    sv_setsv_nomg(SV* dsv, SV* ssv)
4783
4784 =for hackers
4785 Found in file sv.h
4786
4787
4788 =back
4789
4790 =head1 SV-Body Allocation
4791
4792 =over 8
4793
4794 =item looks_like_number
4795 X<looks_like_number>
4796
4797 Test if the content of an SV looks like a number (or is a number).
4798 C<Inf> and C<Infinity> are treated as numbers (so will not issue a
4799 non-numeric warning), even if your atof() doesn't grok them.
4800
4801         I32     looks_like_number(SV* sv)
4802
4803 =for hackers
4804 Found in file sv.c
4805
4806 =item newRV_noinc
4807 X<newRV_noinc>
4808
4809 Creates an RV wrapper for an SV.  The reference count for the original
4810 SV is B<not> incremented.
4811
4812         SV*     newRV_noinc(SV* sv)
4813
4814 =for hackers
4815 Found in file sv.c
4816
4817 =item newSV
4818 X<newSV>
4819
4820 Creates a new SV.  A non-zero C<len> parameter indicates the number of
4821 bytes of preallocated string space the SV should have.  An extra byte for a
4822 trailing NUL is also reserved.  (SvPOK is not set for the SV even if string
4823 space is allocated.)  The reference count for the new SV is set to 1.
4824
4825 In 5.9.3, newSV() replaces the older NEWSV() API, and drops the first
4826 parameter, I<x>, a debug aid which allowed callers to identify themselves.
4827 This aid has been superseded by a new build option, PERL_MEM_LOG (see
4828 L<perlhack/PERL_MEM_LOG>).  The older API is still there for use in XS
4829 modules supporting older perls.
4830
4831         SV*     newSV(STRLEN len)
4832
4833 =for hackers
4834 Found in file sv.c
4835
4836 =item newSVhek
4837 X<newSVhek>
4838
4839 Creates a new SV from the hash key structure.  It will generate scalars that
4840 point to the shared string table where possible. Returns a new (undefined)
4841 SV if the hek is NULL.
4842
4843         SV*     newSVhek(const HEK *hek)
4844
4845 =for hackers
4846 Found in file sv.c
4847
4848 =item newSViv
4849 X<newSViv>
4850
4851 Creates a new SV and copies an integer into it.  The reference count for the
4852 SV is set to 1.
4853
4854         SV*     newSViv(IV i)
4855
4856 =for hackers
4857 Found in file sv.c
4858
4859 =item newSVnv
4860 X<newSVnv>
4861
4862 Creates a new SV and copies a floating point value into it.
4863 The reference count for the SV is set to 1.
4864
4865         SV*     newSVnv(NV n)
4866
4867 =for hackers
4868 Found in file sv.c
4869
4870 =item newSVpv
4871 X<newSVpv>
4872
4873 Creates a new SV and copies a string into it.  The reference count for the
4874 SV is set to 1.  If C<len> is zero, Perl will compute the length using
4875 strlen().  For efficiency, consider using C<newSVpvn> instead.
4876
4877         SV*     newSVpv(const char* s, STRLEN len)
4878
4879 =for hackers
4880 Found in file sv.c
4881
4882 =item newSVpvf
4883 X<newSVpvf>
4884
4885 Creates a new SV and initializes it with the string formatted like
4886 C<sprintf>.
4887
4888         SV*     newSVpvf(const char* pat, ...)
4889
4890 =for hackers
4891 Found in file sv.c
4892
4893 =item newSVpvn
4894 X<newSVpvn>
4895
4896 Creates a new SV and copies a string into it.  The reference count for the
4897 SV is set to 1.  Note that if C<len> is zero, Perl will create a zero length
4898 string.  You are responsible for ensuring that the source string is at least
4899 C<len> bytes long.  If the C<s> argument is NULL the new SV will be undefined.
4900
4901         SV*     newSVpvn(const char* s, STRLEN len)
4902
4903 =for hackers
4904 Found in file sv.c
4905
4906 =item newSVpvn_share
4907 X<newSVpvn_share>
4908
4909 Creates a new SV with its SvPVX_const pointing to a shared string in the string
4910 table. If the string does not already exist in the table, it is created
4911 first.  Turns on READONLY and FAKE.  The string's hash is stored in the UV
4912 slot of the SV; if the C<hash> parameter is non-zero, that value is used;
4913 otherwise the hash is computed.  The idea here is that as the string table
4914 is used for shared hash keys these strings will have SvPVX_const == HeKEY and
4915 hash lookup will avoid string compare.
4916
4917         SV*     newSVpvn_share(const char* s, I32 len, U32 hash)
4918
4919 =for hackers
4920 Found in file sv.c
4921
4922 =item newSVpvs
4923 X<newSVpvs>
4924
4925 Like C<newSVpvn>, but takes a literal string instead of a string/length pair.
4926
4927         SV*     newSVpvs(const char* s)
4928
4929 =for hackers
4930 Found in file handy.h
4931
4932 =item newSVpvs_share
4933 X<newSVpvs_share>
4934
4935 Like C<newSVpvn_share>, but takes a literal string instead of a string/length
4936 pair and omits the hash parameter.
4937
4938         SV*     newSVpvs_share(const char* s)
4939
4940 =for hackers
4941 Found in file handy.h
4942
4943 =item newSVrv
4944 X<newSVrv>
4945
4946 Creates a new SV for the RV, C<rv>, to point to.  If C<rv> is not an RV then
4947 it will be upgraded to one.  If C<classname> is non-null then the new SV will
4948 be blessed in the specified package.  The new SV is returned and its
4949 reference count is 1.
4950
4951         SV*     newSVrv(SV* rv, const char* classname)
4952
4953 =for hackers
4954 Found in file sv.c
4955
4956 =item newSVsv
4957 X<newSVsv>
4958
4959 Creates a new SV which is an exact duplicate of the original SV.
4960 (Uses C<sv_setsv>).
4961
4962         SV*     newSVsv(SV* old)
4963
4964 =for hackers
4965 Found in file sv.c
4966
4967 =item newSVuv
4968 X<newSVuv>
4969
4970 Creates a new SV and copies an unsigned integer into it.
4971 The reference count for the SV is set to 1.
4972
4973         SV*     newSVuv(UV u)
4974
4975 =for hackers
4976 Found in file sv.c
4977
4978 =item sv_2bool
4979 X<sv_2bool>
4980
4981 This function is only called on magical items, and is only used by
4982 sv_true() or its macro equivalent.
4983
4984         bool    sv_2bool(SV* sv)
4985
4986 =for hackers
4987 Found in file sv.c
4988
4989 =item sv_2cv
4990 X<sv_2cv>
4991
4992 Using various gambits, try to get a CV from an SV; in addition, try if
4993 possible to set C<*st> and C<*gvp> to the stash and GV associated with it.
4994 The flags in C<lref> are passed to sv_fetchsv.
4995
4996         CV*     sv_2cv(SV* sv, HV** st, GV** gvp, I32 lref)
4997
4998 =for hackers
4999 Found in file sv.c
5000
5001 =item sv_2io
5002 X<sv_2io>
5003
5004 Using various gambits, try to get an IO from an SV: the IO slot if its a
5005 GV; or the recursive result if we're an RV; or the IO slot of the symbol
5006 named after the PV if we're a string.
5007
5008         IO*     sv_2io(SV* sv)
5009
5010 =for hackers
5011 Found in file sv.c
5012
5013 =item sv_2iv_flags
5014 X<sv_2iv_flags>
5015
5016 Return the integer value of an SV, doing any necessary string
5017 conversion.  If flags includes SV_GMAGIC, does an mg_get() first.
5018 Normally used via the C<SvIV(sv)> and C<SvIVx(sv)> macros.
5019
5020         IV      sv_2iv_flags(SV* sv, I32 flags)
5021
5022 =for hackers
5023 Found in file sv.c
5024
5025 =item sv_2mortal
5026 X<sv_2mortal>
5027
5028 Marks an existing SV as mortal.  The SV will be destroyed "soon", either
5029 by an explicit call to FREETMPS, or by an implicit call at places such as
5030 statement boundaries.  SvTEMP() is turned on which means that the SV's
5031 string buffer can be "stolen" if this SV is copied. See also C<sv_newmortal>
5032 and C<sv_mortalcopy>.
5033
5034         SV*     sv_2mortal(SV* sv)
5035
5036 =for hackers
5037 Found in file sv.c
5038
5039 =item sv_2nv
5040 X<sv_2nv>
5041
5042 Return the num value of an SV, doing any necessary string or integer
5043 conversion, magic etc. Normally used via the C<SvNV(sv)> and C<SvNVx(sv)>
5044 macros.
5045
5046         NV      sv_2nv(SV* sv)
5047
5048 =for hackers
5049 Found in file sv.c
5050
5051 =item sv_2pvbyte
5052 X<sv_2pvbyte>
5053
5054 Return a pointer to the byte-encoded representation of the SV, and set *lp
5055 to its length.  May cause the SV to be downgraded from UTF-8 as a
5056 side-effect.
5057
5058 Usually accessed via the C<SvPVbyte> macro.
5059
5060         char*   sv_2pvbyte(SV* sv, STRLEN* lp)
5061
5062 =for hackers
5063 Found in file sv.c
5064
5065 =item sv_2pvutf8
5066 X<sv_2pvutf8>
5067
5068 Return a pointer to the UTF-8-encoded representation of the SV, and set *lp
5069 to its length.  May cause the SV to be upgraded to UTF-8 as a side-effect.
5070
5071 Usually accessed via the C<SvPVutf8> macro.
5072
5073         char*   sv_2pvutf8(SV* sv, STRLEN* lp)
5074
5075 =for hackers
5076 Found in file sv.c
5077
5078 =item sv_2pv_flags
5079 X<sv_2pv_flags>
5080
5081 Returns a pointer to the string value of an SV, and sets *lp to its length.
5082 If flags includes SV_GMAGIC, does an mg_get() first. Coerces sv to a string
5083 if necessary.
5084 Normally invoked via the C<SvPV_flags> macro. C<sv_2pv()> and C<sv_2pv_nomg>
5085 usually end up here too.
5086
5087         char*   sv_2pv_flags(SV* sv, STRLEN* lp, I32 flags)
5088
5089 =for hackers
5090 Found in file sv.c
5091
5092 =item sv_2uv_flags
5093 X<sv_2uv_flags>
5094
5095 Return the unsigned integer value of an SV, doing any necessary string
5096 conversion.  If flags includes SV_GMAGIC, does an mg_get() first.
5097 Normally used via the C<SvUV(sv)> and C<SvUVx(sv)> macros.
5098
5099         UV      sv_2uv_flags(SV* sv, I32 flags)
5100
5101 =for hackers
5102 Found in file sv.c
5103
5104 =item sv_backoff
5105 X<sv_backoff>
5106
5107 Remove any string offset. You should normally use the C<SvOOK_off> macro
5108 wrapper instead.
5109
5110         int     sv_backoff(SV* sv)
5111
5112 =for hackers
5113 Found in file sv.c
5114
5115 =item sv_bless
5116 X<sv_bless>
5117
5118 Blesses an SV into a specified package.  The SV must be an RV.  The package
5119 must be designated by its stash (see C<gv_stashpv()>).  The reference count
5120 of the SV is unaffected.
5121
5122         SV*     sv_bless(SV* sv, HV* stash)
5123
5124 =for hackers
5125 Found in file sv.c
5126
5127 =item sv_catpv
5128 X<sv_catpv>
5129
5130 Concatenates the string onto the end of the string which is in the SV.
5131 If the SV has the UTF-8 status set, then the bytes appended should be
5132 valid UTF-8.  Handles 'get' magic, but not 'set' magic.  See C<sv_catpv_mg>.
5133
5134         void    sv_catpv(SV* sv, const char* ptr)
5135
5136 =for hackers
5137 Found in file sv.c
5138
5139 =item sv_catpvf
5140 X<sv_catpvf>
5141
5142 Processes its arguments like C<sprintf> and appends the formatted
5143 output to an SV.  If the appended data contains "wide" characters
5144 (including, but not limited to, SVs with a UTF-8 PV formatted with %s,
5145 and characters >255 formatted with %c), the original SV might get
5146 upgraded to UTF-8.  Handles 'get' magic, but not 'set' magic.  See
5147 C<sv_catpvf_mg>. If the original SV was UTF-8, the pattern should be
5148 valid UTF-8; if the original SV was bytes, the pattern should be too.
5149
5150         void    sv_catpvf(SV* sv, const char* pat, ...)
5151
5152 =for hackers
5153 Found in file sv.c
5154
5155 =item sv_catpvf_mg
5156 X<sv_catpvf_mg>
5157
5158 Like C<sv_catpvf>, but also handles 'set' magic.
5159
5160         void    sv_catpvf_mg(SV *sv, const char* pat, ...)
5161
5162 =for hackers
5163 Found in file sv.c
5164
5165 =item sv_catpvn
5166 X<sv_catpvn>
5167
5168 Concatenates the string onto the end of the string which is in the SV.  The
5169 C<len> indicates number of bytes to copy.  If the SV has the UTF-8
5170 status set, then the bytes appended should be valid UTF-8.
5171 Handles 'get' magic, but not 'set' magic.  See C<sv_catpvn_mg>.
5172
5173         void    sv_catpvn(SV* sv, const char* ptr, STRLEN len)
5174
5175 =for hackers
5176 Found in file sv.c
5177
5178 =item sv_catpvn_flags
5179 X<sv_catpvn_flags>
5180
5181 Concatenates the string onto the end of the string which is in the SV.  The
5182 C<len> indicates number of bytes to copy.  If the SV has the UTF-8
5183 status set, then the bytes appended should be valid UTF-8.
5184 If C<flags> has C<SV_GMAGIC> bit set, will C<mg_get> on C<dsv> if
5185 appropriate, else not. C<sv_catpvn> and C<sv_catpvn_nomg> are implemented
5186 in terms of this function.
5187
5188         void    sv_catpvn_flags(SV* sv, const char* ptr, STRLEN len, I32 flags)
5189
5190 =for hackers
5191 Found in file sv.c
5192
5193 =item sv_catpvs
5194 X<sv_catpvs>
5195
5196 Like C<sv_catpvn>, but takes a literal string instead of a string/length pair.
5197
5198         void    sv_catpvs(SV* sv, const char* s)
5199
5200 =for hackers
5201 Found in file handy.h
5202
5203 =item sv_catpv_mg
5204 X<sv_catpv_mg>
5205
5206 Like C<sv_catpv>, but also handles 'set' magic.
5207
5208         void    sv_catpv_mg(SV *sv, const char *ptr)
5209
5210 =for hackers
5211 Found in file sv.c
5212
5213 =item sv_catsv
5214 X<sv_catsv>
5215
5216 Concatenates the string from SV C<ssv> onto the end of the string in
5217 SV C<dsv>.  Modifies C<dsv> but not C<ssv>.  Handles 'get' magic, but
5218 not 'set' magic.  See C<sv_catsv_mg>.
5219
5220         void    sv_catsv(SV* dsv, SV* ssv)
5221
5222 =for hackers
5223 Found in file sv.c
5224
5225 =item sv_catsv_flags
5226 X<sv_catsv_flags>
5227
5228 Concatenates the string from SV C<ssv> onto the end of the string in
5229 SV C<dsv>.  Modifies C<dsv> but not C<ssv>.  If C<flags> has C<SV_GMAGIC>
5230 bit set, will C<mg_get> on the SVs if appropriate, else not. C<sv_catsv>
5231 and C<sv_catsv_nomg> are implemented in terms of this function.
5232
5233         void    sv_catsv_flags(SV* dsv, SV* ssv, I32 flags)
5234
5235 =for hackers
5236 Found in file sv.c
5237
5238 =item sv_chop
5239 X<sv_chop>
5240
5241 Efficient removal of characters from the beginning of the string buffer.
5242 SvPOK(sv) must be true and the C<ptr> must be a pointer to somewhere inside
5243 the string buffer.  The C<ptr> becomes the first character of the adjusted
5244 string. Uses the "OOK hack".
5245 Beware: after this function returns, C<ptr> and SvPVX_const(sv) may no longer
5246 refer to the same chunk of data.
5247
5248         void    sv_chop(SV* sv, const char* ptr)
5249
5250 =for hackers
5251 Found in file sv.c
5252
5253 =item sv_clear
5254 X<sv_clear>
5255
5256 Clear an SV: call any destructors, free up any memory used by the body,
5257 and free the body itself. The SV's head is I<not> freed, although
5258 its type is set to all 1's so that it won't inadvertently be assumed
5259 to be live during global destruction etc.
5260 This function should only be called when REFCNT is zero. Most of the time
5261 you'll want to call C<sv_free()> (or its macro wrapper C<SvREFCNT_dec>)
5262 instead.
5263
5264         void    sv_clear(SV* sv)
5265
5266 =for hackers
5267 Found in file sv.c
5268
5269 =item sv_cmp
5270 X<sv_cmp>
5271
5272 Compares the strings in two SVs.  Returns -1, 0, or 1 indicating whether the
5273 string in C<sv1> is less than, equal to, or greater than the string in
5274 C<sv2>. Is UTF-8 and 'use bytes' aware, handles get magic, and will
5275 coerce its args to strings if necessary.  See also C<sv_cmp_locale>.
5276
5277         I32     sv_cmp(SV* sv1, SV* sv2)
5278
5279 =for hackers
5280 Found in file sv.c
5281
5282 =item sv_cmp_locale
5283 X<sv_cmp_locale>
5284
5285 Compares the strings in two SVs in a locale-aware manner. Is UTF-8 and
5286 'use bytes' aware, handles get magic, and will coerce its args to strings
5287 if necessary.  See also C<sv_cmp_locale>.  See also C<sv_cmp>.
5288
5289         I32     sv_cmp_locale(SV* sv1, SV* sv2)
5290
5291 =for hackers
5292 Found in file sv.c
5293
5294 =item sv_collxfrm
5295 X<sv_collxfrm>
5296
5297 Add Collate Transform magic to an SV if it doesn't already have it.
5298
5299 Any scalar variable may carry PERL_MAGIC_collxfrm magic that contains the
5300 scalar data of the variable, but transformed to such a format that a normal
5301 memory comparison can be used to compare the data according to the locale
5302 settings.
5303
5304         char*   sv_collxfrm(SV* sv, STRLEN* nxp)
5305
5306 =for hackers
5307 Found in file sv.c
5308
5309 =item sv_copypv
5310 X<sv_copypv>
5311
5312 Copies a stringified representation of the source SV into the
5313 destination SV.  Automatically performs any necessary mg_get and
5314 coercion of numeric values into strings.  Guaranteed to preserve
5315 UTF-8 flag even from overloaded objects.  Similar in nature to
5316 sv_2pv[_flags] but operates directly on an SV instead of just the
5317 string.  Mostly uses sv_2pv_flags to do its work, except when that
5318 would lose the UTF-8'ness of the PV.
5319
5320         void    sv_copypv(SV* dsv, SV* ssv)
5321
5322 =for hackers
5323 Found in file sv.c
5324
5325 =item sv_dec
5326 X<sv_dec>
5327
5328 Auto-decrement of the value in the SV, doing string to numeric conversion
5329 if necessary. Handles 'get' magic.
5330
5331         void    sv_dec(SV* sv)
5332
5333 =for hackers
5334 Found in file sv.c
5335
5336 =item sv_eq
5337 X<sv_eq>
5338
5339 Returns a boolean indicating whether the strings in the two SVs are
5340 identical. Is UTF-8 and 'use bytes' aware, handles get magic, and will
5341 coerce its args to strings if necessary.
5342
5343         I32     sv_eq(SV* sv1, SV* sv2)
5344
5345 =for hackers
5346 Found in file sv.c
5347
5348 =item sv_force_normal_flags
5349 X<sv_force_normal_flags>
5350
5351 Undo various types of fakery on an SV: if the PV is a shared string, make
5352 a private copy; if we're a ref, stop refing; if we're a glob, downgrade to
5353 an xpvmg; if we're a copy-on-write scalar, this is the on-write time when
5354 we do the copy, and is also used locally. If C<SV_COW_DROP_PV> is set
5355 then a copy-on-write scalar drops its PV buffer (if any) and becomes
5356 SvPOK_off rather than making a copy. (Used where this scalar is about to be
5357 set to some other value.) In addition, the C<flags> parameter gets passed to
5358 C<sv_unref_flags()> when unrefing. C<sv_force_normal> calls this function
5359 with flags set to 0.
5360
5361         void    sv_force_normal_flags(SV *sv, U32 flags)
5362
5363 =for hackers
5364 Found in file sv.c
5365
5366 =item sv_free
5367 X<sv_free>
5368
5369 Decrement an SV's reference count, and if it drops to zero, call
5370 C<sv_clear> to invoke destructors and free up any memory used by
5371 the body; finally, deallocate the SV's head itself.
5372 Normally called via a wrapper macro C<SvREFCNT_dec>.
5373
5374         void    sv_free(SV* sv)
5375
5376 =for hackers
5377 Found in file sv.c
5378
5379 =item sv_gets
5380 X<sv_gets>
5381
5382 Get a line from the filehandle and store it into the SV, optionally
5383 appending to the currently-stored string.
5384
5385         char*   sv_gets(SV* sv, PerlIO* fp, I32 append)
5386
5387 =for hackers
5388 Found in file sv.c
5389
5390 =item sv_grow
5391 X<sv_grow>
5392
5393 Expands the character buffer in the SV.  If necessary, uses C<sv_unref> and
5394 upgrades the SV to C<SVt_PV>.  Returns a pointer to the character buffer.
5395 Use the C<SvGROW> wrapper instead.
5396
5397         char*   sv_grow(SV* sv, STRLEN newlen)
5398
5399 =for hackers
5400 Found in file sv.c
5401
5402 =item sv_inc
5403 X<sv_inc>
5404
5405 Auto-increment of the value in the SV, doing string to numeric conversion
5406 if necessary. Handles 'get' magic.
5407
5408         void    sv_inc(SV* sv)
5409
5410 =for hackers
5411 Found in file sv.c
5412
5413 =item sv_insert
5414 X<sv_insert>
5415
5416 Inserts a string at the specified offset/length within the SV. Similar to
5417 the Perl substr() function.
5418
5419         void    sv_insert(SV* bigsv, STRLEN offset, STRLEN len, const char* little, STRLEN littlelen)
5420
5421 =for hackers
5422 Found in file sv.c
5423
5424 =item sv_isa
5425 X<sv_isa>
5426
5427 Returns a boolean indicating whether the SV is blessed into the specified
5428 class.  This does not check for subtypes; use C<sv_derived_from> to verify
5429 an inheritance relationship.
5430
5431         int     sv_isa(SV* sv, const char* name)
5432
5433 =for hackers
5434 Found in file sv.c
5435
5436 =item sv_isobject
5437 X<sv_isobject>
5438
5439 Returns a boolean indicating whether the SV is an RV pointing to a blessed
5440 object.  If the SV is not an RV, or if the object is not blessed, then this
5441 will return false.
5442
5443         int     sv_isobject(SV* sv)
5444
5445 =for hackers
5446 Found in file sv.c
5447
5448 =item sv_len
5449 X<sv_len>
5450
5451 Returns the length of the string in the SV. Handles magic and type
5452 coercion.  See also C<SvCUR>, which gives raw access to the xpv_cur slot.
5453
5454         STRLEN  sv_len(SV* sv)
5455
5456 =for hackers
5457 Found in file sv.c
5458
5459 =item sv_len_utf8
5460 X<sv_len_utf8>
5461
5462 Returns the number of characters in the string in an SV, counting wide
5463 UTF-8 bytes as a single character. Handles magic and type coercion.
5464
5465         STRLEN  sv_len_utf8(SV* sv)
5466
5467 =for hackers
5468 Found in file sv.c
5469
5470 =item sv_magic
5471 X<sv_magic>
5472
5473 Adds magic to an SV. First upgrades C<sv> to type C<SVt_PVMG> if necessary,
5474 then adds a new magic item of type C<how> to the head of the magic list.
5475
5476 See C<sv_magicext> (which C<sv_magic> now calls) for a description of the
5477 handling of the C<name> and C<namlen> arguments.
5478
5479 You need to use C<sv_magicext> to add magic to SvREADONLY SVs and also
5480 to add more than one instance of the same 'how'.
5481
5482         void    sv_magic(SV* sv, SV* obj, int how, const char* name, I32 namlen)
5483
5484 =for hackers
5485 Found in file sv.c
5486
5487 =item sv_magicext
5488 X<sv_magicext>
5489
5490 Adds magic to an SV, upgrading it if necessary. Applies the
5491 supplied vtable and returns a pointer to the magic added.
5492
5493 Note that C<sv_magicext> will allow things that C<sv_magic> will not.
5494 In particular, you can add magic to SvREADONLY SVs, and add more than
5495 one instance of the same 'how'.
5496
5497 If C<namlen> is greater than zero then a C<savepvn> I<copy> of C<name> is
5498 stored, if C<namlen> is zero then C<name> is stored as-is and - as another
5499 special case - if C<(name && namlen == HEf_SVKEY)> then C<name> is assumed
5500 to contain an C<SV*> and is stored as-is with its REFCNT incremented.
5501
5502 (This is now used as a subroutine by C<sv_magic>.)
5503
5504         MAGIC * sv_magicext(SV* sv, SV* obj, int how, MGVTBL *vtbl, const char* name, I32 namlen)
5505
5506 =for hackers
5507 Found in file sv.c
5508
5509 =item sv_mortalcopy
5510 X<sv_mortalcopy>
5511
5512 Creates a new SV which is a copy of the original SV (using C<sv_setsv>).
5513 The new SV is marked as mortal. It will be destroyed "soon", either by an
5514 explicit call to FREETMPS, or by an implicit call at places such as
5515 statement boundaries.  See also C<sv_newmortal> and C<sv_2mortal>.
5516
5517         SV*     sv_mortalcopy(SV* oldsv)
5518
5519 =for hackers
5520 Found in file sv.c
5521
5522 =item sv_newmortal
5523 X<sv_newmortal>
5524
5525 Creates a new null SV which is mortal.  The reference count of the SV is
5526 set to 1. It will be destroyed "soon", either by an explicit call to
5527 FREETMPS, or by an implicit call at places such as statement boundaries.
5528 See also C<sv_mortalcopy> and C<sv_2mortal>.
5529
5530         SV*     sv_newmortal()
5531
5532 =for hackers
5533 Found in file sv.c
5534
5535 =item sv_newref
5536 X<sv_newref>
5537
5538 Increment an SV's reference count. Use the C<SvREFCNT_inc()> wrapper
5539 instead.
5540
5541         SV*     sv_newref(SV* sv)
5542
5543 =for hackers
5544 Found in file sv.c
5545
5546 =item sv_pos_b2u
5547 X<sv_pos_b2u>
5548
5549 Converts the value pointed to by offsetp from a count of bytes from the
5550 start of the string, to a count of the equivalent number of UTF-8 chars.
5551 Handles magic and type coercion.
5552
5553         void    sv_pos_b2u(SV* sv, I32* offsetp)
5554
5555 =for hackers
5556 Found in file sv.c
5557
5558 =item sv_pos_u2b
5559 X<sv_pos_u2b>
5560
5561 Converts the value pointed to by offsetp from a count of UTF-8 chars from
5562 the start of the string, to a count of the equivalent number of bytes; if
5563 lenp is non-zero, it does the same to lenp, but this time starting from
5564 the offset, rather than from the start of the string. Handles magic and
5565 type coercion.
5566
5567         void    sv_pos_u2b(SV* sv, I32* offsetp, I32* lenp)
5568
5569 =for hackers
5570 Found in file sv.c
5571
5572 =item sv_pvbyten_force
5573 X<sv_pvbyten_force>
5574
5575 The backend for the C<SvPVbytex_force> macro. Always use the macro instead.
5576
5577         char*   sv_pvbyten_force(SV* sv, STRLEN* lp)
5578
5579 =for hackers
5580 Found in file sv.c
5581
5582 =item sv_pvn_force
5583 X<sv_pvn_force>
5584
5585 Get a sensible string out of the SV somehow.
5586 A private implementation of the C<SvPV_force> macro for compilers which
5587 can't cope with complex macro expressions. Always use the macro instead.
5588
5589         char*   sv_pvn_force(SV* sv, STRLEN* lp)
5590
5591 =for hackers
5592 Found in file sv.c
5593
5594 =item sv_pvn_force_flags
5595 X<sv_pvn_force_flags>
5596
5597 Get a sensible string out of the SV somehow.
5598 If C<flags> has C<SV_GMAGIC> bit set, will C<mg_get> on C<sv> if
5599 appropriate, else not. C<sv_pvn_force> and C<sv_pvn_force_nomg> are
5600 implemented in terms of this function.
5601 You normally want to use the various wrapper macros instead: see
5602 C<SvPV_force> and C<SvPV_force_nomg>
5603
5604         char*   sv_pvn_force_flags(SV* sv, STRLEN* lp, I32 flags)
5605
5606 =for hackers
5607 Found in file sv.c
5608
5609 =item sv_pvutf8n_force
5610 X<sv_pvutf8n_force>
5611
5612 The backend for the C<SvPVutf8x_force> macro. Always use the macro instead.
5613
5614         char*   sv_pvutf8n_force(SV* sv, STRLEN* lp)
5615
5616 =for hackers
5617 Found in file sv.c
5618
5619 =item sv_reftype
5620 X<sv_reftype>
5621
5622 Returns a string describing what the SV is a reference to.
5623
5624         const char*     sv_reftype(const SV* sv, int ob)
5625
5626 =for hackers
5627 Found in file sv.c
5628
5629 =item sv_replace
5630 X<sv_replace>
5631
5632 Make the first argument a copy of the second, then delete the original.
5633 The target SV physically takes over ownership of the body of the source SV
5634 and inherits its flags; however, the target keeps any magic it owns,
5635 and any magic in the source is discarded.
5636 Note that this is a rather specialist SV copying operation; most of the
5637 time you'll want to use C<sv_setsv> or one of its many macro front-ends.
5638
5639         void    sv_replace(SV* sv, SV* nsv)
5640
5641 =for hackers
5642 Found in file sv.c
5643
5644 =item sv_reset
5645 X<sv_reset>
5646
5647 Underlying implementation for the C<reset> Perl function.
5648 Note that the perl-level function is vaguely deprecated.
5649
5650         void    sv_reset(const char* s, HV* stash)
5651
5652 =for hackers
5653 Found in file sv.c
5654
5655 =item sv_rvweaken
5656 X<sv_rvweaken>
5657
5658 Weaken a reference: set the C<SvWEAKREF> flag on this RV; give the
5659 referred-to SV C<PERL_MAGIC_backref> magic if it hasn't already; and
5660 push a back-reference to this RV onto the array of backreferences
5661 associated with that magic. If the RV is magical, set magic will be
5662 called after the RV is cleared.
5663
5664         SV*     sv_rvweaken(SV *sv)
5665
5666 =for hackers
5667 Found in file sv.c
5668
5669 =item sv_setiv
5670 X<sv_setiv>
5671
5672 Copies an integer into the given SV, upgrading first if necessary.
5673 Does not handle 'set' magic.  See also C<sv_setiv_mg>.
5674
5675         void    sv_setiv(SV* sv, IV num)
5676
5677 =for hackers
5678 Found in file sv.c
5679
5680 =item sv_setiv_mg
5681 X<sv_setiv_mg>
5682
5683 Like C<sv_setiv>, but also handles 'set' magic.
5684
5685         void    sv_setiv_mg(SV *sv, IV i)
5686
5687 =for hackers
5688 Found in file sv.c
5689
5690 =item sv_setnv
5691 X<sv_setnv>
5692
5693 Copies a double into the given SV, upgrading first if necessary.
5694 Does not handle 'set' magic.  See also C<sv_setnv_mg>.
5695
5696         void    sv_setnv(SV* sv, NV num)
5697
5698 =for hackers
5699 Found in file sv.c
5700
5701 =item sv_setnv_mg
5702 X<sv_setnv_mg>
5703
5704 Like C<sv_setnv>, but also handles 'set' magic.
5705
5706         void    sv_setnv_mg(SV *sv, NV num)
5707
5708 =for hackers
5709 Found in file sv.c
5710
5711 =item sv_setpv
5712 X<sv_setpv>
5713
5714 Copies a string into an SV.  The string must be null-terminated.  Does not
5715 handle 'set' magic.  See C<sv_setpv_mg>.
5716
5717         void    sv_setpv(SV* sv, const char* ptr)
5718
5719 =for hackers
5720 Found in file sv.c
5721
5722 =item sv_setpvf
5723 X<sv_setpvf>
5724
5725 Works like C<sv_catpvf> but copies the text into the SV instead of
5726 appending it.  Does not handle 'set' magic.  See C<sv_setpvf_mg>.
5727
5728         void    sv_setpvf(SV* sv, const char* pat, ...)
5729
5730 =for hackers
5731 Found in file sv.c
5732
5733 =item sv_setpvf_mg
5734 X<sv_setpvf_mg>
5735
5736 Like C<sv_setpvf>, but also handles 'set' magic.
5737
5738         void    sv_setpvf_mg(SV *sv, const char* pat, ...)
5739
5740 =for hackers
5741 Found in file sv.c
5742
5743 =item sv_setpviv
5744 X<sv_setpviv>
5745
5746 Copies an integer into the given SV, also updating its string value.
5747 Does not handle 'set' magic.  See C<sv_setpviv_mg>.
5748
5749         void    sv_setpviv(SV* sv, IV num)
5750
5751 =for hackers
5752 Found in file sv.c
5753
5754 =item sv_setpviv_mg
5755 X<sv_setpviv_mg>
5756
5757 Like C<sv_setpviv>, but also handles 'set' magic.
5758
5759         void    sv_setpviv_mg(SV *sv, IV iv)
5760
5761 =for hackers
5762 Found in file sv.c
5763
5764 =item sv_setpvn
5765 X<sv_setpvn>
5766
5767 Copies a string into an SV.  The C<len> parameter indicates the number of
5768 bytes to be copied.  If the C<ptr> argument is NULL the SV will become
5769 undefined.  Does not handle 'set' magic.  See C<sv_setpvn_mg>.
5770
5771         void    sv_setpvn(SV* sv, const char* ptr, STRLEN len)
5772
5773 =for hackers
5774 Found in file sv.c
5775
5776 =item sv_setpvn_mg
5777 X<sv_setpvn_mg>
5778
5779 Like C<sv_setpvn>, but also handles 'set' magic.
5780
5781         void    sv_setpvn_mg(SV *sv, const char *ptr, STRLEN len)
5782
5783 =for hackers
5784 Found in file sv.c
5785
5786 =item sv_setpvs
5787 X<sv_setpvs>
5788
5789 Like C<sv_setpvn>, but takes a literal string instead of a string/length pair.
5790
5791         void    sv_setpvs(SV* sv, const char* s)
5792
5793 =for hackers
5794 Found in file handy.h
5795
5796 =item sv_setpv_mg
5797 X<sv_setpv_mg>
5798
5799 Like C<sv_setpv>, but also handles 'set' magic.
5800
5801         void    sv_setpv_mg(SV *sv, const char *ptr)
5802
5803 =for hackers
5804 Found in file sv.c
5805
5806 =item sv_setref_iv
5807 X<sv_setref_iv>
5808
5809 Copies an integer into a new SV, optionally blessing the SV.  The C<rv>
5810 argument will be upgraded to an RV.  That RV will be modified to point to
5811 the new SV.  The C<classname> argument indicates the package for the
5812 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
5813 will have a reference count of 1, and the RV will be returned.
5814
5815         SV*     sv_setref_iv(SV* rv, const char* classname, IV iv)
5816
5817 =for hackers
5818 Found in file sv.c
5819
5820 =item sv_setref_nv
5821 X<sv_setref_nv>
5822
5823 Copies a double into a new SV, optionally blessing the SV.  The C<rv>
5824 argument will be upgraded to an RV.  That RV will be modified to point to
5825 the new SV.  The C<classname> argument indicates the package for the
5826 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
5827 will have a reference count of 1, and the RV will be returned.
5828
5829         SV*     sv_setref_nv(SV* rv, const char* classname, NV nv)
5830
5831 =for hackers
5832 Found in file sv.c
5833
5834 =item sv_setref_pv
5835 X<sv_setref_pv>
5836
5837 Copies a pointer into a new SV, optionally blessing the SV.  The C<rv>
5838 argument will be upgraded to an RV.  That RV will be modified to point to
5839 the new SV.  If the C<pv> argument is NULL then C<PL_sv_undef> will be placed
5840 into the SV.  The C<classname> argument indicates the package for the
5841 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
5842 will have a reference count of 1, and the RV will be returned.
5843
5844 Do not use with other Perl types such as HV, AV, SV, CV, because those
5845 objects will become corrupted by the pointer copy process.
5846
5847 Note that C<sv_setref_pvn> copies the string while this copies the pointer.
5848
5849         SV*     sv_setref_pv(SV* rv, const char* classname, void* pv)
5850
5851 =for hackers
5852 Found in file sv.c
5853
5854 =item sv_setref_pvn
5855 X<sv_setref_pvn>
5856
5857 Copies a string into a new SV, optionally blessing the SV.  The length of the
5858 string must be specified with C<n>.  The C<rv> argument will be upgraded to
5859 an RV.  That RV will be modified to point to the new SV.  The C<classname>
5860 argument indicates the package for the blessing.  Set C<classname> to
5861 C<NULL> to avoid the blessing.  The new SV will have a reference count
5862 of 1, and the RV will be returned.
5863
5864 Note that C<sv_setref_pv> copies the pointer while this copies the string.
5865
5866         SV*     sv_setref_pvn(SV* rv, const char* classname, const char* pv, STRLEN n)
5867
5868 =for hackers
5869 Found in file sv.c
5870
5871 =item sv_setref_uv
5872 X<sv_setref_uv>
5873
5874 Copies an unsigned integer into a new SV, optionally blessing the SV.  The C<rv>
5875 argument will be upgraded to an RV.  That RV will be modified to point to
5876 the new SV.  The C<classname> argument indicates the package for the
5877 blessing.  Set C<classname> to C<NULL> to avoid the blessing.  The new SV
5878 will have a reference count of 1, and the RV will be returned.
5879
5880         SV*     sv_setref_uv(SV* rv, const char* classname, UV uv)
5881
5882 =for hackers
5883 Found in file sv.c
5884
5885 =item sv_setsv
5886 X<sv_setsv>
5887
5888 Copies the contents of the source SV C<ssv> into the destination SV
5889 C<dsv>.  The source SV may be destroyed if it is mortal, so don't use this
5890 function if the source SV needs to be reused. Does not handle 'set' magic.
5891 Loosely speaking, it performs a copy-by-value, obliterating any previous
5892 content of the destination.
5893
5894 You probably want to use one of the assortment of wrappers, such as
5895 C<SvSetSV>, C<SvSetSV_nosteal>, C<SvSetMagicSV> and
5896 C<SvSetMagicSV_nosteal>.
5897
5898         void    sv_setsv(SV* dsv, SV* ssv)
5899
5900 =for hackers
5901 Found in file sv.c
5902
5903 =item sv_setsv_flags
5904 X<sv_setsv_flags>
5905
5906 Copies the contents of the source SV C<ssv> into the destination SV
5907 C<dsv>.  The source SV may be destroyed if it is mortal, so don't use this
5908 function if the source SV needs to be reused. Does not handle 'set' magic.
5909 Loosely speaking, it performs a copy-by-value, obliterating any previous
5910 content of the destination.
5911 If the C<flags> parameter has the C<SV_GMAGIC> bit set, will C<mg_get> on
5912 C<ssv> if appropriate, else not. If the C<flags> parameter has the
5913 C<NOSTEAL> bit set then the buffers of temps will not be stolen. <sv_setsv>
5914 and C<sv_setsv_nomg> are implemented in terms of this function.
5915
5916 You probably want to use one of the assortment of wrappers, such as
5917 C<SvSetSV>, C<SvSetSV_nosteal>, C<SvSetMagicSV> and
5918 C<SvSetMagicSV_nosteal>.
5919
5920 This is the primary function for copying scalars, and most other
5921 copy-ish functions and macros use this underneath.
5922
5923         void    sv_setsv_flags(SV* dsv, SV* ssv, I32 flags)
5924
5925 =for hackers
5926 Found in file sv.c
5927
5928 =item sv_setsv_mg
5929 X<sv_setsv_mg>
5930
5931 Like C<sv_setsv>, but also handles 'set' magic.
5932
5933         void    sv_setsv_mg(SV *dstr, SV *sstr)
5934
5935 =for hackers
5936 Found in file sv.c
5937
5938 =item sv_setuv
5939 X<sv_setuv>
5940
5941 Copies an unsigned integer into the given SV, upgrading first if necessary.
5942 Does not handle 'set' magic.  See also C<sv_setuv_mg>.
5943
5944         void    sv_setuv(SV* sv, UV num)
5945
5946 =for hackers
5947 Found in file sv.c
5948
5949 =item sv_setuv_mg
5950 X<sv_setuv_mg>
5951
5952 Like C<sv_setuv>, but also handles 'set' magic.
5953
5954         void    sv_setuv_mg(SV *sv, UV u)
5955
5956 =for hackers
5957 Found in file sv.c
5958
5959 =item sv_tainted
5960 X<sv_tainted>
5961
5962 Test an SV for taintedness. Use C<SvTAINTED> instead.
5963         bool    sv_tainted(SV* sv)
5964
5965 =for hackers
5966 Found in file sv.c
5967
5968 =item sv_true
5969 X<sv_true>
5970
5971 Returns true if the SV has a true value by Perl's rules.
5972 Use the C<SvTRUE> macro instead, which may call C<sv_true()> or may
5973 instead use an in-line version.
5974
5975         I32     sv_true(SV *sv)
5976
5977 =for hackers
5978 Found in file sv.c
5979
5980 =item sv_unmagic
5981 X<sv_unmagic>
5982
5983 Removes all magic of type C<type> from an SV.
5984
5985         int     sv_unmagic(SV* sv, int type)
5986
5987 =for hackers
5988 Found in file sv.c
5989
5990 =item sv_unref_flags
5991 X<sv_unref_flags>
5992
5993 Unsets the RV status of the SV, and decrements the reference count of
5994 whatever was being referenced by the RV.  This can almost be thought of
5995 as a reversal of C<newSVrv>.  The C<cflags> argument can contain
5996 C<SV_IMMEDIATE_UNREF> to force the reference count to be decremented
5997 (otherwise the decrementing is conditional on the reference count being
5998 different from one or the reference being a readonly SV).
5999 See C<SvROK_off>.
6000
6001         void    sv_unref_flags(SV* sv, U32 flags)
6002
6003 =for hackers
6004 Found in file sv.c
6005
6006 =item sv_untaint
6007 X<sv_untaint>
6008
6009 Untaint an SV. Use C<SvTAINTED_off> instead.
6010         void    sv_untaint(SV* sv)
6011
6012 =for hackers
6013 Found in file sv.c
6014
6015 =item sv_upgrade
6016 X<sv_upgrade>
6017
6018 Upgrade an SV to a more complex form.  Generally adds a new body type to the
6019 SV, then copies across as much information as possible from the old body.
6020 You generally want to use the C<SvUPGRADE> macro wrapper. See also C<svtype>.
6021
6022         void    sv_upgrade(SV* sv, svtype new_type)
6023
6024 =for hackers
6025 Found in file sv.c
6026
6027 =item sv_usepvn_flags
6028 X<sv_usepvn_flags>
6029
6030 Tells an SV to use C<ptr> to find its string value.  Normally the
6031 string is stored inside the SV but sv_usepvn allows the SV to use an
6032 outside string.  The C<ptr> should point to memory that was allocated
6033 by C<malloc>.  The string length, C<len>, must be supplied.  By default
6034 this function will realloc (i.e. move) the memory pointed to by C<ptr>,
6035 so that pointer should not be freed or used by the programmer after
6036 giving it to sv_usepvn, and neither should any pointers from "behind"
6037 that pointer (e.g. ptr + 1) be used.
6038
6039 If C<flags> & SV_SMAGIC is true, will call SvSETMAGIC. If C<flags> &
6040 SV_HAS_TRAILING_NUL is true, then C<ptr[len]> must be NUL, and the realloc
6041 will be skipped. (i.e. the buffer is actually at least 1 byte longer than
6042 C<len>, and already meets the requirements for storing in C<SvPVX>)
6043
6044         void    sv_usepvn_flags(SV* sv, char* ptr, STRLEN len, U32 flags)
6045
6046 =for hackers
6047 Found in file sv.c
6048
6049 =item sv_utf8_decode
6050 X<sv_utf8_decode>
6051
6052 If the PV of the SV is an octet sequence in UTF-8
6053 and contains a multiple-byte character, the C<SvUTF8> flag is turned on
6054 so that it looks like a character. If the PV contains only single-byte
6055 characters, the C<SvUTF8> flag stays being off.
6056 Scans PV for validity and returns false if the PV is invalid UTF-8.
6057
6058 NOTE: this function is experimental and may change or be
6059 removed without notice.
6060
6061         bool    sv_utf8_decode(SV *sv)
6062
6063 =for hackers
6064 Found in file sv.c
6065
6066 =item sv_utf8_downgrade
6067 X<sv_utf8_downgrade>
6068
6069 Attempts to convert the PV of an SV from characters to bytes.
6070 If the PV contains a character beyond byte, this conversion will fail;
6071 in this case, either returns false or, if C<fail_ok> is not
6072 true, croaks.
6073
6074 This is not as a general purpose Unicode to byte encoding interface:
6075 use the Encode extension for that.
6076
6077 NOTE: this function is experimental and may change or be
6078 removed without notice.
6079
6080         bool    sv_utf8_downgrade(SV *sv, bool fail_ok)
6081
6082 =for hackers
6083 Found in file sv.c
6084
6085 =item sv_utf8_encode
6086 X<sv_utf8_encode>
6087
6088 Converts the PV of an SV to UTF-8, but then turns the C<SvUTF8>
6089 flag off so that it looks like octets again.
6090
6091         void    sv_utf8_encode(SV *sv)
6092
6093 =for hackers
6094 Found in file sv.c
6095
6096 =item sv_utf8_upgrade
6097 X<sv_utf8_upgrade>
6098
6099 Converts the PV of an SV to its UTF-8-encoded form.
6100 Forces the SV to string form if it is not already.
6101 Always sets the SvUTF8 flag to avoid future validity checks even
6102 if all the bytes have hibit clear.
6103
6104 This is not as a general purpose byte encoding to Unicode interface:
6105 use the Encode extension for that.
6106
6107         STRLEN  sv_utf8_upgrade(SV *sv)
6108
6109 =for hackers
6110 Found in file sv.c
6111
6112 =item sv_utf8_upgrade_flags
6113 X<sv_utf8_upgrade_flags>
6114
6115 Converts the PV of an SV to its UTF-8-encoded form.
6116 Forces the SV to string form if it is not already.
6117 Always sets the SvUTF8 flag to avoid future validity checks even
6118 if all the bytes have hibit clear. If C<flags> has C<SV_GMAGIC> bit set,
6119 will C<mg_get> on C<sv> if appropriate, else not. C<sv_utf8_upgrade> and
6120 C<sv_utf8_upgrade_nomg> are implemented in terms of this function.
6121
6122 This is not as a general purpose byte encoding to Unicode interface:
6123 use the Encode extension for that.
6124
6125         STRLEN  sv_utf8_upgrade_flags(SV *sv, I32 flags)
6126
6127 =for hackers
6128 Found in file sv.c
6129
6130 =item sv_vcatpvf
6131 X<sv_vcatpvf>
6132
6133 Processes its arguments like C<vsprintf> and appends the formatted output
6134 to an SV.  Does not handle 'set' magic.  See C<sv_vcatpvf_mg>.
6135
6136 Usually used via its frontend C<sv_catpvf>.
6137
6138         void    sv_vcatpvf(SV* sv, const char* pat, va_list* args)
6139
6140 =for hackers
6141 Found in file sv.c
6142
6143 =item sv_vcatpvfn
6144 X<sv_vcatpvfn>
6145
6146 Processes its arguments like C<vsprintf> and appends the formatted output
6147 to an SV.  Uses an array of SVs if the C style variable argument list is
6148 missing (NULL).  When running with taint checks enabled, indicates via
6149 C<maybe_tainted> if results are untrustworthy (often due to the use of
6150 locales).
6151
6152 Usually used via one of its frontends C<sv_vcatpvf> and C<sv_vcatpvf_mg>.
6153
6154         void    sv_vcatpvfn(SV* sv, const char* pat, STRLEN patlen, va_list* args, SV** svargs, I32 svmax, bool *maybe_tainted)
6155
6156 =for hackers
6157 Found in file sv.c
6158
6159 =item sv_vcatpvf_mg
6160 X<sv_vcatpvf_mg>
6161
6162 Like C<sv_vcatpvf>, but also handles 'set' magic.
6163
6164 Usually used via its frontend C<sv_catpvf_mg>.
6165
6166         void    sv_vcatpvf_mg(SV* sv, const char* pat, va_list* args)
6167
6168 =for hackers
6169 Found in file sv.c
6170
6171 =item sv_vsetpvf
6172 X<sv_vsetpvf>
6173
6174 Works like C<sv_vcatpvf> but copies the text into the SV instead of
6175 appending it.  Does not handle 'set' magic.  See C<sv_vsetpvf_mg>.
6176
6177 Usually used via its frontend C<sv_setpvf>.
6178
6179         void    sv_vsetpvf(SV* sv, const char* pat, va_list* args)
6180
6181 =for hackers
6182 Found in file sv.c
6183
6184 =item sv_vsetpvfn
6185 X<sv_vsetpvfn>
6186
6187 Works like C<sv_vcatpvfn> but copies the text into the SV instead of
6188 appending it.
6189
6190 Usually used via one of its frontends C<sv_vsetpvf> and C<sv_vsetpvf_mg>.
6191
6192         void    sv_vsetpvfn(SV* sv, const char* pat, STRLEN patlen, va_list* args, SV** svargs, I32 svmax, bool *maybe_tainted)
6193
6194 =for hackers
6195 Found in file sv.c
6196
6197 =item sv_vsetpvf_mg
6198 X<sv_vsetpvf_mg>
6199
6200 Like C<sv_vsetpvf>, but also handles 'set' magic.
6201
6202 Usually used via its frontend C<sv_setpvf_mg>.
6203
6204         void    sv_vsetpvf_mg(SV* sv, const char* pat, va_list* args)
6205
6206 =for hackers
6207 Found in file sv.c
6208
6209
6210 =back
6211
6212 =head1 Unicode Support
6213
6214 =over 8
6215
6216 =item bytes_from_utf8
6217 X<bytes_from_utf8>
6218
6219 Converts a string C<s> of length C<len> from UTF-8 into byte encoding.
6220 Unlike C<utf8_to_bytes> but like C<bytes_to_utf8>, returns a pointer to
6221 the newly-created string, and updates C<len> to contain the new
6222 length.  Returns the original string if no conversion occurs, C<len>
6223 is unchanged. Do nothing if C<is_utf8> points to 0. Sets C<is_utf8> to
6224 0 if C<s> is converted or contains all 7bit characters.
6225
6226 NOTE: this function is experimental and may change or be
6227 removed without notice.
6228
6229         U8*     bytes_from_utf8(const U8 *s, STRLEN *len, bool *is_utf8)
6230
6231 =for hackers
6232 Found in file utf8.c
6233
6234 =item bytes_to_utf8
6235 X<bytes_to_utf8>
6236
6237 Converts a string C<s> of length C<len> from ASCII into UTF-8 encoding.
6238 Returns a pointer to the newly-created string, and sets C<len> to
6239 reflect the new length.
6240
6241 If you want to convert to UTF-8 from other encodings than ASCII,
6242 see sv_recode_to_utf8().
6243
6244 NOTE: this function is experimental and may change or be
6245 removed without notice.
6246
6247         U8*     bytes_to_utf8(const U8 *s, STRLEN *len)
6248
6249 =for hackers
6250 Found in file utf8.c
6251
6252 =item ibcmp_utf8
6253 X<ibcmp_utf8>
6254
6255 Return true if the strings s1 and s2 differ case-insensitively, false
6256 if not (if they are equal case-insensitively).  If u1 is true, the
6257 string s1 is assumed to be in UTF-8-encoded Unicode.  If u2 is true,
6258 the string s2 is assumed to be in UTF-8-encoded Unicode.  If u1 or u2
6259 are false, the respective string is assumed to be in native 8-bit
6260 encoding.
6261
6262 If the pe1 and pe2 are non-NULL, the scanning pointers will be copied
6263 in there (they will point at the beginning of the I<next> character).
6264 If the pointers behind pe1 or pe2 are non-NULL, they are the end
6265 pointers beyond which scanning will not continue under any
6266 circumstances.  If the byte lengths l1 and l2 are non-zero, s1+l1 and
6267 s2+l2 will be used as goal end pointers that will also stop the scan,
6268 and which qualify towards defining a successful match: all the scans
6269 that define an explicit length must reach their goal pointers for
6270 a match to succeed).
6271
6272 For case-insensitiveness, the "casefolding" of Unicode is used
6273 instead of upper/lowercasing both the characters, see
6274 http://www.unicode.org/unicode/reports/tr21/ (Case Mappings).
6275
6276         I32     ibcmp_utf8(const char* a, char **pe1, UV l1, bool u1, const char* b, char **pe2, UV l2, bool u2)
6277
6278 =for hackers
6279 Found in file utf8.c
6280
6281 =item is_utf8_char
6282 X<is_utf8_char>
6283
6284 Tests if some arbitrary number of bytes begins in a valid UTF-8
6285 character.  Note that an INVARIANT (i.e. ASCII) character is a valid
6286 UTF-8 character.  The actual number of bytes in the UTF-8 character
6287 will be returned if it is valid, otherwise 0.
6288
6289         STRLEN  is_utf8_char(const U8 *p)
6290
6291 =for hackers
6292 Found in file utf8.c
6293
6294 =item is_utf8_string
6295 X<is_utf8_string>
6296
6297 Returns true if first C<len> bytes of the given string form a valid
6298 UTF-8 string, false otherwise.  Note that 'a valid UTF-8 string' does
6299 not mean 'a string that contains code points above 0x7F encoded in UTF-8'
6300 because a valid ASCII string is a valid UTF-8 string.
6301
6302 See also is_utf8_string_loclen() and is_utf8_string_loc().
6303
6304         bool    is_utf8_string(const U8 *s, STRLEN len)
6305
6306 =for hackers
6307 Found in file utf8.c
6308
6309 =item is_utf8_string_loc
6310 X<is_utf8_string_loc>
6311
6312 Like is_utf8_string() but stores the location of the failure (in the
6313 case of "utf8ness failure") or the location s+len (in the case of
6314 "utf8ness success") in the C<ep>.
6315
6316 See also is_utf8_string_loclen() and is_utf8_string().
6317
6318         bool    is_utf8_string_loc(const U8 *s, STRLEN len, const U8 **p)
6319
6320 =for hackers
6321 Found in file utf8.c
6322
6323 =item is_utf8_string_loclen
6324 X<is_utf8_string_loclen>
6325
6326 Like is_utf8_string() but stores the location of the failure (in the
6327 case of "utf8ness failure") or the location s+len (in the case of
6328 "utf8ness success") in the C<ep>, and the number of UTF-8
6329 encoded characters in the C<el>.
6330
6331 See also is_utf8_string_loc() and is_utf8_string().
6332
6333         bool    is_utf8_string_loclen(const U8 *s, STRLEN len, const U8 **ep, STRLEN *el)
6334
6335 =for hackers
6336 Found in file utf8.c
6337
6338 =item pv_uni_display
6339 X<pv_uni_display>
6340
6341 Build to the scalar dsv a displayable version of the string spv,
6342 length len, the displayable version being at most pvlim bytes long
6343 (if longer, the rest is truncated and "..." will be appended).
6344
6345 The flags argument can have UNI_DISPLAY_ISPRINT set to display
6346 isPRINT()able characters as themselves, UNI_DISPLAY_BACKSLASH
6347 to display the \\[nrfta\\] as the backslashed versions (like '\n')
6348 (UNI_DISPLAY_BACKSLASH is preferred over UNI_DISPLAY_ISPRINT for \\).
6349 UNI_DISPLAY_QQ (and its alias UNI_DISPLAY_REGEX) have both
6350 UNI_DISPLAY_BACKSLASH and UNI_DISPLAY_ISPRINT turned on.
6351
6352 The pointer to the PV of the dsv is returned.
6353
6354         char*   pv_uni_display(SV *dsv, const U8 *spv, STRLEN len, STRLEN pvlim, UV flags)
6355
6356 =for hackers
6357 Found in file utf8.c
6358
6359 =item sv_cat_decode
6360 X<sv_cat_decode>
6361
6362 The encoding is assumed to be an Encode object, the PV of the ssv is
6363 assumed to be octets in that encoding and decoding the input starts
6364 from the position which (PV + *offset) pointed to.  The dsv will be
6365 concatenated the decoded UTF-8 string from ssv.  Decoding will terminate
6366 when the string tstr appears in decoding output or the input ends on
6367 the PV of the ssv. The value which the offset points will be modified
6368 to the last input position on the ssv.
6369
6370 Returns TRUE if the terminator was found, else returns FALSE.
6371
6372         bool    sv_cat_decode(SV* dsv, SV *encoding, SV *ssv, int *offset, char* tstr, int tlen)
6373
6374 =for hackers
6375 Found in file sv.c
6376
6377 =item sv_recode_to_utf8
6378 X<sv_recode_to_utf8>
6379
6380 The encoding is assumed to be an Encode object, on entry the PV
6381 of the sv is assumed to be octets in that encoding, and the sv
6382 will be converted into Unicode (and UTF-8).
6383
6384 If the sv already is UTF-8 (or if it is not POK), or if the encoding
6385 is not a reference, nothing is done to the sv.  If the encoding is not
6386 an C<Encode::XS> Encoding object, bad things will happen.
6387 (See F<lib/encoding.pm> and L<Encode>).
6388
6389 The PV of the sv is returned.
6390
6391         char*   sv_recode_to_utf8(SV* sv, SV *encoding)
6392
6393 =for hackers
6394 Found in file sv.c
6395
6396 =item sv_uni_display
6397 X<sv_uni_display>
6398
6399 Build to the scalar dsv a displayable version of the scalar sv,
6400 the displayable version being at most pvlim bytes long
6401 (if longer, the rest is truncated and "..." will be appended).
6402
6403 The flags argument is as in pv_uni_display().
6404
6405 The pointer to the PV of the dsv is returned.
6406
6407         char*   sv_uni_display(SV *dsv, SV *ssv, STRLEN pvlim, UV flags)
6408
6409 =for hackers
6410 Found in file utf8.c
6411
6412 =item to_utf8_case
6413 X<to_utf8_case>
6414
6415 The "p" contains the pointer to the UTF-8 string encoding
6416 the character that is being converted.
6417
6418 The "ustrp" is a pointer to the character buffer to put the
6419 conversion result to.  The "lenp" is a pointer to the length
6420 of the result.
6421
6422 The "swashp" is a pointer to the swash to use.
6423
6424 Both the special and normal mappings are stored lib/unicore/To/Foo.pl,
6425 and loaded by SWASHNEW, using lib/utf8_heavy.pl.  The special (usually,
6426 but not always, a multicharacter mapping), is tried first.
6427
6428 The "special" is a string like "utf8::ToSpecLower", which means the
6429 hash %utf8::ToSpecLower.  The access to the hash is through
6430 Perl_to_utf8_case().
6431
6432 The "normal" is a string like "ToLower" which means the swash
6433 %utf8::ToLower.
6434
6435         UV      to_utf8_case(const U8 *p, U8* ustrp, STRLEN *lenp, SV **swashp, const char *normal, const char *special)
6436
6437 =for hackers
6438 Found in file utf8.c
6439
6440 =item to_utf8_fold
6441 X<to_utf8_fold>
6442
6443 Convert the UTF-8 encoded character at p to its foldcase version and
6444 store that in UTF-8 in ustrp and its length in bytes in lenp.  Note
6445 that the ustrp needs to be at least UTF8_MAXBYTES_CASE+1 bytes since the
6446 foldcase version may be longer than the original character (up to
6447 three characters).
6448
6449 The first character of the foldcased version is returned
6450 (but note, as explained above, that there may be more.)
6451
6452         UV      to_utf8_fold(const U8 *p, U8* ustrp, STRLEN *lenp)
6453
6454 =for hackers
6455 Found in file utf8.c
6456
6457 =item to_utf8_lower
6458 X<to_utf8_lower>
6459
6460 Convert the UTF-8 encoded character at p to its lowercase version and
6461 store that in UTF-8 in ustrp and its length in bytes in lenp.  Note
6462 that the ustrp needs to be at least UTF8_MAXBYTES_CASE+1 bytes since the
6463 lowercase version may be longer than the original character.
6464
6465 The first character of the lowercased version is returned
6466 (but note, as explained above, that there may be more.)
6467
6468         UV      to_utf8_lower(const U8 *p, U8* ustrp, STRLEN *lenp)
6469
6470 =for hackers
6471 Found in file utf8.c
6472
6473 =item to_utf8_title
6474 X<to_utf8_title>
6475
6476 Convert the UTF-8 encoded character at p to its titlecase version and
6477 store that in UTF-8 in ustrp and its length in bytes in lenp.  Note
6478 that the ustrp needs to be at least UTF8_MAXBYTES_CASE+1 bytes since the
6479 titlecase version may be longer than the original character.
6480
6481 The first character of the titlecased version is returned
6482 (but note, as explained above, that there may be more.)
6483
6484         UV      to_utf8_title(const U8 *p, U8* ustrp, STRLEN *lenp)
6485
6486 =for hackers
6487 Found in file utf8.c
6488
6489 =item to_utf8_upper
6490 X<to_utf8_upper>
6491
6492 Convert the UTF-8 encoded character at p to its uppercase version and
6493 store that in UTF-8 in ustrp and its length in bytes in lenp.  Note
6494 that the ustrp needs to be at least UTF8_MAXBYTES_CASE+1 bytes since
6495 the uppercase version may be longer than the original character.
6496
6497 The first character of the uppercased version is returned
6498 (but note, as explained above, that there may be more.)
6499
6500         UV      to_utf8_upper(const U8 *p, U8* ustrp, STRLEN *lenp)
6501
6502 =for hackers
6503 Found in file utf8.c
6504
6505 =item utf8n_to_uvchr
6506 X<utf8n_to_uvchr>
6507
6508 flags
6509
6510 Returns the native character value of the first character in the string 
6511 C<s>
6512 which is assumed to be in UTF-8 encoding; C<retlen> will be set to the
6513 length, in bytes, of that character.
6514
6515 Allows length and flags to be passed to low level routine.
6516
6517         UV      utf8n_to_uvchr(const U8 *s, STRLEN curlen, STRLEN *retlen, U32 flags)
6518
6519 =for hackers
6520 Found in file utf8.c
6521
6522 =item utf8n_to_uvuni
6523 X<utf8n_to_uvuni>
6524
6525 Bottom level UTF-8 decode routine.
6526 Returns the unicode code point value of the first character in the string C<s>
6527 which is assumed to be in UTF-8 encoding and no longer than C<curlen>;
6528 C<retlen> will be set to the length, in bytes, of that character.
6529
6530 If C<s> does not point to a well-formed UTF-8 character, the behaviour
6531 is dependent on the value of C<flags>: if it contains UTF8_CHECK_ONLY,
6532 it is assumed that the caller will raise a warning, and this function
6533 will silently just set C<retlen> to C<-1> and return zero.  If the
6534 C<flags> does not contain UTF8_CHECK_ONLY, warnings about
6535 malformations will be given, C<retlen> will be set to the expected
6536 length of the UTF-8 character in bytes, and zero will be returned.
6537
6538 The C<flags> can also contain various flags to allow deviations from
6539 the strict UTF-8 encoding (see F<utf8.h>).
6540
6541 Most code should use utf8_to_uvchr() rather than call this directly.
6542
6543         UV      utf8n_to_uvuni(const U8 *s, STRLEN curlen, STRLEN *retlen, U32 flags)
6544
6545 =for hackers
6546 Found in file utf8.c
6547
6548 =item utf8_distance
6549 X<utf8_distance>
6550
6551 Returns the number of UTF-8 characters between the UTF-8 pointers C<a>
6552 and C<b>.
6553
6554 WARNING: use only if you *know* that the pointers point inside the
6555 same UTF-8 buffer.
6556
6557         IV      utf8_distance(const U8 *a, const U8 *b)
6558
6559 =for hackers
6560 Found in file utf8.c
6561
6562 =item utf8_hop
6563 X<utf8_hop>
6564
6565 Return the UTF-8 pointer C<s> displaced by C<off> characters, either
6566 forward or backward.
6567
6568 WARNING: do not use the following unless you *know* C<off> is within
6569 the UTF-8 data pointed to by C<s> *and* that on entry C<s> is aligned
6570 on the first byte of character or just after the last byte of a character.
6571
6572         U8*     utf8_hop(const U8 *s, I32 off)
6573
6574 =for hackers
6575 Found in file utf8.c
6576
6577 =item utf8_length
6578 X<utf8_length>
6579
6580 Return the length of the UTF-8 char encoded string C<s> in characters.
6581 Stops at C<e> (inclusive).  If C<e E<lt> s> or if the scan would end
6582 up past C<e>, croaks.
6583
6584         STRLEN  utf8_length(const U8* s, const U8 *e)
6585
6586 =for hackers
6587 Found in file utf8.c
6588
6589 =item utf8_to_bytes
6590 X<utf8_to_bytes>
6591
6592 Converts a string C<s> of length C<len> from UTF-8 into byte encoding.
6593 Unlike C<bytes_to_utf8>, this over-writes the original string, and
6594 updates len to contain the new length.
6595 Returns zero on failure, setting C<len> to -1.
6596
6597 If you need a copy of the string, see C<bytes_from_utf8>.
6598
6599 NOTE: this function is experimental and may change or be
6600 removed without notice.
6601
6602         U8*     utf8_to_bytes(U8 *s, STRLEN *len)
6603
6604 =for hackers
6605 Found in file utf8.c
6606
6607 =item utf8_to_uvchr
6608 X<utf8_to_uvchr>
6609
6610 Returns the native character value of the first character in the string C<s>
6611 which is assumed to be in UTF-8 encoding; C<retlen> will be set to the
6612 length, in bytes, of that character.
6613
6614 If C<s> does not point to a well-formed UTF-8 character, zero is
6615 returned and retlen is set, if possible, to -1.
6616
6617         UV      utf8_to_uvchr(const U8 *s, STRLEN *retlen)
6618
6619 =for hackers
6620 Found in file utf8.c
6621
6622 =item utf8_to_uvuni
6623 X<utf8_to_uvuni>
6624
6625 Returns the Unicode code point of the first character in the string C<s>
6626 which is assumed to be in UTF-8 encoding; C<retlen> will be set to the
6627 length, in bytes, of that character.
6628
6629 This function should only be used when returned UV is considered
6630 an index into the Unicode semantic tables (e.g. swashes).
6631
6632 If C<s> does not point to a well-formed UTF-8 character, zero is
6633 returned and retlen is set, if possible, to -1.
6634
6635         UV      utf8_to_uvuni(const U8 *s, STRLEN *retlen)
6636
6637 =for hackers
6638 Found in file utf8.c
6639
6640 =item uvchr_to_utf8
6641 X<uvchr_to_utf8>
6642
6643 Adds the UTF-8 representation of the Native codepoint C<uv> to the end
6644 of the string C<d>; C<d> should be have at least C<UTF8_MAXBYTES+1> free
6645 bytes available. The return value is the pointer to the byte after the
6646 end of the new character. In other words,
6647
6648     d = uvchr_to_utf8(d, uv);
6649
6650 is the recommended wide native character-aware way of saying
6651
6652     *(d++) = uv;
6653
6654         U8*     uvchr_to_utf8(U8 *d, UV uv)
6655
6656 =for hackers
6657 Found in file utf8.c
6658
6659 =item uvuni_to_utf8_flags
6660 X<uvuni_to_utf8_flags>
6661
6662 Adds the UTF-8 representation of the Unicode codepoint C<uv> to the end
6663 of the string C<d>; C<d> should be have at least C<UTF8_MAXBYTES+1> free
6664 bytes available. The return value is the pointer to the byte after the
6665 end of the new character. In other words,
6666
6667     d = uvuni_to_utf8_flags(d, uv, flags);
6668
6669 or, in most cases,
6670
6671     d = uvuni_to_utf8(d, uv);
6672
6673 (which is equivalent to)
6674
6675     d = uvuni_to_utf8_flags(d, uv, 0);
6676
6677 is the recommended Unicode-aware way of saying
6678
6679     *(d++) = uv;
6680
6681         U8*     uvuni_to_utf8_flags(U8 *d, UV uv, UV flags)
6682
6683 =for hackers
6684 Found in file utf8.c
6685
6686
6687 =back
6688
6689 =head1 Variables created by C<xsubpp> and C<xsubpp> internal functions
6690
6691 =over 8
6692
6693 =item ax
6694 X<ax>
6695
6696 Variable which is setup by C<xsubpp> to indicate the stack base offset,
6697 used by the C<ST>, C<XSprePUSH> and C<XSRETURN> macros.  The C<dMARK> macro
6698 must be called prior to setup the C<MARK> variable.
6699
6700         I32     ax
6701
6702 =for hackers
6703 Found in file XSUB.h
6704
6705 =item CLASS
6706 X<CLASS>
6707
6708 Variable which is setup by C<xsubpp> to indicate the 
6709 class name for a C++ XS constructor.  This is always a C<char*>.  See C<THIS>.
6710
6711         char*   CLASS
6712
6713 =for hackers
6714 Found in file XSUB.h
6715
6716 =item dAX
6717 X<dAX>
6718
6719 Sets up the C<ax> variable.
6720 This is usually handled automatically by C<xsubpp> by calling C<dXSARGS>.
6721
6722                 dAX;
6723
6724 =for hackers
6725 Found in file XSUB.h
6726
6727 =item dAXMARK
6728 X<dAXMARK>
6729
6730 Sets up the C<ax> variable and stack marker variable C<mark>.
6731 This is usually handled automatically by C<xsubpp> by calling C<dXSARGS>.
6732
6733                 dAXMARK;
6734
6735 =for hackers
6736 Found in file XSUB.h
6737
6738 =item dITEMS
6739 X<dITEMS>
6740
6741 Sets up the C<items> variable.
6742 This is usually handled automatically by C<xsubpp> by calling C<dXSARGS>.
6743
6744                 dITEMS;
6745
6746 =for hackers
6747 Found in file XSUB.h
6748
6749 =item dUNDERBAR
6750 X<dUNDERBAR>
6751
6752 Sets up the C<padoff_du> variable for an XSUB that wishes to use
6753 C<UNDERBAR>.
6754
6755                 dUNDERBAR;
6756
6757 =for hackers
6758 Found in file XSUB.h
6759
6760 =item dXSARGS
6761 X<dXSARGS>
6762
6763 Sets up stack and mark pointers for an XSUB, calling dSP and dMARK.
6764 Sets up the C<ax> and C<items> variables by calling C<dAX> and C<dITEMS>.
6765 This is usually handled automatically by C<xsubpp>.
6766
6767                 dXSARGS;
6768
6769 =for hackers
6770 Found in file XSUB.h
6771
6772 =item dXSI32
6773 X<dXSI32>
6774
6775 Sets up the C<ix> variable for an XSUB which has aliases.  This is usually
6776 handled automatically by C<xsubpp>.
6777
6778                 dXSI32;
6779
6780 =for hackers
6781 Found in file XSUB.h
6782
6783 =item items
6784 X<items>
6785
6786 Variable which is setup by C<xsubpp> to indicate the number of 
6787 items on the stack.  See L<perlxs/"Variable-length Parameter Lists">.
6788
6789         I32     items
6790
6791 =for hackers
6792 Found in file XSUB.h
6793
6794 =item ix
6795 X<ix>
6796
6797 Variable which is setup by C<xsubpp> to indicate which of an 
6798 XSUB's aliases was used to invoke it.  See L<perlxs/"The ALIAS: Keyword">.
6799
6800         I32     ix
6801
6802 =for hackers
6803 Found in file XSUB.h
6804
6805 =item newXSproto
6806 X<newXSproto>
6807
6808 Used by C<xsubpp> to hook up XSUBs as Perl subs.  Adds Perl prototypes to
6809 the subs.
6810
6811 =for hackers
6812 Found in file XSUB.h
6813
6814 =item RETVAL
6815 X<RETVAL>
6816
6817 Variable which is setup by C<xsubpp> to hold the return value for an 
6818 XSUB. This is always the proper type for the XSUB. See 
6819 L<perlxs/"The RETVAL Variable">.
6820
6821         (whatever)      RETVAL
6822
6823 =for hackers
6824 Found in file XSUB.h
6825
6826 =item ST
6827 X<ST>
6828
6829 Used to access elements on the XSUB's stack.
6830
6831         SV*     ST(int ix)
6832
6833 =for hackers
6834 Found in file XSUB.h
6835
6836 =item THIS
6837 X<THIS>
6838
6839 Variable which is setup by C<xsubpp> to designate the object in a C++ 
6840 XSUB.  This is always the proper type for the C++ object.  See C<CLASS> and 
6841 L<perlxs/"Using XS With C++">.
6842
6843         (whatever)      THIS
6844
6845 =for hackers
6846 Found in file XSUB.h
6847
6848 =item UNDERBAR
6849 X<UNDERBAR>
6850
6851 The SV* corresponding to the $_ variable. Works even if there
6852 is a lexical $_ in scope.
6853
6854 =for hackers
6855 Found in file XSUB.h
6856
6857 =item XS
6858 X<XS>
6859
6860 Macro to declare an XSUB and its C parameter list.  This is handled by
6861 C<xsubpp>.
6862
6863 =for hackers
6864 Found in file XSUB.h
6865
6866 =item XS_VERSION
6867 X<XS_VERSION>
6868
6869 The version identifier for an XS module.  This is usually
6870 handled automatically by C<ExtUtils::MakeMaker>.  See C<XS_VERSION_BOOTCHECK>.
6871
6872 =for hackers
6873 Found in file XSUB.h
6874
6875 =item XS_VERSION_BOOTCHECK
6876 X<XS_VERSION_BOOTCHECK>
6877
6878 Macro to verify that a PM module's $VERSION variable matches the XS
6879 module's C<XS_VERSION> variable.  This is usually handled automatically by
6880 C<xsubpp>.  See L<perlxs/"The VERSIONCHECK: Keyword">.
6881
6882                 XS_VERSION_BOOTCHECK;
6883
6884 =for hackers
6885 Found in file XSUB.h
6886
6887
6888 =back
6889
6890 =head1 Warning and Dieing
6891
6892 =over 8
6893
6894 =item croak
6895 X<croak>
6896
6897 This is the XSUB-writer's interface to Perl's C<die> function.
6898 Normally call this function the same way you call the C C<printf>
6899 function.  Calling C<croak> returns control directly to Perl,
6900 sidestepping the normal C order of execution. See C<warn>.
6901
6902 If you want to throw an exception object, assign the object to
6903 C<$@> and then pass C<NULL> to croak():
6904
6905    errsv = get_sv("@", TRUE);
6906    sv_setsv(errsv, exception_object);
6907    croak(NULL);
6908
6909         void    croak(const char* pat, ...)
6910
6911 =for hackers
6912 Found in file util.c
6913
6914 =item warn
6915 X<warn>
6916
6917 This is the XSUB-writer's interface to Perl's C<warn> function.  Call this
6918 function the same way you call the C C<printf> function.  See C<croak>.
6919
6920         void    warn(const char* pat, ...)
6921
6922 =for hackers
6923 Found in file util.c
6924
6925
6926 =back
6927
6928 =head1 AUTHORS
6929
6930 Until May 1997, this document was maintained by Jeff Okamoto
6931 <okamoto@corp.hp.com>.  It is now maintained as part of Perl itself.
6932
6933 With lots of help and suggestions from Dean Roehrich, Malcolm Beattie,
6934 Andreas Koenig, Paul Hudson, Ilya Zakharevich, Paul Marquess, Neil
6935 Bowers, Matthew Green, Tim Bunce, Spider Boardman, Ulrich Pfeifer,
6936 Stephen McCamant, and Gurusamy Sarathy.
6937
6938 API Listing originally by Dean Roehrich <roehrich@cray.com>.
6939
6940 Updated to be autogenerated from comments in the source by Benjamin Stuhl.
6941
6942 =head1 SEE ALSO
6943
6944 perlguts(1), perlxs(1), perlxstut(1), perlintern(1)
6945
6946 =cut
6947
6948  ex: set ro: