1 -*- buffer-read-only: t -*-
3 !!!!!!! DO NOT EDIT THIS FILE !!!!!!!
4 This file is built by autodoc.pl extracting documentation from the C source
9 perlapi - autogenerated documentation for the perl public API
12 X<Perl API> X<API> X<api>
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
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.
25 The listing is alphabetical, case insensitive.
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.
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,
59 Used to indicate list context. See C<GIMME_V>, C<GIMME> and
68 Indicates that arguments returned from a callback should be discarded. See
77 Used to force a Perl C<eval> wrapper around a callback. See
86 Indicates that no arguments are being sent to a callback. See
95 Used to indicate scalar context. See C<GIMME_V>, C<GIMME>, and
104 Used to indicate void context. See C<GIMME_V> and L<perlcall>.
112 =head1 Array Manipulation Functions
119 Same as C<av_len()>. Deprecated, use C<av_len()> instead.
129 Clears an array, making it empty. Does not free the memory used by the
132 void av_clear(AV* ar)
137 =item av_create_and_push
138 X<av_create_and_push>
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.
143 NOTE: this function is experimental and may change or be
144 removed without notice.
146 void av_create_and_push(AV **const avp, SV *const val)
151 =item av_create_and_unshift_one
152 X<av_create_and_unshift_one>
154 Unshifts an SV onto the beginning of the array, creating the array if
156 A small internal helper function to remove a commonly duplicated idiom.
158 NOTE: this function is experimental and may change or be
159 removed without notice.
161 SV** av_create_and_unshift_one(AV **const avp, SV *const val)
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.
173 SV* av_delete(AV* ar, I32 key, I32 flags)
181 Returns true if the element indexed by C<key> has been initialized.
183 This relies on the fact that uninitialized array elements are set to
186 bool av_exists(AV* ar, I32 key)
194 Pre-extend an array. The C<key> is the index to which the array should be
197 void av_extend(AV* ar, I32 key)
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*>.
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.
212 SV** av_fetch(AV* ar, I32 key, I32 lval)
220 Set the highest index in the array to the given number, equivalent to
221 Perl's C<$#array = $fill;>.
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)>.
229 void av_fill(AV* ar, I32 fill)
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.
240 I32 av_len(const AV* ar)
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.
252 AV* av_make(I32 size, SV** svp)
260 Pops an SV off the end of the array. Returns C<&PL_sv_undef> if the array
271 Pushes an SV onto the end of the array. The array will grow automatically
272 to accommodate the addition.
274 void av_push(AV* ar, SV* val)
282 Shifts an SV off the beginning of the array.
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
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.
303 SV** av_store(AV* ar, I32 key, SV* val)
311 Undefines the array. Frees the memory used by the array itself.
313 void av_undef(AV* ar)
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.
325 void av_unshift(AV* ar, I32 num)
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.
337 NOTE: the perl_ form of this function is deprecated.
339 AV* get_av(const char* name, I32 create)
347 Creates a new AV. The reference count is set to 1.
357 Sort an array. Here is an example:
359 sortsv(AvARRAY(av), av_len(av)+1, Perl_sv_cmp_locale);
361 Currently this always uses mergesort. See sortsv_flags for a more
364 void sortsv(SV** array, size_t num_elts, SVCOMPARE_t cmp)
367 Found in file pp_sort.c
372 Sort an array, with various options.
374 void sortsv_flags(SV** array, size_t num_elts, SVCOMPARE_t cmp, U32 flags)
377 Found in file pp_sort.c
382 =head1 Callback Functions
389 Performs a callback to the specified Perl sub. See L<perlcall>.
391 NOTE: the perl_ form of this function is deprecated.
393 I32 call_argv(const char* sub_name, I32 flags, char** argv)
401 Performs a callback to the specified Perl method. The blessed object must
402 be on the stack. See L<perlcall>.
404 NOTE: the perl_ form of this function is deprecated.
406 I32 call_method(const char* methname, I32 flags)
414 Performs a callback to the specified Perl sub. See L<perlcall>.
416 NOTE: the perl_ form of this function is deprecated.
418 I32 call_pv(const char* sub_name, I32 flags)
426 Performs a callback to the Perl sub whose name is in the SV. See
429 NOTE: the perl_ form of this function is deprecated.
431 I32 call_sv(SV* sv, I32 flags)
439 Opening bracket on a callback. See C<LEAVE> and L<perlcall>.
444 Found in file scope.h
449 Tells Perl to C<eval> the given string and return an SV* result.
451 NOTE: the perl_ form of this function is deprecated.
453 SV* eval_pv(const char* p, I32 croak_on_error)
461 Tells Perl to C<eval> the string in the SV.
463 NOTE: the perl_ form of this function is deprecated.
465 I32 eval_sv(SV* sv, I32 flags)
473 Closing bracket for temporaries on a callback. See C<SAVETMPS> and
479 Found in file scope.h
484 Closing bracket on a callback. See C<ENTER> and L<perlcall>.
489 Found in file scope.h
494 Opening bracket for temporaries on a callback. See C<FREETMPS> and
500 Found in file scope.h
505 =head1 Character classes
512 Returns a boolean indicating whether the C C<char> is an ASCII alphanumeric
513 character (including underscore) or digit.
515 bool isALNUM(char ch)
518 Found in file handy.h
523 Returns a boolean indicating whether the C C<char> is an ASCII alphabetic
526 bool isALPHA(char ch)
529 Found in file handy.h
534 Returns a boolean indicating whether the C C<char> is an ASCII
537 bool isDIGIT(char ch)
540 Found in file handy.h
545 Returns a boolean indicating whether the C C<char> is a lowercase
548 bool isLOWER(char ch)
551 Found in file handy.h
556 Returns a boolean indicating whether the C C<char> is whitespace.
558 bool isSPACE(char ch)
561 Found in file handy.h
566 Returns a boolean indicating whether the C C<char> is an uppercase
569 bool isUPPER(char ch)
572 Found in file handy.h
577 Converts the specified character to lowercase.
579 char toLOWER(char ch)
582 Found in file handy.h
587 Converts the specified character to uppercase.
589 char toUPPER(char ch)
592 Found in file handy.h
597 =head1 Cloning an interpreter
604 Create and return a new interpreter by cloning the current one.
606 perl_clone takes these flags as parameters:
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->new doesn't.
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
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.
635 PerlInterpreter* perl_clone(PerlInterpreter* interp, UV flags)
643 =head1 CV Manipulation Functions
650 Returns the stash of the CV.
660 Uses C<strlen> to get the length of C<name>, then calls C<get_cvn_flags>.
662 NOTE: the perl_ form of this function is deprecated.
664 CV* get_cv(const char* name, I32 flags)
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.
678 NOTE: the perl_ form of this function is deprecated.
680 CV* get_cvn_flags(const char* name, STRLEN len, I32 flags)
688 =head1 Embedding Functions
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.
700 void cv_undef(CV* cv)
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>.
717 void load_module(U32 flags, SV* name, SV* ver, ...)
725 Stub that provides thread hook for perl_destruct when there are
736 Allocates a new Perl interpreter. See L<perlembed>.
738 PerlInterpreter* perl_alloc()
746 Initializes a new Perl interpreter. See L<perlembed>.
748 void perl_construct(PerlInterpreter* interp)
756 Shuts down a Perl interpreter. See L<perlembed>.
758 int perl_destruct(PerlInterpreter* interp)
766 Releases a Perl interpreter. See L<perlembed>.
768 void perl_free(PerlInterpreter* interp)
776 Tells a Perl interpreter to parse a Perl script. See L<perlembed>.
778 int perl_parse(PerlInterpreter* interp, XSINIT_t xsinit, int argc, char** argv, char** env)
786 Tells a Perl interpreter to run. See L<perlembed>.
788 int perl_run(PerlInterpreter* interp)
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.
800 NOTE: the perl_ form of this function is deprecated.
802 void require_pv(const char* pv)
810 =head1 Functions in file dump.c
818 char *pv_display(SV *dsv, const char *pv, STRLEN cur, STRLEN len,
819 STRLEN pvlim, U32 flags)
823 pv_escape(dsv,pv,cur,pvlim,PERL_PV_ESCAPE_QUOTE);
825 except that an additional "\0" will be appended to the string when
826 len > cur and pv[cur] is "\0".
828 Note that the final string may be up to 7 chars longer than pvlim.
830 char* pv_display(SV *dsv, const char *pv, STRLEN cur, STRLEN len, STRLEN pvlim)
838 |const STRLEN count|const STRLEN max
839 |STRLEN const *escaped, const U32 flags
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.
845 If flags contains PERL_PV_ESCAPE_QUOTE then any double quotes in the string
846 will also be escaped.
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.
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.
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.
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.
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.
873 Returns a pointer to the escaped text as held by dsv.
875 NOTE: the perl_ form of this function is deprecated.
877 char* pv_escape(SV *dsv, char const * const str, const STRLEN count, const STRLEN max, STRLEN * const escaped, const U32 flags)
885 |const STRLEN count|const STRLEN max\
886 |const char const *start_color| const char const *end_color\
889 Converts a string into something presentable, handling escaping via
890 pv_escape() and supporting quoting and elipses.
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
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.
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.
906 Returns a pointer to the prettified text as held by dsv.
908 NOTE: the perl_ form of this function is deprecated.
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)
918 =head1 Functions in file mathoms.c
926 See L<gv_fetchmethod_autoload>.
928 GV* gv_fetchmethod(HV* stash, const char* name)
931 Found in file mathoms.c
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.
939 void pack_cat(SV *cat, const char *pat, const char *patend, SV **beglist, SV **endlist, SV ***next_in_list, U32 flags)
942 Found in file mathoms.c
944 =item sv_2pvbyte_nolen
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.
950 Usually accessed via the C<SvPVbyte_nolen> macro.
952 char* sv_2pvbyte_nolen(SV* sv)
955 Found in file mathoms.c
957 =item sv_2pvutf8_nolen
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.
963 Usually accessed via the C<SvPVutf8_nolen> macro.
965 char* sv_2pvutf8_nolen(SV* sv)
968 Found in file mathoms.c
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)
978 Found in file mathoms.c
983 Like C<sv_catpvn>, but also handles 'set' magic.
985 void sv_catpvn_mg(SV *sv, const char *ptr, STRLEN len)
988 Found in file mathoms.c
993 Like C<sv_catsv>, but also handles 'set' magic.
995 void sv_catsv_mg(SV *dstr, SV *sstr)
998 Found in file mathoms.c
1000 =item sv_force_normal
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>.
1007 void sv_force_normal(SV *sv)
1010 Found in file mathoms.c
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.
1021 Found in file mathoms.c
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.
1030 "Superseded" by sv_nosharing().
1032 void sv_nolocking(SV *sv)
1035 Found in file mathoms.c
1037 =item sv_nounlocking
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.
1044 "Superseded" by sv_nosharing().
1046 void sv_nounlocking(SV *sv)
1049 Found in file mathoms.c
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.
1060 Found in file mathoms.c
1065 Use the C<SvPV_nolen> macro instead
1070 Found in file mathoms.c
1075 Use C<SvPVbyte_nolen> instead.
1077 char* sv_pvbyte(SV *sv)
1080 Found in file mathoms.c
1085 A private implementation of the C<SvPVbyte> macro for compilers
1086 which can't cope with complex macro expressions. Always use the macro
1089 char* sv_pvbyten(SV *sv, STRLEN *len)
1092 Found in file mathoms.c
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.
1100 char* sv_pvn(SV *sv, STRLEN *len)
1103 Found in file mathoms.c
1108 Use the C<SvPVutf8_nolen> macro instead
1110 char* sv_pvutf8(SV *sv)
1113 Found in file mathoms.c
1118 A private implementation of the C<SvPVutf8> macro for compilers
1119 which can't cope with complex macro expressions. Always use the macro
1122 char* sv_pvutf8n(SV *sv, STRLEN *len)
1125 Found in file mathoms.c
1130 Taint an SV. Use C<SvTAINTED_on> instead.
1131 void sv_taint(SV* sv)
1134 Found in file mathoms.c
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>.
1144 void sv_unref(SV* sv)
1147 Found in file mathoms.c
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>.
1156 void sv_usepvn(SV* sv, char* ptr, STRLEN len)
1159 Found in file mathoms.c
1164 Like C<sv_usepvn>, but also handles 'set' magic.
1166 void sv_usepvn_mg(SV *sv, char *ptr, STRLEN len)
1169 Found in file mathoms.c
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.
1180 Found in file mathoms.c
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.
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)
1191 Found in file mathoms.c
1196 =head1 Functions in file pp_pack.c
1204 The engine implementing pack() Perl function.
1206 void packlist(SV *cat, const char *pat, const char *patend, SV **beglist, SV **endlist)
1209 Found in file pp_pack.c
1214 The engine implementing unpack() Perl function. C<unpackstring> puts the
1215 extracted list items on the stack and returns the number of elements.
1216 Issue C<PUTBACK> before and C<SPAGAIN> after the call to this function.
1218 I32 unpackstring(const char *pat, const char *patend, const char *s, const char *strend, U32 flags)
1221 Found in file pp_pack.c
1226 =head1 Global Variables
1233 C<PL_modglobal> is a general purpose, interpreter global HV for use by
1234 extensions that need to keep information on a per-interpreter basis.
1235 In a pinch, it can also be used as a symbol table for extensions
1236 to share data among each other. It is a good idea to use keys
1237 prefixed by the package name of the extension that owns the data.
1242 Found in file intrpvar.h
1247 A convenience variable which is typically used with C<SvPV> when one
1248 doesn't care about the length of the string. It is usually more efficient
1249 to either declare a local variable and use that instead or to use the
1250 C<SvPV_nolen> macro.
1255 Found in file thrdvar.h
1260 This is the C<false> SV. See C<PL_sv_yes>. Always refer to this as
1266 Found in file intrpvar.h
1271 This is the C<undef> SV. Always refer to this as C<&PL_sv_undef>.
1276 Found in file intrpvar.h
1281 This is the C<true> SV. See C<PL_sv_no>. Always refer to this as
1287 Found in file intrpvar.h
1299 Return the SV from the GV.
1309 If C<gv> is a typeglob whose subroutine entry is a constant sub eligible for
1310 inlining, or C<gv> is a placeholder reference that would be promoted to such
1311 a typeglob, then returns the value returned by the sub. Otherwise, returns
1314 SV* gv_const_sv(GV* gv)
1322 Returns the glob with the given C<name> and a defined subroutine or
1323 C<NULL>. The glob lives in the given C<stash>, or in the stashes
1324 accessible via @ISA and UNIVERSAL::.
1326 The argument C<level> should be either 0 or -1. If C<level==0>, as a
1327 side-effect creates a glob with the given C<name> in the given C<stash>
1328 which in the case of success contains an alias for the subroutine, and sets
1329 up caching info for this glob. Similarly for all the searched stashes.
1331 This function grants C<"SUPER"> token as a postfix of the stash name. The
1332 GV returned from C<gv_fetchmeth> may be a method cache entry, which is not
1333 visible to Perl code. So when calling C<call_sv>, you should not use
1334 the GV directly; instead, you should use the method's CV, which can be
1335 obtained from the GV with the C<GvCV> macro.
1337 GV* gv_fetchmeth(HV* stash, const char* name, STRLEN len, I32 level)
1342 =item gv_fetchmethod_autoload
1343 X<gv_fetchmethod_autoload>
1345 Returns the glob which contains the subroutine to call to invoke the method
1346 on the C<stash>. In fact in the presence of autoloading this may be the
1347 glob for "AUTOLOAD". In this case the corresponding variable $AUTOLOAD is
1350 The third parameter of C<gv_fetchmethod_autoload> determines whether
1351 AUTOLOAD lookup is performed if the given method is not present: non-zero
1352 means yes, look for AUTOLOAD; zero means no, don't look for AUTOLOAD.
1353 Calling C<gv_fetchmethod> is equivalent to calling C<gv_fetchmethod_autoload>
1354 with a non-zero C<autoload> parameter.
1356 These functions grant C<"SUPER"> token as a prefix of the method name. Note
1357 that if you want to keep the returned glob for a long time, you need to
1358 check for it being "AUTOLOAD", since at the later time the call may load a
1359 different subroutine due to $AUTOLOAD changing its value. Use the glob
1360 created via a side effect to do this.
1362 These functions have the same side-effects and as C<gv_fetchmeth> with
1363 C<level==0>. C<name> should be writable if contains C<':'> or C<'
1364 ''>. The warning against passing the GV returned by C<gv_fetchmeth> to
1365 C<call_sv> apply equally to these functions.
1367 GV* gv_fetchmethod_autoload(HV* stash, const char* name, I32 autoload)
1372 =item gv_fetchmeth_autoload
1373 X<gv_fetchmeth_autoload>
1375 Same as gv_fetchmeth(), but looks for autoloaded subroutines too.
1376 Returns a glob for the subroutine.
1378 For an autoloaded subroutine without a GV, will create a GV even
1379 if C<level < 0>. For an autoloaded subroutine without a stub, GvCV()
1380 of the result may be zero.
1382 GV* gv_fetchmeth_autoload(HV* stash, const char* name, STRLEN len, I32 level)
1390 Returns a pointer to the stash for a specified package. Uses C<strlen> to
1391 determine the length of C<name>, then calls C<gv_stashpvn()>.
1393 HV* gv_stashpv(const char* name, I32 flags)
1401 Returns a pointer to the stash for a specified package. The C<namelen>
1402 parameter indicates the length of the C<name>, in bytes. C<flags> is passed
1403 to C<gv_fetchpvn_flags()>, so if set to C<GV_ADD> then the package will be
1404 created if it does not already exist. If the package does not exist and
1405 C<flags> is 0 (or any other setting that does not create packages) then NULL
1409 HV* gv_stashpvn(const char* name, U32 namelen, I32 flags)
1417 Like C<gv_stashpvn>, but takes a literal string instead of a string/length pair.
1419 HV* gv_stashpvs(const char* name, I32 create)
1422 Found in file handy.h
1427 Returns a pointer to the stash for a specified package. See C<gv_stashpvn>.
1429 HV* gv_stashsv(SV* sv, I32 flags)
1452 Null character pointer.
1455 Found in file handy.h
1479 Found in file handy.h
1484 =head1 Hash Manipulation Functions
1491 Returns the HV of the specified Perl hash. If C<create> is set and the
1492 Perl variable does not exist then it will be created. If C<create> is not
1493 set and the variable does not exist then NULL is returned.
1495 NOTE: the perl_ form of this function is deprecated.
1497 HV* get_hv(const char* name, I32 create)
1500 Found in file perl.c
1505 This flag, used in the length slot of hash entries and magic structures,
1506 specifies the structure contains an C<SV*> pointer where a C<char*> pointer
1507 is to be expected. (For information only--not to be used).
1515 Returns the computed hash stored in the hash entry.
1525 Returns the actual pointer stored in the key slot of the hash entry. The
1526 pointer may be either C<char*> or C<SV*>, depending on the value of
1527 C<HeKLEN()>. Can be assigned to. The C<HePV()> or C<HeSVKEY()> macros are
1528 usually preferable for finding the value of a key.
1538 If this is negative, and amounts to C<HEf_SVKEY>, it indicates the entry
1539 holds an C<SV*> key. Otherwise, holds the actual length of the key. Can
1540 be assigned to. The C<HePV()> macro is usually preferable for finding key
1543 STRLEN HeKLEN(HE* he)
1551 Returns the key slot of the hash entry as a C<char*> value, doing any
1552 necessary dereferencing of possibly C<SV*> keys. The length of the string
1553 is placed in C<len> (this is a macro, so do I<not> use C<&len>). If you do
1554 not care about what the length of the key is, you may use the global
1555 variable C<PL_na>, though this is rather less efficient than using a local
1556 variable. Remember though, that hash keys in perl are free to contain
1557 embedded nulls, so using C<strlen()> or similar is not a good way to find
1558 the length of hash keys. This is very similar to the C<SvPV()> macro
1559 described elsewhere in this document.
1561 char* HePV(HE* he, STRLEN len)
1569 Returns the key as an C<SV*>, or C<NULL> if the hash entry does not
1570 contain an C<SV*> key.
1580 Returns the key as an C<SV*>. Will create and return a temporary mortal
1581 C<SV*> if the hash entry contains only a C<char*> key.
1583 SV* HeSVKEY_force(HE* he)
1591 Sets the key to a given C<SV*>, taking care to set the appropriate flags to
1592 indicate the presence of an C<SV*> key, and returns the same
1595 SV* HeSVKEY_set(HE* he, SV* sv)
1603 Returns the value slot (type C<SV*>) stored in the hash entry.
1613 Returns the package name of a stash, or NULL if C<stash> isn't a stash.
1614 See C<SvSTASH>, C<CvSTASH>.
1616 char* HvNAME(HV* stash)
1624 Check that a hash is in an internally consistent state.
1626 void hv_assert(HV* tb)
1634 Clears a hash, making it empty.
1636 void hv_clear(HV* tb)
1641 =item hv_clear_placeholders
1642 X<hv_clear_placeholders>
1644 Clears any placeholders from a hash. If a restricted hash has any of its keys
1645 marked as readonly and the key is subsequently deleted, the key is not actually
1646 deleted but is marked by assigning it a value of &PL_sv_placeholder. This tags
1647 it so it will be ignored by future operations such as iterating over the hash,
1648 but will still allow the hash to have a value reassigned to the key at some
1649 future point. This function clears any such placeholder keys from the hash.
1650 See Hash::Util::lock_keys() for an example of its use.
1652 void hv_clear_placeholders(HV* hb)
1660 Deletes a key/value pair in the hash. The value SV is removed from the
1661 hash and returned to the caller. The C<klen> is the length of the key.
1662 The C<flags> value will normally be zero; if set to G_DISCARD then NULL
1665 SV* hv_delete(HV* tb, const char* key, I32 klen, I32 flags)
1673 Deletes a key/value pair in the hash. The value SV is removed from the
1674 hash and returned to the caller. The C<flags> value will normally be zero;
1675 if set to G_DISCARD then NULL will be returned. C<hash> can be a valid
1676 precomputed hash value, or 0 to ask for it to be computed.
1678 SV* hv_delete_ent(HV* tb, SV* key, I32 flags, U32 hash)
1686 Returns a boolean indicating whether the specified hash key exists. The
1687 C<klen> is the length of the key.
1689 bool hv_exists(HV* tb, const char* key, I32 klen)
1697 Returns a boolean indicating whether the specified hash key exists. C<hash>
1698 can be a valid precomputed hash value, or 0 to ask for it to be
1701 bool hv_exists_ent(HV* tb, SV* key, U32 hash)
1709 Returns the SV which corresponds to the specified key in the hash. The
1710 C<klen> is the length of the key. If C<lval> is set then the fetch will be
1711 part of a store. Check that the return value is non-null before
1712 dereferencing it to an C<SV*>.
1714 See L<perlguts/"Understanding the Magic of Tied Hashes and Arrays"> for more
1715 information on how to use this function on tied hashes.
1717 SV** hv_fetch(HV* tb, const char* key, I32 klen, I32 lval)
1725 Like C<hv_fetch>, but takes a literal string instead of a string/length pair.
1727 SV** hv_fetchs(HV* tb, const char* key, I32 lval)
1730 Found in file handy.h
1735 Returns the hash entry which corresponds to the specified key in the hash.
1736 C<hash> must be a valid precomputed hash number for the given C<key>, or 0
1737 if you want the function to compute it. IF C<lval> is set then the fetch
1738 will be part of a store. Make sure the return value is non-null before
1739 accessing it. The return value when C<tb> is a tied hash is a pointer to a
1740 static location, so be sure to make a copy of the structure if you need to
1743 See L<perlguts/"Understanding the Magic of Tied Hashes and Arrays"> for more
1744 information on how to use this function on tied hashes.
1746 HE* hv_fetch_ent(HV* tb, SV* key, I32 lval, U32 hash)
1754 Prepares a starting point to traverse a hash table. Returns the number of
1755 keys in the hash (i.e. the same as C<HvKEYS(tb)>). The return value is
1756 currently only meaningful for hashes without tie magic.
1758 NOTE: Before version 5.004_65, C<hv_iterinit> used to return the number of
1759 hash buckets that happen to be in use. If you still need that esoteric
1760 value, you can get it through the macro C<HvFILL(tb)>.
1763 I32 hv_iterinit(HV* tb)
1771 Returns the key from the current position of the hash iterator. See
1774 char* hv_iterkey(HE* entry, I32* retlen)
1782 Returns the key as an C<SV*> from the current position of the hash
1783 iterator. The return value will always be a mortal copy of the key. Also
1786 SV* hv_iterkeysv(HE* entry)
1794 Returns entries from a hash iterator. See C<hv_iterinit>.
1796 You may call C<hv_delete> or C<hv_delete_ent> on the hash entry that the
1797 iterator currently points to, without losing your place or invalidating your
1798 iterator. Note that in this case the current entry is deleted from the hash
1799 with your iterator holding the last reference to it. Your iterator is flagged
1800 to free the entry on the next call to C<hv_iternext>, so you must not discard
1801 your iterator immediately else the entry will leak - call C<hv_iternext> to
1802 trigger the resource deallocation.
1804 HE* hv_iternext(HV* tb)
1812 Performs an C<hv_iternext>, C<hv_iterkey>, and C<hv_iterval> in one
1815 SV* hv_iternextsv(HV* hv, char** key, I32* retlen)
1820 =item hv_iternext_flags
1821 X<hv_iternext_flags>
1823 Returns entries from a hash iterator. See C<hv_iterinit> and C<hv_iternext>.
1824 The C<flags> value will normally be zero; if HV_ITERNEXT_WANTPLACEHOLDERS is
1825 set the placeholders keys (for restricted hashes) will be returned in addition
1826 to normal keys. By default placeholders are automatically skipped over.
1827 Currently a placeholder is implemented with a value that is
1828 C<&Perl_sv_placeholder>. Note that the implementation of placeholders and
1829 restricted hashes may change, and the implementation currently is
1830 insufficiently abstracted for any change to be tidy.
1832 NOTE: this function is experimental and may change or be
1833 removed without notice.
1835 HE* hv_iternext_flags(HV* tb, I32 flags)
1843 Returns the value from the current position of the hash iterator. See
1846 SV* hv_iterval(HV* tb, HE* entry)
1854 Adds magic to a hash. See C<sv_magic>.
1856 void hv_magic(HV* hv, GV* gv, int how)
1864 Evaluates the hash in scalar context and returns the result. Handles magic when the hash is tied.
1866 SV* hv_scalar(HV* hv)
1874 Stores an SV in a hash. The hash key is specified as C<key> and C<klen> is
1875 the length of the key. The C<hash> parameter is the precomputed hash
1876 value; if it is zero then Perl will compute it. The return value will be
1877 NULL if the operation failed or if the value did not need to be actually
1878 stored within the hash (as in the case of tied hashes). Otherwise it can
1879 be dereferenced to get the original C<SV*>. Note that the caller is
1880 responsible for suitably incrementing the reference count of C<val> before
1881 the call, and decrementing it if the function returned NULL. Effectively
1882 a successful hv_store takes ownership of one reference to C<val>. This is
1883 usually what you want; a newly created SV has a reference count of one, so
1884 if all your code does is create SVs then store them in a hash, hv_store
1885 will own the only reference to the new SV, and your code doesn't need to do
1886 anything further to tidy up. hv_store is not implemented as a call to
1887 hv_store_ent, and does not create a temporary SV for the key, so if your
1888 key data is not already in SV form then use hv_store in preference to
1891 See L<perlguts/"Understanding the Magic of Tied Hashes and Arrays"> for more
1892 information on how to use this function on tied hashes.
1894 SV** hv_store(HV* tb, const char* key, I32 klen, SV* val, U32 hash)
1902 Like C<hv_store>, but takes a literal string instead of a string/length pair
1903 and omits the hash parameter.
1905 SV** hv_stores(HV* tb, const char* key, NULLOK SV* val)
1908 Found in file handy.h
1913 Stores C<val> in a hash. The hash key is specified as C<key>. The C<hash>
1914 parameter is the precomputed hash value; if it is zero then Perl will
1915 compute it. The return value is the new hash entry so created. It will be
1916 NULL if the operation failed or if the value did not need to be actually
1917 stored within the hash (as in the case of tied hashes). Otherwise the
1918 contents of the return value can be accessed using the C<He?> macros
1919 described here. Note that the caller is responsible for suitably
1920 incrementing the reference count of C<val> before the call, and
1921 decrementing it if the function returned NULL. Effectively a successful
1922 hv_store_ent takes ownership of one reference to C<val>. This is
1923 usually what you want; a newly created SV has a reference count of one, so
1924 if all your code does is create SVs then store them in a hash, hv_store
1925 will own the only reference to the new SV, and your code doesn't need to do
1926 anything further to tidy up. Note that hv_store_ent only reads the C<key>;
1927 unlike C<val> it does not take ownership of it, so maintaining the correct
1928 reference count on C<key> is entirely the caller's responsibility. hv_store
1929 is not implemented as a call to hv_store_ent, and does not create a temporary
1930 SV for the key, so if your key data is not already in SV form then use
1931 hv_store in preference to hv_store_ent.
1933 See L<perlguts/"Understanding the Magic of Tied Hashes and Arrays"> for more
1934 information on how to use this function on tied hashes.
1936 HE* hv_store_ent(HV* tb, SV* key, SV* val, U32 hash)
1946 void hv_undef(HV* tb)
1954 Creates a new HV. The reference count is set to 1.
1964 =head1 Magical Functions
1971 Clear something magical that the SV represents. See C<sv_magic>.
1973 int mg_clear(SV* sv)
1981 Copies the magic from one SV to another. See C<sv_magic>.
1983 int mg_copy(SV* sv, SV* nsv, const char* key, I32 klen)
1991 Finds the magic pointer for type matching the SV. See C<sv_magic>.
1993 MAGIC* mg_find(const SV* sv, int type)
2001 Free any magic storage used by the SV. See C<sv_magic>.
2011 Do magic after a value is retrieved from the SV. See C<sv_magic>.
2021 Report on the SV's length. See C<sv_magic>.
2023 U32 mg_length(SV* sv)
2031 Turns on the magical status of an SV. See C<sv_magic>.
2033 void mg_magical(SV* sv)
2041 Do magic after a value is assigned to the SV. See C<sv_magic>.
2051 Invokes C<mg_get> on an SV if it has 'get' magic. This macro evaluates its
2052 argument more than once.
2054 void SvGETMAGIC(SV* sv)
2062 Arranges for a mutual exclusion lock to be obtained on sv if a suitable module
2073 Invokes C<mg_set> on an SV if it has 'set' magic. This macro evaluates its
2074 argument more than once.
2076 void SvSETMAGIC(SV* sv)
2084 Like C<SvSetSV>, but does any set magic required afterwards.
2086 void SvSetMagicSV(SV* dsb, SV* ssv)
2091 =item SvSetMagicSV_nosteal
2092 X<SvSetMagicSV_nosteal>
2094 Like C<SvSetSV_nosteal>, but does any set magic required afterwards.
2096 void SvSetMagicSV_nosteal(SV* dsv, SV* ssv)
2104 Calls C<sv_setsv> if dsv is not the same as ssv. May evaluate arguments
2107 void SvSetSV(SV* dsb, SV* ssv)
2112 =item SvSetSV_nosteal
2115 Calls a non-destructive version of C<sv_setsv> if dsv is not the same as
2116 ssv. May evaluate arguments more than once.
2118 void SvSetSV_nosteal(SV* dsv, SV* ssv)
2126 Arranges for sv to be shared between threads if a suitable module
2129 void SvSHARE(SV* sv)
2137 Releases a mutual exclusion lock on sv if a suitable module
2140 void SvUNLOCK(SV* sv)
2148 =head1 Memory Management
2155 The XSUB-writer's interface to the C C<memcpy> function. The C<src> is the
2156 source, C<dest> is the destination, C<nitems> is the number of items, and C<type> is
2157 the type. May fail on overlapping copies. See also C<Move>.
2159 void Copy(void* src, void* dest, int nitems, type)
2162 Found in file handy.h
2167 Like C<Copy> but returns dest. Useful for encouraging compilers to tail-call
2170 void * CopyD(void* src, void* dest, int nitems, type)
2173 Found in file handy.h
2178 The XSUB-writer's interface to the C C<memmove> function. The C<src> is the
2179 source, C<dest> is the destination, C<nitems> is the number of items, and C<type> is
2180 the type. Can do overlapping moves. See also C<Copy>.
2182 void Move(void* src, void* dest, int nitems, type)
2185 Found in file handy.h
2190 Like C<Move> but returns dest. Useful for encouraging compilers to tail-call
2193 void * MoveD(void* src, void* dest, int nitems, type)
2196 Found in file handy.h
2201 The XSUB-writer's interface to the C C<malloc> function.
2203 In 5.9.3, Newx() and friends replace the older New() API, and drops
2204 the first parameter, I<x>, a debug aid which allowed callers to identify
2205 themselves. This aid has been superseded by a new build option,
2206 PERL_MEM_LOG (see L<perlhack/PERL_MEM_LOG>). The older API is still
2207 there for use in XS modules supporting older perls.
2209 void Newx(void* ptr, int nitems, type)
2212 Found in file handy.h
2217 The XSUB-writer's interface to the C C<malloc> function, with
2218 cast. See also C<Newx>.
2220 void Newxc(void* ptr, int nitems, type, cast)
2223 Found in file handy.h
2228 The XSUB-writer's interface to the C C<malloc> function. The allocated
2229 memory is zeroed with C<memzero>. See also C<Newx>.
2231 void Newxz(void* ptr, int nitems, type)
2234 Found in file handy.h
2239 PoisonWith(0xEF) for catching access to freed memory.
2241 void Poison(void* dest, int nitems, type)
2244 Found in file handy.h
2249 PoisonWith(0xEF) for catching access to freed memory.
2251 void PoisonFree(void* dest, int nitems, type)
2254 Found in file handy.h
2259 PoisonWith(0xAB) for catching access to allocated but uninitialized memory.
2261 void PoisonNew(void* dest, int nitems, type)
2264 Found in file handy.h
2269 Fill up memory with a byte pattern (a byte repeated over and over
2270 again) that hopefully catches attempts to access uninitialized memory.
2272 void PoisonWith(void* dest, int nitems, type, U8 byte)
2275 Found in file handy.h
2280 The XSUB-writer's interface to the C C<realloc> function.
2282 void Renew(void* ptr, int nitems, type)
2285 Found in file handy.h
2290 The XSUB-writer's interface to the C C<realloc> function, with
2293 void Renewc(void* ptr, int nitems, type, cast)
2296 Found in file handy.h
2301 The XSUB-writer's interface to the C C<free> function.
2303 void Safefree(void* ptr)
2306 Found in file handy.h
2311 Perl's version of C<strdup()>. Returns a pointer to a newly allocated
2312 string which is a duplicate of C<pv>. The size of the string is
2313 determined by C<strlen()>. The memory allocated for the new string can
2314 be freed with the C<Safefree()> function.
2316 char* savepv(const char* pv)
2319 Found in file util.c
2324 Perl's version of what C<strndup()> would be if it existed. Returns a
2325 pointer to a newly allocated string which is a duplicate of the first
2326 C<len> bytes from C<pv>, plus a trailing NUL byte. The memory allocated for
2327 the new string can be freed with the C<Safefree()> function.
2329 char* savepvn(const char* pv, I32 len)
2332 Found in file util.c
2337 Like C<savepvn>, but takes a literal string instead of a string/length pair.
2339 char* savepvs(const char* s)
2342 Found in file handy.h
2347 A version of C<savepv()> which allocates the duplicate string in memory
2348 which is shared between threads.
2350 char* savesharedpv(const char* pv)
2353 Found in file util.c
2358 A version of C<savepvn()> which allocates the duplicate string in memory
2359 which is shared between threads. (With the specific difference that a NULL
2360 pointer is not acceptable)
2362 char* savesharedpvn(const char *const pv, const STRLEN len)
2365 Found in file util.c
2370 A version of C<savepv()>/C<savepvn()> which gets the string to duplicate from
2371 the passed in SV using C<SvPV()>
2373 char* savesvpv(SV* sv)
2376 Found in file util.c
2381 This is an architecture-independent macro to copy one structure to another.
2383 void StructCopy(type src, type dest, type)
2386 Found in file handy.h
2391 The XSUB-writer's interface to the C C<memzero> function. The C<dest> is the
2392 destination, C<nitems> is the number of items, and C<type> is the type.
2394 void Zero(void* dest, int nitems, type)
2397 Found in file handy.h
2402 Like C<Zero> but returns dest. Useful for encouraging compilers to tail-call
2405 void * ZeroD(void* dest, int nitems, type)
2408 Found in file handy.h
2413 =head1 Miscellaneous Functions
2420 Analyses the string in order to make fast searches on it using fbm_instr()
2421 -- the Boyer-Moore algorithm.
2423 void fbm_compile(SV* sv, U32 flags)
2426 Found in file util.c
2431 Returns the location of the SV in the string delimited by C<str> and
2432 C<strend>. It returns C<NULL> if the string can't be found. The C<sv>
2433 does not have to be fbm_compiled, but the search will not be as fast
2436 char* fbm_instr(unsigned char* big, unsigned char* bigend, SV* littlesv, U32 flags)
2439 Found in file util.c
2444 Takes a sprintf-style format pattern and conventional
2445 (non-SV) arguments and returns the formatted string.
2447 (char *) Perl_form(pTHX_ const char* pat, ...)
2449 can be used any place a string (char *) is required:
2451 char * s = Perl_form("%d.%d",major,minor);
2453 Uses a single private buffer so if you want to format several strings you
2454 must explicitly copy the earlier strings away (and free the copies when you
2457 char* form(const char* pat, ...)
2460 Found in file util.c
2465 Fill the sv with current working directory
2467 int getcwd_sv(SV* sv)
2470 Found in file util.c
2475 The C library C<snprintf> functionality, if available and
2476 standards-compliant (uses C<vsnprintf>, actually). However, if the
2477 C<vsnprintf> is not available, will unfortunately use the unsafe
2478 C<vsprintf> which can overrun the buffer (there is an overrun check,
2479 but that may be too late). Consider using C<sv_vcatpvf> instead, or
2480 getting C<vsnprintf>.
2482 int my_snprintf(char *buffer, const Size_t len, const char *format, ...)
2485 Found in file util.c
2490 The C library C<sprintf>, wrapped if necessary, to ensure that it will return
2491 the length of the string written to the buffer. Only rare pre-ANSI systems
2492 need the wrapper function - usually this is a direct call to C<sprintf>.
2494 int my_sprintf(char *buffer, const char *pat, ...)
2497 Found in file util.c
2502 The C library C<vsnprintf> if available and standards-compliant.
2503 However, if if the C<vsnprintf> is not available, will unfortunately
2504 use the unsafe C<vsprintf> which can overrun the buffer (there is an
2505 overrun check, but that may be too late). Consider using
2506 C<sv_vcatpvf> instead, or getting C<vsnprintf>.
2508 int my_vsnprintf(char *buffer, const Size_t len, const char *format, va_list ap)
2511 Found in file util.c
2516 Returns a new version object based on the passed in SV:
2518 SV *sv = new_version(SV *ver);
2520 Does not alter the passed in ver SV. See "upg_version" if you
2521 want to upgrade the SV.
2523 SV* new_version(SV *ver)
2526 Found in file util.c
2531 Returns a pointer to the next character after the parsed
2532 version string, as well as upgrading the passed in SV to
2535 Function must be called with an already existing SV like
2538 s = scan_version(s,SV *sv, bool qv);
2540 Performs some preprocessing to the string to ensure that
2541 it has the correct characteristics of a version. Flags the
2542 object if it contains an underscore (which denotes this
2543 is a alpha version). The boolean qv denotes that the version
2544 should be interpreted as if it had multiple decimals, even if
2547 const char* scan_version(const char *vstr, SV *sv, bool qv)
2550 Found in file util.c
2555 Test two strings to see if they are equal. Returns true or false.
2557 bool strEQ(char* s1, char* s2)
2560 Found in file handy.h
2565 Test two strings to see if the first, C<s1>, is greater than or equal to
2566 the second, C<s2>. Returns true or false.
2568 bool strGE(char* s1, char* s2)
2571 Found in file handy.h
2576 Test two strings to see if the first, C<s1>, is greater than the second,
2577 C<s2>. Returns true or false.
2579 bool strGT(char* s1, char* s2)
2582 Found in file handy.h
2587 Test two strings to see if the first, C<s1>, is less than or equal to the
2588 second, C<s2>. Returns true or false.
2590 bool strLE(char* s1, char* s2)
2593 Found in file handy.h
2598 Test two strings to see if the first, C<s1>, is less than the second,
2599 C<s2>. Returns true or false.
2601 bool strLT(char* s1, char* s2)
2604 Found in file handy.h
2609 Test two strings to see if they are different. Returns true or
2612 bool strNE(char* s1, char* s2)
2615 Found in file handy.h
2620 Test two strings to see if they are equal. The C<len> parameter indicates
2621 the number of bytes to compare. Returns true or false. (A wrapper for
2624 bool strnEQ(char* s1, char* s2, STRLEN len)
2627 Found in file handy.h
2632 Test two strings to see if they are different. The C<len> parameter
2633 indicates the number of bytes to compare. Returns true or false. (A
2634 wrapper for C<strncmp>).
2636 bool strnNE(char* s1, char* s2, STRLEN len)
2639 Found in file handy.h
2644 Dummy routine which "shares" an SV when there is no sharing module present.
2645 Or "locks" it. Or "unlocks" it. In other words, ignores its single SV argument.
2646 Exists to avoid test for a NULL function pointer and because it could
2647 potentially warn under some level of strict-ness.
2649 void sv_nosharing(SV *sv)
2652 Found in file util.c
2657 In-place upgrade of the supplied SV to a version object.
2659 SV *sv = upg_version(SV *sv);
2661 Returns a pointer to the upgraded SV.
2663 SV* upg_version(SV *ver)
2666 Found in file util.c
2671 Version object aware cmp. Both operands must already have been
2672 converted into version objects.
2674 int vcmp(SV *lvs, SV *rvs)
2677 Found in file util.c
2682 Accepts a version object and returns the normalized string
2683 representation. Call like:
2687 NOTE: you can pass either the object directly or the SV
2688 contained within the RV.
2693 Found in file util.c
2698 Accepts a version object and returns the normalized floating
2699 point representation. Call like:
2703 NOTE: you can pass either the object directly or the SV
2704 contained within the RV.
2709 Found in file util.c
2714 In order to maintain maximum compatibility with earlier versions
2715 of Perl, this function will return either the floating point
2716 notation or the multiple dotted notation, depending on whether
2717 the original version contained 1 or more dots, respectively
2719 SV* vstringify(SV *vs)
2722 Found in file util.c
2727 Validates that the SV contains a valid version object.
2729 bool vverify(SV *vobj);
2731 Note that it only confirms the bare minimum structure (so as not to get
2732 confused by derived classes which may contain additional hash entries):
2734 bool vverify(SV *vs)
2737 Found in file util.c
2742 =head1 Multicall Functions
2749 Declare local variables for a multicall. See L<perlcall/Lightweight Callbacks>.
2759 Make a lightweight callback. See L<perlcall/Lightweight Callbacks>.
2769 Closing bracket for a lightweight callback.
2770 See L<perlcall/Lightweight Callbacks>.
2777 =item PUSH_MULTICALL
2780 Opening bracket for a lightweight callback.
2781 See L<perlcall/Lightweight Callbacks>.
2791 =head1 Numeric functions
2798 converts a string representing a binary number to numeric form.
2800 On entry I<start> and I<*len> give the string to scan, I<*flags> gives
2801 conversion flags, and I<result> should be NULL or a pointer to an NV.
2802 The scan stops at the end of the string, or the first invalid character.
2803 Unless C<PERL_SCAN_SILENT_ILLDIGIT> is set in I<*flags>, encountering an
2804 invalid character will also trigger a warning.
2805 On return I<*len> is set to the length of the scanned string,
2806 and I<*flags> gives output flags.
2808 If the value is <= C<UV_MAX> it is returned as a UV, the output flags are clear,
2809 and nothing is written to I<*result>. If the value is > UV_MAX C<grok_bin>
2810 returns UV_MAX, sets C<PERL_SCAN_GREATER_THAN_UV_MAX> in the output flags,
2811 and writes the value to I<*result> (or the value is discarded if I<result>
2814 The binary number may optionally be prefixed with "0b" or "b" unless
2815 C<PERL_SCAN_DISALLOW_PREFIX> is set in I<*flags> on entry. If
2816 C<PERL_SCAN_ALLOW_UNDERSCORES> is set in I<*flags> then the binary
2817 number may use '_' characters to separate digits.
2819 UV grok_bin(const char* start, STRLEN* len_p, I32* flags, NV *result)
2822 Found in file numeric.c
2827 converts a string representing a hex number to numeric form.
2829 On entry I<start> and I<*len> give the string to scan, I<*flags> gives
2830 conversion flags, and I<result> should be NULL or a pointer to an NV.
2831 The scan stops at the end of the string, or the first invalid character.
2832 Unless C<PERL_SCAN_SILENT_ILLDIGIT> is set in I<*flags>, encountering an
2833 invalid character will also trigger a warning.
2834 On return I<*len> is set to the length of the scanned string,
2835 and I<*flags> gives output flags.
2837 If the value is <= UV_MAX it is returned as a UV, the output flags are clear,
2838 and nothing is written to I<*result>. If the value is > UV_MAX C<grok_hex>
2839 returns UV_MAX, sets C<PERL_SCAN_GREATER_THAN_UV_MAX> in the output flags,
2840 and writes the value to I<*result> (or the value is discarded if I<result>
2843 The hex number may optionally be prefixed with "0x" or "x" unless
2844 C<PERL_SCAN_DISALLOW_PREFIX> is set in I<*flags> on entry. If
2845 C<PERL_SCAN_ALLOW_UNDERSCORES> is set in I<*flags> then the hex
2846 number may use '_' characters to separate digits.
2848 UV grok_hex(const char* start, STRLEN* len_p, I32* flags, NV *result)
2851 Found in file numeric.c
2856 Recognise (or not) a number. The type of the number is returned
2857 (0 if unrecognised), otherwise it is a bit-ORed combination of
2858 IS_NUMBER_IN_UV, IS_NUMBER_GREATER_THAN_UV_MAX, IS_NUMBER_NOT_INT,
2859 IS_NUMBER_NEG, IS_NUMBER_INFINITY, IS_NUMBER_NAN (defined in perl.h).
2861 If the value of the number can fit an in UV, it is returned in the *valuep
2862 IS_NUMBER_IN_UV will be set to indicate that *valuep is valid, IS_NUMBER_IN_UV
2863 will never be set unless *valuep is valid, but *valuep may have been assigned
2864 to during processing even though IS_NUMBER_IN_UV is not set on return.
2865 If valuep is NULL, IS_NUMBER_IN_UV will be set for the same cases as when
2866 valuep is non-NULL, but no actual assignment (or SEGV) will occur.
2868 IS_NUMBER_NOT_INT will be set with IS_NUMBER_IN_UV if trailing decimals were
2869 seen (in which case *valuep gives the true value truncated to an integer), and
2870 IS_NUMBER_NEG if the number is negative (in which case *valuep holds the
2871 absolute value). IS_NUMBER_IN_UV is not set if e notation was used or the
2872 number is larger than a UV.
2874 int grok_number(const char *pv, STRLEN len, UV *valuep)
2877 Found in file numeric.c
2879 =item grok_numeric_radix
2880 X<grok_numeric_radix>
2882 Scan and skip for a numeric decimal separator (radix).
2884 bool grok_numeric_radix(const char **sp, const char *send)
2887 Found in file numeric.c
2892 converts a string representing an octal number to numeric form.
2894 On entry I<start> and I<*len> give the string to scan, I<*flags> gives
2895 conversion flags, and I<result> should be NULL or a pointer to an NV.
2896 The scan stops at the end of the string, or the first invalid character.
2897 Unless C<PERL_SCAN_SILENT_ILLDIGIT> is set in I<*flags>, encountering an
2898 invalid character will also trigger a warning.
2899 On return I<*len> is set to the length of the scanned string,
2900 and I<*flags> gives output flags.
2902 If the value is <= UV_MAX it is returned as a UV, the output flags are clear,
2903 and nothing is written to I<*result>. If the value is > UV_MAX C<grok_oct>
2904 returns UV_MAX, sets C<PERL_SCAN_GREATER_THAN_UV_MAX> in the output flags,
2905 and writes the value to I<*result> (or the value is discarded if I<result>
2908 If C<PERL_SCAN_ALLOW_UNDERSCORES> is set in I<*flags> then the octal
2909 number may use '_' characters to separate digits.
2911 UV grok_oct(const char* start, STRLEN* len_p, I32* flags, NV *result)
2914 Found in file numeric.c
2919 For backwards compatibility. Use C<grok_bin> instead.
2921 NV scan_bin(const char* start, STRLEN len, STRLEN* retlen)
2924 Found in file numeric.c
2929 For backwards compatibility. Use C<grok_hex> instead.
2931 NV scan_hex(const char* start, STRLEN len, STRLEN* retlen)
2934 Found in file numeric.c
2939 For backwards compatibility. Use C<grok_oct> instead.
2941 NV scan_oct(const char* start, STRLEN len, STRLEN* retlen)
2944 Found in file numeric.c
2949 =head1 Optree Manipulation Functions
2956 If C<cv> is a constant sub eligible for inlining. returns the constant
2957 value returned by the sub. Otherwise, returns NULL.
2959 Constant subs can be created with C<newCONSTSUB> or as described in
2960 L<perlsub/"Constant Functions">.
2962 SV* cv_const_sv(CV* cv)
2970 Creates a constant sub equivalent to Perl C<sub FOO () { 123 }> which is
2971 eligible for inlining at compile-time.
2973 CV* newCONSTSUB(HV* stash, const char* name, SV* sv)
2981 Used by C<xsubpp> to hook up XSUBs as Perl subs. I<filename> needs to be
2982 static storage, as it is used directly as CvFILE(), without a copy being made.
2990 =head1 Pad Data Structures
2997 Get the value at offset po in the current pad.
2998 Use macro PAD_SV instead of calling this function directly.
3000 SV* pad_sv(PADOFFSET po)
3008 =head1 Simple Exception Handling Macros
3015 Set up necessary local variables for exception handling.
3016 See L<perlguts/"Exception Handling">.
3021 Found in file XSUB.h
3026 Introduces a catch block. See L<perlguts/"Exception Handling">.
3029 Found in file XSUB.h
3034 Rethrows a previously caught exception. See L<perlguts/"Exception Handling">.
3039 Found in file XSUB.h
3044 Ends a try block. See L<perlguts/"Exception Handling">.
3047 Found in file XSUB.h
3049 =item XCPT_TRY_START
3052 Starts a try block. See L<perlguts/"Exception Handling">.
3055 Found in file XSUB.h
3060 =head1 Stack Manipulation Macros
3067 Declare a stack marker variable, C<mark>, for the XSUB. See C<MARK> and
3078 Saves the original stack mark for the XSUB. See C<ORIGMARK>.
3088 Declares a local copy of perl's stack pointer for the XSUB, available via
3089 the C<SP> macro. See C<SP>.
3099 Used to extend the argument stack for an XSUB's return values. Once
3100 used, guarantees that there is room for at least C<nitems> to be pushed
3103 void EXTEND(SP, int nitems)
3111 Stack marker variable for the XSUB. See C<dMARK>.
3119 Push an integer onto the stack. The stack must have room for this element.
3120 Handles 'set' magic. Does not use C<TARG>. See also C<PUSHi>, C<mXPUSHi>
3131 Push a double onto the stack. The stack must have room for this element.
3132 Handles 'set' magic. Does not use C<TARG>. See also C<PUSHn>, C<mXPUSHn>
3143 Push a string onto the stack. The stack must have room for this element.
3144 The C<len> indicates the length of the string. Handles 'set' magic. Does
3145 not use C<TARG>. See also C<PUSHp>, C<mXPUSHp> and C<XPUSHp>.
3147 void mPUSHp(char* str, STRLEN len)
3155 Push an unsigned integer onto the stack. The stack must have room for this
3156 element. Handles 'set' magic. Does not use C<TARG>. See also C<PUSHu>,
3157 C<mXPUSHu> and C<XPUSHu>.
3167 Push an integer onto the stack, extending the stack if necessary. Handles
3168 'set' magic. Does not use C<TARG>. See also C<XPUSHi>, C<mPUSHi> and
3179 Push a double onto the stack, extending the stack if necessary. Handles
3180 'set' magic. Does not use C<TARG>. See also C<XPUSHn>, C<mPUSHn> and
3191 Push a string onto the stack, extending the stack if necessary. The C<len>
3192 indicates the length of the string. Handles 'set' magic. Does not use
3193 C<TARG>. See also C<XPUSHp>, C<mPUSHp> and C<PUSHp>.
3195 void mXPUSHp(char* str, STRLEN len)
3203 Push an unsigned integer onto the stack, extending the stack if necessary.
3204 Handles 'set' magic. Does not use C<TARG>. See also C<XPUSHu>, C<mPUSHu>
3215 The original stack mark for the XSUB. See C<dORIGMARK>.
3223 Pops an integer off the stack.
3233 Pops a long off the stack.
3243 Pops a double off the stack.
3253 Pops a string off the stack. Deprecated. New code should use POPpx.
3263 Pops a string off the stack which must consist of bytes i.e. characters < 256.
3273 Pops a string off the stack.
3283 Pops an SV off the stack.
3293 Push an integer onto the stack. The stack must have room for this element.
3294 Handles 'set' magic. Uses C<TARG>, so C<dTARGET> or C<dXSTARG> should be
3295 called to declare it. Do not call multiple C<TARG>-oriented macros to
3296 return lists from XSUB's - see C<mPUSHi> instead. See also C<XPUSHi> and
3307 Opening bracket for arguments on a callback. See C<PUTBACK> and
3318 Push a new mortal SV onto the stack. The stack must have room for this
3319 element. Does not handle 'set' magic. Does not use C<TARG>. See also
3320 C<PUSHs>, C<XPUSHmortal> and C<XPUSHs>.
3330 Push a double onto the stack. The stack must have room for this element.
3331 Handles 'set' magic. Uses C<TARG>, so C<dTARGET> or C<dXSTARG> should be
3332 called to declare it. Do not call multiple C<TARG>-oriented macros to
3333 return lists from XSUB's - see C<mPUSHn> instead. See also C<XPUSHn> and
3344 Push a string onto the stack. The stack must have room for this element.
3345 The C<len> indicates the length of the string. Handles 'set' magic. Uses
3346 C<TARG>, so C<dTARGET> or C<dXSTARG> should be called to declare it. Do not
3347 call multiple C<TARG>-oriented macros to return lists from XSUB's - see
3348 C<mPUSHp> instead. See also C<XPUSHp> and C<mXPUSHp>.
3350 void PUSHp(char* str, STRLEN len)
3358 Push an SV onto the stack. The stack must have room for this element.
3359 Does not handle 'set' magic. Does not use C<TARG>. See also C<PUSHmortal>,
3360 C<XPUSHs> and C<XPUSHmortal>.
3370 Push an unsigned integer onto the stack. The stack must have room for this
3371 element. Handles 'set' magic. Uses C<TARG>, so C<dTARGET> or C<dXSTARG>
3372 should be called to declare it. Do not call multiple C<TARG>-oriented
3373 macros to return lists from XSUB's - see C<mPUSHu> instead. See also
3374 C<XPUSHu> and C<mXPUSHu>.
3384 Closing bracket for XSUB arguments. This is usually handled by C<xsubpp>.
3385 See C<PUSHMARK> and L<perlcall> for other uses.
3395 Stack pointer. This is usually handled by C<xsubpp>. See C<dSP> and
3404 Refetch the stack pointer. Used after a callback. See L<perlcall>.
3414 Push an integer onto the stack, extending the stack if necessary. Handles
3415 'set' magic. Uses C<TARG>, so C<dTARGET> or C<dXSTARG> should be called to
3416 declare it. Do not call multiple C<TARG>-oriented macros to return lists
3417 from XSUB's - see C<mXPUSHi> instead. See also C<PUSHi> and C<mPUSHi>.
3427 Push a new mortal SV onto the stack, extending the stack if necessary. Does
3428 not handle 'set' magic. Does not use C<TARG>. See also C<XPUSHs>,
3429 C<PUSHmortal> and C<PUSHs>.
3439 Push a double onto the stack, extending the stack if necessary. Handles
3440 'set' magic. Uses C<TARG>, so C<dTARGET> or C<dXSTARG> should be called to
3441 declare it. Do not call multiple C<TARG>-oriented macros to return lists
3442 from XSUB's - see C<mXPUSHn> instead. See also C<PUSHn> and C<mPUSHn>.
3452 Push a string onto the stack, extending the stack if necessary. The C<len>
3453 indicates the length of the string. Handles 'set' magic. Uses C<TARG>, so
3454 C<dTARGET> or C<dXSTARG> should be called to declare it. Do not call
3455 multiple C<TARG>-oriented macros to return lists from XSUB's - see
3456 C<mXPUSHp> instead. See also C<PUSHp> and C<mPUSHp>.
3458 void XPUSHp(char* str, STRLEN len)
3466 Push an SV onto the stack, extending the stack if necessary. Does not
3467 handle 'set' magic. Does not use C<TARG>. See also C<XPUSHmortal>,
3468 C<PUSHs> and C<PUSHmortal>.
3478 Push an unsigned integer onto the stack, extending the stack if necessary.
3479 Handles 'set' magic. Uses C<TARG>, so C<dTARGET> or C<dXSTARG> should be
3480 called to declare it. Do not call multiple C<TARG>-oriented macros to
3481 return lists from XSUB's - see C<mXPUSHu> instead. See also C<PUSHu> and
3492 Return from XSUB, indicating number of items on the stack. This is usually
3493 handled by C<xsubpp>.
3495 void XSRETURN(int nitems)
3498 Found in file XSUB.h
3500 =item XSRETURN_EMPTY
3503 Return an empty list from an XSUB immediately.
3508 Found in file XSUB.h
3513 Return an integer from an XSUB immediately. Uses C<XST_mIV>.
3515 void XSRETURN_IV(IV iv)
3518 Found in file XSUB.h
3523 Return C<&PL_sv_no> from an XSUB immediately. Uses C<XST_mNO>.
3528 Found in file XSUB.h
3533 Return a double from an XSUB immediately. Uses C<XST_mNV>.
3535 void XSRETURN_NV(NV nv)
3538 Found in file XSUB.h
3543 Return a copy of a string from an XSUB immediately. Uses C<XST_mPV>.
3545 void XSRETURN_PV(char* str)
3548 Found in file XSUB.h
3550 =item XSRETURN_UNDEF
3553 Return C<&PL_sv_undef> from an XSUB immediately. Uses C<XST_mUNDEF>.
3558 Found in file XSUB.h
3563 Return an integer from an XSUB immediately. Uses C<XST_mUV>.
3565 void XSRETURN_UV(IV uv)
3568 Found in file XSUB.h
3573 Return C<&PL_sv_yes> from an XSUB immediately. Uses C<XST_mYES>.
3578 Found in file XSUB.h
3583 Place an integer into the specified position C<pos> on the stack. The
3584 value is stored in a new mortal SV.
3586 void XST_mIV(int pos, IV iv)
3589 Found in file XSUB.h
3594 Place C<&PL_sv_no> into the specified position C<pos> on the
3597 void XST_mNO(int pos)
3600 Found in file XSUB.h
3605 Place a double into the specified position C<pos> on the stack. The value
3606 is stored in a new mortal SV.
3608 void XST_mNV(int pos, NV nv)
3611 Found in file XSUB.h
3616 Place a copy of a string into the specified position C<pos> on the stack.
3617 The value is stored in a new mortal SV.
3619 void XST_mPV(int pos, char* str)
3622 Found in file XSUB.h
3627 Place C<&PL_sv_undef> into the specified position C<pos> on the
3630 void XST_mUNDEF(int pos)
3633 Found in file XSUB.h
3638 Place C<&PL_sv_yes> into the specified position C<pos> on the
3641 void XST_mYES(int pos)
3644 Found in file XSUB.h
3656 An enum of flags for Perl types. These are found in the file B<sv.h>
3657 in the C<svtype> enum. Test these flags with the C<SvTYPE> macro.
3665 Integer type flag for scalars. See C<svtype>.
3673 Double type flag for scalars. See C<svtype>.
3681 Pointer type flag for scalars. See C<svtype>.
3689 Type flag for arrays. See C<svtype>.
3697 Type flag for code refs. See C<svtype>.
3705 Type flag for hashes. See C<svtype>.
3713 Type flag for blessed scalars. See C<svtype>.
3721 =head1 SV Manipulation Functions
3728 Returns the SV of the specified Perl scalar. If C<create> is set and the
3729 Perl variable does not exist then it will be created. If C<create> is not
3730 set and the variable does not exist then NULL is returned.
3732 NOTE: the perl_ form of this function is deprecated.
3734 SV* get_sv(const char* name, I32 create)
3737 Found in file perl.c
3742 Creates an RV wrapper for an SV. The reference count for the original SV is
3745 SV* newRV_inc(SV* sv)
3753 Returns the length of the string which is in the SV. See C<SvLEN>.
3755 STRLEN SvCUR(SV* sv)
3763 Set the current length of the string which is in the SV. See C<SvCUR>
3766 void SvCUR_set(SV* sv, STRLEN len)
3774 Returns a pointer to the last character in the string which is in the SV.
3775 See C<SvCUR>. Access the character as *(SvEND(sv)).
3785 Returns true if the SV has get magic or overloading. If either is true then
3786 the scalar is active data, and has the potential to return a new value every
3787 time it is accessed. Hence you must be careful to only read it once per user
3788 logical operation and work with that returned value. If neither is true then
3789 the scalar's value cannot change unless written to.
3791 char* SvGAMAGIC(SV* sv)
3799 Expands the character buffer in the SV so that it has room for the
3800 indicated number of bytes (remember to reserve space for an extra trailing
3801 NUL character). Calls C<sv_grow> to perform the expansion if necessary.
3802 Returns a pointer to the character buffer.
3804 char * SvGROW(SV* sv, STRLEN len)
3812 Returns a U32 value indicating whether the SV contains an integer.
3822 Returns a U32 value indicating whether the SV contains an integer. Checks
3823 the B<private> setting. Use C<SvIOK>.
3833 Returns a boolean indicating whether the SV contains a signed integer.
3835 bool SvIOK_notUV(SV* sv)
3843 Unsets the IV status of an SV.
3845 void SvIOK_off(SV* sv)
3853 Tells an SV that it is an integer.
3855 void SvIOK_on(SV* sv)
3863 Tells an SV that it is an integer and disables all other OK bits.
3865 void SvIOK_only(SV* sv)
3873 Tells and SV that it is an unsigned integer and disables all other OK bits.
3875 void SvIOK_only_UV(SV* sv)
3883 Returns a boolean indicating whether the SV contains an unsigned integer.
3885 bool SvIOK_UV(SV* sv)
3893 Returns a boolean indicating whether the SV is Copy-On-Write. (either shared
3894 hash key scalars, or full Copy On Write scalars if 5.9.0 is configured for
3897 bool SvIsCOW(SV* sv)
3902 =item SvIsCOW_shared_hash
3903 X<SvIsCOW_shared_hash>
3905 Returns a boolean indicating whether the SV is Copy-On-Write shared hash key
3908 bool SvIsCOW_shared_hash(SV* sv)
3916 Coerces the given SV to an integer and returns it. See C<SvIVx> for a
3917 version which guarantees to evaluate sv only once.
3927 Returns the raw value in the SV's IV slot, without checks or conversions.
3928 Only use when you are sure SvIOK is true. See also C<SvIV()>.
3938 Coerces the given SV to an integer and returns it. Guarantees to evaluate
3939 sv only once. Use the more efficient C<SvIV> otherwise.
3949 Like C<SvIV> but doesn't process magic.
3951 IV SvIV_nomg(SV* sv)
3959 Set the value of the IV pointer in sv to val. It is possible to perform
3960 the same function of this macro with an lvalue assignment to C<SvIVX>.
3961 With future Perls, however, it will be more efficient to use
3962 C<SvIV_set> instead of the lvalue assignment to C<SvIVX>.
3964 void SvIV_set(SV* sv, IV val)
3972 Returns the size of the string buffer in the SV, not including any part
3973 attributable to C<SvOOK>. See C<SvCUR>.
3975 STRLEN SvLEN(SV* sv)
3983 Set the actual length of the string which is in the SV. See C<SvIV_set>.
3985 void SvLEN_set(SV* sv, STRLEN len)
3993 Set the value of the MAGIC pointer in sv to val. See C<SvIV_set>.
3995 void SvMAGIC_set(SV* sv, MAGIC* val)
4003 Returns a U32 value indicating whether the SV contains a number, integer or
4014 Returns a U32 value indicating whether the SV contains a number, integer or
4015 double. Checks the B<private> setting. Use C<SvNIOK>.
4025 Unsets the NV/IV status of an SV.
4027 void SvNIOK_off(SV* sv)
4035 Returns a U32 value indicating whether the SV contains a double.
4045 Returns a U32 value indicating whether the SV contains a double. Checks the
4046 B<private> setting. Use C<SvNOK>.
4056 Unsets the NV status of an SV.
4058 void SvNOK_off(SV* sv)
4066 Tells an SV that it is a double.
4068 void SvNOK_on(SV* sv)
4076 Tells an SV that it is a double and disables all other OK bits.
4078 void SvNOK_only(SV* sv)
4086 Coerce the given SV to a double and return it. See C<SvNVx> for a version
4087 which guarantees to evaluate sv only once.
4097 Returns the raw value in the SV's NV slot, without checks or conversions.
4098 Only use when you are sure SvNOK is true. See also C<SvNV()>.
4108 Coerces the given SV to a double and returns it. Guarantees to evaluate
4109 sv only once. Use the more efficient C<SvNV> otherwise.
4119 Set the value of the NV pointer in sv to val. See C<SvIV_set>.
4121 void SvNV_set(SV* sv, NV val)
4129 Returns a U32 value indicating whether the value is an SV. It also tells
4130 whether the value is defined or not.
4140 Returns a U32 indicating whether the SvIVX is a valid offset value for
4141 the SvPVX. This hack is used internally to speed up removal of characters
4142 from the beginning of a SvPV. When SvOOK is true, then the start of the
4143 allocated string buffer is really (SvPVX - SvIVX).
4153 Returns a U32 value indicating whether the SV contains a character
4164 Returns a U32 value indicating whether the SV contains a character string.
4165 Checks the B<private> setting. Use C<SvPOK>.
4175 Unsets the PV status of an SV.
4177 void SvPOK_off(SV* sv)
4185 Tells an SV that it is a string.
4187 void SvPOK_on(SV* sv)
4195 Tells an SV that it is a string and disables all other OK bits.
4196 Will also turn off the UTF-8 status.
4198 void SvPOK_only(SV* sv)
4203 =item SvPOK_only_UTF8
4206 Tells an SV that it is a string and disables all other OK bits,
4207 and leaves the UTF-8 status as it was.
4209 void SvPOK_only_UTF8(SV* sv)
4217 Returns a pointer to the string in the SV, or a stringified form of
4218 the SV if the SV does not contain a string. The SV may cache the
4219 stringified version becoming C<SvPOK>. Handles 'get' magic. See also
4220 C<SvPVx> for a version which guarantees to evaluate sv only once.
4222 char* SvPV(SV* sv, STRLEN len)
4230 Like C<SvPV>, but converts sv to byte representation first if necessary.
4232 char* SvPVbyte(SV* sv, STRLEN len)
4240 Like C<SvPV>, but converts sv to byte representation first if necessary.
4241 Guarantees to evaluate sv only once; use the more efficient C<SvPVbyte>
4244 char* SvPVbytex(SV* sv, STRLEN len)
4249 =item SvPVbytex_force
4252 Like C<SvPV_force>, but converts sv to byte representation first if necessary.
4253 Guarantees to evaluate sv only once; use the more efficient C<SvPVbyte_force>
4256 char* SvPVbytex_force(SV* sv, STRLEN len)
4261 =item SvPVbyte_force
4264 Like C<SvPV_force>, but converts sv to byte representation first if necessary.
4266 char* SvPVbyte_force(SV* sv, STRLEN len)
4271 =item SvPVbyte_nolen
4274 Like C<SvPV_nolen>, but converts sv to byte representation first if necessary.
4276 char* SvPVbyte_nolen(SV* sv)
4284 Like C<SvPV>, but converts sv to utf8 first if necessary.
4286 char* SvPVutf8(SV* sv, STRLEN len)
4294 Like C<SvPV>, but converts sv to utf8 first if necessary.
4295 Guarantees to evaluate sv only once; use the more efficient C<SvPVutf8>
4298 char* SvPVutf8x(SV* sv, STRLEN len)
4303 =item SvPVutf8x_force
4306 Like C<SvPV_force>, but converts sv to utf8 first if necessary.
4307 Guarantees to evaluate sv only once; use the more efficient C<SvPVutf8_force>
4310 char* SvPVutf8x_force(SV* sv, STRLEN len)
4315 =item SvPVutf8_force
4318 Like C<SvPV_force>, but converts sv to utf8 first if necessary.
4320 char* SvPVutf8_force(SV* sv, STRLEN len)
4325 =item SvPVutf8_nolen
4328 Like C<SvPV_nolen>, but converts sv to utf8 first if necessary.
4330 char* SvPVutf8_nolen(SV* sv)
4338 Returns a pointer to the physical string in the SV. The SV must contain a
4349 A version of C<SvPV> which guarantees to evaluate sv only once.
4351 char* SvPVx(SV* sv, STRLEN len)
4359 Like C<SvPV> but will force the SV into containing just a string
4360 (C<SvPOK_only>). You want force if you are going to update the C<SvPVX>
4363 char* SvPV_force(SV* sv, STRLEN len)
4368 =item SvPV_force_nomg
4371 Like C<SvPV> but will force the SV into containing just a string
4372 (C<SvPOK_only>). You want force if you are going to update the C<SvPVX>
4373 directly. Doesn't process magic.
4375 char* SvPV_force_nomg(SV* sv, STRLEN len)
4383 Returns a pointer to the string in the SV, or a stringified form of
4384 the SV if the SV does not contain a string. The SV may cache the
4385 stringified form becoming C<SvPOK>. Handles 'get' magic.
4387 char* SvPV_nolen(SV* sv)
4395 Like C<SvPV> but doesn't process magic.
4397 char* SvPV_nomg(SV* sv, STRLEN len)
4405 Set the value of the PV pointer in sv to val. See C<SvIV_set>.
4407 void SvPV_set(SV* sv, char* val)
4415 Returns the value of the object's reference count.
4417 U32 SvREFCNT(SV* sv)
4425 Decrements the reference count of the given SV.
4427 void SvREFCNT_dec(SV* sv)
4435 Increments the reference count of the given SV.
4437 All of the following SvREFCNT_inc* macros are optimized versions of
4438 SvREFCNT_inc, and can be replaced with SvREFCNT_inc.
4440 SV* SvREFCNT_inc(SV* sv)
4445 =item SvREFCNT_inc_NN
4448 Same as SvREFCNT_inc, but can only be used if you know I<sv>
4449 is not NULL. Since we don't have to check the NULLness, it's faster
4452 SV* SvREFCNT_inc_NN(SV* sv)
4457 =item SvREFCNT_inc_simple
4458 X<SvREFCNT_inc_simple>
4460 Same as SvREFCNT_inc, but can only be used with simple variables, not
4461 expressions or pointer dereferences. Since we don't have to store a
4462 temporary value, it's faster.
4464 SV* SvREFCNT_inc_simple(SV* sv)
4469 =item SvREFCNT_inc_simple_NN
4470 X<SvREFCNT_inc_simple_NN>
4472 Same as SvREFCNT_inc_simple, but can only be used if you know I<sv>
4473 is not NULL. Since we don't have to check the NULLness, it's faster
4476 SV* SvREFCNT_inc_simple_NN(SV* sv)
4481 =item SvREFCNT_inc_simple_void
4482 X<SvREFCNT_inc_simple_void>
4484 Same as SvREFCNT_inc_simple, but can only be used if you don't need the
4485 return value. The macro doesn't need to return a meaningful value.
4487 void SvREFCNT_inc_simple_void(SV* sv)
4492 =item SvREFCNT_inc_simple_void_NN
4493 X<SvREFCNT_inc_simple_void_NN>
4495 Same as SvREFCNT_inc, but can only be used if you don't need the return
4496 value, and you know that I<sv> is not NULL. The macro doesn't need
4497 to return a meaningful value, or check for NULLness, so it's smaller
4500 void SvREFCNT_inc_simple_void_NN(SV* sv)
4505 =item SvREFCNT_inc_void
4506 X<SvREFCNT_inc_void>
4508 Same as SvREFCNT_inc, but can only be used if you don't need the
4509 return value. The macro doesn't need to return a meaningful value.
4511 void SvREFCNT_inc_void(SV* sv)
4516 =item SvREFCNT_inc_void_NN
4517 X<SvREFCNT_inc_void_NN>
4519 Same as SvREFCNT_inc, but can only be used if you don't need the return
4520 value, and you know that I<sv> is not NULL. The macro doesn't need
4521 to return a meaningful value, or check for NULLness, so it's smaller
4524 void SvREFCNT_inc_void_NN(SV* sv)
4532 Tests if the SV is an RV.
4542 Unsets the RV status of an SV.
4544 void SvROK_off(SV* sv)
4552 Tells an SV that it is an RV.
4554 void SvROK_on(SV* sv)
4562 Dereferences an RV to return the SV.
4572 Set the value of the RV pointer in sv to val. See C<SvIV_set>.
4574 void SvRV_set(SV* sv, SV* val)
4582 Returns the stash of the SV.
4592 Set the value of the STASH pointer in sv to val. See C<SvIV_set>.
4594 void SvSTASH_set(SV* sv, HV* val)
4602 Taints an SV if tainting is enabled.
4604 void SvTAINT(SV* sv)
4612 Checks to see if an SV is tainted. Returns TRUE if it is, FALSE if
4615 bool SvTAINTED(SV* sv)
4623 Untaints an SV. Be I<very> careful with this routine, as it short-circuits
4624 some of Perl's fundamental security features. XS module authors should not
4625 use this function unless they fully understand all the implications of
4626 unconditionally untainting the value. Untainting should be done in the
4627 standard perl fashion, via a carefully crafted regexp, rather than directly
4628 untainting variables.
4630 void SvTAINTED_off(SV* sv)
4638 Marks an SV as tainted if tainting is enabled.
4640 void SvTAINTED_on(SV* sv)
4648 Returns a boolean indicating whether Perl would evaluate the SV as true or
4649 false, defined or undefined. Does not handle 'get' magic.
4659 Returns the type of the SV. See C<svtype>.
4661 svtype SvTYPE(SV* sv)
4669 Returns a boolean indicating whether the SV contains an unsigned integer.
4679 Used to upgrade an SV to a more complex form. Uses C<sv_upgrade> to
4680 perform the upgrade if necessary. See C<svtype>.
4682 void SvUPGRADE(SV* sv, svtype type)
4690 Returns a U32 value indicating whether the SV contains UTF-8 encoded data.
4691 Call this after SvPV() in case any call to string overloading updates the
4702 Unsets the UTF-8 status of an SV.
4704 void SvUTF8_off(SV *sv)
4712 Turn on the UTF-8 status of an SV (the data is not changed, just the flag).
4713 Do not use frivolously.
4715 void SvUTF8_on(SV *sv)
4723 Coerces the given SV to an unsigned integer and returns it. See C<SvUVx>
4724 for a version which guarantees to evaluate sv only once.
4734 Returns the raw value in the SV's UV slot, without checks or conversions.
4735 Only use when you are sure SvIOK is true. See also C<SvUV()>.
4745 Coerces the given SV to an unsigned integer and returns it. Guarantees to
4746 evaluate sv only once. Use the more efficient C<SvUV> otherwise.
4756 Like C<SvUV> but doesn't process magic.
4758 UV SvUV_nomg(SV* sv)
4766 Set the value of the UV pointer in sv to val. See C<SvIV_set>.
4768 void SvUV_set(SV* sv, UV val)
4776 Returns a boolean indicating whether the SV contains a v-string.
4783 =item sv_catpvn_nomg
4786 Like C<sv_catpvn> but doesn't process magic.
4788 void sv_catpvn_nomg(SV* sv, const char* ptr, STRLEN len)
4796 Like C<sv_catsv> but doesn't process magic.
4798 void sv_catsv_nomg(SV* dsv, SV* ssv)
4803 =item sv_derived_from
4806 Returns a boolean indicating whether the SV is derived from the specified class
4807 I<at the C level>. To check derivation at the Perl level, call C<isa()> as a
4810 bool sv_derived_from(SV* sv, const char* name)
4813 Found in file universal.c
4818 Returns a boolean indicating whether the SV performs a specific, named role.
4819 The SV can be a Perl object or the name of a Perl class.
4821 bool sv_does(SV* sv, const char* name)
4824 Found in file universal.c
4826 =item sv_report_used
4829 Dump the contents of all SVs not yet freed. (Debugging aid).
4831 void sv_report_used()
4839 Like C<sv_setsv> but doesn't process magic.
4841 void sv_setsv_nomg(SV* dsv, SV* ssv)
4849 =head1 SV-Body Allocation
4853 =item looks_like_number
4854 X<looks_like_number>
4856 Test if the content of an SV looks like a number (or is a number).
4857 C<Inf> and C<Infinity> are treated as numbers (so will not issue a
4858 non-numeric warning), even if your atof() doesn't grok them.
4860 I32 looks_like_number(SV* sv)
4868 Creates an RV wrapper for an SV. The reference count for the original
4869 SV is B<not> incremented.
4871 SV* newRV_noinc(SV* sv)
4879 Creates a new SV. A non-zero C<len> parameter indicates the number of
4880 bytes of preallocated string space the SV should have. An extra byte for a
4881 trailing NUL is also reserved. (SvPOK is not set for the SV even if string
4882 space is allocated.) The reference count for the new SV is set to 1.
4884 In 5.9.3, newSV() replaces the older NEWSV() API, and drops the first
4885 parameter, I<x>, a debug aid which allowed callers to identify themselves.
4886 This aid has been superseded by a new build option, PERL_MEM_LOG (see
4887 L<perlhack/PERL_MEM_LOG>). The older API is still there for use in XS
4888 modules supporting older perls.
4890 SV* newSV(STRLEN len)
4898 Creates a new SV from the hash key structure. It will generate scalars that
4899 point to the shared string table where possible. Returns a new (undefined)
4900 SV if the hek is NULL.
4902 SV* newSVhek(const HEK *hek)
4910 Creates a new SV and copies an integer into it. The reference count for the
4921 Creates a new SV and copies a floating point value into it.
4922 The reference count for the SV is set to 1.
4932 Creates a new SV and copies a string into it. The reference count for the
4933 SV is set to 1. If C<len> is zero, Perl will compute the length using
4934 strlen(). For efficiency, consider using C<newSVpvn> instead.
4936 SV* newSVpv(const char* s, STRLEN len)
4944 Creates a new SV and initializes it with the string formatted like
4947 SV* newSVpvf(const char* pat, ...)
4955 Creates a new SV and copies a string into it. The reference count for the
4956 SV is set to 1. Note that if C<len> is zero, Perl will create a zero length
4957 string. You are responsible for ensuring that the source string is at least
4958 C<len> bytes long. If the C<s> argument is NULL the new SV will be undefined.
4960 SV* newSVpvn(const char* s, STRLEN len)
4965 =item newSVpvn_share
4968 Creates a new SV with its SvPVX_const pointing to a shared string in the string
4969 table. If the string does not already exist in the table, it is created
4970 first. Turns on READONLY and FAKE. The string's hash is stored in the UV
4971 slot of the SV; if the C<hash> parameter is non-zero, that value is used;
4972 otherwise the hash is computed. The idea here is that as the string table
4973 is used for shared hash keys these strings will have SvPVX_const == HeKEY and
4974 hash lookup will avoid string compare.
4976 SV* newSVpvn_share(const char* s, I32 len, U32 hash)
4984 Like C<newSVpvn>, but takes a literal string instead of a string/length pair.
4986 SV* newSVpvs(const char* s)
4989 Found in file handy.h
4991 =item newSVpvs_share
4994 Like C<newSVpvn_share>, but takes a literal string instead of a string/length
4995 pair and omits the hash parameter.
4997 SV* newSVpvs_share(const char* s)
5000 Found in file handy.h
5005 Creates a new SV for the RV, C<rv>, to point to. If C<rv> is not an RV then
5006 it will be upgraded to one. If C<classname> is non-null then the new SV will
5007 be blessed in the specified package. The new SV is returned and its
5008 reference count is 1.
5010 SV* newSVrv(SV* rv, const char* classname)
5018 Creates a new SV which is an exact duplicate of the original SV.
5021 SV* newSVsv(SV* old)
5029 Creates a new SV and copies an unsigned integer into it.
5030 The reference count for the SV is set to 1.
5040 This function is only called on magical items, and is only used by
5041 sv_true() or its macro equivalent.
5043 bool sv_2bool(SV* sv)
5051 Using various gambits, try to get a CV from an SV; in addition, try if
5052 possible to set C<*st> and C<*gvp> to the stash and GV associated with it.
5053 The flags in C<lref> are passed to sv_fetchsv.
5055 CV* sv_2cv(SV* sv, HV** st, GV** gvp, I32 lref)
5063 Using various gambits, try to get an IO from an SV: the IO slot if its a
5064 GV; or the recursive result if we're an RV; or the IO slot of the symbol
5065 named after the PV if we're a string.
5075 Return the integer value of an SV, doing any necessary string
5076 conversion. If flags includes SV_GMAGIC, does an mg_get() first.
5077 Normally used via the C<SvIV(sv)> and C<SvIVx(sv)> macros.
5079 IV sv_2iv_flags(SV* sv, I32 flags)
5087 Marks an existing SV as mortal. The SV will be destroyed "soon", either
5088 by an explicit call to FREETMPS, or by an implicit call at places such as
5089 statement boundaries. SvTEMP() is turned on which means that the SV's
5090 string buffer can be "stolen" if this SV is copied. See also C<sv_newmortal>
5091 and C<sv_mortalcopy>.
5093 SV* sv_2mortal(SV* sv)
5101 Return the num value of an SV, doing any necessary string or integer
5102 conversion, magic etc. Normally used via the C<SvNV(sv)> and C<SvNVx(sv)>
5113 Return a pointer to the byte-encoded representation of the SV, and set *lp
5114 to its length. May cause the SV to be downgraded from UTF-8 as a
5117 Usually accessed via the C<SvPVbyte> macro.
5119 char* sv_2pvbyte(SV* sv, STRLEN* lp)
5127 Return a pointer to the UTF-8-encoded representation of the SV, and set *lp
5128 to its length. May cause the SV to be upgraded to UTF-8 as a side-effect.
5130 Usually accessed via the C<SvPVutf8> macro.
5132 char* sv_2pvutf8(SV* sv, STRLEN* lp)
5140 Returns a pointer to the string value of an SV, and sets *lp to its length.
5141 If flags includes SV_GMAGIC, does an mg_get() first. Coerces sv to a string
5143 Normally invoked via the C<SvPV_flags> macro. C<sv_2pv()> and C<sv_2pv_nomg>
5144 usually end up here too.
5146 char* sv_2pv_flags(SV* sv, STRLEN* lp, I32 flags)
5154 Return the unsigned integer value of an SV, doing any necessary string
5155 conversion. If flags includes SV_GMAGIC, does an mg_get() first.
5156 Normally used via the C<SvUV(sv)> and C<SvUVx(sv)> macros.
5158 UV sv_2uv_flags(SV* sv, I32 flags)
5166 Remove any string offset. You should normally use the C<SvOOK_off> macro
5169 int sv_backoff(SV* sv)
5177 Blesses an SV into a specified package. The SV must be an RV. The package
5178 must be designated by its stash (see C<gv_stashpv()>). The reference count
5179 of the SV is unaffected.
5181 SV* sv_bless(SV* sv, HV* stash)
5189 Concatenates the string onto the end of the string which is in the SV.
5190 If the SV has the UTF-8 status set, then the bytes appended should be
5191 valid UTF-8. Handles 'get' magic, but not 'set' magic. See C<sv_catpv_mg>.
5193 void sv_catpv(SV* sv, const char* ptr)
5201 Processes its arguments like C<sprintf> and appends the formatted
5202 output to an SV. If the appended data contains "wide" characters
5203 (including, but not limited to, SVs with a UTF-8 PV formatted with %s,
5204 and characters >255 formatted with %c), the original SV might get
5205 upgraded to UTF-8. Handles 'get' magic, but not 'set' magic. See
5206 C<sv_catpvf_mg>. If the original SV was UTF-8, the pattern should be
5207 valid UTF-8; if the original SV was bytes, the pattern should be too.
5209 void sv_catpvf(SV* sv, const char* pat, ...)
5217 Like C<sv_catpvf>, but also handles 'set' magic.
5219 void sv_catpvf_mg(SV *sv, const char* pat, ...)
5227 Concatenates the string onto the end of the string which is in the SV. The
5228 C<len> indicates number of bytes to copy. If the SV has the UTF-8
5229 status set, then the bytes appended should be valid UTF-8.
5230 Handles 'get' magic, but not 'set' magic. See C<sv_catpvn_mg>.
5232 void sv_catpvn(SV* sv, const char* ptr, STRLEN len)
5237 =item sv_catpvn_flags
5240 Concatenates the string onto the end of the string which is in the SV. The
5241 C<len> indicates number of bytes to copy. If the SV has the UTF-8
5242 status set, then the bytes appended should be valid UTF-8.
5243 If C<flags> has C<SV_GMAGIC> bit set, will C<mg_get> on C<dsv> if
5244 appropriate, else not. C<sv_catpvn> and C<sv_catpvn_nomg> are implemented
5245 in terms of this function.
5247 void sv_catpvn_flags(SV* sv, const char* ptr, STRLEN len, I32 flags)
5255 Like C<sv_catpvn>, but takes a literal string instead of a string/length pair.
5257 void sv_catpvs(SV* sv, const char* s)
5260 Found in file handy.h
5265 Like C<sv_catpv>, but also handles 'set' magic.
5267 void sv_catpv_mg(SV *sv, const char *ptr)
5275 Concatenates the string from SV C<ssv> onto the end of the string in
5276 SV C<dsv>. Modifies C<dsv> but not C<ssv>. Handles 'get' magic, but
5277 not 'set' magic. See C<sv_catsv_mg>.
5279 void sv_catsv(SV* dsv, SV* ssv)
5284 =item sv_catsv_flags
5287 Concatenates the string from SV C<ssv> onto the end of the string in
5288 SV C<dsv>. Modifies C<dsv> but not C<ssv>. If C<flags> has C<SV_GMAGIC>
5289 bit set, will C<mg_get> on the SVs if appropriate, else not. C<sv_catsv>
5290 and C<sv_catsv_nomg> are implemented in terms of this function.
5292 void sv_catsv_flags(SV* dsv, SV* ssv, I32 flags)
5300 Efficient removal of characters from the beginning of the string buffer.
5301 SvPOK(sv) must be true and the C<ptr> must be a pointer to somewhere inside
5302 the string buffer. The C<ptr> becomes the first character of the adjusted
5303 string. Uses the "OOK hack".
5304 Beware: after this function returns, C<ptr> and SvPVX_const(sv) may no longer
5305 refer to the same chunk of data.
5307 void sv_chop(SV* sv, const char* ptr)
5315 Clear an SV: call any destructors, free up any memory used by the body,
5316 and free the body itself. The SV's head is I<not> freed, although
5317 its type is set to all 1's so that it won't inadvertently be assumed
5318 to be live during global destruction etc.
5319 This function should only be called when REFCNT is zero. Most of the time
5320 you'll want to call C<sv_free()> (or its macro wrapper C<SvREFCNT_dec>)
5323 void sv_clear(SV* sv)
5331 Compares the strings in two SVs. Returns -1, 0, or 1 indicating whether the
5332 string in C<sv1> is less than, equal to, or greater than the string in
5333 C<sv2>. Is UTF-8 and 'use bytes' aware, handles get magic, and will
5334 coerce its args to strings if necessary. See also C<sv_cmp_locale>.
5336 I32 sv_cmp(SV* sv1, SV* sv2)
5344 Compares the strings in two SVs in a locale-aware manner. Is UTF-8 and
5345 'use bytes' aware, handles get magic, and will coerce its args to strings
5346 if necessary. See also C<sv_cmp_locale>. See also C<sv_cmp>.
5348 I32 sv_cmp_locale(SV* sv1, SV* sv2)
5356 Add Collate Transform magic to an SV if it doesn't already have it.
5358 Any scalar variable may carry PERL_MAGIC_collxfrm magic that contains the
5359 scalar data of the variable, but transformed to such a format that a normal
5360 memory comparison can be used to compare the data according to the locale
5363 char* sv_collxfrm(SV* sv, STRLEN* nxp)
5371 Copies a stringified representation of the source SV into the
5372 destination SV. Automatically performs any necessary mg_get and
5373 coercion of numeric values into strings. Guaranteed to preserve
5374 UTF-8 flag even from overloaded objects. Similar in nature to
5375 sv_2pv[_flags] but operates directly on an SV instead of just the
5376 string. Mostly uses sv_2pv_flags to do its work, except when that
5377 would lose the UTF-8'ness of the PV.
5379 void sv_copypv(SV* dsv, SV* ssv)
5387 Auto-decrement of the value in the SV, doing string to numeric conversion
5388 if necessary. Handles 'get' magic.
5398 Returns a boolean indicating whether the strings in the two SVs are
5399 identical. Is UTF-8 and 'use bytes' aware, handles get magic, and will
5400 coerce its args to strings if necessary.
5402 I32 sv_eq(SV* sv1, SV* sv2)
5407 =item sv_force_normal_flags
5408 X<sv_force_normal_flags>
5410 Undo various types of fakery on an SV: if the PV is a shared string, make
5411 a private copy; if we're a ref, stop refing; if we're a glob, downgrade to
5412 an xpvmg; if we're a copy-on-write scalar, this is the on-write time when
5413 we do the copy, and is also used locally. If C<SV_COW_DROP_PV> is set
5414 then a copy-on-write scalar drops its PV buffer (if any) and becomes
5415 SvPOK_off rather than making a copy. (Used where this scalar is about to be
5416 set to some other value.) In addition, the C<flags> parameter gets passed to
5417 C<sv_unref_flags()> when unrefing. C<sv_force_normal> calls this function
5418 with flags set to 0.
5420 void sv_force_normal_flags(SV *sv, U32 flags)
5428 Decrement an SV's reference count, and if it drops to zero, call
5429 C<sv_clear> to invoke destructors and free up any memory used by
5430 the body; finally, deallocate the SV's head itself.
5431 Normally called via a wrapper macro C<SvREFCNT_dec>.
5433 void sv_free(SV* sv)
5441 Get a line from the filehandle and store it into the SV, optionally
5442 appending to the currently-stored string.
5444 char* sv_gets(SV* sv, PerlIO* fp, I32 append)
5452 Expands the character buffer in the SV. If necessary, uses C<sv_unref> and
5453 upgrades the SV to C<SVt_PV>. Returns a pointer to the character buffer.
5454 Use the C<SvGROW> wrapper instead.
5456 char* sv_grow(SV* sv, STRLEN newlen)
5464 Auto-increment of the value in the SV, doing string to numeric conversion
5465 if necessary. Handles 'get' magic.
5475 Inserts a string at the specified offset/length within the SV. Similar to
5476 the Perl substr() function.
5478 void sv_insert(SV* bigsv, STRLEN offset, STRLEN len, const char* little, STRLEN littlelen)
5486 Returns a boolean indicating whether the SV is blessed into the specified
5487 class. This does not check for subtypes; use C<sv_derived_from> to verify
5488 an inheritance relationship.
5490 int sv_isa(SV* sv, const char* name)
5498 Returns a boolean indicating whether the SV is an RV pointing to a blessed
5499 object. If the SV is not an RV, or if the object is not blessed, then this
5502 int sv_isobject(SV* sv)