Storable 2.06 (was Re: Bug in ext/Storable/t/integer.t)
[p5sagit/p5-mst-13.2.git] / pod / perlintern.pod
CommitLineData
954c1994 1=head1 NAME
2
1c846c1f 3perlintern - autogenerated documentation of purely B<internal>
954c1994 4 Perl functions
5
6=head1 DESCRIPTION
7
1c846c1f 8This file is the autogenerated documentation of functions in the
4375e838 9Perl interpreter that are documented using Perl's internal documentation
1c846c1f 10format but are not marked as part of the Perl API. In other words,
954c1994 11B<they are not for use in extensions>!
12
a8586c98 13
dd2155a4 14=head1 Functions in file pad.h
15
16
17=over 8
18
19=item CX_CURPAD_SAVE
20
21Save the current pad in the given context block structure.
22
23 void CX_CURPAD_SAVE(struct context)
24
25=for hackers
26Found in file pad.h
27
28=item CX_CURPAD_SV
29
30Access the SV at offset po in the saved current pad in the given
31context block structure (can be used as an lvalue).
32
33 PAD * CX_CURPAD_SV(struct context, PADOFFSET po)
34
35=for hackers
36Found in file pad.h
37
38=item PAD_BASE_SV
39
40Get the value from slot C<po> in the base (DEPTH=1) pad of a padlist
41
42 SV * PAD_BASE_SV (PADLIST padlist, PADOFFSET po)
43
44=for hackers
45Found in file pad.h
46
47=item PAD_CLONE_VARS
48
49|CLONE_PARAMS* param
50Clone the state variables associated with running and compiling pads.
51
52 void PAD_CLONE_VARS(PerlInterpreter *proto_perl \)
53
54=for hackers
55Found in file pad.h
56
57=item PAD_COMPNAME_FLAGS
58
59Return the flags for the current compiling pad name
60at offset C<po>. Assumes a valid slot entry.
61
62 U32 PAD_COMPNAME_FLAGS(PADOFFSET po)
63
64=for hackers
65Found in file pad.h
66
67=item PAD_COMPNAME_GEN
68
69The generation number of the name at offset C<po> in the current
70compiling pad (lvalue). Note that C<SvCUR> is hijacked for this purpose.
71
72 STRLEN PAD_COMPNAME_GEN(PADOFFSET po)
73
74=for hackers
75Found in file pad.h
76
77=item PAD_COMPNAME_OURSTASH
78
79Return the stash associated with an C<our> variable.
80Assumes the slot entry is a valid C<our> lexical.
81
82 HV * PAD_COMPNAME_OURSTASH(PADOFFSET po)
83
84=for hackers
85Found in file pad.h
86
87=item PAD_COMPNAME_PV
88
89Return the name of the current compiling pad name
90at offset C<po>. Assumes a valid slot entry.
91
92 char * PAD_COMPNAME_PV(PADOFFSET po)
93
94=for hackers
95Found in file pad.h
96
97=item PAD_COMPNAME_TYPE
98
99Return the type (stash) of the current compiling pad name at offset
100C<po>. Must be a valid name. Returns null if not typed.
101
102 HV * PAD_COMPNAME_TYPE(PADOFFSET po)
103
104=for hackers
105Found in file pad.h
106
107=item PAD_DUP
108
109Clone a padlist.
110
111 void PAD_DUP(PADLIST dstpad, PADLIST srcpad, CLONE_PARAMS* param)
112
113=for hackers
114Found in file pad.h
115
116=item PAD_SAVE_SETNULLPAD
117
118Save the current pad then set it to null.
119
120 void PAD_SAVE_SETNULLPAD()
121
122=for hackers
123Found in file pad.h
124
125=item PAD_SETSV
126
127Set the slot at offset C<po> in the current pad to C<sv>
128
129 SV * PAD_SETSV (PADOFFSET po, SV* sv)
130
131=for hackers
132Found in file pad.h
133
134=item PAD_SET_CUR
135
136Set the current pad to be pad C<n> in the padlist, saving
137the previous current pad.
138
139 void PAD_SET_CUR (PADLIST padlist, I32 n)
140
141=for hackers
142Found in file pad.h
143
144=item PAD_SV
145
146Get the value at offset C<po> in the current pad
147
148 void PAD_SV (PADOFFSET po)
149
150=for hackers
151Found in file pad.h
152
153=item PAD_SVl
154
155Lightweight and lvalue version of C<PAD_SV>.
156Get or set the value at offset C<po> in the current pad.
157Unlike C<PAD_SV>, does not print diagnostics with -DX.
158For internal use only.
159
160 SV * PAD_SVl (PADOFFSET po)
161
162=for hackers
163Found in file pad.h
164
165=item PAD_UPDATE_CURPAD
166
167Set PL_curpad from the value of PL_comppad.
168
169 void PAD_UPDATE_CURPAD()
170
171=for hackers
172Found in file pad.h
173
174=item SAVECLEARSV
175
176Clear the pointed to pad value on scope exit. (ie the runtime action of 'my')
177
178 void SAVECLEARSV (SV **svp)
179
180=for hackers
181Found in file pad.h
182
183=item SAVECOMPPAD
184
185save PL_comppad and PL_curpad
186
187 void SAVECOMPPAD()
188
189=for hackers
190Found in file pad.h
191
192=item SAVEFREEOP
193
194Free the op on scope exit. At the same time, reset PL_curpad
195
196
197
198
199 void SAVEFREEOP (OP *o)
200
201=for hackers
202Found in file pad.h
203
204=item SAVEPADSV
205
206Save a pad slot (used to restore after an iteration)
207
208 void SAVEPADSV (PADOFFSET po)
209
210=for hackers
211Found in file pad.h
212
213
214=back
215
a4f1a029 216=head1 Global Variables
78f9721b 217
a4f1a029 218=over 8
78f9721b 219
2eb25c99 220=item PL_DBsingle
221
222When Perl is run in debugging mode, with the B<-d> switch, this SV is a
223boolean which indicates whether subs are being single-stepped.
224Single-stepping is automatically turned on after every step. This is the C
225variable which corresponds to Perl's $DB::single variable. See
226C<PL_DBsub>.
227
228 SV * PL_DBsingle
229
230=for hackers
231Found in file intrpvar.h
232
233=item PL_DBsub
234
235When Perl is run in debugging mode, with the B<-d> switch, this GV contains
236the SV which holds the name of the sub being debugged. This is the C
237variable which corresponds to Perl's $DB::sub variable. See
238C<PL_DBsingle>.
239
240 GV * PL_DBsub
241
242=for hackers
243Found in file intrpvar.h
244
245=item PL_DBtrace
246
247Trace variable used when Perl is run in debugging mode, with the B<-d>
248switch. This is the C variable which corresponds to Perl's $DB::trace
249variable. See C<PL_DBsingle>.
250
251 SV * PL_DBtrace
252
253=for hackers
254Found in file intrpvar.h
255
256=item PL_dowarn
257
258The C variable which corresponds to Perl's $^W warning variable.
259
260 bool PL_dowarn
261
262=for hackers
263Found in file intrpvar.h
264
265=item PL_last_in_gv
266
267The GV which was last used for a filehandle input operation. (C<< <FH> >>)
268
269 GV* PL_last_in_gv
270
271=for hackers
272Found in file thrdvar.h
273
274=item PL_ofs_sv
275
276The output field separator - C<$,> in Perl space.
277
278 SV* PL_ofs_sv
279
280=for hackers
281Found in file thrdvar.h
282
283=item PL_rs
284
285The input record separator - C<$/> in Perl space.
286
287 SV* PL_rs
288
289=for hackers
290Found in file thrdvar.h
291
645c22ef 292
a4f1a029 293=back
645c22ef 294
a4f1a029 295=head1 GV Functions
296
297=over 8
298
299=item is_gv_magical
300
301Returns C<TRUE> if given the name of a magical GV.
302
303Currently only useful internally when determining if a GV should be
304created even in rvalue contexts.
305
306C<flags> is not used at present but available for future extension to
307allow selecting particular classes of magical variable.
308
309 bool is_gv_magical(char *name, STRLEN len, U32 flags)
645c22ef 310
311=for hackers
a4f1a029 312Found in file gv.c
313
314
315=back
316
317=head1 IO Functions
318
319=over 8
645c22ef 320
a8586c98 321=item start_glob
322
323Function called by C<do_readline> to spawn a glob (or do the glob inside
324perl on VMS). This code used to be inline, but now perl uses C<File::Glob>
bd16a5f0 325this glob starter is only used by miniperl during the build process.
a8586c98 326Moving it away shrinks pp_hot.c; shrinking pp_hot.c helps speed perl up.
327
328 PerlIO* start_glob(SV* pattern, IO *io)
329
330=for hackers
331Found in file doio.c
332
a4f1a029 333
334=back
335
336=head1 Pad Data Structures
337
338=over 8
339
340=item CvPADLIST
341
342CV's can have CvPADLIST(cv) set to point to an AV.
343
344For these purposes "forms" are a kind-of CV, eval""s are too (except they're
345not callable at will and are always thrown away after the eval"" is done
346executing).
347
348XSUBs don't have CvPADLIST set - dXSTARG fetches values from PL_curpad,
349but that is really the callers pad (a slot of which is allocated by
350every entersub).
351
352The CvPADLIST AV has does not have AvREAL set, so REFCNT of component items
353is managed "manual" (mostly in op.c) rather than normal av.c rules.
354The items in the AV are not SVs as for a normal AV, but other AVs:
355
3560'th Entry of the CvPADLIST is an AV which represents the "names" or rather
357the "static type information" for lexicals.
358
359The CvDEPTH'th entry of CvPADLIST AV is an AV which is the stack frame at that
360depth of recursion into the CV.
361The 0'th slot of a frame AV is an AV which is @_.
362other entries are storage for variables and op targets.
363
364During compilation:
365C<PL_comppad_name> is set the the the names AV.
366C<PL_comppad> is set the the frame AV for the frame CvDEPTH == 1.
367C<PL_curpad> is set the body of the frame AV (i.e. AvARRAY(PL_comppad)).
368
369Itterating over the names AV itterates over all possible pad
370items. Pad slots that are SVs_PADTMP (targets/GVs/constants) end up having
371&PL_sv_undef "names" (see pad_alloc()).
372
373Only my/our variable (SVs_PADMY/SVs_PADOUR) slots get valid names.
374The rest are op targets/GVs/constants which are statically allocated
375or resolved at compile time. These don't have names by which they
376can be looked up from Perl code at run time through eval"" like
377my/our variables can be. Since they can't be looked up by "name"
378but only by their index allocated at compile time (which is usually
379in PL_op->op_targ), wasting a name SV for them doesn't make sense.
380
381The SVs in the names AV have their PV being the name of the variable.
dd2155a4 382NV+1..IV inclusive is a range of cop_seq numbers for which the name is
383valid. For typed lexicals name SV is SVt_PVMG and SvSTASH points at the
384type. For C<our> lexicals, the type is SVt_PVGV, and GvSTASH points at the
385stash of the associated global (so that duplicate C<our> delarations in the
386same package can be detected). SvCUR is sometimes hijacked to
387store the generation number during compilation.
a4f1a029 388
389If SvFAKE is set on the name SV then slot in the frame AVs are
390a REFCNT'ed references to a lexical from "outside".
391
392If the 'name' is '&' the the corresponding entry in frame AV
393is a CV representing a possible closure.
394(SvFAKE and name of '&' is not a meaningful combination currently but could
395become so if C<my sub foo {}> is implemented.)
396
397 AV * CvPADLIST(CV *cv)
398
399=for hackers
dd2155a4 400Found in file pad.c
401
402=item cv_clone
403
404Clone a CV: make a new CV which points to the same code etc, but which
ad63d80f 405has a newly-created pad built by copying the prototype pad and capturing
dd2155a4 406any outer lexicals.
407
408 CV* cv_clone(CV* proto)
409
410=for hackers
411Found in file pad.c
412
413=item cv_dump
414
415dump the contents of a CV
416
417 void cv_dump(CV *cv, char *title)
418
419=for hackers
420Found in file pad.c
421
422=item do_dump_pad
423
424Dump the contents of a padlist
425
426 void do_dump_pad(I32 level, PerlIO *file, PADLIST *padlist, int full)
427
428=for hackers
429Found in file pad.c
430
431=item intro_my
432
433"Introduce" my variables to visible status.
434
435 U32 intro_my()
436
437=for hackers
438Found in file pad.c
439
440=item pad_add_anon
441
442Add an anon code entry to the current compiling pad
443
444 PADOFFSET pad_add_anon(SV* sv, OPCODE op_type)
445
446=for hackers
447Found in file pad.c
448
449=item pad_add_name
450
451Create a new name in the current pad at the specified offset.
452If C<typestash> is valid, the name is for a typed lexical; set the
453name's stash to that value.
454If C<ourstash> is valid, it's an our lexical, set the name's
455GvSTASH to that value
456
457Also, if the name is @.. or %.., create a new array or hash for that slot
458
459If fake, it means we're cloning an existing entry
460
461 PADOFFSET pad_add_name(char *name, HV* typestash, HV* ourstash, bool clone)
462
463=for hackers
464Found in file pad.c
465
466=item pad_alloc
467
468Allocate a new my or tmp pad entry. For a my, simply push a null SV onto
469the end of PL_comppad, but for a tmp, scan the pad from PL_padix upwards
470for a slot which has no name and and no active value.
471
472 PADOFFSET pad_alloc(I32 optype, U32 tmptype)
473
474=for hackers
475Found in file pad.c
476
477=item pad_block_start
478
479Update the pad compilation state variables on entry to a new block
480
481 void pad_block_start(int full)
482
483=for hackers
484Found in file pad.c
485
486=item pad_check_dup
487
488Check for duplicate declarations: report any of:
489 * a my in the current scope with the same name;
490 * an our (anywhere in the pad) with the same name and the same stash
491 as C<ourstash>
492C<is_our> indicates that the name to check is an 'our' declaration
493
dd2155a4 494 void pad_check_dup(char* name, bool is_our, HV* ourstash)
495
496=for hackers
497Found in file pad.c
498
499=item pad_findlex
500
501Find a named lexical anywhere in a chain of nested pads. Add fake entries
502in the inner pads if its found in an outer one.
503
504If flags == FINDLEX_NOSEARCH we don't bother searching outer contexts.
505
506 PADOFFSET pad_findlex(char* name, PADOFFSET newoff, U32 seq, CV* startcv, I32 cx_ix, I32 saweval, U32 flags)
507
508=for hackers
509Found in file pad.c
510
511=item pad_findmy
512
ad63d80f 513Given a lexical name, try to find its offset, first in the current pad,
dd2155a4 514or failing that, in the pads of any lexically enclosing subs (including
ad63d80f 515the complications introduced by eval). If the name is found in an outer pad,
516then a fake entry is added to the current pad.
dd2155a4 517Returns the offset in the current pad, or NOT_IN_PAD on failure.
518
519 PADOFFSET pad_findmy(char* name)
520
521=for hackers
522Found in file pad.c
523
524=item pad_fixup_inner_anons
525
526For any anon CVs in the pad, change CvOUTSIDE of that CV from
527old_cv to new_cv if necessary.
528
529 void pad_fixup_inner_anons(PADLIST *padlist, CV *old_cv, CV *new_cv)
530
531=for hackers
532Found in file pad.c
533
534=item pad_free
535
536Free the SV at offet po in the current pad.
537
538 void pad_free(PADOFFSET po)
539
540=for hackers
541Found in file pad.c
542
543=item pad_leavemy
544
545Cleanup at end of scope during compilation: set the max seq number for
546lexicals in this scope and warn of any lexicals that never got introduced.
547
548 void pad_leavemy()
549
550=for hackers
551Found in file pad.c
552
553=item pad_new
554
ad63d80f 555Create a new compiling padlist, saving and updating the various global
dd2155a4 556vars at the same time as creating the pad itself. The following flags
557can be OR'ed together:
558
559 padnew_CLONE this pad is for a cloned CV
560 padnew_SAVE save old globals
561 padnew_SAVESUB also save extra stuff for start of sub
562
563 PADLIST* pad_new(padnew_flags flags)
564
565=for hackers
566Found in file pad.c
567
568=item pad_push
569
570Push a new pad frame onto the padlist, unless there's already a pad at
571this depth, in which case don't bother creating a new one.
572If has_args is true, give the new pad an @_ in slot zero.
573
574 void pad_push(PADLIST *padlist, int depth, int has_args)
575
576=for hackers
577Found in file pad.c
578
579=item pad_reset
580
581Mark all the current temporaries for reuse
582
583 void pad_reset()
584
585=for hackers
586Found in file pad.c
587
588=item pad_setsv
589
590Set the entry at offset po in the current pad to sv.
591Use the macro PAD_SETSV() rather than calling this function directly.
592
593 void pad_setsv(PADOFFSET po, SV* sv)
594
595=for hackers
596Found in file pad.c
597
598=item pad_swipe
599
600Abandon the tmp in the current pad at offset po and replace with a
601new one.
602
603 void pad_swipe(PADOFFSET po, bool refadjust)
604
605=for hackers
606Found in file pad.c
607
608=item pad_tidy
609
610Tidy up a pad after we've finished compiling it:
611 * remove most stuff from the pads of anonsub prototypes;
612 * give it a @_;
613 * mark tmps as such.
614
615 void pad_tidy(padtidy_type type)
616
617=for hackers
618Found in file pad.c
619
620=item pad_undef
621
622Free the padlist associated with a CV.
623If parts of it happen to be current, we null the relevant
624PL_*pad* global vars so that we don't have any dangling references left.
625We also repoint the CvOUTSIDE of any about-to-be-orphaned
626inner subs to outercv.
627
628 void pad_undef(CV* cv, CV* outercv)
629
630=for hackers
631Found in file pad.c
a4f1a029 632
633
634=back
635
636=head1 Stack Manipulation Macros
637
638=over 8
639
640=item djSP
641
642Declare Just C<SP>. This is actually identical to C<dSP>, and declares
643a local copy of perl's stack pointer, available via the C<SP> macro.
644See C<SP>. (Available for backward source code compatibility with the
645old (Perl 5.005) thread model.)
646
647 djSP;
648
649=for hackers
650Found in file pp.h
651
652=item LVRET
653
654True if this op will be the return value of an lvalue subroutine
655
656=for hackers
657Found in file pp.h
658
659
660=back
661
662=head1 SV Manipulation Functions
663
664=over 8
665
666=item report_uninit
667
668Print appropriate "Use of uninitialized variable" warning
669
670 void report_uninit()
671
672=for hackers
673Found in file sv.c
674
645c22ef 675=item sv_add_arena
676
677Given a chunk of memory, link it to the head of the list of arenas,
678and split it into a list of free SVs.
679
680 void sv_add_arena(char* ptr, U32 size, U32 flags)
681
682=for hackers
683Found in file sv.c
684
685=item sv_clean_all
686
687Decrement the refcnt of each remaining SV, possibly triggering a
688cleanup. This function may have to be called multiple times to free
8fb26106 689SVs which are in complex self-referential hierarchies.
645c22ef 690
691 I32 sv_clean_all()
692
693=for hackers
694Found in file sv.c
695
696=item sv_clean_objs
697
698Attempt to destroy all objects not yet freed
699
700 void sv_clean_objs()
701
702=for hackers
703Found in file sv.c
704
705=item sv_free_arenas
706
707Deallocate the memory used by all arenas. Note that all the individual SV
708heads and bodies within the arenas must already have been freed.
709
710 void sv_free_arenas()
711
712=for hackers
713Found in file sv.c
714
a4f1a029 715
954c1994 716=back
717
718=head1 AUTHORS
719
1c846c1f 720The autodocumentation system was originally added to the Perl core by
721Benjamin Stuhl. Documentation is by whoever was kind enough to
954c1994 722document their functions.
723
724=head1 SEE ALSO
725
726perlguts(1), perlapi(1)
727