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