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