minor bug in dumping blessed subrefs
[p5sagit/p5-mst-13.2.git] / pod / perlguts.pod
CommitLineData
a0d0e21e 1=head1 NAME
2
3perlguts - Perl's Internal Functions
4
5=head1 DESCRIPTION
6
7This document attempts to describe some of the internal functions of the
8Perl executable. It is far from complete and probably contains many errors.
9Please refer any questions or comments to the author below.
10
0a753a76 11=head1 Variables
12
5f05dabc 13=head2 Datatypes
a0d0e21e 14
15Perl has three typedefs that handle Perl's three main data types:
16
17 SV Scalar Value
18 AV Array Value
19 HV Hash Value
20
d1b91892 21Each typedef has specific routines that manipulate the various data types.
a0d0e21e 22
23=head2 What is an "IV"?
24
5f05dabc 25Perl uses a special typedef IV which is a simple integer type that is
26guaranteed to be large enough to hold a pointer (as well as an integer).
a0d0e21e 27
d1b91892 28Perl also uses two special typedefs, I32 and I16, which will always be at
29least 32-bits and 16-bits long, respectively.
a0d0e21e 30
54310121 31=head2 Working with SVs
a0d0e21e 32
33An SV can be created and loaded with one command. There are four types of
34values that can be loaded: an integer value (IV), a double (NV), a string,
35(PV), and another scalar (SV).
36
9da1e3b5 37The six routines are:
a0d0e21e 38
39 SV* newSViv(IV);
40 SV* newSVnv(double);
41 SV* newSVpv(char*, int);
9da1e3b5 42 SV* newSVpvn(char*, int);
46fc3d4c 43 SV* newSVpvf(const char*, ...);
a0d0e21e 44 SV* newSVsv(SV*);
45
deb3007b 46To change the value of an *already-existing* SV, there are seven routines:
a0d0e21e 47
48 void sv_setiv(SV*, IV);
deb3007b 49 void sv_setuv(SV*, UV);
a0d0e21e 50 void sv_setnv(SV*, double);
a0d0e21e 51 void sv_setpv(SV*, char*);
46fc3d4c 52 void sv_setpvn(SV*, char*, int)
53 void sv_setpvf(SV*, const char*, ...);
9abd00ed 54 void sv_setpvfn(SV*, const char*, STRLEN, va_list *, SV **, I32, bool);
a0d0e21e 55 void sv_setsv(SV*, SV*);
56
57Notice that you can choose to specify the length of the string to be
9da1e3b5 58assigned by using C<sv_setpvn>, C<newSVpvn>, or C<newSVpv>, or you may
59allow Perl to calculate the length by using C<sv_setpv> or by specifying
600 as the second argument to C<newSVpv>. Be warned, though, that Perl will
61determine the string's length by using C<strlen>, which depends on the
9abd00ed 62string terminating with a NUL character.
63
64The arguments of C<sv_setpvf> are processed like C<sprintf>, and the
65formatted output becomes the value.
66
67C<sv_setpvfn> is an analogue of C<vsprintf>, but it allows you to specify
68either a pointer to a variable argument list or the address and length of
69an array of SVs. The last argument points to a boolean; on return, if that
70boolean is true, then locale-specific information has been used to format
71the string, and the string's contents are therefore untrustworty (see
72L<perlsec>). This pointer may be NULL if that information is not
73important. Note that this function requires you to specify the length of
74the format.
75
9da1e3b5 76The C<sv_set*()> functions are not generic enough to operate on values
77that have "magic". See L<Magic Virtual Tables> later in this document.
a0d0e21e 78
a3cb178b 79All SVs that contain strings should be terminated with a NUL character.
80If it is not NUL-terminated there is a risk of
5f05dabc 81core dumps and corruptions from code which passes the string to C
82functions or system calls which expect a NUL-terminated string.
83Perl's own functions typically add a trailing NUL for this reason.
84Nevertheless, you should be very careful when you pass a string stored
85in an SV to a C function or system call.
86
a0d0e21e 87To access the actual value that an SV points to, you can use the macros:
88
89 SvIV(SV*)
90 SvNV(SV*)
91 SvPV(SV*, STRLEN len)
92
93which will automatically coerce the actual scalar type into an IV, double,
94or string.
95
96In the C<SvPV> macro, the length of the string returned is placed into the
97variable C<len> (this is a macro, so you do I<not> use C<&len>). If you do not
2d8e6c8d 98care what the length of the data is, use the global variable C<PL_na>, though
99this is rather less efficient than using a local variable. Remember,
a0d0e21e 100however, that Perl allows arbitrary strings of data that may both contain
54310121 101NULs and might not be terminated by a NUL.
a0d0e21e 102
07fa94a1 103If you want to know if the scalar value is TRUE, you can use:
a0d0e21e 104
105 SvTRUE(SV*)
106
107Although Perl will automatically grow strings for you, if you need to force
108Perl to allocate more memory for your SV, you can use the macro
109
110 SvGROW(SV*, STRLEN newlen)
111
112which will determine if more memory needs to be allocated. If so, it will
113call the function C<sv_grow>. Note that C<SvGROW> can only increase, not
5f05dabc 114decrease, the allocated memory of an SV and that it does not automatically
115add a byte for the a trailing NUL (perl's own string functions typically do
8ebc5c01 116C<SvGROW(sv, len + 1)>).
a0d0e21e 117
118If you have an SV and want to know what kind of data Perl thinks is stored
119in it, you can use the following macros to check the type of SV you have.
120
121 SvIOK(SV*)
122 SvNOK(SV*)
123 SvPOK(SV*)
124
125You can get and set the current length of the string stored in an SV with
126the following macros:
127
128 SvCUR(SV*)
129 SvCUR_set(SV*, I32 val)
130
cb1a09d0 131You can also get a pointer to the end of the string stored in the SV
132with the macro:
133
134 SvEND(SV*)
135
136But note that these last three macros are valid only if C<SvPOK()> is true.
a0d0e21e 137
d1b91892 138If you want to append something to the end of string stored in an C<SV*>,
139you can use the following functions:
140
141 void sv_catpv(SV*, char*);
142 void sv_catpvn(SV*, char*, int);
46fc3d4c 143 void sv_catpvf(SV*, const char*, ...);
9abd00ed 144 void sv_catpvfn(SV*, const char*, STRLEN, va_list *, SV **, I32, bool);
d1b91892 145 void sv_catsv(SV*, SV*);
146
147The first function calculates the length of the string to be appended by
148using C<strlen>. In the second, you specify the length of the string
46fc3d4c 149yourself. The third function processes its arguments like C<sprintf> and
9abd00ed 150appends the formatted output. The fourth function works like C<vsprintf>.
151You can specify the address and length of an array of SVs instead of the
152va_list argument. The fifth function extends the string stored in the first
153SV with the string stored in the second SV. It also forces the second SV
154to be interpreted as a string.
155
156The C<sv_cat*()> functions are not generic enough to operate on values that
157have "magic". See L<Magic Virtual Tables> later in this document.
d1b91892 158
a0d0e21e 159If you know the name of a scalar variable, you can get a pointer to its SV
160by using the following:
161
5f05dabc 162 SV* perl_get_sv("package::varname", FALSE);
a0d0e21e 163
164This returns NULL if the variable does not exist.
165
d1b91892 166If you want to know if this variable (or any other SV) is actually C<defined>,
a0d0e21e 167you can call:
168
169 SvOK(SV*)
170
9cde0e7f 171The scalar C<undef> value is stored in an SV instance called C<PL_sv_undef>. Its
a0d0e21e 172address can be used whenever an C<SV*> is needed.
173
9cde0e7f 174There are also the two values C<PL_sv_yes> and C<PL_sv_no>, which contain Boolean
175TRUE and FALSE values, respectively. Like C<PL_sv_undef>, their addresses can
a0d0e21e 176be used whenever an C<SV*> is needed.
177
9cde0e7f 178Do not be fooled into thinking that C<(SV *) 0> is the same as C<&PL_sv_undef>.
a0d0e21e 179Take this code:
180
181 SV* sv = (SV*) 0;
182 if (I-am-to-return-a-real-value) {
183 sv = sv_2mortal(newSViv(42));
184 }
185 sv_setsv(ST(0), sv);
186
187This code tries to return a new SV (which contains the value 42) if it should
04343c6d 188return a real value, or undef otherwise. Instead it has returned a NULL
a0d0e21e 189pointer which, somewhere down the line, will cause a segmentation violation,
9cde0e7f 190bus error, or just weird results. Change the zero to C<&PL_sv_undef> in the first
5f05dabc 191line and all will be well.
a0d0e21e 192
193To free an SV that you've created, call C<SvREFCNT_dec(SV*)>. Normally this
3fe9a6f1 194call is not necessary (see L<Reference Counts and Mortality>).
a0d0e21e 195
d1b91892 196=head2 What's Really Stored in an SV?
a0d0e21e 197
198Recall that the usual method of determining the type of scalar you have is
5f05dabc 199to use C<Sv*OK> macros. Because a scalar can be both a number and a string,
d1b91892 200usually these macros will always return TRUE and calling the C<Sv*V>
a0d0e21e 201macros will do the appropriate conversion of string to integer/double or
202integer/double to string.
203
204If you I<really> need to know if you have an integer, double, or string
205pointer in an SV, you can use the following three macros instead:
206
207 SvIOKp(SV*)
208 SvNOKp(SV*)
209 SvPOKp(SV*)
210
211These will tell you if you truly have an integer, double, or string pointer
d1b91892 212stored in your SV. The "p" stands for private.
a0d0e21e 213
07fa94a1 214In general, though, it's best to use the C<Sv*V> macros.
a0d0e21e 215
54310121 216=head2 Working with AVs
a0d0e21e 217
07fa94a1 218There are two ways to create and load an AV. The first method creates an
219empty AV:
a0d0e21e 220
221 AV* newAV();
222
54310121 223The second method both creates the AV and initially populates it with SVs:
a0d0e21e 224
225 AV* av_make(I32 num, SV **ptr);
226
5f05dabc 227The second argument points to an array containing C<num> C<SV*>'s. Once the
54310121 228AV has been created, the SVs can be destroyed, if so desired.
a0d0e21e 229
54310121 230Once the AV has been created, the following operations are possible on AVs:
a0d0e21e 231
232 void av_push(AV*, SV*);
233 SV* av_pop(AV*);
234 SV* av_shift(AV*);
235 void av_unshift(AV*, I32 num);
236
237These should be familiar operations, with the exception of C<av_unshift>.
238This routine adds C<num> elements at the front of the array with the C<undef>
239value. You must then use C<av_store> (described below) to assign values
240to these new elements.
241
242Here are some other functions:
243
5f05dabc 244 I32 av_len(AV*);
a0d0e21e 245 SV** av_fetch(AV*, I32 key, I32 lval);
a0d0e21e 246 SV** av_store(AV*, I32 key, SV* val);
a0d0e21e 247
5f05dabc 248The C<av_len> function returns the highest index value in array (just
249like $#array in Perl). If the array is empty, -1 is returned. The
250C<av_fetch> function returns the value at index C<key>, but if C<lval>
251is non-zero, then C<av_fetch> will store an undef value at that index.
04343c6d 252The C<av_store> function stores the value C<val> at index C<key>, and does
253not increment the reference count of C<val>. Thus the caller is responsible
254for taking care of that, and if C<av_store> returns NULL, the caller will
255have to decrement the reference count to avoid a memory leak. Note that
256C<av_fetch> and C<av_store> both return C<SV**>'s, not C<SV*>'s as their
257return value.
d1b91892 258
a0d0e21e 259 void av_clear(AV*);
a0d0e21e 260 void av_undef(AV*);
cb1a09d0 261 void av_extend(AV*, I32 key);
5f05dabc 262
263The C<av_clear> function deletes all the elements in the AV* array, but
264does not actually delete the array itself. The C<av_undef> function will
265delete all the elements in the array plus the array itself. The
266C<av_extend> function extends the array so that it contains C<key>
267elements. If C<key> is less than the current length of the array, then
268nothing is done.
a0d0e21e 269
270If you know the name of an array variable, you can get a pointer to its AV
271by using the following:
272
5f05dabc 273 AV* perl_get_av("package::varname", FALSE);
a0d0e21e 274
275This returns NULL if the variable does not exist.
276
04343c6d 277See L<Understanding the Magic of Tied Hashes and Arrays> for more
278information on how to use the array access functions on tied arrays.
279
54310121 280=head2 Working with HVs
a0d0e21e 281
282To create an HV, you use the following routine:
283
284 HV* newHV();
285
54310121 286Once the HV has been created, the following operations are possible on HVs:
a0d0e21e 287
288 SV** hv_store(HV*, char* key, U32 klen, SV* val, U32 hash);
289 SV** hv_fetch(HV*, char* key, U32 klen, I32 lval);
290
5f05dabc 291The C<klen> parameter is the length of the key being passed in (Note that
292you cannot pass 0 in as a value of C<klen> to tell Perl to measure the
293length of the key). The C<val> argument contains the SV pointer to the
54310121 294scalar being stored, and C<hash> is the precomputed hash value (zero if
5f05dabc 295you want C<hv_store> to calculate it for you). The C<lval> parameter
296indicates whether this fetch is actually a part of a store operation, in
297which case a new undefined value will be added to the HV with the supplied
298key and C<hv_fetch> will return as if the value had already existed.
a0d0e21e 299
5f05dabc 300Remember that C<hv_store> and C<hv_fetch> return C<SV**>'s and not just
301C<SV*>. To access the scalar value, you must first dereference the return
302value. However, you should check to make sure that the return value is
303not NULL before dereferencing it.
a0d0e21e 304
305These two functions check if a hash table entry exists, and deletes it.
306
307 bool hv_exists(HV*, char* key, U32 klen);
d1b91892 308 SV* hv_delete(HV*, char* key, U32 klen, I32 flags);
a0d0e21e 309
5f05dabc 310If C<flags> does not include the C<G_DISCARD> flag then C<hv_delete> will
311create and return a mortal copy of the deleted value.
312
a0d0e21e 313And more miscellaneous functions:
314
315 void hv_clear(HV*);
a0d0e21e 316 void hv_undef(HV*);
5f05dabc 317
318Like their AV counterparts, C<hv_clear> deletes all the entries in the hash
319table but does not actually delete the hash table. The C<hv_undef> deletes
320both the entries and the hash table itself.
a0d0e21e 321
d1b91892 322Perl keeps the actual data in linked list of structures with a typedef of HE.
323These contain the actual key and value pointers (plus extra administrative
324overhead). The key is a string pointer; the value is an C<SV*>. However,
325once you have an C<HE*>, to get the actual key and value, use the routines
326specified below.
327
a0d0e21e 328 I32 hv_iterinit(HV*);
329 /* Prepares starting point to traverse hash table */
330 HE* hv_iternext(HV*);
331 /* Get the next entry, and return a pointer to a
332 structure that has both the key and value */
333 char* hv_iterkey(HE* entry, I32* retlen);
334 /* Get the key from an HE structure and also return
335 the length of the key string */
cb1a09d0 336 SV* hv_iterval(HV*, HE* entry);
a0d0e21e 337 /* Return a SV pointer to the value of the HE
338 structure */
cb1a09d0 339 SV* hv_iternextsv(HV*, char** key, I32* retlen);
d1b91892 340 /* This convenience routine combines hv_iternext,
341 hv_iterkey, and hv_iterval. The key and retlen
342 arguments are return values for the key and its
343 length. The value is returned in the SV* argument */
a0d0e21e 344
345If you know the name of a hash variable, you can get a pointer to its HV
346by using the following:
347
5f05dabc 348 HV* perl_get_hv("package::varname", FALSE);
a0d0e21e 349
350This returns NULL if the variable does not exist.
351
8ebc5c01 352The hash algorithm is defined in the C<PERL_HASH(hash, key, klen)> macro:
a0d0e21e 353
a0d0e21e 354 hash = 0;
ab192400 355 while (klen--)
356 hash = (hash * 33) + *key++;
357 hash = hash + (hash >> 5); /* after 5.006 */
358
359The last step was added in version 5.006 to improve distribution of
360lower bits in the resulting hash value.
a0d0e21e 361
04343c6d 362See L<Understanding the Magic of Tied Hashes and Arrays> for more
363information on how to use the hash access functions on tied hashes.
364
1e422769 365=head2 Hash API Extensions
366
367Beginning with version 5.004, the following functions are also supported:
368
369 HE* hv_fetch_ent (HV* tb, SV* key, I32 lval, U32 hash);
370 HE* hv_store_ent (HV* tb, SV* key, SV* val, U32 hash);
371
372 bool hv_exists_ent (HV* tb, SV* key, U32 hash);
373 SV* hv_delete_ent (HV* tb, SV* key, I32 flags, U32 hash);
374
375 SV* hv_iterkeysv (HE* entry);
376
377Note that these functions take C<SV*> keys, which simplifies writing
378of extension code that deals with hash structures. These functions
379also allow passing of C<SV*> keys to C<tie> functions without forcing
380you to stringify the keys (unlike the previous set of functions).
381
382They also return and accept whole hash entries (C<HE*>), making their
383use more efficient (since the hash number for a particular string
384doesn't have to be recomputed every time). See L<API LISTING> later in
385this document for detailed descriptions.
386
387The following macros must always be used to access the contents of hash
388entries. Note that the arguments to these macros must be simple
389variables, since they may get evaluated more than once. See
390L<API LISTING> later in this document for detailed descriptions of these
391macros.
392
393 HePV(HE* he, STRLEN len)
394 HeVAL(HE* he)
395 HeHASH(HE* he)
396 HeSVKEY(HE* he)
397 HeSVKEY_force(HE* he)
398 HeSVKEY_set(HE* he, SV* sv)
399
400These two lower level macros are defined, but must only be used when
401dealing with keys that are not C<SV*>s:
402
403 HeKEY(HE* he)
404 HeKLEN(HE* he)
405
04343c6d 406Note that both C<hv_store> and C<hv_store_ent> do not increment the
407reference count of the stored C<val>, which is the caller's responsibility.
408If these functions return a NULL value, the caller will usually have to
409decrement the reference count of C<val> to avoid a memory leak.
1e422769 410
a0d0e21e 411=head2 References
412
d1b91892 413References are a special type of scalar that point to other data types
414(including references).
a0d0e21e 415
07fa94a1 416To create a reference, use either of the following functions:
a0d0e21e 417
5f05dabc 418 SV* newRV_inc((SV*) thing);
419 SV* newRV_noinc((SV*) thing);
a0d0e21e 420
5f05dabc 421The C<thing> argument can be any of an C<SV*>, C<AV*>, or C<HV*>. The
07fa94a1 422functions are identical except that C<newRV_inc> increments the reference
423count of the C<thing>, while C<newRV_noinc> does not. For historical
424reasons, C<newRV> is a synonym for C<newRV_inc>.
425
426Once you have a reference, you can use the following macro to dereference
427the reference:
a0d0e21e 428
429 SvRV(SV*)
430
431then call the appropriate routines, casting the returned C<SV*> to either an
d1b91892 432C<AV*> or C<HV*>, if required.
a0d0e21e 433
d1b91892 434To determine if an SV is a reference, you can use the following macro:
a0d0e21e 435
436 SvROK(SV*)
437
07fa94a1 438To discover what type of value the reference refers to, use the following
439macro and then check the return value.
d1b91892 440
441 SvTYPE(SvRV(SV*))
442
443The most useful types that will be returned are:
444
445 SVt_IV Scalar
446 SVt_NV Scalar
447 SVt_PV Scalar
5f05dabc 448 SVt_RV Scalar
d1b91892 449 SVt_PVAV Array
450 SVt_PVHV Hash
451 SVt_PVCV Code
5f05dabc 452 SVt_PVGV Glob (possible a file handle)
453 SVt_PVMG Blessed or Magical Scalar
454
455 See the sv.h header file for more details.
d1b91892 456
cb1a09d0 457=head2 Blessed References and Class Objects
458
459References are also used to support object-oriented programming. In the
460OO lexicon, an object is simply a reference that has been blessed into a
461package (or class). Once blessed, the programmer may now use the reference
462to access the various methods in the class.
463
464A reference can be blessed into a package with the following function:
465
466 SV* sv_bless(SV* sv, HV* stash);
467
468The C<sv> argument must be a reference. The C<stash> argument specifies
3fe9a6f1 469which class the reference will belong to. See
2ae324a7 470L<Stashes and Globs> for information on converting class names into stashes.
cb1a09d0 471
472/* Still under construction */
473
474Upgrades rv to reference if not already one. Creates new SV for rv to
8ebc5c01 475point to. If C<classname> is non-null, the SV is blessed into the specified
476class. SV is returned.
cb1a09d0 477
478 SV* newSVrv(SV* rv, char* classname);
479
8ebc5c01 480Copies integer or double into an SV whose reference is C<rv>. SV is blessed
481if C<classname> is non-null.
cb1a09d0 482
483 SV* sv_setref_iv(SV* rv, char* classname, IV iv);
484 SV* sv_setref_nv(SV* rv, char* classname, NV iv);
485
5f05dabc 486Copies the pointer value (I<the address, not the string!>) into an SV whose
8ebc5c01 487reference is rv. SV is blessed if C<classname> is non-null.
cb1a09d0 488
489 SV* sv_setref_pv(SV* rv, char* classname, PV iv);
490
8ebc5c01 491Copies string into an SV whose reference is C<rv>. Set length to 0 to let
492Perl calculate the string length. SV is blessed if C<classname> is non-null.
cb1a09d0 493
494 SV* sv_setref_pvn(SV* rv, char* classname, PV iv, int length);
495
9abd00ed 496Tests whether the SV is blessed into the specified class. It does not
497check inheritance relationships.
498
499 int sv_isa(SV* sv, char* name);
500
501Tests whether the SV is a reference to a blessed object.
502
503 int sv_isobject(SV* sv);
504
505Tests whether the SV is derived from the specified class. SV can be either
506a reference to a blessed object or a string containing a class name. This
507is the function implementing the C<UNIVERSAL::isa> functionality.
508
509 bool sv_derived_from(SV* sv, char* name);
510
511To check if you've got an object derived from a specific class you have
512to write:
513
514 if (sv_isobject(sv) && sv_derived_from(sv, class)) { ... }
cb1a09d0 515
5f05dabc 516=head2 Creating New Variables
cb1a09d0 517
5f05dabc 518To create a new Perl variable with an undef value which can be accessed from
519your Perl script, use the following routines, depending on the variable type.
cb1a09d0 520
5f05dabc 521 SV* perl_get_sv("package::varname", TRUE);
522 AV* perl_get_av("package::varname", TRUE);
523 HV* perl_get_hv("package::varname", TRUE);
cb1a09d0 524
525Notice the use of TRUE as the second parameter. The new variable can now
526be set, using the routines appropriate to the data type.
527
5f05dabc 528There are additional macros whose values may be bitwise OR'ed with the
529C<TRUE> argument to enable certain extra features. Those bits are:
cb1a09d0 530
5f05dabc 531 GV_ADDMULTI Marks the variable as multiply defined, thus preventing the
54310121 532 "Name <varname> used only once: possible typo" warning.
07fa94a1 533 GV_ADDWARN Issues the warning "Had to create <varname> unexpectedly" if
534 the variable did not exist before the function was called.
cb1a09d0 535
07fa94a1 536If you do not specify a package name, the variable is created in the current
537package.
cb1a09d0 538
5f05dabc 539=head2 Reference Counts and Mortality
a0d0e21e 540
54310121 541Perl uses an reference count-driven garbage collection mechanism. SVs,
542AVs, or HVs (xV for short in the following) start their life with a
55497cff 543reference count of 1. If the reference count of an xV ever drops to 0,
07fa94a1 544then it will be destroyed and its memory made available for reuse.
55497cff 545
546This normally doesn't happen at the Perl level unless a variable is
5f05dabc 547undef'ed or the last variable holding a reference to it is changed or
548overwritten. At the internal level, however, reference counts can be
55497cff 549manipulated with the following macros:
550
551 int SvREFCNT(SV* sv);
5f05dabc 552 SV* SvREFCNT_inc(SV* sv);
55497cff 553 void SvREFCNT_dec(SV* sv);
554
555However, there is one other function which manipulates the reference
07fa94a1 556count of its argument. The C<newRV_inc> function, you will recall,
557creates a reference to the specified argument. As a side effect,
558it increments the argument's reference count. If this is not what
559you want, use C<newRV_noinc> instead.
560
561For example, imagine you want to return a reference from an XSUB function.
562Inside the XSUB routine, you create an SV which initially has a reference
563count of one. Then you call C<newRV_inc>, passing it the just-created SV.
5f05dabc 564This returns the reference as a new SV, but the reference count of the
565SV you passed to C<newRV_inc> has been incremented to two. Now you
07fa94a1 566return the reference from the XSUB routine and forget about the SV.
567But Perl hasn't! Whenever the returned reference is destroyed, the
568reference count of the original SV is decreased to one and nothing happens.
569The SV will hang around without any way to access it until Perl itself
570terminates. This is a memory leak.
5f05dabc 571
572The correct procedure, then, is to use C<newRV_noinc> instead of
faed5253 573C<newRV_inc>. Then, if and when the last reference is destroyed,
574the reference count of the SV will go to zero and it will be destroyed,
07fa94a1 575stopping any memory leak.
55497cff 576
5f05dabc 577There are some convenience functions available that can help with the
54310121 578destruction of xVs. These functions introduce the concept of "mortality".
07fa94a1 579An xV that is mortal has had its reference count marked to be decremented,
580but not actually decremented, until "a short time later". Generally the
581term "short time later" means a single Perl statement, such as a call to
54310121 582an XSUB function. The actual determinant for when mortal xVs have their
07fa94a1 583reference count decremented depends on two macros, SAVETMPS and FREETMPS.
584See L<perlcall> and L<perlxs> for more details on these macros.
55497cff 585
586"Mortalization" then is at its simplest a deferred C<SvREFCNT_dec>.
587However, if you mortalize a variable twice, the reference count will
588later be decremented twice.
589
590You should be careful about creating mortal variables. Strange things
591can happen if you make the same value mortal within multiple contexts,
5f05dabc 592or if you make a variable mortal multiple times.
a0d0e21e 593
594To create a mortal variable, use the functions:
595
596 SV* sv_newmortal()
597 SV* sv_2mortal(SV*)
598 SV* sv_mortalcopy(SV*)
599
5f05dabc 600The first call creates a mortal SV, the second converts an existing
601SV to a mortal SV (and thus defers a call to C<SvREFCNT_dec>), and the
602third creates a mortal copy of an existing SV.
a0d0e21e 603
54310121 604The mortal routines are not just for SVs -- AVs and HVs can be
faed5253 605made mortal by passing their address (type-casted to C<SV*>) to the
07fa94a1 606C<sv_2mortal> or C<sv_mortalcopy> routines.
a0d0e21e 607
5f05dabc 608=head2 Stashes and Globs
a0d0e21e 609
aa689395 610A "stash" is a hash that contains all of the different objects that
611are contained within a package. Each key of the stash is a symbol
612name (shared by all the different types of objects that have the same
613name), and each value in the hash table is a GV (Glob Value). This GV
614in turn contains references to the various objects of that name,
615including (but not limited to) the following:
cb1a09d0 616
a0d0e21e 617 Scalar Value
618 Array Value
619 Hash Value
a3cb178b 620 I/O Handle
a0d0e21e 621 Format
622 Subroutine
623
9cde0e7f 624There is a single stash called "PL_defstash" that holds the items that exist
5f05dabc 625in the "main" package. To get at the items in other packages, append the
626string "::" to the package name. The items in the "Foo" package are in
9cde0e7f 627the stash "Foo::" in PL_defstash. The items in the "Bar::Baz" package are
5f05dabc 628in the stash "Baz::" in "Bar::"'s stash.
a0d0e21e 629
d1b91892 630To get the stash pointer for a particular package, use the function:
a0d0e21e 631
632 HV* gv_stashpv(char* name, I32 create)
633 HV* gv_stashsv(SV*, I32 create)
634
635The first function takes a literal string, the second uses the string stored
d1b91892 636in the SV. Remember that a stash is just a hash table, so you get back an
cb1a09d0 637C<HV*>. The C<create> flag will create a new package if it is set.
a0d0e21e 638
639The name that C<gv_stash*v> wants is the name of the package whose symbol table
640you want. The default package is called C<main>. If you have multiply nested
d1b91892 641packages, pass their names to C<gv_stash*v>, separated by C<::> as in the Perl
642language itself.
a0d0e21e 643
644Alternately, if you have an SV that is a blessed reference, you can find
645out the stash pointer by using:
646
647 HV* SvSTASH(SvRV(SV*));
648
649then use the following to get the package name itself:
650
651 char* HvNAME(HV* stash);
652
5f05dabc 653If you need to bless or re-bless an object you can use the following
654function:
a0d0e21e 655
656 SV* sv_bless(SV*, HV* stash)
657
658where the first argument, an C<SV*>, must be a reference, and the second
659argument is a stash. The returned C<SV*> can now be used in the same way
660as any other SV.
661
d1b91892 662For more information on references and blessings, consult L<perlref>.
663
54310121 664=head2 Double-Typed SVs
0a753a76 665
666Scalar variables normally contain only one type of value, an integer,
667double, pointer, or reference. Perl will automatically convert the
668actual scalar data from the stored type into the requested type.
669
670Some scalar variables contain more than one type of scalar data. For
671example, the variable C<$!> contains either the numeric value of C<errno>
672or its string equivalent from either C<strerror> or C<sys_errlist[]>.
673
674To force multiple data values into an SV, you must do two things: use the
675C<sv_set*v> routines to add the additional scalar type, then set a flag
676so that Perl will believe it contains more than one type of data. The
677four macros to set the flags are:
678
679 SvIOK_on
680 SvNOK_on
681 SvPOK_on
682 SvROK_on
683
684The particular macro you must use depends on which C<sv_set*v> routine
685you called first. This is because every C<sv_set*v> routine turns on
686only the bit for the particular type of data being set, and turns off
687all the rest.
688
689For example, to create a new Perl variable called "dberror" that contains
690both the numeric and descriptive string error values, you could use the
691following code:
692
693 extern int dberror;
694 extern char *dberror_list;
695
696 SV* sv = perl_get_sv("dberror", TRUE);
697 sv_setiv(sv, (IV) dberror);
698 sv_setpv(sv, dberror_list[dberror]);
699 SvIOK_on(sv);
700
701If the order of C<sv_setiv> and C<sv_setpv> had been reversed, then the
702macro C<SvPOK_on> would need to be called instead of C<SvIOK_on>.
703
704=head2 Magic Variables
a0d0e21e 705
d1b91892 706[This section still under construction. Ignore everything here. Post no
707bills. Everything not permitted is forbidden.]
708
d1b91892 709Any SV may be magical, that is, it has special features that a normal
710SV does not have. These features are stored in the SV structure in a
5f05dabc 711linked list of C<struct magic>'s, typedef'ed to C<MAGIC>.
d1b91892 712
713 struct magic {
714 MAGIC* mg_moremagic;
715 MGVTBL* mg_virtual;
716 U16 mg_private;
717 char mg_type;
718 U8 mg_flags;
719 SV* mg_obj;
720 char* mg_ptr;
721 I32 mg_len;
722 };
723
724Note this is current as of patchlevel 0, and could change at any time.
725
726=head2 Assigning Magic
727
728Perl adds magic to an SV using the sv_magic function:
729
730 void sv_magic(SV* sv, SV* obj, int how, char* name, I32 namlen);
731
732The C<sv> argument is a pointer to the SV that is to acquire a new magical
733feature.
734
735If C<sv> is not already magical, Perl uses the C<SvUPGRADE> macro to
736set the C<SVt_PVMG> flag for the C<sv>. Perl then continues by adding
737it to the beginning of the linked list of magical features. Any prior
738entry of the same type of magic is deleted. Note that this can be
5fb8527f 739overridden, and multiple instances of the same type of magic can be
d1b91892 740associated with an SV.
741
54310121 742The C<name> and C<namlen> arguments are used to associate a string with
743the magic, typically the name of a variable. C<namlen> is stored in the
744C<mg_len> field and if C<name> is non-null and C<namlen> >= 0 a malloc'd
d1b91892 745copy of the name is stored in C<mg_ptr> field.
746
747The sv_magic function uses C<how> to determine which, if any, predefined
748"Magic Virtual Table" should be assigned to the C<mg_virtual> field.
cb1a09d0 749See the "Magic Virtual Table" section below. The C<how> argument is also
750stored in the C<mg_type> field.
d1b91892 751
752The C<obj> argument is stored in the C<mg_obj> field of the C<MAGIC>
753structure. If it is not the same as the C<sv> argument, the reference
754count of the C<obj> object is incremented. If it is the same, or if
04343c6d 755the C<how> argument is "#", or if it is a NULL pointer, then C<obj> is
d1b91892 756merely stored, without the reference count being incremented.
757
cb1a09d0 758There is also a function to add magic to an C<HV>:
759
760 void hv_magic(HV *hv, GV *gv, int how);
761
762This simply calls C<sv_magic> and coerces the C<gv> argument into an C<SV>.
763
764To remove the magic from an SV, call the function sv_unmagic:
765
766 void sv_unmagic(SV *sv, int type);
767
768The C<type> argument should be equal to the C<how> value when the C<SV>
769was initially made magical.
770
d1b91892 771=head2 Magic Virtual Tables
772
773The C<mg_virtual> field in the C<MAGIC> structure is a pointer to a
774C<MGVTBL>, which is a structure of function pointers and stands for
775"Magic Virtual Table" to handle the various operations that might be
776applied to that variable.
777
778The C<MGVTBL> has five pointers to the following routine types:
779
780 int (*svt_get)(SV* sv, MAGIC* mg);
781 int (*svt_set)(SV* sv, MAGIC* mg);
782 U32 (*svt_len)(SV* sv, MAGIC* mg);
783 int (*svt_clear)(SV* sv, MAGIC* mg);
784 int (*svt_free)(SV* sv, MAGIC* mg);
785
786This MGVTBL structure is set at compile-time in C<perl.h> and there are
787currently 19 types (or 21 with overloading turned on). These different
788structures contain pointers to various routines that perform additional
789actions depending on which function is being called.
790
791 Function pointer Action taken
792 ---------------- ------------
793 svt_get Do something after the value of the SV is retrieved.
794 svt_set Do something after the SV is assigned a value.
795 svt_len Report on the SV's length.
796 svt_clear Clear something the SV represents.
797 svt_free Free any extra storage associated with the SV.
798
799For instance, the MGVTBL structure called C<vtbl_sv> (which corresponds
800to an C<mg_type> of '\0') contains:
801
802 { magic_get, magic_set, magic_len, 0, 0 }
803
804Thus, when an SV is determined to be magical and of type '\0', if a get
805operation is being performed, the routine C<magic_get> is called. All
806the various routines for the various magical types begin with C<magic_>.
807
808The current kinds of Magic Virtual Tables are:
809
bdbeb323 810 mg_type MGVTBL Type of magic
5f05dabc 811 ------- ------ ----------------------------
bdbeb323 812 \0 vtbl_sv Special scalar variable
813 A vtbl_amagic %OVERLOAD hash
814 a vtbl_amagicelem %OVERLOAD hash element
815 c (none) Holds overload table (AMT) on stash
816 B vtbl_bm Boyer-Moore (fast string search)
d1b91892 817 E vtbl_env %ENV hash
818 e vtbl_envelem %ENV hash element
bdbeb323 819 f vtbl_fm Formline ('compiled' format)
820 g vtbl_mglob m//g target / study()ed string
d1b91892 821 I vtbl_isa @ISA array
822 i vtbl_isaelem @ISA array element
bdbeb323 823 k vtbl_nkeys scalar(keys()) lvalue
824 L (none) Debugger %_<filename
825 l vtbl_dbline Debugger %_<filename element
44a8e56a 826 o vtbl_collxfrm Locale transformation
bdbeb323 827 P vtbl_pack Tied array or hash
828 p vtbl_packelem Tied array or hash element
829 q vtbl_packelem Tied scalar or handle
830 S vtbl_sig %SIG hash
831 s vtbl_sigelem %SIG hash element
d1b91892 832 t vtbl_taint Taintedness
bdbeb323 833 U vtbl_uvar Available for use by extensions
834 v vtbl_vec vec() lvalue
835 x vtbl_substr substr() lvalue
836 y vtbl_defelem Shadow "foreach" iterator variable /
837 smart parameter vivification
838 * vtbl_glob GV (typeglob)
839 # vtbl_arylen Array length ($#ary)
840 . vtbl_pos pos() lvalue
841 ~ (none) Available for use by extensions
d1b91892 842
68dc0745 843When an uppercase and lowercase letter both exist in the table, then the
844uppercase letter is used to represent some kind of composite type (a list
845or a hash), and the lowercase letter is used to represent an element of
d1b91892 846that composite type.
847
bdbeb323 848The '~' and 'U' magic types are defined specifically for use by
849extensions and will not be used by perl itself. Extensions can use
850'~' magic to 'attach' private information to variables (typically
851objects). This is especially useful because there is no way for
852normal perl code to corrupt this private information (unlike using
853extra elements of a hash object).
854
855Similarly, 'U' magic can be used much like tie() to call a C function
856any time a scalar's value is used or changed. The C<MAGIC>'s
857C<mg_ptr> field points to a C<ufuncs> structure:
858
859 struct ufuncs {
860 I32 (*uf_val)(IV, SV*);
861 I32 (*uf_set)(IV, SV*);
862 IV uf_index;
863 };
864
865When the SV is read from or written to, the C<uf_val> or C<uf_set>
866function will be called with C<uf_index> as the first arg and a
1526ead6 867pointer to the SV as the second. A simple example of how to add 'U'
868magic is shown below. Note that the ufuncs structure is copied by
869sv_magic, so you can safely allocate it on the stack.
870
871 void
872 Umagic(sv)
873 SV *sv;
874 PREINIT:
875 struct ufuncs uf;
876 CODE:
877 uf.uf_val = &my_get_fn;
878 uf.uf_set = &my_set_fn;
879 uf.uf_index = 0;
880 sv_magic(sv, 0, 'U', (char*)&uf, sizeof(uf));
5f05dabc 881
bdbeb323 882Note that because multiple extensions may be using '~' or 'U' magic,
883it is important for extensions to take extra care to avoid conflict.
884Typically only using the magic on objects blessed into the same class
885as the extension is sufficient. For '~' magic, it may also be
886appropriate to add an I32 'signature' at the top of the private data
887area and check that.
5f05dabc 888
ef50df4b 889Also note that the C<sv_set*()> and C<sv_cat*()> functions described
890earlier do B<not> invoke 'set' magic on their targets. This must
891be done by the user either by calling the C<SvSETMAGIC()> macro after
892calling these functions, or by using one of the C<sv_set*_mg()> or
893C<sv_cat*_mg()> functions. Similarly, generic C code must call the
894C<SvGETMAGIC()> macro to invoke any 'get' magic if they use an SV
895obtained from external sources in functions that don't handle magic.
896L<API LISTING> later in this document identifies such functions.
189b2af5 897For example, calls to the C<sv_cat*()> functions typically need to be
898followed by C<SvSETMAGIC()>, but they don't need a prior C<SvGETMAGIC()>
899since their implementation handles 'get' magic.
900
d1b91892 901=head2 Finding Magic
902
903 MAGIC* mg_find(SV*, int type); /* Finds the magic pointer of that type */
904
905This routine returns a pointer to the C<MAGIC> structure stored in the SV.
906If the SV does not have that magical feature, C<NULL> is returned. Also,
54310121 907if the SV is not of type SVt_PVMG, Perl may core dump.
d1b91892 908
909 int mg_copy(SV* sv, SV* nsv, char* key, STRLEN klen);
910
911This routine checks to see what types of magic C<sv> has. If the mg_type
68dc0745 912field is an uppercase letter, then the mg_obj is copied to C<nsv>, but
913the mg_type field is changed to be the lowercase letter.
a0d0e21e 914
04343c6d 915=head2 Understanding the Magic of Tied Hashes and Arrays
916
917Tied hashes and arrays are magical beasts of the 'P' magic type.
9edb2b46 918
919WARNING: As of the 5.004 release, proper usage of the array and hash
920access functions requires understanding a few caveats. Some
921of these caveats are actually considered bugs in the API, to be fixed
922in later releases, and are bracketed with [MAYCHANGE] below. If
923you find yourself actually applying such information in this section, be
924aware that the behavior may change in the future, umm, without warning.
04343c6d 925
1526ead6 926The perl tie function associates a variable with an object that implements
927the various GET, SET etc methods. To perform the equivalent of the perl
928tie function from an XSUB, you must mimic this behaviour. The code below
929carries out the necessary steps - firstly it creates a new hash, and then
930creates a second hash which it blesses into the class which will implement
931the tie methods. Lastly it ties the two hashes together, and returns a
932reference to the new tied hash. Note that the code below does NOT call the
933TIEHASH method in the MyTie class -
934see L<Calling Perl Routines from within C Programs> for details on how
935to do this.
936
937 SV*
938 mytie()
939 PREINIT:
940 HV *hash;
941 HV *stash;
942 SV *tie;
943 CODE:
944 hash = newHV();
945 tie = newRV_noinc((SV*)newHV());
946 stash = gv_stashpv("MyTie", TRUE);
947 sv_bless(tie, stash);
948 hv_magic(hash, tie, 'P');
949 RETVAL = newRV_noinc(hash);
950 OUTPUT:
951 RETVAL
952
04343c6d 953The C<av_store> function, when given a tied array argument, merely
954copies the magic of the array onto the value to be "stored", using
955C<mg_copy>. It may also return NULL, indicating that the value did not
9edb2b46 956actually need to be stored in the array. [MAYCHANGE] After a call to
957C<av_store> on a tied array, the caller will usually need to call
958C<mg_set(val)> to actually invoke the perl level "STORE" method on the
959TIEARRAY object. If C<av_store> did return NULL, a call to
960C<SvREFCNT_dec(val)> will also be usually necessary to avoid a memory
961leak. [/MAYCHANGE]
04343c6d 962
963The previous paragraph is applicable verbatim to tied hash access using the
964C<hv_store> and C<hv_store_ent> functions as well.
965
966C<av_fetch> and the corresponding hash functions C<hv_fetch> and
967C<hv_fetch_ent> actually return an undefined mortal value whose magic
968has been initialized using C<mg_copy>. Note the value so returned does not
9edb2b46 969need to be deallocated, as it is already mortal. [MAYCHANGE] But you will
970need to call C<mg_get()> on the returned value in order to actually invoke
971the perl level "FETCH" method on the underlying TIE object. Similarly,
04343c6d 972you may also call C<mg_set()> on the return value after possibly assigning
973a suitable value to it using C<sv_setsv>, which will invoke the "STORE"
9edb2b46 974method on the TIE object. [/MAYCHANGE]
04343c6d 975
9edb2b46 976[MAYCHANGE]
04343c6d 977In other words, the array or hash fetch/store functions don't really
978fetch and store actual values in the case of tied arrays and hashes. They
979merely call C<mg_copy> to attach magic to the values that were meant to be
980"stored" or "fetched". Later calls to C<mg_get> and C<mg_set> actually
981do the job of invoking the TIE methods on the underlying objects. Thus
9edb2b46 982the magic mechanism currently implements a kind of lazy access to arrays
04343c6d 983and hashes.
984
985Currently (as of perl version 5.004), use of the hash and array access
986functions requires the user to be aware of whether they are operating on
9edb2b46 987"normal" hashes and arrays, or on their tied variants. The API may be
988changed to provide more transparent access to both tied and normal data
989types in future versions.
990[/MAYCHANGE]
04343c6d 991
992You would do well to understand that the TIEARRAY and TIEHASH interfaces
993are mere sugar to invoke some perl method calls while using the uniform hash
994and array syntax. The use of this sugar imposes some overhead (typically
995about two to four extra opcodes per FETCH/STORE operation, in addition to
996the creation of all the mortal variables required to invoke the methods).
997This overhead will be comparatively small if the TIE methods are themselves
998substantial, but if they are only a few statements long, the overhead
999will not be insignificant.
1000
d1c897a1 1001=head2 Localizing changes
1002
1003Perl has a very handy construction
1004
1005 {
1006 local $var = 2;
1007 ...
1008 }
1009
1010This construction is I<approximately> equivalent to
1011
1012 {
1013 my $oldvar = $var;
1014 $var = 2;
1015 ...
1016 $var = $oldvar;
1017 }
1018
1019The biggest difference is that the first construction would
1020reinstate the initial value of $var, irrespective of how control exits
1021the block: C<goto>, C<return>, C<die>/C<eval> etc. It is a little bit
1022more efficient as well.
1023
1024There is a way to achieve a similar task from C via Perl API: create a
1025I<pseudo-block>, and arrange for some changes to be automatically
1026undone at the end of it, either explicit, or via a non-local exit (via
1027die()). A I<block>-like construct is created by a pair of
b687b08b 1028C<ENTER>/C<LEAVE> macros (see L<perlcall/"Returning a Scalar">).
1029Such a construct may be created specially for some important localized
1030task, or an existing one (like boundaries of enclosing Perl
1031subroutine/block, or an existing pair for freeing TMPs) may be
1032used. (In the second case the overhead of additional localization must
1033be almost negligible.) Note that any XSUB is automatically enclosed in
1034an C<ENTER>/C<LEAVE> pair.
d1c897a1 1035
1036Inside such a I<pseudo-block> the following service is available:
1037
1038=over
1039
1040=item C<SAVEINT(int i)>
1041
1042=item C<SAVEIV(IV i)>
1043
1044=item C<SAVEI32(I32 i)>
1045
1046=item C<SAVELONG(long i)>
1047
1048These macros arrange things to restore the value of integer variable
1049C<i> at the end of enclosing I<pseudo-block>.
1050
1051=item C<SAVESPTR(s)>
1052
1053=item C<SAVEPPTR(p)>
1054
1055These macros arrange things to restore the value of pointers C<s> and
1056C<p>. C<s> must be a pointer of a type which survives conversion to
1057C<SV*> and back, C<p> should be able to survive conversion to C<char*>
1058and back.
1059
1060=item C<SAVEFREESV(SV *sv)>
1061
1062The refcount of C<sv> would be decremented at the end of
1063I<pseudo-block>. This is similar to C<sv_2mortal>, which should (?) be
1064used instead.
1065
1066=item C<SAVEFREEOP(OP *op)>
1067
1068The C<OP *> is op_free()ed at the end of I<pseudo-block>.
1069
1070=item C<SAVEFREEPV(p)>
1071
1072The chunk of memory which is pointed to by C<p> is Safefree()ed at the
1073end of I<pseudo-block>.
1074
1075=item C<SAVECLEARSV(SV *sv)>
1076
1077Clears a slot in the current scratchpad which corresponds to C<sv> at
1078the end of I<pseudo-block>.
1079
1080=item C<SAVEDELETE(HV *hv, char *key, I32 length)>
1081
1082The key C<key> of C<hv> is deleted at the end of I<pseudo-block>. The
1083string pointed to by C<key> is Safefree()ed. If one has a I<key> in
1084short-lived storage, the corresponding string may be reallocated like
1085this:
1086
9cde0e7f 1087 SAVEDELETE(PL_defstash, savepv(tmpbuf), strlen(tmpbuf));
d1c897a1 1088
1089=item C<SAVEDESTRUCTOR(f,p)>
1090
1091At the end of I<pseudo-block> the function C<f> is called with the
1092only argument (of type C<void*>) C<p>.
1093
1094=item C<SAVESTACK_POS()>
1095
1096The current offset on the Perl internal stack (cf. C<SP>) is restored
1097at the end of I<pseudo-block>.
1098
1099=back
1100
1101The following API list contains functions, thus one needs to
1102provide pointers to the modifiable data explicitly (either C pointers,
1103or Perlish C<GV *>s). Where the above macros take C<int>, a similar
1104function takes C<int *>.
1105
1106=over
1107
1108=item C<SV* save_scalar(GV *gv)>
1109
1110Equivalent to Perl code C<local $gv>.
1111
1112=item C<AV* save_ary(GV *gv)>
1113
1114=item C<HV* save_hash(GV *gv)>
1115
1116Similar to C<save_scalar>, but localize C<@gv> and C<%gv>.
1117
1118=item C<void save_item(SV *item)>
1119
1120Duplicates the current value of C<SV>, on the exit from the current
1121C<ENTER>/C<LEAVE> I<pseudo-block> will restore the value of C<SV>
1122using the stored value.
1123
1124=item C<void save_list(SV **sarg, I32 maxsarg)>
1125
1126A variant of C<save_item> which takes multiple arguments via an array
1127C<sarg> of C<SV*> of length C<maxsarg>.
1128
1129=item C<SV* save_svref(SV **sptr)>
1130
1131Similar to C<save_scalar>, but will reinstate a C<SV *>.
1132
1133=item C<void save_aptr(AV **aptr)>
1134
1135=item C<void save_hptr(HV **hptr)>
1136
1137Similar to C<save_svref>, but localize C<AV *> and C<HV *>.
1138
1139=back
1140
1141The C<Alias> module implements localization of the basic types within the
1142I<caller's scope>. People who are interested in how to localize things in
1143the containing scope should take a look there too.
1144
0a753a76 1145=head1 Subroutines
a0d0e21e 1146
68dc0745 1147=head2 XSUBs and the Argument Stack
5f05dabc 1148
1149The XSUB mechanism is a simple way for Perl programs to access C subroutines.
1150An XSUB routine will have a stack that contains the arguments from the Perl
1151program, and a way to map from the Perl data structures to a C equivalent.
1152
1153The stack arguments are accessible through the C<ST(n)> macro, which returns
1154the C<n>'th stack argument. Argument 0 is the first argument passed in the
1155Perl subroutine call. These arguments are C<SV*>, and can be used anywhere
1156an C<SV*> is used.
1157
1158Most of the time, output from the C routine can be handled through use of
1159the RETVAL and OUTPUT directives. However, there are some cases where the
1160argument stack is not already long enough to handle all the return values.
1161An example is the POSIX tzname() call, which takes no arguments, but returns
1162two, the local time zone's standard and summer time abbreviations.
1163
1164To handle this situation, the PPCODE directive is used and the stack is
1165extended using the macro:
1166
924508f0 1167 EXTEND(SP, num);
5f05dabc 1168
924508f0 1169where C<SP> is the macro that represents the local copy of the stack pointer,
1170and C<num> is the number of elements the stack should be extended by.
5f05dabc 1171
1172Now that there is room on the stack, values can be pushed on it using the
54310121 1173macros to push IVs, doubles, strings, and SV pointers respectively:
5f05dabc 1174
1175 PUSHi(IV)
1176 PUSHn(double)
1177 PUSHp(char*, I32)
1178 PUSHs(SV*)
1179
1180And now the Perl program calling C<tzname>, the two values will be assigned
1181as in:
1182
1183 ($standard_abbrev, $summer_abbrev) = POSIX::tzname;
1184
1185An alternate (and possibly simpler) method to pushing values on the stack is
1186to use the macros:
1187
1188 XPUSHi(IV)
1189 XPUSHn(double)
1190 XPUSHp(char*, I32)
1191 XPUSHs(SV*)
1192
1193These macros automatically adjust the stack for you, if needed. Thus, you
1194do not need to call C<EXTEND> to extend the stack.
1195
1196For more information, consult L<perlxs> and L<perlxstut>.
1197
1198=head2 Calling Perl Routines from within C Programs
a0d0e21e 1199
1200There are four routines that can be used to call a Perl subroutine from
1201within a C program. These four are:
1202
1203 I32 perl_call_sv(SV*, I32);
1204 I32 perl_call_pv(char*, I32);
1205 I32 perl_call_method(char*, I32);
1206 I32 perl_call_argv(char*, I32, register char**);
1207
d1b91892 1208The routine most often used is C<perl_call_sv>. The C<SV*> argument
1209contains either the name of the Perl subroutine to be called, or a
1210reference to the subroutine. The second argument consists of flags
1211that control the context in which the subroutine is called, whether
1212or not the subroutine is being passed arguments, how errors should be
1213trapped, and how to treat return values.
a0d0e21e 1214
1215All four routines return the number of arguments that the subroutine returned
1216on the Perl stack.
1217
d1b91892 1218When using any of these routines (except C<perl_call_argv>), the programmer
1219must manipulate the Perl stack. These include the following macros and
1220functions:
a0d0e21e 1221
1222 dSP
924508f0 1223 SP
a0d0e21e 1224 PUSHMARK()
1225 PUTBACK
1226 SPAGAIN
1227 ENTER
1228 SAVETMPS
1229 FREETMPS
1230 LEAVE
1231 XPUSH*()
cb1a09d0 1232 POP*()
a0d0e21e 1233
5f05dabc 1234For a detailed description of calling conventions from C to Perl,
1235consult L<perlcall>.
a0d0e21e 1236
5f05dabc 1237=head2 Memory Allocation
a0d0e21e 1238
5f05dabc 1239It is suggested that you use the version of malloc that is distributed
1240with Perl. It keeps pools of various sizes of unallocated memory in
07fa94a1 1241order to satisfy allocation requests more quickly. However, on some
1242platforms, it may cause spurious malloc or free errors.
d1b91892 1243
1244 New(x, pointer, number, type);
1245 Newc(x, pointer, number, type, cast);
1246 Newz(x, pointer, number, type);
1247
07fa94a1 1248These three macros are used to initially allocate memory.
5f05dabc 1249
1250The first argument C<x> was a "magic cookie" that was used to keep track
1251of who called the macro, to help when debugging memory problems. However,
07fa94a1 1252the current code makes no use of this feature (most Perl developers now
1253use run-time memory checkers), so this argument can be any number.
5f05dabc 1254
1255The second argument C<pointer> should be the name of a variable that will
1256point to the newly allocated memory.
d1b91892 1257
d1b91892 1258The third and fourth arguments C<number> and C<type> specify how many of
1259the specified type of data structure should be allocated. The argument
1260C<type> is passed to C<sizeof>. The final argument to C<Newc>, C<cast>,
1261should be used if the C<pointer> argument is different from the C<type>
1262argument.
1263
1264Unlike the C<New> and C<Newc> macros, the C<Newz> macro calls C<memzero>
1265to zero out all the newly allocated memory.
1266
1267 Renew(pointer, number, type);
1268 Renewc(pointer, number, type, cast);
1269 Safefree(pointer)
1270
1271These three macros are used to change a memory buffer size or to free a
1272piece of memory no longer needed. The arguments to C<Renew> and C<Renewc>
1273match those of C<New> and C<Newc> with the exception of not needing the
1274"magic cookie" argument.
1275
1276 Move(source, dest, number, type);
1277 Copy(source, dest, number, type);
1278 Zero(dest, number, type);
1279
1280These three macros are used to move, copy, or zero out previously allocated
1281memory. The C<source> and C<dest> arguments point to the source and
1282destination starting points. Perl will move, copy, or zero out C<number>
1283instances of the size of the C<type> data structure (using the C<sizeof>
1284function).
a0d0e21e 1285
5f05dabc 1286=head2 PerlIO
ce3d39e2 1287
5f05dabc 1288The most recent development releases of Perl has been experimenting with
1289removing Perl's dependency on the "normal" standard I/O suite and allowing
1290other stdio implementations to be used. This involves creating a new
1291abstraction layer that then calls whichever implementation of stdio Perl
68dc0745 1292was compiled with. All XSUBs should now use the functions in the PerlIO
5f05dabc 1293abstraction layer and not make any assumptions about what kind of stdio
1294is being used.
1295
1296For a complete description of the PerlIO abstraction, consult L<perlapio>.
1297
8ebc5c01 1298=head2 Putting a C value on Perl stack
ce3d39e2 1299
1300A lot of opcodes (this is an elementary operation in the internal perl
1301stack machine) put an SV* on the stack. However, as an optimization
1302the corresponding SV is (usually) not recreated each time. The opcodes
1303reuse specially assigned SVs (I<target>s) which are (as a corollary)
1304not constantly freed/created.
1305
0a753a76 1306Each of the targets is created only once (but see
ce3d39e2 1307L<Scratchpads and recursion> below), and when an opcode needs to put
1308an integer, a double, or a string on stack, it just sets the
1309corresponding parts of its I<target> and puts the I<target> on stack.
1310
1311The macro to put this target on stack is C<PUSHTARG>, and it is
1312directly used in some opcodes, as well as indirectly in zillions of
1313others, which use it via C<(X)PUSH[pni]>.
1314
8ebc5c01 1315=head2 Scratchpads
ce3d39e2 1316
54310121 1317The question remains on when the SVs which are I<target>s for opcodes
5f05dabc 1318are created. The answer is that they are created when the current unit --
1319a subroutine or a file (for opcodes for statements outside of
1320subroutines) -- is compiled. During this time a special anonymous Perl
ce3d39e2 1321array is created, which is called a scratchpad for the current
1322unit.
1323
54310121 1324A scratchpad keeps SVs which are lexicals for the current unit and are
ce3d39e2 1325targets for opcodes. One can deduce that an SV lives on a scratchpad
1326by looking on its flags: lexicals have C<SVs_PADMY> set, and
1327I<target>s have C<SVs_PADTMP> set.
1328
54310121 1329The correspondence between OPs and I<target>s is not 1-to-1. Different
1330OPs in the compile tree of the unit can use the same target, if this
ce3d39e2 1331would not conflict with the expected life of the temporary.
1332
2ae324a7 1333=head2 Scratchpads and recursion
ce3d39e2 1334
1335In fact it is not 100% true that a compiled unit contains a pointer to
1336the scratchpad AV. In fact it contains a pointer to an AV of
1337(initially) one element, and this element is the scratchpad AV. Why do
1338we need an extra level of indirection?
1339
1340The answer is B<recursion>, and maybe (sometime soon) B<threads>. Both
1341these can create several execution pointers going into the same
1342subroutine. For the subroutine-child not write over the temporaries
1343for the subroutine-parent (lifespan of which covers the call to the
1344child), the parent and the child should have different
1345scratchpads. (I<And> the lexicals should be separate anyway!)
1346
5f05dabc 1347So each subroutine is born with an array of scratchpads (of length 1).
1348On each entry to the subroutine it is checked that the current
ce3d39e2 1349depth of the recursion is not more than the length of this array, and
1350if it is, new scratchpad is created and pushed into the array.
1351
1352The I<target>s on this scratchpad are C<undef>s, but they are already
1353marked with correct flags.
1354
0a753a76 1355=head1 Compiled code
1356
1357=head2 Code tree
1358
1359Here we describe the internal form your code is converted to by
1360Perl. Start with a simple example:
1361
1362 $a = $b + $c;
1363
1364This is converted to a tree similar to this one:
1365
1366 assign-to
1367 / \
1368 + $a
1369 / \
1370 $b $c
1371
7b8d334a 1372(but slightly more complicated). This tree reflects the way Perl
0a753a76 1373parsed your code, but has nothing to do with the execution order.
1374There is an additional "thread" going through the nodes of the tree
1375which shows the order of execution of the nodes. In our simplified
1376example above it looks like:
1377
1378 $b ---> $c ---> + ---> $a ---> assign-to
1379
1380But with the actual compile tree for C<$a = $b + $c> it is different:
1381some nodes I<optimized away>. As a corollary, though the actual tree
1382contains more nodes than our simplified example, the execution order
1383is the same as in our example.
1384
1385=head2 Examining the tree
1386
1387If you have your perl compiled for debugging (usually done with C<-D
1388optimize=-g> on C<Configure> command line), you may examine the
1389compiled tree by specifying C<-Dx> on the Perl command line. The
1390output takes several lines per node, and for C<$b+$c> it looks like
1391this:
1392
1393 5 TYPE = add ===> 6
1394 TARG = 1
1395 FLAGS = (SCALAR,KIDS)
1396 {
1397 TYPE = null ===> (4)
1398 (was rv2sv)
1399 FLAGS = (SCALAR,KIDS)
1400 {
1401 3 TYPE = gvsv ===> 4
1402 FLAGS = (SCALAR)
1403 GV = main::b
1404 }
1405 }
1406 {
1407 TYPE = null ===> (5)
1408 (was rv2sv)
1409 FLAGS = (SCALAR,KIDS)
1410 {
1411 4 TYPE = gvsv ===> 5
1412 FLAGS = (SCALAR)
1413 GV = main::c
1414 }
1415 }
1416
1417This tree has 5 nodes (one per C<TYPE> specifier), only 3 of them are
1418not optimized away (one per number in the left column). The immediate
1419children of the given node correspond to C<{}> pairs on the same level
1420of indentation, thus this listing corresponds to the tree:
1421
1422 add
1423 / \
1424 null null
1425 | |
1426 gvsv gvsv
1427
1428The execution order is indicated by C<===E<gt>> marks, thus it is C<3
14294 5 6> (node C<6> is not included into above listing), i.e.,
1430C<gvsv gvsv add whatever>.
1431
1432=head2 Compile pass 1: check routines
1433
1434The tree is created by the I<pseudo-compiler> while yacc code feeds it
1435the constructions it recognizes. Since yacc works bottom-up, so does
1436the first pass of perl compilation.
1437
1438What makes this pass interesting for perl developers is that some
1439optimization may be performed on this pass. This is optimization by
1440so-called I<check routines>. The correspondence between node names
1441and corresponding check routines is described in F<opcode.pl> (do not
1442forget to run C<make regen_headers> if you modify this file).
1443
1444A check routine is called when the node is fully constructed except
7b8d334a 1445for the execution-order thread. Since at this time there are no
0a753a76 1446back-links to the currently constructed node, one can do most any
1447operation to the top-level node, including freeing it and/or creating
1448new nodes above/below it.
1449
1450The check routine returns the node which should be inserted into the
1451tree (if the top-level node was not modified, check routine returns
1452its argument).
1453
1454By convention, check routines have names C<ck_*>. They are usually
1455called from C<new*OP> subroutines (or C<convert>) (which in turn are
1456called from F<perly.y>).
1457
1458=head2 Compile pass 1a: constant folding
1459
1460Immediately after the check routine is called the returned node is
1461checked for being compile-time executable. If it is (the value is
1462judged to be constant) it is immediately executed, and a I<constant>
1463node with the "return value" of the corresponding subtree is
1464substituted instead. The subtree is deleted.
1465
1466If constant folding was not performed, the execution-order thread is
1467created.
1468
1469=head2 Compile pass 2: context propagation
1470
1471When a context for a part of compile tree is known, it is propagated
a3cb178b 1472down through the tree. At this time the context can have 5 values
0a753a76 1473(instead of 2 for runtime context): void, boolean, scalar, list, and
1474lvalue. In contrast with the pass 1 this pass is processed from top
1475to bottom: a node's context determines the context for its children.
1476
1477Additional context-dependent optimizations are performed at this time.
1478Since at this moment the compile tree contains back-references (via
1479"thread" pointers), nodes cannot be free()d now. To allow
1480optimized-away nodes at this stage, such nodes are null()ified instead
1481of free()ing (i.e. their type is changed to OP_NULL).
1482
1483=head2 Compile pass 3: peephole optimization
1484
1485After the compile tree for a subroutine (or for an C<eval> or a file)
1486is created, an additional pass over the code is performed. This pass
1487is neither top-down or bottom-up, but in the execution order (with
7b8d334a 1488additional complications for conditionals). These optimizations are
0a753a76 1489done in the subroutine peep(). Optimizations performed at this stage
1490are subject to the same restrictions as in the pass 2.
1491
1492=head1 API LISTING
a0d0e21e 1493
cb1a09d0 1494This is a listing of functions, macros, flags, and variables that may be
1495useful to extension writers or that may be found while reading other
1496extensions.
9cde0e7f 1497
1498Note that all Perl API global variables must be referenced with the C<PL_>
1499prefix. Some macros are provided for compatibility with the older,
1500unadorned names, but this support will be removed in a future release.
1501
1502It is strongly recommended that all Perl API functions that don't begin
1503with C<perl> be referenced with an explicit C<Perl_> prefix.
1504
e89caa19 1505The sort order of the listing is case insensitive, with any
b5a41e52 1506occurrences of '_' ignored for the purpose of sorting.
a0d0e21e 1507
cb1a09d0 1508=over 8
a0d0e21e 1509
cb1a09d0 1510=item av_clear
1511
0146554f 1512Clears an array, making it empty. Does not free the memory used by the
1513array itself.
cb1a09d0 1514
ef50df4b 1515 void av_clear (AV* ar)
cb1a09d0 1516
1517=item av_extend
1518
1519Pre-extend an array. The C<key> is the index to which the array should be
1520extended.
1521
ef50df4b 1522 void av_extend (AV* ar, I32 key)
cb1a09d0 1523
1524=item av_fetch
1525
1526Returns the SV at the specified index in the array. The C<key> is the
1527index. If C<lval> is set then the fetch will be part of a store. Check
1528that the return value is non-null before dereferencing it to a C<SV*>.
1529
04343c6d 1530See L<Understanding the Magic of Tied Hashes and Arrays> for more
1531information on how to use this function on tied arrays.
1532
ef50df4b 1533 SV** av_fetch (AV* ar, I32 key, I32 lval)
cb1a09d0 1534
e89caa19 1535=item AvFILL
1536
95906810 1537Same as C<av_len()>. Deprecated, use C<av_len()> instead.
e89caa19 1538
cb1a09d0 1539=item av_len
1540
1541Returns the highest index in the array. Returns -1 if the array is empty.
1542
ef50df4b 1543 I32 av_len (AV* ar)
cb1a09d0 1544
1545=item av_make
1546
5fb8527f 1547Creates a new AV and populates it with a list of SVs. The SVs are copied
1548into the array, so they may be freed after the call to av_make. The new AV
5f05dabc 1549will have a reference count of 1.
cb1a09d0 1550
ef50df4b 1551 AV* av_make (I32 size, SV** svp)
cb1a09d0 1552
1553=item av_pop
1554
9cde0e7f 1555Pops an SV off the end of the array. Returns C<&PL_sv_undef> if the array is
cb1a09d0 1556empty.
1557
ef50df4b 1558 SV* av_pop (AV* ar)
cb1a09d0 1559
1560=item av_push
1561
5fb8527f 1562Pushes an SV onto the end of the array. The array will grow automatically
1563to accommodate the addition.
cb1a09d0 1564
ef50df4b 1565 void av_push (AV* ar, SV* val)
cb1a09d0 1566
1567=item av_shift
1568
1569Shifts an SV off the beginning of the array.
1570
ef50df4b 1571 SV* av_shift (AV* ar)
cb1a09d0 1572
1573=item av_store
1574
1575Stores an SV in an array. The array index is specified as C<key>. The
04343c6d 1576return value will be NULL if the operation failed or if the value did not
1577need to be actually stored within the array (as in the case of tied arrays).
1578Otherwise it can be dereferenced to get the original C<SV*>. Note that the
1579caller is responsible for suitably incrementing the reference count of C<val>
1580before the call, and decrementing it if the function returned NULL.
1581
1582See L<Understanding the Magic of Tied Hashes and Arrays> for more
1583information on how to use this function on tied arrays.
cb1a09d0 1584
ef50df4b 1585 SV** av_store (AV* ar, I32 key, SV* val)
cb1a09d0 1586
1587=item av_undef
1588
0146554f 1589Undefines the array. Frees the memory used by the array itself.
cb1a09d0 1590
ef50df4b 1591 void av_undef (AV* ar)
cb1a09d0 1592
1593=item av_unshift
1594
0146554f 1595Unshift the given number of C<undef> values onto the beginning of the
1596array. The array will grow automatically to accommodate the addition.
1597You must then use C<av_store> to assign values to these new elements.
cb1a09d0 1598
ef50df4b 1599 void av_unshift (AV* ar, I32 num)
cb1a09d0 1600
1601=item CLASS
1602
1603Variable which is setup by C<xsubpp> to indicate the class name for a C++ XS
5fb8527f 1604constructor. This is always a C<char*>. See C<THIS> and
1605L<perlxs/"Using XS With C++">.
cb1a09d0 1606
1607=item Copy
1608
1609The XSUB-writer's interface to the C C<memcpy> function. The C<s> is the
1610source, C<d> is the destination, C<n> is the number of items, and C<t> is
0146554f 1611the type. May fail on overlapping copies. See also C<Move>.
cb1a09d0 1612
e89caa19 1613 void Copy( s, d, n, t )
cb1a09d0 1614
1615=item croak
1616
1617This is the XSUB-writer's interface to Perl's C<die> function. Use this
1618function the same way you use the C C<printf> function. See C<warn>.
1619
1620=item CvSTASH
1621
1622Returns the stash of the CV.
1623
e89caa19 1624 HV* CvSTASH( SV* sv )
cb1a09d0 1625
9cde0e7f 1626=item PL_DBsingle
cb1a09d0 1627
1628When Perl is run in debugging mode, with the B<-d> switch, this SV is a
1629boolean which indicates whether subs are being single-stepped.
5fb8527f 1630Single-stepping is automatically turned on after every step. This is the C
9cde0e7f 1631variable which corresponds to Perl's $DB::single variable. See C<PL_DBsub>.
cb1a09d0 1632
9cde0e7f 1633=item PL_DBsub
cb1a09d0 1634
1635When Perl is run in debugging mode, with the B<-d> switch, this GV contains
5fb8527f 1636the SV which holds the name of the sub being debugged. This is the C
9cde0e7f 1637variable which corresponds to Perl's $DB::sub variable. See C<PL_DBsingle>.
cb1a09d0 1638The sub name can be found by
1639
2d8e6c8d 1640 SvPV( GvSV( PL_DBsub ), len )
cb1a09d0 1641
9cde0e7f 1642=item PL_DBtrace
5fb8527f 1643
1644Trace variable used when Perl is run in debugging mode, with the B<-d>
1645switch. This is the C variable which corresponds to Perl's $DB::trace
9cde0e7f 1646variable. See C<PL_DBsingle>.
5fb8527f 1647
cb1a09d0 1648=item dMARK
1649
5fb8527f 1650Declare a stack marker variable, C<mark>, for the XSUB. See C<MARK> and
1651C<dORIGMARK>.
cb1a09d0 1652
1653=item dORIGMARK
1654
1655Saves the original stack mark for the XSUB. See C<ORIGMARK>.
1656
9cde0e7f 1657=item PL_dowarn
5fb8527f 1658
1659The C variable which corresponds to Perl's $^W warning variable.
1660
cb1a09d0 1661=item dSP
1662
924508f0 1663Declares a local copy of perl's stack pointer for the XSUB, available via
1664the C<SP> macro. See C<SP>.
cb1a09d0 1665
1666=item dXSARGS
1667
1668Sets up stack and mark pointers for an XSUB, calling dSP and dMARK. This is
1669usually handled automatically by C<xsubpp>. Declares the C<items> variable
1670to indicate the number of items on the stack.
1671
5fb8527f 1672=item dXSI32
1673
1674Sets up the C<ix> variable for an XSUB which has aliases. This is usually
1675handled automatically by C<xsubpp>.
1676
491527d0 1677=item do_binmode
1678
1679Switches filehandle to binmode. C<iotype> is what C<IoTYPE(io)> would
1680contain.
1681
1682 do_binmode(fp, iotype, TRUE);
1683
cb1a09d0 1684=item ENTER
1685
1686Opening bracket on a callback. See C<LEAVE> and L<perlcall>.
1687
1688 ENTER;
1689
1690=item EXTEND
1691
1692Used to extend the argument stack for an XSUB's return values.
1693
ef50df4b 1694 EXTEND( sp, int x )
cb1a09d0 1695
e89caa19 1696=item fbm_compile
1697
1698Analyses the string in order to make fast searches on it using fbm_instr() --
1699the Boyer-Moore algorithm.
1700
411d5715 1701 void fbm_compile(SV* sv, U32 flags)
e89caa19 1702
1703=item fbm_instr
1704
1705Returns the location of the SV in the string delimited by C<str> and
1706C<strend>. It returns C<Nullch> if the string can't be found. The
1707C<sv> does not have to be fbm_compiled, but the search will not be as
1708fast then.
1709
411d5715 1710 char* fbm_instr(char *str, char *strend, SV *sv, U32 flags)
e89caa19 1711
cb1a09d0 1712=item FREETMPS
1713
1714Closing bracket for temporaries on a callback. See C<SAVETMPS> and
1715L<perlcall>.
1716
1717 FREETMPS;
1718
1719=item G_ARRAY
1720
54310121 1721Used to indicate array context. See C<GIMME_V>, C<GIMME> and L<perlcall>.
cb1a09d0 1722
1723=item G_DISCARD
1724
1725Indicates that arguments returned from a callback should be discarded. See
1726L<perlcall>.
1727
1728=item G_EVAL
1729
1730Used to force a Perl C<eval> wrapper around a callback. See L<perlcall>.
1731
1732=item GIMME
1733
54310121 1734A backward-compatible version of C<GIMME_V> which can only return
1735C<G_SCALAR> or C<G_ARRAY>; in a void context, it returns C<G_SCALAR>.
1736
1737=item GIMME_V
1738
1739The XSUB-writer's equivalent to Perl's C<wantarray>. Returns
1740C<G_VOID>, C<G_SCALAR> or C<G_ARRAY> for void, scalar or array
1741context, respectively.
cb1a09d0 1742
1743=item G_NOARGS
1744
1745Indicates that no arguments are being sent to a callback. See L<perlcall>.
1746
1747=item G_SCALAR
1748
54310121 1749Used to indicate scalar context. See C<GIMME_V>, C<GIMME>, and L<perlcall>.
1750
faed5253 1751=item gv_fetchmeth
1752
1753Returns the glob with the given C<name> and a defined subroutine or
9607fc9c 1754C<NULL>. The glob lives in the given C<stash>, or in the stashes
f86cebdf 1755accessible via @ISA and @UNIVERSAL.
faed5253 1756
9607fc9c 1757The argument C<level> should be either 0 or -1. If C<level==0>, as a
0a753a76 1758side-effect creates a glob with the given C<name> in the given
1759C<stash> which in the case of success contains an alias for the
1760subroutine, and sets up caching info for this glob. Similarly for all
1761the searched stashes.
1762
9607fc9c 1763This function grants C<"SUPER"> token as a postfix of the stash name.
1764
0a753a76 1765The GV returned from C<gv_fetchmeth> may be a method cache entry,
1766which is not visible to Perl code. So when calling C<perl_call_sv>,
1767you should not use the GV directly; instead, you should use the
1768method's CV, which can be obtained from the GV with the C<GvCV> macro.
faed5253 1769
ef50df4b 1770 GV* gv_fetchmeth (HV* stash, char* name, STRLEN len, I32 level)
faed5253 1771
1772=item gv_fetchmethod
1773
dc848c6f 1774=item gv_fetchmethod_autoload
1775
faed5253 1776Returns the glob which contains the subroutine to call to invoke the
dc848c6f 1777method on the C<stash>. In fact in the presense of autoloading this may
1778be the glob for "AUTOLOAD". In this case the corresponding variable
faed5253 1779$AUTOLOAD is already setup.
1780
dc848c6f 1781The third parameter of C<gv_fetchmethod_autoload> determines whether AUTOLOAD
1782lookup is performed if the given method is not present: non-zero means
1783yes, look for AUTOLOAD; zero means no, don't look for AUTOLOAD. Calling
1784C<gv_fetchmethod> is equivalent to calling C<gv_fetchmethod_autoload> with a
1785non-zero C<autoload> parameter.
1786
1787These functions grant C<"SUPER"> token as a prefix of the method name.
1788
1789Note that if you want to keep the returned glob for a long time, you
1790need to check for it being "AUTOLOAD", since at the later time the call
faed5253 1791may load a different subroutine due to $AUTOLOAD changing its value.
1792Use the glob created via a side effect to do this.
1793
dc848c6f 1794These functions have the same side-effects and as C<gv_fetchmeth> with
1795C<level==0>. C<name> should be writable if contains C<':'> or C<'\''>.
0a753a76 1796The warning against passing the GV returned by C<gv_fetchmeth> to
dc848c6f 1797C<perl_call_sv> apply equally to these functions.
faed5253 1798
ef50df4b 1799 GV* gv_fetchmethod (HV* stash, char* name)
1800 GV* gv_fetchmethod_autoload (HV* stash, char* name, I32 autoload)
faed5253 1801
e89caa19 1802=item G_VOID
1803
1804Used to indicate void context. See C<GIMME_V> and L<perlcall>.
1805
cb1a09d0 1806=item gv_stashpv
1807
1808Returns a pointer to the stash for a specified package. If C<create> is set
1809then the package will be created if it does not already exist. If C<create>
1810is not set and the package does not exist then NULL is returned.
1811
ef50df4b 1812 HV* gv_stashpv (char* name, I32 create)
cb1a09d0 1813
1814=item gv_stashsv
1815
1816Returns a pointer to the stash for a specified package. See C<gv_stashpv>.
1817
ef50df4b 1818 HV* gv_stashsv (SV* sv, I32 create)
cb1a09d0 1819
e5581bf4 1820=item GvSV
cb1a09d0 1821
e5581bf4 1822Return the SV from the GV.
44a8e56a 1823
1e422769 1824=item HEf_SVKEY
1825
1826This flag, used in the length slot of hash entries and magic
1827structures, specifies the structure contains a C<SV*> pointer where a
1828C<char*> pointer is to be expected. (For information only--not to be used).
1829
1e422769 1830=item HeHASH
1831
e89caa19 1832Returns the computed hash stored in the hash entry.
1e422769 1833
e89caa19 1834 U32 HeHASH(HE* he)
1e422769 1835
1836=item HeKEY
1837
1838Returns the actual pointer stored in the key slot of the hash entry.
1839The pointer may be either C<char*> or C<SV*>, depending on the value of
1840C<HeKLEN()>. Can be assigned to. The C<HePV()> or C<HeSVKEY()> macros
1841are usually preferable for finding the value of a key.
1842
e89caa19 1843 char* HeKEY(HE* he)
1e422769 1844
1845=item HeKLEN
1846
1847If this is negative, and amounts to C<HEf_SVKEY>, it indicates the entry
1848holds an C<SV*> key. Otherwise, holds the actual length of the key.
1849Can be assigned to. The C<HePV()> macro is usually preferable for finding
1850key lengths.
1851
e89caa19 1852 int HeKLEN(HE* he)
1e422769 1853
1854=item HePV
1855
1856Returns the key slot of the hash entry as a C<char*> value, doing any
1857necessary dereferencing of possibly C<SV*> keys. The length of
1858the string is placed in C<len> (this is a macro, so do I<not> use
1859C<&len>). If you do not care about what the length of the key is,
2d8e6c8d 1860you may use the global variable C<PL_na>, though this is rather less
1861efficient than using a local variable. Remember though, that hash
1e422769 1862keys in perl are free to contain embedded nulls, so using C<strlen()>
1863or similar is not a good way to find the length of hash keys.
1864This is very similar to the C<SvPV()> macro described elsewhere in
1865this document.
1866
e89caa19 1867 char* HePV(HE* he, STRLEN len)
1e422769 1868
1869=item HeSVKEY
1870
1871Returns the key as an C<SV*>, or C<Nullsv> if the hash entry
1872does not contain an C<SV*> key.
1873
1874 HeSVKEY(HE* he)
1875
1876=item HeSVKEY_force
1877
1878Returns the key as an C<SV*>. Will create and return a temporary
1879mortal C<SV*> if the hash entry contains only a C<char*> key.
1880
1881 HeSVKEY_force(HE* he)
1882
1883=item HeSVKEY_set
1884
1885Sets the key to a given C<SV*>, taking care to set the appropriate flags
1886to indicate the presence of an C<SV*> key, and returns the same C<SV*>.
1887
1888 HeSVKEY_set(HE* he, SV* sv)
1889
1890=item HeVAL
1891
1892Returns the value slot (type C<SV*>) stored in the hash entry.
1893
1894 HeVAL(HE* he)
1895
cb1a09d0 1896=item hv_clear
1897
1898Clears a hash, making it empty.
1899
ef50df4b 1900 void hv_clear (HV* tb)
cb1a09d0 1901
1902=item hv_delete
1903
1904Deletes a key/value pair in the hash. The value SV is removed from the hash
5fb8527f 1905and returned to the caller. The C<klen> is the length of the key. The
04343c6d 1906C<flags> value will normally be zero; if set to G_DISCARD then NULL will be
cb1a09d0 1907returned.
1908
ef50df4b 1909 SV* hv_delete (HV* tb, char* key, U32 klen, I32 flags)
cb1a09d0 1910
1e422769 1911=item hv_delete_ent
1912
1913Deletes a key/value pair in the hash. The value SV is removed from the hash
1914and returned to the caller. The C<flags> value will normally be zero; if set
04343c6d 1915to G_DISCARD then NULL will be returned. C<hash> can be a valid precomputed
1e422769 1916hash value, or 0 to ask for it to be computed.
1917
ef50df4b 1918 SV* hv_delete_ent (HV* tb, SV* key, I32 flags, U32 hash)
1e422769 1919
cb1a09d0 1920=item hv_exists
1921
1922Returns a boolean indicating whether the specified hash key exists. The
5fb8527f 1923C<klen> is the length of the key.
cb1a09d0 1924
ef50df4b 1925 bool hv_exists (HV* tb, char* key, U32 klen)
cb1a09d0 1926
1e422769 1927=item hv_exists_ent
1928
1929Returns a boolean indicating whether the specified hash key exists. C<hash>
54310121 1930can be a valid precomputed hash value, or 0 to ask for it to be computed.
1e422769 1931
ef50df4b 1932 bool hv_exists_ent (HV* tb, SV* key, U32 hash)
1e422769 1933
cb1a09d0 1934=item hv_fetch
1935
1936Returns the SV which corresponds to the specified key in the hash. The
5fb8527f 1937C<klen> is the length of the key. If C<lval> is set then the fetch will be
cb1a09d0 1938part of a store. Check that the return value is non-null before
1939dereferencing it to a C<SV*>.
1940
04343c6d 1941See L<Understanding the Magic of Tied Hashes and Arrays> for more
1942information on how to use this function on tied hashes.
1943
ef50df4b 1944 SV** hv_fetch (HV* tb, char* key, U32 klen, I32 lval)
cb1a09d0 1945
1e422769 1946=item hv_fetch_ent
1947
1948Returns the hash entry which corresponds to the specified key in the hash.
54310121 1949C<hash> must be a valid precomputed hash number for the given C<key>, or
1e422769 19500 if you want the function to compute it. IF C<lval> is set then the
1951fetch will be part of a store. Make sure the return value is non-null
1952before accessing it. The return value when C<tb> is a tied hash
1953is a pointer to a static location, so be sure to make a copy of the
1954structure if you need to store it somewhere.
1955
04343c6d 1956See L<Understanding the Magic of Tied Hashes and Arrays> for more
1957information on how to use this function on tied hashes.
1958
ef50df4b 1959 HE* hv_fetch_ent (HV* tb, SV* key, I32 lval, U32 hash)
1e422769 1960
cb1a09d0 1961=item hv_iterinit
1962
1963Prepares a starting point to traverse a hash table.
1964
ef50df4b 1965 I32 hv_iterinit (HV* tb)
cb1a09d0 1966
c6601927 1967Returns the number of keys in the hash (i.e. the same as C<HvKEYS(tb)>).
1968The return value is currently only meaningful for hashes without tie
1969magic.
1970
1971NOTE: Before version 5.004_65, C<hv_iterinit> used to return the number
1972of hash buckets that happen to be in use. If you still need that
1973esoteric value, you can get it through the macro C<HvFILL(tb)>.
fb73857a 1974
cb1a09d0 1975=item hv_iterkey
1976
1977Returns the key from the current position of the hash iterator. See
1978C<hv_iterinit>.
1979
ef50df4b 1980 char* hv_iterkey (HE* entry, I32* retlen)
cb1a09d0 1981
1e422769 1982=item hv_iterkeysv
3fe9a6f1 1983
1e422769 1984Returns the key as an C<SV*> from the current position of the hash
1985iterator. The return value will always be a mortal copy of the
1986key. Also see C<hv_iterinit>.
1987
ef50df4b 1988 SV* hv_iterkeysv (HE* entry)
1e422769 1989
cb1a09d0 1990=item hv_iternext
1991
1992Returns entries from a hash iterator. See C<hv_iterinit>.
1993
ef50df4b 1994 HE* hv_iternext (HV* tb)
cb1a09d0 1995
1996=item hv_iternextsv
1997
1998Performs an C<hv_iternext>, C<hv_iterkey>, and C<hv_iterval> in one
1999operation.
2000
e89caa19 2001 SV* hv_iternextsv (HV* hv, char** key, I32* retlen)
cb1a09d0 2002
2003=item hv_iterval
2004
2005Returns the value from the current position of the hash iterator. See
2006C<hv_iterkey>.
2007
ef50df4b 2008 SV* hv_iterval (HV* tb, HE* entry)
cb1a09d0 2009
2010=item hv_magic
2011
2012Adds magic to a hash. See C<sv_magic>.
2013
ef50df4b 2014 void hv_magic (HV* hv, GV* gv, int how)
cb1a09d0 2015
2016=item HvNAME
2017
2018Returns the package name of a stash. See C<SvSTASH>, C<CvSTASH>.
2019
e89caa19 2020 char* HvNAME (HV* stash)
cb1a09d0 2021
2022=item hv_store
2023
2024Stores an SV in a hash. The hash key is specified as C<key> and C<klen> is
54310121 2025the length of the key. The C<hash> parameter is the precomputed hash
cb1a09d0 2026value; if it is zero then Perl will compute it. The return value will be
04343c6d 2027NULL if the operation failed or if the value did not need to be actually
2028stored within the hash (as in the case of tied hashes). Otherwise it can
2029be dereferenced to get the original C<SV*>. Note that the caller is
2030responsible for suitably incrementing the reference count of C<val>
2031before the call, and decrementing it if the function returned NULL.
2032
2033See L<Understanding the Magic of Tied Hashes and Arrays> for more
2034information on how to use this function on tied hashes.
cb1a09d0 2035
ef50df4b 2036 SV** hv_store (HV* tb, char* key, U32 klen, SV* val, U32 hash)
cb1a09d0 2037
1e422769 2038=item hv_store_ent
2039
2040Stores C<val> in a hash. The hash key is specified as C<key>. The C<hash>
54310121 2041parameter is the precomputed hash value; if it is zero then Perl will
1e422769 2042compute it. The return value is the new hash entry so created. It will be
04343c6d 2043NULL if the operation failed or if the value did not need to be actually
2044stored within the hash (as in the case of tied hashes). Otherwise the
2045contents of the return value can be accessed using the C<He???> macros
2046described here. Note that the caller is responsible for suitably
2047incrementing the reference count of C<val> before the call, and decrementing
2048it if the function returned NULL.
2049
2050See L<Understanding the Magic of Tied Hashes and Arrays> for more
2051information on how to use this function on tied hashes.
1e422769 2052
ef50df4b 2053 HE* hv_store_ent (HV* tb, SV* key, SV* val, U32 hash)
1e422769 2054
cb1a09d0 2055=item hv_undef
2056
2057Undefines the hash.
2058
ef50df4b 2059 void hv_undef (HV* tb)
cb1a09d0 2060
2061=item isALNUM
2062
2063Returns a boolean indicating whether the C C<char> is an ascii alphanumeric
5f05dabc 2064character or digit.
cb1a09d0 2065
e89caa19 2066 int isALNUM (char c)
cb1a09d0 2067
2068=item isALPHA
2069
5fb8527f 2070Returns a boolean indicating whether the C C<char> is an ascii alphabetic
cb1a09d0 2071character.
2072
e89caa19 2073 int isALPHA (char c)
cb1a09d0 2074
2075=item isDIGIT
2076
2077Returns a boolean indicating whether the C C<char> is an ascii digit.
2078
e89caa19 2079 int isDIGIT (char c)
cb1a09d0 2080
2081=item isLOWER
2082
2083Returns a boolean indicating whether the C C<char> is a lowercase character.
2084
e89caa19 2085 int isLOWER (char c)
cb1a09d0 2086
2087=item isSPACE
2088
2089Returns a boolean indicating whether the C C<char> is whitespace.
2090
e89caa19 2091 int isSPACE (char c)
cb1a09d0 2092
2093=item isUPPER
2094
2095Returns a boolean indicating whether the C C<char> is an uppercase character.
2096
e89caa19 2097 int isUPPER (char c)
cb1a09d0 2098
2099=item items
2100
2101Variable which is setup by C<xsubpp> to indicate the number of items on the
5fb8527f 2102stack. See L<perlxs/"Variable-length Parameter Lists">.
2103
2104=item ix
2105
2106Variable which is setup by C<xsubpp> to indicate which of an XSUB's aliases
2107was used to invoke it. See L<perlxs/"The ALIAS: Keyword">.
cb1a09d0 2108
2109=item LEAVE
2110
2111Closing bracket on a callback. See C<ENTER> and L<perlcall>.
2112
2113 LEAVE;
2114
e89caa19 2115=item looks_like_number
2116
2117Test if an the content of an SV looks like a number (or is a number).
2118
2119 int looks_like_number(SV*)
2120
2121
cb1a09d0 2122=item MARK
2123
5fb8527f 2124Stack marker variable for the XSUB. See C<dMARK>.
cb1a09d0 2125
2126=item mg_clear
2127
2128Clear something magical that the SV represents. See C<sv_magic>.
2129
ef50df4b 2130 int mg_clear (SV* sv)
cb1a09d0 2131
2132=item mg_copy
2133
2134Copies the magic from one SV to another. See C<sv_magic>.
2135
ef50df4b 2136 int mg_copy (SV *, SV *, char *, STRLEN)
cb1a09d0 2137
2138=item mg_find
2139
2140Finds the magic pointer for type matching the SV. See C<sv_magic>.
2141
ef50df4b 2142 MAGIC* mg_find (SV* sv, int type)
cb1a09d0 2143
2144=item mg_free
2145
2146Free any magic storage used by the SV. See C<sv_magic>.
2147
ef50df4b 2148 int mg_free (SV* sv)
cb1a09d0 2149
2150=item mg_get
2151
2152Do magic after a value is retrieved from the SV. See C<sv_magic>.
2153
ef50df4b 2154 int mg_get (SV* sv)
cb1a09d0 2155
2156=item mg_len
2157
2158Report on the SV's length. See C<sv_magic>.
2159
ef50df4b 2160 U32 mg_len (SV* sv)
cb1a09d0 2161
2162=item mg_magical
2163
2164Turns on the magical status of an SV. See C<sv_magic>.
2165
ef50df4b 2166 void mg_magical (SV* sv)
cb1a09d0 2167
2168=item mg_set
2169
2170Do magic after a value is assigned to the SV. See C<sv_magic>.
2171
ef50df4b 2172 int mg_set (SV* sv)
cb1a09d0 2173
b0fffe30 2174=item modglobal
2175
2176C<modglobal> is a general purpose, interpreter global HV for use by
db696efe 2177extensions that need to keep information on a per-interpreter basis.
2178In a pinch, it can also be used as a symbol table for extensions
2179to share data among each other. It is a good idea to use keys
2180prefixed by the package name of the extension that owns the data.
b0fffe30 2181
cb1a09d0 2182=item Move
2183
2184The XSUB-writer's interface to the C C<memmove> function. The C<s> is the
2185source, C<d> is the destination, C<n> is the number of items, and C<t> is
0146554f 2186the type. Can do overlapping moves. See also C<Copy>.
cb1a09d0 2187
e89caa19 2188 void Move( s, d, n, t )
cb1a09d0 2189
9cde0e7f 2190=item PL_na
cb1a09d0 2191
2d8e6c8d 2192A convenience variable which is typically used with C<SvPV> when one doesn't
2193care about the length of the string. It is usually more efficient to
2194declare a local variable and use that instead.
cb1a09d0 2195
2196=item New
2197
2198The XSUB-writer's interface to the C C<malloc> function.
2199
e89caa19 2200 void* New( x, void *ptr, int size, type )
cb1a09d0 2201
2202=item newAV
2203
5f05dabc 2204Creates a new AV. The reference count is set to 1.
cb1a09d0 2205
ef50df4b 2206 AV* newAV (void)
cb1a09d0 2207
e89caa19 2208=item Newc
2209
2210The XSUB-writer's interface to the C C<malloc> function, with cast.
2211
2212 void* Newc( x, void *ptr, int size, type, cast )
2213
5476c433 2214=item newCONSTSUB
2215
2216Creates a constant sub equivalent to Perl C<sub FOO () { 123 }>
2217which is eligible for inlining at compile-time.
2218
2219 void newCONSTSUB(HV* stash, char* name, SV* sv)
2220
cb1a09d0 2221=item newHV
2222
5f05dabc 2223Creates a new HV. The reference count is set to 1.
cb1a09d0 2224
ef50df4b 2225 HV* newHV (void)
cb1a09d0 2226
5f05dabc 2227=item newRV_inc
cb1a09d0 2228
5f05dabc 2229Creates an RV wrapper for an SV. The reference count for the original SV is
cb1a09d0 2230incremented.
2231
ef50df4b 2232 SV* newRV_inc (SV* ref)
5f05dabc 2233
2234For historical reasons, "newRV" is a synonym for "newRV_inc".
2235
2236=item newRV_noinc
2237
2238Creates an RV wrapper for an SV. The reference count for the original
2239SV is B<not> incremented.
2240
ef50df4b 2241 SV* newRV_noinc (SV* ref)
cb1a09d0 2242
8c52afec 2243=item NEWSV
cb1a09d0 2244
e89caa19 2245Creates a new SV. A non-zero C<len> parameter indicates the number of
2246bytes of preallocated string space the SV should have. An extra byte
2247for a tailing NUL is also reserved. (SvPOK is not set for the SV even
2248if string space is allocated.) The reference count for the new SV is
2249set to 1. C<id> is an integer id between 0 and 1299 (used to identify
2250leaks).
cb1a09d0 2251
ef50df4b 2252 SV* NEWSV (int id, STRLEN len)
cb1a09d0 2253
2254=item newSViv
2255
07fa94a1 2256Creates a new SV and copies an integer into it. The reference count for the
2257SV is set to 1.
cb1a09d0 2258
ef50df4b 2259 SV* newSViv (IV i)
cb1a09d0 2260
2261=item newSVnv
2262
07fa94a1 2263Creates a new SV and copies a double into it. The reference count for the
2264SV is set to 1.
cb1a09d0 2265
ef50df4b 2266 SV* newSVnv (NV i)
cb1a09d0 2267
2268=item newSVpv
2269
07fa94a1 2270Creates a new SV and copies a string into it. The reference count for the
2271SV is set to 1. If C<len> is zero then Perl will compute the length.
cb1a09d0 2272
ef50df4b 2273 SV* newSVpv (char* s, STRLEN len)
cb1a09d0 2274
e89caa19 2275=item newSVpvf
2276
2277Creates a new SV an initialize it with the string formatted like
2278C<sprintf>.
2279
2280 SV* newSVpvf(const char* pat, ...);
2281
9da1e3b5 2282=item newSVpvn
2283
2284Creates a new SV and copies a string into it. The reference count for the
2285SV is set to 1. If C<len> is zero then Perl will create a zero length
2286string.
2287
ef50df4b 2288 SV* newSVpvn (char* s, STRLEN len)
9da1e3b5 2289
cb1a09d0 2290=item newSVrv
2291
2292Creates a new SV for the RV, C<rv>, to point to. If C<rv> is not an RV then
5fb8527f 2293it will be upgraded to one. If C<classname> is non-null then the new SV will
cb1a09d0 2294be blessed in the specified package. The new SV is returned and its
5f05dabc 2295reference count is 1.
8ebc5c01 2296
ef50df4b 2297 SV* newSVrv (SV* rv, char* classname)
cb1a09d0 2298
2299=item newSVsv
2300
5fb8527f 2301Creates a new SV which is an exact duplicate of the original SV.
cb1a09d0 2302
ef50df4b 2303 SV* newSVsv (SV* old)
cb1a09d0 2304
2305=item newXS
2306
2307Used by C<xsubpp> to hook up XSUBs as Perl subs.
2308
2309=item newXSproto
2310
2311Used by C<xsubpp> to hook up XSUBs as Perl subs. Adds Perl prototypes to
2312the subs.
2313
e89caa19 2314=item Newz
2315
2316The XSUB-writer's interface to the C C<malloc> function. The allocated
2317memory is zeroed with C<memzero>.
2318
2319 void* Newz( x, void *ptr, int size, type )
2320
cb1a09d0 2321=item Nullav
2322
2323Null AV pointer.
2324
2325=item Nullch
2326
2327Null character pointer.
2328
2329=item Nullcv
2330
2331Null CV pointer.
2332
2333=item Nullhv
2334
2335Null HV pointer.
2336
2337=item Nullsv
2338
2339Null SV pointer.
2340
2341=item ORIGMARK
2342
2343The original stack mark for the XSUB. See C<dORIGMARK>.
2344
2345=item perl_alloc
2346
2347Allocates a new Perl interpreter. See L<perlembed>.
2348
2349=item perl_call_argv
2350
2351Performs a callback to the specified Perl sub. See L<perlcall>.
2352
ef50df4b 2353 I32 perl_call_argv (char* subname, I32 flags, char** argv)
cb1a09d0 2354
2355=item perl_call_method
2356
2357Performs a callback to the specified Perl method. The blessed object must
2358be on the stack. See L<perlcall>.
2359
ef50df4b 2360 I32 perl_call_method (char* methname, I32 flags)
cb1a09d0 2361
2362=item perl_call_pv
2363
2364Performs a callback to the specified Perl sub. See L<perlcall>.
2365
ef50df4b 2366 I32 perl_call_pv (char* subname, I32 flags)
cb1a09d0 2367
2368=item perl_call_sv
2369
2370Performs a callback to the Perl sub whose name is in the SV. See
2371L<perlcall>.
2372
ef50df4b 2373 I32 perl_call_sv (SV* sv, I32 flags)
cb1a09d0 2374
2375=item perl_construct
2376
2377Initializes a new Perl interpreter. See L<perlembed>.
2378
2379=item perl_destruct
2380
2381Shuts down a Perl interpreter. See L<perlembed>.
2382
2383=item perl_eval_sv
2384
2385Tells Perl to C<eval> the string in the SV.
2386
ef50df4b 2387 I32 perl_eval_sv (SV* sv, I32 flags)
cb1a09d0 2388
137443ea 2389=item perl_eval_pv
2390
2391Tells Perl to C<eval> the given string and return an SV* result.
2392
ef50df4b 2393 SV* perl_eval_pv (char* p, I32 croak_on_error)
137443ea 2394
cb1a09d0 2395=item perl_free
2396
2397Releases a Perl interpreter. See L<perlembed>.
2398
2399=item perl_get_av
2400
2401Returns the AV of the specified Perl array. If C<create> is set and the
2402Perl variable does not exist then it will be created. If C<create> is not
04343c6d 2403set and the variable does not exist then NULL is returned.
cb1a09d0 2404
ef50df4b 2405 AV* perl_get_av (char* name, I32 create)
cb1a09d0 2406
2407=item perl_get_cv
2408
2409Returns the CV of the specified Perl sub. If C<create> is set and the Perl
2410variable does not exist then it will be created. If C<create> is not
04343c6d 2411set and the variable does not exist then NULL is returned.
cb1a09d0 2412
ef50df4b 2413 CV* perl_get_cv (char* name, I32 create)
cb1a09d0 2414
2415=item perl_get_hv
2416
2417Returns the HV of the specified Perl hash. If C<create> is set and the Perl
2418variable does not exist then it will be created. If C<create> is not
04343c6d 2419set and the variable does not exist then NULL is returned.
cb1a09d0 2420
ef50df4b 2421 HV* perl_get_hv (char* name, I32 create)
cb1a09d0 2422
2423=item perl_get_sv
2424
2425Returns the SV of the specified Perl scalar. If C<create> is set and the
2426Perl variable does not exist then it will be created. If C<create> is not
04343c6d 2427set and the variable does not exist then NULL is returned.
cb1a09d0 2428
ef50df4b 2429 SV* perl_get_sv (char* name, I32 create)
cb1a09d0 2430
2431=item perl_parse
2432
2433Tells a Perl interpreter to parse a Perl script. See L<perlembed>.
2434
2435=item perl_require_pv
2436
2437Tells Perl to C<require> a module.
2438
ef50df4b 2439 void perl_require_pv (char* pv)
cb1a09d0 2440
2441=item perl_run
2442
2443Tells a Perl interpreter to run. See L<perlembed>.
2444
2445=item POPi
2446
2447Pops an integer off the stack.
2448
e89caa19 2449 int POPi()
cb1a09d0 2450
2451=item POPl
2452
2453Pops a long off the stack.
2454
e89caa19 2455 long POPl()
cb1a09d0 2456
2457=item POPp
2458
2459Pops a string off the stack.
2460
e89caa19 2461 char* POPp()
cb1a09d0 2462
2463=item POPn
2464
2465Pops a double off the stack.
2466
e89caa19 2467 double POPn()
cb1a09d0 2468
2469=item POPs
2470
2471Pops an SV off the stack.
2472
e89caa19 2473 SV* POPs()
cb1a09d0 2474
2475=item PUSHMARK
2476
2477Opening bracket for arguments on a callback. See C<PUTBACK> and L<perlcall>.
2478
2479 PUSHMARK(p)
2480
2481=item PUSHi
2482
2483Push an integer onto the stack. The stack must have room for this element.
189b2af5 2484Handles 'set' magic. See C<XPUSHi>.
cb1a09d0 2485
e89caa19 2486 void PUSHi(int d)
cb1a09d0 2487
2488=item PUSHn
2489
2490Push a double onto the stack. The stack must have room for this element.
189b2af5 2491Handles 'set' magic. See C<XPUSHn>.
cb1a09d0 2492
e89caa19 2493 void PUSHn(double d)
cb1a09d0 2494
2495=item PUSHp
2496
2497Push a string onto the stack. The stack must have room for this element.
189b2af5 2498The C<len> indicates the length of the string. Handles 'set' magic. See
2499C<XPUSHp>.
cb1a09d0 2500
e89caa19 2501 void PUSHp(char *c, int len )
cb1a09d0 2502
2503=item PUSHs
2504
189b2af5 2505Push an SV onto the stack. The stack must have room for this element. Does
2506not handle 'set' magic. See C<XPUSHs>.
cb1a09d0 2507
e89caa19 2508 void PUSHs(sv)
2509
2510=item PUSHu
2511
2512Push an unsigned integer onto the stack. The stack must have room for
2513this element. See C<XPUSHu>.
2514
2515 void PUSHu(unsigned int d)
2516
cb1a09d0 2517
2518=item PUTBACK
2519
2520Closing bracket for XSUB arguments. This is usually handled by C<xsubpp>.
2521See C<PUSHMARK> and L<perlcall> for other uses.
2522
2523 PUTBACK;
2524
2525=item Renew
2526
2527The XSUB-writer's interface to the C C<realloc> function.
2528
e89caa19 2529 void* Renew( void *ptr, int size, type )
cb1a09d0 2530
2531=item Renewc
2532
2533The XSUB-writer's interface to the C C<realloc> function, with cast.
2534
e89caa19 2535 void* Renewc( void *ptr, int size, type, cast )
cb1a09d0 2536
2537=item RETVAL
2538
2539Variable which is setup by C<xsubpp> to hold the return value for an XSUB.
5fb8527f 2540This is always the proper type for the XSUB.
2541See L<perlxs/"The RETVAL Variable">.
cb1a09d0 2542
2543=item safefree
2544
2545The XSUB-writer's interface to the C C<free> function.
2546
2547=item safemalloc
2548
2549The XSUB-writer's interface to the C C<malloc> function.
2550
2551=item saferealloc
2552
2553The XSUB-writer's interface to the C C<realloc> function.
2554
2555=item savepv
2556
2557Copy a string to a safe spot. This does not use an SV.
2558
ef50df4b 2559 char* savepv (char* sv)
cb1a09d0 2560
2561=item savepvn
2562
2563Copy a string to a safe spot. The C<len> indicates number of bytes to
2564copy. This does not use an SV.
2565
ef50df4b 2566 char* savepvn (char* sv, I32 len)
cb1a09d0 2567
2568=item SAVETMPS
2569
2570Opening bracket for temporaries on a callback. See C<FREETMPS> and
2571L<perlcall>.
2572
2573 SAVETMPS;
2574
2575=item SP
2576
2577Stack pointer. This is usually handled by C<xsubpp>. See C<dSP> and
2578C<SPAGAIN>.
2579
2580=item SPAGAIN
2581
54310121 2582Refetch the stack pointer. Used after a callback. See L<perlcall>.
cb1a09d0 2583
2584 SPAGAIN;
2585
2586=item ST
2587
2588Used to access elements on the XSUB's stack.
2589
e89caa19 2590 SV* ST(int x)
cb1a09d0 2591
2592=item strEQ
2593
2594Test two strings to see if they are equal. Returns true or false.
2595
e89caa19 2596 int strEQ( char *s1, char *s2 )
cb1a09d0 2597
2598=item strGE
2599
2600Test two strings to see if the first, C<s1>, is greater than or equal to the
2601second, C<s2>. Returns true or false.
2602
e89caa19 2603 int strGE( char *s1, char *s2 )
cb1a09d0 2604
2605=item strGT
2606
2607Test two strings to see if the first, C<s1>, is greater than the second,
2608C<s2>. Returns true or false.
2609
e89caa19 2610 int strGT( char *s1, char *s2 )
cb1a09d0 2611
2612=item strLE
2613
2614Test two strings to see if the first, C<s1>, is less than or equal to the
2615second, C<s2>. Returns true or false.
2616
e89caa19 2617 int strLE( char *s1, char *s2 )
cb1a09d0 2618
2619=item strLT
2620
2621Test two strings to see if the first, C<s1>, is less than the second,
2622C<s2>. Returns true or false.
2623
e89caa19 2624 int strLT( char *s1, char *s2 )
cb1a09d0 2625
2626=item strNE
2627
2628Test two strings to see if they are different. Returns true or false.
2629
e89caa19 2630 int strNE( char *s1, char *s2 )
cb1a09d0 2631
2632=item strnEQ
2633
2634Test two strings to see if they are equal. The C<len> parameter indicates
2635the number of bytes to compare. Returns true or false.
2636
e89caa19 2637 int strnEQ( char *s1, char *s2 )
cb1a09d0 2638
2639=item strnNE
2640
2641Test two strings to see if they are different. The C<len> parameter
2642indicates the number of bytes to compare. Returns true or false.
2643
e89caa19 2644 int strnNE( char *s1, char *s2, int len )
cb1a09d0 2645
2646=item sv_2mortal
2647
2648Marks an SV as mortal. The SV will be destroyed when the current context
2649ends.
2650
ef50df4b 2651 SV* sv_2mortal (SV* sv)
cb1a09d0 2652
2653=item sv_bless
2654
2655Blesses an SV into a specified package. The SV must be an RV. The package
07fa94a1 2656must be designated by its stash (see C<gv_stashpv()>). The reference count
2657of the SV is unaffected.
cb1a09d0 2658
ef50df4b 2659 SV* sv_bless (SV* sv, HV* stash)
cb1a09d0 2660
ef50df4b 2661=item sv_catpv
189b2af5 2662
ef50df4b 2663Concatenates the string onto the end of the string which is in the SV.
2664Handles 'get' magic, but not 'set' magic. See C<sv_catpv_mg>.
189b2af5 2665
ef50df4b 2666 void sv_catpv (SV* sv, char* ptr)
189b2af5 2667
ef50df4b 2668=item sv_catpv_mg
cb1a09d0 2669
ef50df4b 2670Like C<sv_catpv>, but also handles 'set' magic.
cb1a09d0 2671
ef50df4b 2672 void sv_catpvn (SV* sv, char* ptr)
cb1a09d0 2673
2674=item sv_catpvn
2675
2676Concatenates the string onto the end of the string which is in the SV. The
189b2af5 2677C<len> indicates number of bytes to copy. Handles 'get' magic, but not
ef50df4b 2678'set' magic. See C<sv_catpvn_mg>.
cb1a09d0 2679
ef50df4b 2680 void sv_catpvn (SV* sv, char* ptr, STRLEN len)
2681
2682=item sv_catpvn_mg
2683
2684Like C<sv_catpvn>, but also handles 'set' magic.
2685
2686 void sv_catpvn_mg (SV* sv, char* ptr, STRLEN len)
cb1a09d0 2687
46fc3d4c 2688=item sv_catpvf
2689
2690Processes its arguments like C<sprintf> and appends the formatted output
189b2af5 2691to an SV. Handles 'get' magic, but not 'set' magic. C<SvSETMAGIC()> must
2692typically be called after calling this function to handle 'set' magic.
46fc3d4c 2693
ef50df4b 2694 void sv_catpvf (SV* sv, const char* pat, ...)
2695
2696=item sv_catpvf_mg
2697
2698Like C<sv_catpvf>, but also handles 'set' magic.
2699
2700 void sv_catpvf_mg (SV* sv, const char* pat, ...)
46fc3d4c 2701
cb1a09d0 2702=item sv_catsv
2703
5fb8527f 2704Concatenates the string from SV C<ssv> onto the end of the string in SV
ef50df4b 2705C<dsv>. Handles 'get' magic, but not 'set' magic. See C<sv_catsv_mg>.
2706
2707 void sv_catsv (SV* dsv, SV* ssv)
2708
2709=item sv_catsv_mg
cb1a09d0 2710
ef50df4b 2711Like C<sv_catsv>, but also handles 'set' magic.
2712
2713 void sv_catsv_mg (SV* dsv, SV* ssv)
cb1a09d0 2714
e89caa19 2715=item sv_chop
2716
2717Efficient removal of characters from the beginning of the string
2718buffer. SvPOK(sv) must be true and the C<ptr> must be a pointer to
2719somewhere inside the string buffer. The C<ptr> becomes the first
2720character of the adjusted string.
2721
2722 void sv_chop(SV* sv, char *ptr)
2723
2724
5fb8527f 2725=item sv_cmp
2726
2727Compares the strings in two SVs. Returns -1, 0, or 1 indicating whether the
2728string in C<sv1> is less than, equal to, or greater than the string in
2729C<sv2>.
2730
ef50df4b 2731 I32 sv_cmp (SV* sv1, SV* sv2)
5fb8527f 2732
cb1a09d0 2733=item SvCUR
2734
2735Returns the length of the string which is in the SV. See C<SvLEN>.
2736
e89caa19 2737 int SvCUR (SV* sv)
cb1a09d0 2738
2739=item SvCUR_set
2740
2741Set the length of the string which is in the SV. See C<SvCUR>.
2742
e89caa19 2743 void SvCUR_set (SV* sv, int val )
cb1a09d0 2744
5fb8527f 2745=item sv_dec
2746
5f05dabc 2747Auto-decrement of the value in the SV.
5fb8527f 2748
ef50df4b 2749 void sv_dec (SV* sv)
5fb8527f 2750
e89caa19 2751=item sv_derived_from
2752
2753Returns a boolean indicating whether the SV is a subclass of the
2754specified class.
2755
2756 int sv_derived_from(SV* sv, char* class)
2757
9abd00ed 2758=item sv_derived_from
2759
2760Returns a boolean indicating whether the SV is derived from the specified
2761class. This is the function that implements C<UNIVERSAL::isa>. It works
2762for class names as well as for objects.
2763
2764 bool sv_derived_from _((SV* sv, char* name));
2765
cb1a09d0 2766=item SvEND
2767
2768Returns a pointer to the last character in the string which is in the SV.
2769See C<SvCUR>. Access the character as
2770
e89caa19 2771 char* SvEND(sv)
cb1a09d0 2772
5fb8527f 2773=item sv_eq
2774
2775Returns a boolean indicating whether the strings in the two SVs are
2776identical.
2777
ef50df4b 2778 I32 sv_eq (SV* sv1, SV* sv2)
5fb8527f 2779
189b2af5 2780=item SvGETMAGIC
2781
2782Invokes C<mg_get> on an SV if it has 'get' magic. This macro evaluates
2783its argument more than once.
2784
2785 void SvGETMAGIC( SV *sv )
2786
cb1a09d0 2787=item SvGROW
2788
e89caa19 2789Expands the character buffer in the SV so that it has room for the
2790indicated number of bytes (remember to reserve space for an extra
2791trailing NUL character). Calls C<sv_grow> to perform the expansion if
2792necessary. Returns a pointer to the character buffer.
cb1a09d0 2793
22c35a8c 2794 char* SvGROW( SV* sv, STRLEN len )
cb1a09d0 2795
5fb8527f 2796=item sv_grow
2797
2798Expands the character buffer in the SV. This will use C<sv_unref> and will
2799upgrade the SV to C<SVt_PV>. Returns a pointer to the character buffer.
2800Use C<SvGROW>.
2801
2802=item sv_inc
2803
07fa94a1 2804Auto-increment of the value in the SV.
5fb8527f 2805
ef50df4b 2806 void sv_inc (SV* sv)
5fb8527f 2807
e89caa19 2808=item sv_insert
2809
2810Inserts a string at the specified offset/length within the SV.
2811Similar to the Perl substr() function.
2812
2813 void sv_insert(SV *sv, STRLEN offset, STRLEN len,
2814 char *str, STRLEN strlen)
2815
cb1a09d0 2816=item SvIOK
2817
2818Returns a boolean indicating whether the SV contains an integer.
2819
e89caa19 2820 int SvIOK (SV* SV)
cb1a09d0 2821
2822=item SvIOK_off
2823
2824Unsets the IV status of an SV.
2825
e89caa19 2826 void SvIOK_off (SV* sv)
cb1a09d0 2827
2828=item SvIOK_on
2829
2830Tells an SV that it is an integer.
2831
e89caa19 2832 void SvIOK_on (SV* sv)
cb1a09d0 2833
5fb8527f 2834=item SvIOK_only
2835
2836Tells an SV that it is an integer and disables all other OK bits.
2837
e89caa19 2838 void SvIOK_only (SV* sv)
5fb8527f 2839
cb1a09d0 2840=item SvIOKp
2841
2842Returns a boolean indicating whether the SV contains an integer. Checks the
2843B<private> setting. Use C<SvIOK>.
2844
e89caa19 2845 int SvIOKp (SV* SV)
cb1a09d0 2846
2847=item sv_isa
2848
2849Returns a boolean indicating whether the SV is blessed into the specified
9abd00ed 2850class. This does not check for subtypes; use C<sv_derived_from> to verify
cb1a09d0 2851an inheritance relationship.
2852
ef50df4b 2853 int sv_isa (SV* sv, char* name)
cb1a09d0 2854
cb1a09d0 2855=item sv_isobject
2856
2857Returns a boolean indicating whether the SV is an RV pointing to a blessed
2858object. If the SV is not an RV, or if the object is not blessed, then this
2859will return false.
2860
ef50df4b 2861 int sv_isobject (SV* sv)
cb1a09d0 2862
e89caa19 2863=item SvIV
2864
2865Returns the integer which is in the SV.
2866
9abd00ed 2867 int SvIV (SV* sv)
a59f3522 2868
cb1a09d0 2869=item SvIVX
2870
2871Returns the integer which is stored in the SV.
2872
e89caa19 2873 int SvIVX (SV* sv)
cb1a09d0 2874
2875=item SvLEN
2876
2877Returns the size of the string buffer in the SV. See C<SvCUR>.
2878
e89caa19 2879 int SvLEN (SV* sv)
cb1a09d0 2880
5fb8527f 2881=item sv_len
2882
2883Returns the length of the string in the SV. Use C<SvCUR>.
2884
ef50df4b 2885 STRLEN sv_len (SV* sv)
5fb8527f 2886
cb1a09d0 2887=item sv_magic
2888
2889Adds magic to an SV.
2890
ef50df4b 2891 void sv_magic (SV* sv, SV* obj, int how, char* name, I32 namlen)
cb1a09d0 2892
2893=item sv_mortalcopy
2894
2895Creates a new SV which is a copy of the original SV. The new SV is marked
5f05dabc 2896as mortal.
cb1a09d0 2897
ef50df4b 2898 SV* sv_mortalcopy (SV* oldsv)
cb1a09d0 2899
cb1a09d0 2900=item sv_newmortal
2901
5f05dabc 2902Creates a new SV which is mortal. The reference count of the SV is set to 1.
cb1a09d0 2903
ef50df4b 2904 SV* sv_newmortal (void)
cb1a09d0 2905
cb1a09d0 2906=item SvNIOK
2907
2908Returns a boolean indicating whether the SV contains a number, integer or
2909double.
2910
e89caa19 2911 int SvNIOK (SV* SV)
cb1a09d0 2912
2913=item SvNIOK_off
2914
2915Unsets the NV/IV status of an SV.
2916
e89caa19 2917 void SvNIOK_off (SV* sv)
cb1a09d0 2918
2919=item SvNIOKp
2920
2921Returns a boolean indicating whether the SV contains a number, integer or
2922double. Checks the B<private> setting. Use C<SvNIOK>.
2923
e89caa19 2924 int SvNIOKp (SV* SV)
2925
9cde0e7f 2926=item PL_sv_no
e89caa19 2927
9cde0e7f 2928This is the C<false> SV. See C<PL_sv_yes>. Always refer to this as C<&PL_sv_no>.
cb1a09d0 2929
2930=item SvNOK
2931
2932Returns a boolean indicating whether the SV contains a double.
2933
e89caa19 2934 int SvNOK (SV* SV)
cb1a09d0 2935
2936=item SvNOK_off
2937
2938Unsets the NV status of an SV.
2939
e89caa19 2940 void SvNOK_off (SV* sv)
cb1a09d0 2941
2942=item SvNOK_on
2943
2944Tells an SV that it is a double.
2945
e89caa19 2946 void SvNOK_on (SV* sv)
cb1a09d0 2947
5fb8527f 2948=item SvNOK_only
2949
2950Tells an SV that it is a double and disables all other OK bits.
2951
e89caa19 2952 void SvNOK_only (SV* sv)
5fb8527f 2953
cb1a09d0 2954=item SvNOKp
2955
2956Returns a boolean indicating whether the SV contains a double. Checks the
2957B<private> setting. Use C<SvNOK>.
2958
e89caa19 2959 int SvNOKp (SV* SV)
cb1a09d0 2960
2961=item SvNV
2962
2963Returns the double which is stored in the SV.
2964
e89caa19 2965 double SvNV (SV* sv)
cb1a09d0 2966
2967=item SvNVX
2968
2969Returns the double which is stored in the SV.
2970
e89caa19 2971 double SvNVX (SV* sv)
2972
2973=item SvOK
2974
2975Returns a boolean indicating whether the value is an SV.
2976
2977 int SvOK (SV* sv)
2978
2979=item SvOOK
2980
2981Returns a boolean indicating whether the SvIVX is a valid offset value
2982for the SvPVX. This hack is used internally to speed up removal of
2983characters from the beginning of a SvPV. When SvOOK is true, then the
2984start of the allocated string buffer is really (SvPVX - SvIVX).
2985
9cde0e7f 2986 int SvOOK(SV* sv)
cb1a09d0 2987
2988=item SvPOK
2989
2990Returns a boolean indicating whether the SV contains a character string.
2991
e89caa19 2992 int SvPOK (SV* SV)
cb1a09d0 2993
2994=item SvPOK_off
2995
2996Unsets the PV status of an SV.
2997
e89caa19 2998 void SvPOK_off (SV* sv)
cb1a09d0 2999
3000=item SvPOK_on
3001
3002Tells an SV that it is a string.
3003
e89caa19 3004 void SvPOK_on (SV* sv)
cb1a09d0 3005
5fb8527f 3006=item SvPOK_only
3007
3008Tells an SV that it is a string and disables all other OK bits.
3009
e89caa19 3010 void SvPOK_only (SV* sv)
5fb8527f 3011
cb1a09d0 3012=item SvPOKp
3013
3014Returns a boolean indicating whether the SV contains a character string.
3015Checks the B<private> setting. Use C<SvPOK>.
3016
e89caa19 3017 int SvPOKp (SV* SV)
cb1a09d0 3018
3019=item SvPV
3020
3021Returns a pointer to the string in the SV, or a stringified form of the SV
2d8e6c8d 3022if the SV does not contain a string. Handles 'get' magic.
cb1a09d0 3023
e89caa19 3024 char* SvPV (SV* sv, int len )
3025
3026=item SvPV_force
3027
3028Like <SvPV> but will force the SV into becoming a string (SvPOK). You
3029want force if you are going to update the SvPVX directly.
3030
3031 char* SvPV_force(SV* sv, int len)
3032
cb1a09d0 3033
3034=item SvPVX
3035
3036Returns a pointer to the string in the SV. The SV must contain a string.
3037
e89caa19 3038 char* SvPVX (SV* sv)
cb1a09d0 3039
3040=item SvREFCNT
3041
5f05dabc 3042Returns the value of the object's reference count.
cb1a09d0 3043
e89caa19 3044 int SvREFCNT (SV* sv)
cb1a09d0 3045
3046=item SvREFCNT_dec
3047
5f05dabc 3048Decrements the reference count of the given SV.
cb1a09d0 3049
e89caa19 3050 void SvREFCNT_dec (SV* sv)
cb1a09d0 3051
3052=item SvREFCNT_inc
3053
5f05dabc 3054Increments the reference count of the given SV.
cb1a09d0 3055
e89caa19 3056 void SvREFCNT_inc (SV* sv)
cb1a09d0 3057
3058=item SvROK
3059
3060Tests if the SV is an RV.
3061
e89caa19 3062 int SvROK (SV* sv)
cb1a09d0 3063
3064=item SvROK_off
3065
3066Unsets the RV status of an SV.
3067
e89caa19 3068 void SvROK_off (SV* sv)
cb1a09d0 3069
3070=item SvROK_on
3071
3072Tells an SV that it is an RV.
3073
e89caa19 3074 void SvROK_on (SV* sv)
cb1a09d0 3075
3076=item SvRV
3077
3078Dereferences an RV to return the SV.
3079
ef50df4b 3080 SV* SvRV (SV* sv)
cb1a09d0 3081
189b2af5 3082=item SvSETMAGIC
3083
3084Invokes C<mg_set> on an SV if it has 'set' magic. This macro evaluates
3085its argument more than once.
3086
3087 void SvSETMAGIC( SV *sv )
3088
ef50df4b 3089=item sv_setiv
189b2af5 3090
ef50df4b 3091Copies an integer into the given SV. Does not handle 'set' magic.
3092See C<sv_setiv_mg>.
189b2af5 3093
ef50df4b 3094 void sv_setiv (SV* sv, IV num)
189b2af5 3095
ef50df4b 3096=item sv_setiv_mg
189b2af5 3097
ef50df4b 3098Like C<sv_setiv>, but also handles 'set' magic.
189b2af5 3099
ef50df4b 3100 void sv_setiv_mg (SV* sv, IV num)
189b2af5 3101
ef50df4b 3102=item sv_setnv
189b2af5 3103
ef50df4b 3104Copies a double into the given SV. Does not handle 'set' magic.
3105See C<sv_setnv_mg>.
189b2af5 3106
ef50df4b 3107 void sv_setnv (SV* sv, double num)
189b2af5 3108
ef50df4b 3109=item sv_setnv_mg
189b2af5 3110
ef50df4b 3111Like C<sv_setnv>, but also handles 'set' magic.
189b2af5 3112
ef50df4b 3113 void sv_setnv_mg (SV* sv, double num)
189b2af5 3114
ef50df4b 3115=item sv_setpv
189b2af5 3116
ef50df4b 3117Copies a string into an SV. The string must be null-terminated.
3118Does not handle 'set' magic. See C<sv_setpv_mg>.
189b2af5 3119
ef50df4b 3120 void sv_setpv (SV* sv, char* ptr)
189b2af5 3121
ef50df4b 3122=item sv_setpv_mg
189b2af5 3123
ef50df4b 3124Like C<sv_setpv>, but also handles 'set' magic.
189b2af5 3125
ef50df4b 3126 void sv_setpv_mg (SV* sv, char* ptr)
189b2af5 3127
ef50df4b 3128=item sv_setpviv
cb1a09d0 3129
ef50df4b 3130Copies an integer into the given SV, also updating its string value.
3131Does not handle 'set' magic. See C<sv_setpviv_mg>.
cb1a09d0 3132
ef50df4b 3133 void sv_setpviv (SV* sv, IV num)
cb1a09d0 3134
ef50df4b 3135=item sv_setpviv_mg
cb1a09d0 3136
ef50df4b 3137Like C<sv_setpviv>, but also handles 'set' magic.
cb1a09d0 3138
ef50df4b 3139 void sv_setpviv_mg (SV* sv, IV num)
cb1a09d0 3140
ef50df4b 3141=item sv_setpvn
cb1a09d0 3142
ef50df4b 3143Copies a string into an SV. The C<len> parameter indicates the number of
3144bytes to be copied. Does not handle 'set' magic. See C<sv_setpvn_mg>.
cb1a09d0 3145
ef50df4b 3146 void sv_setpvn (SV* sv, char* ptr, STRLEN len)
cb1a09d0 3147
ef50df4b 3148=item sv_setpvn_mg
189b2af5 3149
ef50df4b 3150Like C<sv_setpvn>, but also handles 'set' magic.
189b2af5 3151
ef50df4b 3152 void sv_setpvn_mg (SV* sv, char* ptr, STRLEN len)
189b2af5 3153
ef50df4b 3154=item sv_setpvf
cb1a09d0 3155
ef50df4b 3156Processes its arguments like C<sprintf> and sets an SV to the formatted
3157output. Does not handle 'set' magic. See C<sv_setpvf_mg>.
cb1a09d0 3158
ef50df4b 3159 void sv_setpvf (SV* sv, const char* pat, ...)
cb1a09d0 3160
ef50df4b 3161=item sv_setpvf_mg
46fc3d4c 3162
ef50df4b 3163Like C<sv_setpvf>, but also handles 'set' magic.
46fc3d4c 3164
ef50df4b 3165 void sv_setpvf_mg (SV* sv, const char* pat, ...)
46fc3d4c 3166
cb1a09d0 3167=item sv_setref_iv
3168
5fb8527f 3169Copies an integer into a new SV, optionally blessing the SV. The C<rv>
3170argument will be upgraded to an RV. That RV will be modified to point to
3171the new SV. The C<classname> argument indicates the package for the
3172blessing. Set C<classname> to C<Nullch> to avoid the blessing. The new SV
5f05dabc 3173will be returned and will have a reference count of 1.
cb1a09d0 3174
ef50df4b 3175 SV* sv_setref_iv (SV *rv, char *classname, IV iv)
cb1a09d0 3176
3177=item sv_setref_nv
3178
5fb8527f 3179Copies a double into a new SV, optionally blessing the SV. The C<rv>
3180argument will be upgraded to an RV. That RV will be modified to point to
3181the new SV. The C<classname> argument indicates the package for the
3182blessing. Set C<classname> to C<Nullch> to avoid the blessing. The new SV
5f05dabc 3183will be returned and will have a reference count of 1.
cb1a09d0 3184
ef50df4b 3185 SV* sv_setref_nv (SV *rv, char *classname, double nv)
cb1a09d0 3186
3187=item sv_setref_pv
3188
5fb8527f 3189Copies a pointer into a new SV, optionally blessing the SV. The C<rv>
3190argument will be upgraded to an RV. That RV will be modified to point to
9cde0e7f 3191the new SV. If the C<pv> argument is NULL then C<PL_sv_undef> will be placed
5fb8527f 3192into the SV. The C<classname> argument indicates the package for the
3193blessing. Set C<classname> to C<Nullch> to avoid the blessing. The new SV
5f05dabc 3194will be returned and will have a reference count of 1.
cb1a09d0 3195
ef50df4b 3196 SV* sv_setref_pv (SV *rv, char *classname, void* pv)
cb1a09d0 3197
3198Do not use with integral Perl types such as HV, AV, SV, CV, because those
3199objects will become corrupted by the pointer copy process.
3200
3201Note that C<sv_setref_pvn> copies the string while this copies the pointer.
3202
3203=item sv_setref_pvn
3204
5fb8527f 3205Copies a string into a new SV, optionally blessing the SV. The length of the
3206string must be specified with C<n>. The C<rv> argument will be upgraded to
3207an RV. That RV will be modified to point to the new SV. The C<classname>
cb1a09d0 3208argument indicates the package for the blessing. Set C<classname> to
3209C<Nullch> to avoid the blessing. The new SV will be returned and will have
5f05dabc 3210a reference count of 1.
cb1a09d0 3211
ef50df4b 3212 SV* sv_setref_pvn (SV *rv, char *classname, char* pv, I32 n)
cb1a09d0 3213
3214Note that C<sv_setref_pv> copies the pointer while this copies the string.
3215
189b2af5 3216=item SvSetSV
3217
3218Calls C<sv_setsv> if dsv is not the same as ssv. May evaluate arguments
3219more than once.
3220
3221 void SvSetSV (SV* dsv, SV* ssv)
3222
3223=item SvSetSV_nosteal
3224
3225Calls a non-destructive version of C<sv_setsv> if dsv is not the same as ssv.
3226May evaluate arguments more than once.
3227
3228 void SvSetSV_nosteal (SV* dsv, SV* ssv)
3229
cb1a09d0 3230=item sv_setsv
3231
3232Copies the contents of the source SV C<ssv> into the destination SV C<dsv>.
189b2af5 3233The source SV may be destroyed if it is mortal. Does not handle 'set' magic.
ef50df4b 3234See the macro forms C<SvSetSV>, C<SvSetSV_nosteal> and C<sv_setsv_mg>.
3235
3236 void sv_setsv (SV* dsv, SV* ssv)
3237
3238=item sv_setsv_mg
3239
3240Like C<sv_setsv>, but also handles 'set' magic.
cb1a09d0 3241
ef50df4b 3242 void sv_setsv_mg (SV* dsv, SV* ssv)
cb1a09d0 3243
189b2af5 3244=item sv_setuv
3245
3246Copies an unsigned integer into the given SV. Does not handle 'set' magic.
ef50df4b 3247See C<sv_setuv_mg>.
189b2af5 3248
ef50df4b 3249 void sv_setuv (SV* sv, UV num)
3250
3251=item sv_setuv_mg
3252
3253Like C<sv_setuv>, but also handles 'set' magic.
3254
3255 void sv_setuv_mg (SV* sv, UV num)
189b2af5 3256
cb1a09d0 3257=item SvSTASH
3258
3259Returns the stash of the SV.
3260
e89caa19 3261 HV* SvSTASH (SV* sv)
3262
3263=item SvTAINT
3264
3265Taints an SV if tainting is enabled
3266
3267 void SvTAINT (SV* sv)
3268
3269=item SvTAINTED
3270
3271Checks to see if an SV is tainted. Returns TRUE if it is, FALSE if not.
3272
3273 int SvTAINTED (SV* sv)
3274
3275=item SvTAINTED_off
3276
3277Untaints an SV. Be I<very> careful with this routine, as it short-circuits
3278some of Perl's fundamental security features. XS module authors should
3279not use this function unless they fully understand all the implications
3280of unconditionally untainting the value. Untainting should be done in
3281the standard perl fashion, via a carefully crafted regexp, rather than
3282directly untainting variables.
3283
3284 void SvTAINTED_off (SV* sv)
3285
3286=item SvTAINTED_on
3287
3288Marks an SV as tainted.
3289
3290 void SvTAINTED_on (SV* sv)
cb1a09d0 3291
3292=item SVt_IV
3293
3294Integer type flag for scalars. See C<svtype>.
3295
3296=item SVt_PV
3297
3298Pointer type flag for scalars. See C<svtype>.
3299
3300=item SVt_PVAV
3301
3302Type flag for arrays. See C<svtype>.
3303
3304=item SVt_PVCV
3305
3306Type flag for code refs. See C<svtype>.
3307
3308=item SVt_PVHV
3309
3310Type flag for hashes. See C<svtype>.
3311
3312=item SVt_PVMG
3313
3314Type flag for blessed scalars. See C<svtype>.
3315
3316=item SVt_NV
3317
3318Double type flag for scalars. See C<svtype>.
3319
3320=item SvTRUE
3321
3322Returns a boolean indicating whether Perl would evaluate the SV as true or
189b2af5 3323false, defined or undefined. Does not handle 'get' magic.
cb1a09d0 3324
e89caa19 3325 int SvTRUE (SV* sv)
cb1a09d0 3326
3327=item SvTYPE
3328
3329Returns the type of the SV. See C<svtype>.
3330
3331 svtype SvTYPE (SV* sv)
3332
3333=item svtype
3334
3335An enum of flags for Perl types. These are found in the file B<sv.h> in the
3336C<svtype> enum. Test these flags with the C<SvTYPE> macro.
3337
9cde0e7f 3338=item PL_sv_undef
cb1a09d0 3339
9cde0e7f 3340This is the C<undef> SV. Always refer to this as C<&PL_sv_undef>.
cb1a09d0 3341
5fb8527f 3342=item sv_unref
3343
07fa94a1 3344Unsets the RV status of the SV, and decrements the reference count of
3345whatever was being referenced by the RV. This can almost be thought of
3346as a reversal of C<newSVrv>. See C<SvROK_off>.
5fb8527f 3347
ef50df4b 3348 void sv_unref (SV* sv)
189b2af5 3349
e89caa19 3350=item SvUPGRADE
3351
3352Used to upgrade an SV to a more complex form. Uses C<sv_upgrade> to perform
3353the upgrade if necessary. See C<svtype>.
3354
3355 bool SvUPGRADE (SV* sv, svtype mt)
3356
3357=item sv_upgrade
3358
3359Upgrade an SV to a more complex form. Use C<SvUPGRADE>. See C<svtype>.
3360
cb1a09d0 3361=item sv_usepvn
3362
3363Tells an SV to use C<ptr> to find its string value. Normally the string is
5fb8527f 3364stored inside the SV but sv_usepvn allows the SV to use an outside string.
3365The C<ptr> should point to memory that was allocated by C<malloc>. The
cb1a09d0 3366string length, C<len>, must be supplied. This function will realloc the
3367memory pointed to by C<ptr>, so that pointer should not be freed or used by
189b2af5 3368the programmer after giving it to sv_usepvn. Does not handle 'set' magic.
ef50df4b 3369See C<sv_usepvn_mg>.
3370
3371 void sv_usepvn (SV* sv, char* ptr, STRLEN len)
3372
3373=item sv_usepvn_mg
3374
3375Like C<sv_usepvn>, but also handles 'set' magic.
cb1a09d0 3376
ef50df4b 3377 void sv_usepvn_mg (SV* sv, char* ptr, STRLEN len)
cb1a09d0 3378
9abd00ed 3379=item sv_vcatpvfn(sv, pat, patlen, args, svargs, svmax, used_locale)
3380
3381Processes its arguments like C<vsprintf> and appends the formatted output
3382to an SV. Uses an array of SVs if the C style variable argument list is
3383missing (NULL). Indicates if locale information has been used for formatting.
3384
3385 void sv_catpvfn _((SV* sv, const char* pat, STRLEN patlen,
3386 va_list *args, SV **svargs, I32 svmax,
3387 bool *used_locale));
3388
3389=item sv_vsetpvfn(sv, pat, patlen, args, svargs, svmax, used_locale)
3390
3391Works like C<vcatpvfn> but copies the text into the SV instead of
3392appending it.
3393
3394 void sv_setpvfn _((SV* sv, const char* pat, STRLEN patlen,
3395 va_list *args, SV **svargs, I32 svmax,
3396 bool *used_locale));
3397
e89caa19 3398=item SvUV
3399
3400Returns the unsigned integer which is in the SV.
3401
3402 UV SvUV(SV* sv)
3403
3404=item SvUVX
3405
3406Returns the unsigned integer which is stored in the SV.
3407
3408 UV SvUVX(SV* sv)
3409
9cde0e7f 3410=item PL_sv_yes
cb1a09d0 3411
9cde0e7f 3412This is the C<true> SV. See C<PL_sv_no>. Always refer to this as C<&PL_sv_yes>.
cb1a09d0 3413
3414=item THIS
3415
3416Variable which is setup by C<xsubpp> to designate the object in a C++ XSUB.
3417This is always the proper type for the C++ object. See C<CLASS> and
5fb8527f 3418L<perlxs/"Using XS With C++">.
cb1a09d0 3419
3420=item toLOWER
3421
3422Converts the specified character to lowercase.
3423
e89caa19 3424 int toLOWER (char c)
cb1a09d0 3425
3426=item toUPPER
3427
3428Converts the specified character to uppercase.
3429
e89caa19 3430 int toUPPER (char c)
cb1a09d0 3431
3432=item warn
3433
3434This is the XSUB-writer's interface to Perl's C<warn> function. Use this
3435function the same way you use the C C<printf> function. See C<croak()>.
3436
3437=item XPUSHi
3438
189b2af5 3439Push an integer onto the stack, extending the stack if necessary. Handles
3440'set' magic. See C<PUSHi>.
cb1a09d0 3441
3442 XPUSHi(int d)
3443
3444=item XPUSHn
3445
189b2af5 3446Push a double onto the stack, extending the stack if necessary. Handles 'set'
3447magic. See C<PUSHn>.
cb1a09d0 3448
3449 XPUSHn(double d)
3450
3451=item XPUSHp
3452
3453Push a string onto the stack, extending the stack if necessary. The C<len>
189b2af5 3454indicates the length of the string. Handles 'set' magic. See C<PUSHp>.
cb1a09d0 3455
3456 XPUSHp(char *c, int len)
3457
3458=item XPUSHs
3459
189b2af5 3460Push an SV onto the stack, extending the stack if necessary. Does not
3461handle 'set' magic. See C<PUSHs>.
cb1a09d0 3462
3463 XPUSHs(sv)
3464
e89caa19 3465=item XPUSHu
3466
3467Push an unsigned integer onto the stack, extending the stack if
3468necessary. See C<PUSHu>.
3469
5fb8527f 3470=item XS
3471
3472Macro to declare an XSUB and its C parameter list. This is handled by
3473C<xsubpp>.
3474
cb1a09d0 3475=item XSRETURN
3476
3477Return from XSUB, indicating number of items on the stack. This is usually
3478handled by C<xsubpp>.
3479
ef50df4b 3480 XSRETURN(int x)
cb1a09d0 3481
3482=item XSRETURN_EMPTY
3483
5fb8527f 3484Return an empty list from an XSUB immediately.
cb1a09d0 3485
3486 XSRETURN_EMPTY;
3487
5fb8527f 3488=item XSRETURN_IV
3489
3490Return an integer from an XSUB immediately. Uses C<XST_mIV>.
3491
ef50df4b 3492 XSRETURN_IV(IV v)
5fb8527f 3493
cb1a09d0 3494=item XSRETURN_NO
3495
9cde0e7f 3496Return C<&PL_sv_no> from an XSUB immediately. Uses C<XST_mNO>.
cb1a09d0 3497
3498 XSRETURN_NO;
3499
5fb8527f 3500=item XSRETURN_NV
3501
3502Return an double from an XSUB immediately. Uses C<XST_mNV>.
3503
ef50df4b 3504 XSRETURN_NV(NV v)
5fb8527f 3505
3506=item XSRETURN_PV
3507
3508Return a copy of a string from an XSUB immediately. Uses C<XST_mPV>.
3509
ef50df4b 3510 XSRETURN_PV(char *v)
5fb8527f 3511
cb1a09d0 3512=item XSRETURN_UNDEF
3513
9cde0e7f 3514Return C<&PL_sv_undef> from an XSUB immediately. Uses C<XST_mUNDEF>.
cb1a09d0 3515
3516 XSRETURN_UNDEF;
3517
3518=item XSRETURN_YES
3519
9cde0e7f 3520Return C<&PL_sv_yes> from an XSUB immediately. Uses C<XST_mYES>.
cb1a09d0 3521
3522 XSRETURN_YES;
3523
5fb8527f 3524=item XST_mIV
3525
3526Place an integer into the specified position C<i> on the stack. The value is
3527stored in a new mortal SV.
3528
ef50df4b 3529 XST_mIV( int i, IV v )
5fb8527f 3530
3531=item XST_mNV
3532
3533Place a double into the specified position C<i> on the stack. The value is
3534stored in a new mortal SV.
3535
ef50df4b 3536 XST_mNV( int i, NV v )
5fb8527f 3537
3538=item XST_mNO
3539
9cde0e7f 3540Place C<&PL_sv_no> into the specified position C<i> on the stack.
5fb8527f 3541
ef50df4b 3542 XST_mNO( int i )
5fb8527f 3543
3544=item XST_mPV
3545
3546Place a copy of a string into the specified position C<i> on the stack. The
3547value is stored in a new mortal SV.
3548
ef50df4b 3549 XST_mPV( int i, char *v )
5fb8527f 3550
3551=item XST_mUNDEF
3552
9cde0e7f 3553Place C<&PL_sv_undef> into the specified position C<i> on the stack.
5fb8527f 3554
ef50df4b 3555 XST_mUNDEF( int i )
5fb8527f 3556
3557=item XST_mYES
3558
9cde0e7f 3559Place C<&PL_sv_yes> into the specified position C<i> on the stack.
5fb8527f 3560
ef50df4b 3561 XST_mYES( int i )
5fb8527f 3562
3563=item XS_VERSION
3564
3565The version identifier for an XS module. This is usually handled
3566automatically by C<ExtUtils::MakeMaker>. See C<XS_VERSION_BOOTCHECK>.
3567
3568=item XS_VERSION_BOOTCHECK
3569
3570Macro to verify that a PM module's $VERSION variable matches the XS module's
3571C<XS_VERSION> variable. This is usually handled automatically by
3572C<xsubpp>. See L<perlxs/"The VERSIONCHECK: Keyword">.
3573
cb1a09d0 3574=item Zero
3575
3576The XSUB-writer's interface to the C C<memzero> function. The C<d> is the
3577destination, C<n> is the number of items, and C<t> is the type.
3578
e89caa19 3579 void Zero( d, n, t )
cb1a09d0 3580
3581=back
3582
9cecd9f2 3583=head1 AUTHORS
cb1a09d0 3584
9cecd9f2 3585Until May 1997, this document was maintained by Jeff Okamoto
3586<okamoto@corp.hp.com>. It is now maintained as part of Perl itself.
cb1a09d0 3587
3588With lots of help and suggestions from Dean Roehrich, Malcolm Beattie,
3589Andreas Koenig, Paul Hudson, Ilya Zakharevich, Paul Marquess, Neil
189b2af5 3590Bowers, Matthew Green, Tim Bunce, Spider Boardman, Ulrich Pfeifer,
3591Stephen McCamant, and Gurusamy Sarathy.
cb1a09d0 3592
9cecd9f2 3593API Listing originally by Dean Roehrich <roehrich@cray.com>.