This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Fix documentation bug in using Socket's import tags :
[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
7dafbf52
DM
14=head1 CV reference counts and CvOUTSIDE
15
16=over 8
17
18=item CvWEAKOUTSIDE
19
20Each CV has a pointer, C<CvOUTSIDE()>, to its lexically enclosing
21CV (if any). Because pointers to anonymous sub prototypes are
22stored in C<&> pad slots, it is a possible to get a circular reference,
23with the parent pointing to the child and vice-versa. To avoid the
24ensuing memory leak, we do not increment the reference count of the CV
25pointed to by C<CvOUTSIDE> in the I<one specific instance> that the parent
26has a C<&> pad slot pointing back to us. In this case, we set the
27C<CvWEAKOUTSIDE> flag in the child. This allows us to determine under what
28circumstances we should decrement the refcount of the parent when freeing
29the child.
30
31There is a further complication with non-closure anonymous subs (ie those
32that do not refer to any lexicals outside that sub). In this case, the
33anonymous prototype is shared rather than being cloned. This has the
34consequence that the parent may be freed while there are still active
35children, eg
36
37 BEGIN { $a = sub { eval '$x' } }
38
39In this case, the BEGIN is freed immediately after execution since there
40are no active references to it: the anon sub prototype has
41C<CvWEAKOUTSIDE> set since it's not a closure, and $a points to the same
42CV, so it doesn't contribute to BEGIN's refcount either. When $a is
43executed, the C<eval '$x'> causes the chain of C<CvOUTSIDE>s to be followed,
44and the freed BEGIN is accessed.
45
46To avoid this, whenever a CV and its associated pad is freed, any
47C<&> entries in the pad are explicitly removed from the pad, and if the
48refcount of the pointed-to anon sub is still positive, then that
49child's C<CvOUTSIDE> is set to point to its grandparent. This will only
50occur in the single specific case of a non-closure anon prototype
51having one or more active references (such as C<$a> above).
52
53One other thing to consider is that a CV may be merely undefined
54rather than freed, eg C<undef &foo>. In this case, its refcount may
55not have reached zero, but we still delete its pad and its C<CvROOT> etc.
56Since various children may still have their C<CvOUTSIDE> pointing at this
57undefined CV, we keep its own C<CvOUTSIDE> for the time being, so that
58the chain of lexical scopes is unbroken. For example, the following
59should print 123:
60
61 my $x = 123;
62 sub tmp { sub { eval '$x' } }
63 my $a = tmp();
64 undef &tmp;
65 print $a->();
66
67 bool CvWEAKOUTSIDE(CV *cv)
68
69=for hackers
70Found in file cv.h
71
72
73=back
74
dd2155a4
DM
75=head1 Functions in file pad.h
76
77
78=over 8
79
80=item CX_CURPAD_SAVE
81
82Save the current pad in the given context block structure.
83
84 void CX_CURPAD_SAVE(struct context)
85
86=for hackers
87Found in file pad.h
88
89=item CX_CURPAD_SV
90
91Access the SV at offset po in the saved current pad in the given
92context block structure (can be used as an lvalue).
93
f3548bdc 94 SV * CX_CURPAD_SV(struct context, PADOFFSET po)
dd2155a4
DM
95
96=for hackers
97Found in file pad.h
98
99=item PAD_BASE_SV
100
101Get the value from slot C<po> in the base (DEPTH=1) pad of a padlist
102
103 SV * PAD_BASE_SV (PADLIST padlist, PADOFFSET po)
104
105=for hackers
106Found in file pad.h
107
108=item PAD_CLONE_VARS
109
110|CLONE_PARAMS* param
111Clone the state variables associated with running and compiling pads.
112
113 void PAD_CLONE_VARS(PerlInterpreter *proto_perl \)
114
115=for hackers
116Found in file pad.h
117
118=item PAD_COMPNAME_FLAGS
119
120Return the flags for the current compiling pad name
121at offset C<po>. Assumes a valid slot entry.
122
123 U32 PAD_COMPNAME_FLAGS(PADOFFSET po)
124
125=for hackers
126Found in file pad.h
127
128=item PAD_COMPNAME_GEN
129
130The generation number of the name at offset C<po> in the current
131compiling pad (lvalue). Note that C<SvCUR> is hijacked for this purpose.
132
133 STRLEN PAD_COMPNAME_GEN(PADOFFSET po)
134
135=for hackers
136Found in file pad.h
137
138=item PAD_COMPNAME_OURSTASH
139
140Return the stash associated with an C<our> variable.
141Assumes the slot entry is a valid C<our> lexical.
142
143 HV * PAD_COMPNAME_OURSTASH(PADOFFSET po)
144
145=for hackers
146Found in file pad.h
147
148=item PAD_COMPNAME_PV
149
150Return the name of the current compiling pad name
151at offset C<po>. Assumes a valid slot entry.
152
153 char * PAD_COMPNAME_PV(PADOFFSET po)
154
155=for hackers
156Found in file pad.h
157
158=item PAD_COMPNAME_TYPE
159
160Return the type (stash) of the current compiling pad name at offset
161C<po>. Must be a valid name. Returns null if not typed.
162
163 HV * PAD_COMPNAME_TYPE(PADOFFSET po)
164
165=for hackers
166Found in file pad.h
167
168=item PAD_DUP
169
170Clone a padlist.
171
172 void PAD_DUP(PADLIST dstpad, PADLIST srcpad, CLONE_PARAMS* param)
173
174=for hackers
175Found in file pad.h
176
f3548bdc
DM
177=item PAD_RESTORE_LOCAL
178
179Restore the old pad saved into the local variable opad by PAD_SAVE_LOCAL()
180
181 void PAD_RESTORE_LOCAL(PAD *opad)
182
183=for hackers
184Found in file pad.h
185
186=item PAD_SAVE_LOCAL
187
188Save the current pad to the local variable opad, then make the
189current pad equal to npad
190
191 void PAD_SAVE_LOCAL(PAD *opad, PAD *npad)
192
193=for hackers
194Found in file pad.h
195
dd2155a4
DM
196=item PAD_SAVE_SETNULLPAD
197
198Save the current pad then set it to null.
199
200 void PAD_SAVE_SETNULLPAD()
201
202=for hackers
203Found in file pad.h
204
205=item PAD_SETSV
206
207Set the slot at offset C<po> in the current pad to C<sv>
208
209 SV * PAD_SETSV (PADOFFSET po, SV* sv)
210
211=for hackers
212Found in file pad.h
213
214=item PAD_SET_CUR
215
216Set the current pad to be pad C<n> in the padlist, saving
217the previous current pad.
218
219 void PAD_SET_CUR (PADLIST padlist, I32 n)
220
221=for hackers
222Found in file pad.h
223
bf9cdc68
RG
224=item PAD_SET_CUR_NOSAVE
225
226like PAD_SET_CUR, but without the save
227
228 void PAD_SET_CUR_NOSAVE (PADLIST padlist, I32 n)
229
230=for hackers
231Found in file pad.h
232
dd2155a4
DM
233=item PAD_SV
234
235Get the value at offset C<po> in the current pad
236
237 void PAD_SV (PADOFFSET po)
238
239=for hackers
240Found in file pad.h
241
242=item PAD_SVl
243
244Lightweight and lvalue version of C<PAD_SV>.
245Get or set the value at offset C<po> in the current pad.
246Unlike C<PAD_SV>, does not print diagnostics with -DX.
247For internal use only.
248
249 SV * PAD_SVl (PADOFFSET po)
250
251=for hackers
252Found in file pad.h
253
dd2155a4
DM
254=item SAVECLEARSV
255
256Clear the pointed to pad value on scope exit. (ie the runtime action of 'my')
257
258 void SAVECLEARSV (SV **svp)
259
260=for hackers
261Found in file pad.h
262
263=item SAVECOMPPAD
264
265save PL_comppad and PL_curpad
266
dd2155a4 267
dd2155a4
DM
268
269
270
f3548bdc 271 void SAVECOMPPAD()
dd2155a4
DM
272
273=for hackers
274Found in file pad.h
275
276=item SAVEPADSV
277
278Save a pad slot (used to restore after an iteration)
279
f3548bdc 280XXX DAPM it would make more sense to make the arg a PADOFFSET
dd2155a4
DM
281 void SAVEPADSV (PADOFFSET po)
282
283=for hackers
284Found in file pad.h
285
286
287=back
288
a3985cdc
DM
289=head1 Functions in file pp_ctl.c
290
291
292=over 8
293
294=item find_runcv
295
296Locate the CV corresponding to the currently executing sub or eval.
d819b83a
DM
297If db_seqp is non_null, skip CVs that are in the DB package and populate
298*db_seqp with the cop sequence number at the point that the DB:: code was
299entered. (allows debuggers to eval in the scope of the breakpoint rather
8006bbc3 300than in in the scope of the debugger itself).
a3985cdc 301
d819b83a 302 CV* find_runcv(U32 *db_seqp)
a3985cdc
DM
303
304=for hackers
305Found in file pp_ctl.c
306
307
308=back
309
a4f1a029 310=head1 Global Variables
78f9721b 311
a4f1a029 312=over 8
78f9721b 313
2eb25c99
JH
314=item PL_DBsingle
315
316When Perl is run in debugging mode, with the B<-d> switch, this SV is a
317boolean which indicates whether subs are being single-stepped.
318Single-stepping is automatically turned on after every step. This is the C
319variable which corresponds to Perl's $DB::single variable. See
320C<PL_DBsub>.
321
322 SV * PL_DBsingle
323
324=for hackers
325Found in file intrpvar.h
326
327=item PL_DBsub
328
329When Perl is run in debugging mode, with the B<-d> switch, this GV contains
330the SV which holds the name of the sub being debugged. This is the C
331variable which corresponds to Perl's $DB::sub variable. See
332C<PL_DBsingle>.
333
334 GV * PL_DBsub
335
336=for hackers
337Found in file intrpvar.h
338
339=item PL_DBtrace
340
341Trace variable used when Perl is run in debugging mode, with the B<-d>
342switch. This is the C variable which corresponds to Perl's $DB::trace
343variable. See C<PL_DBsingle>.
344
345 SV * PL_DBtrace
346
347=for hackers
348Found in file intrpvar.h
349
350=item PL_dowarn
351
352The C variable which corresponds to Perl's $^W warning variable.
353
354 bool PL_dowarn
355
356=for hackers
357Found in file intrpvar.h
358
359=item PL_last_in_gv
360
361The GV which was last used for a filehandle input operation. (C<< <FH> >>)
362
363 GV* PL_last_in_gv
364
365=for hackers
366Found in file thrdvar.h
367
368=item PL_ofs_sv
369
370The output field separator - C<$,> in Perl space.
371
372 SV* PL_ofs_sv
373
374=for hackers
375Found in file thrdvar.h
376
377=item PL_rs
378
379The input record separator - C<$/> in Perl space.
380
381 SV* PL_rs
382
383=for hackers
384Found in file thrdvar.h
385
645c22ef 386
a4f1a029 387=back
645c22ef 388
a4f1a029
NIS
389=head1 GV Functions
390
391=over 8
392
393=item is_gv_magical
394
395Returns C<TRUE> if given the name of a magical GV.
396
397Currently only useful internally when determining if a GV should be
398created even in rvalue contexts.
399
400C<flags> is not used at present but available for future extension to
401allow selecting particular classes of magical variable.
402
766f8916
MHM
403Currently assumes that C<name> is NUL terminated (as well as len being valid).
404This assumption is met by all callers within the perl core, which all pass
405pointers returned by SvPV.
406
a4f1a029 407 bool is_gv_magical(char *name, STRLEN len, U32 flags)
645c22ef
DM
408
409=for hackers
a4f1a029
NIS
410Found in file gv.c
411
412
413=back
414
415=head1 IO Functions
416
417=over 8
645c22ef 418
a8586c98
JH
419=item start_glob
420
421Function called by C<do_readline> to spawn a glob (or do the glob inside
422perl on VMS). This code used to be inline, but now perl uses C<File::Glob>
bd16a5f0 423this glob starter is only used by miniperl during the build process.
a8586c98
JH
424Moving it away shrinks pp_hot.c; shrinking pp_hot.c helps speed perl up.
425
426 PerlIO* start_glob(SV* pattern, IO *io)
427
428=for hackers
429Found in file doio.c
430
a4f1a029
NIS
431
432=back
433
434=head1 Pad Data Structures
435
436=over 8
437
438=item CvPADLIST
439
440CV's can have CvPADLIST(cv) set to point to an AV.
441
442For these purposes "forms" are a kind-of CV, eval""s are too (except they're
443not callable at will and are always thrown away after the eval"" is done
b5c19bd7
DM
444executing). Require'd files are simply evals without any outer lexical
445scope.
a4f1a029
NIS
446
447XSUBs don't have CvPADLIST set - dXSTARG fetches values from PL_curpad,
448but that is really the callers pad (a slot of which is allocated by
449every entersub).
450
451The CvPADLIST AV has does not have AvREAL set, so REFCNT of component items
f3548bdc 452is managed "manual" (mostly in pad.c) rather than normal av.c rules.
a4f1a029
NIS
453The items in the AV are not SVs as for a normal AV, but other AVs:
454
4550'th Entry of the CvPADLIST is an AV which represents the "names" or rather
456the "static type information" for lexicals.
457
458The CvDEPTH'th entry of CvPADLIST AV is an AV which is the stack frame at that
459depth of recursion into the CV.
460The 0'th slot of a frame AV is an AV which is @_.
461other entries are storage for variables and op targets.
462
463During compilation:
a6d05634
TM
464C<PL_comppad_name> is set to the names AV.
465C<PL_comppad> is set to the frame AV for the frame CvDEPTH == 1.
466C<PL_curpad> is set to the body of the frame AV (i.e. AvARRAY(PL_comppad)).
a4f1a029 467
f3548bdc
DM
468During execution, C<PL_comppad> and C<PL_curpad> refer to the live
469frame of the currently executing sub.
470
471Iterating over the names AV iterates over all possible pad
a4f1a029
NIS
472items. Pad slots that are SVs_PADTMP (targets/GVs/constants) end up having
473&PL_sv_undef "names" (see pad_alloc()).
474
475Only my/our variable (SVs_PADMY/SVs_PADOUR) slots get valid names.
476The rest are op targets/GVs/constants which are statically allocated
477or resolved at compile time. These don't have names by which they
478can be looked up from Perl code at run time through eval"" like
479my/our variables can be. Since they can't be looked up by "name"
480but only by their index allocated at compile time (which is usually
481in PL_op->op_targ), wasting a name SV for them doesn't make sense.
482
483The SVs in the names AV have their PV being the name of the variable.
dd2155a4
DM
484NV+1..IV inclusive is a range of cop_seq numbers for which the name is
485valid. For typed lexicals name SV is SVt_PVMG and SvSTASH points at the
486type. For C<our> lexicals, the type is SVt_PVGV, and GvSTASH points at the
487stash of the associated global (so that duplicate C<our> delarations in the
488same package can be detected). SvCUR is sometimes hijacked to
489store the generation number during compilation.
a4f1a029 490
b5c19bd7
DM
491If SvFAKE is set on the name SV, then that slot in the frame AV is
492a REFCNT'ed reference to a lexical from "outside". In this case,
493the name SV does not use NVX and IVX to store a cop_seq range, since it is
494in scope throughout. Instead IVX stores some flags containing info about
495the real lexical (is it declared in an anon, and is it capable of being
496instantiated multiple times?), and for fake ANONs, NVX contains the index
497within the parent's pad where the lexical's value is stored, to make
498cloning quicker.
a4f1a029 499
a6d05634 500If the 'name' is '&' the corresponding entry in frame AV
a4f1a029
NIS
501is a CV representing a possible closure.
502(SvFAKE and name of '&' is not a meaningful combination currently but could
503become so if C<my sub foo {}> is implemented.)
504
5c3943b6
RGS
505Note that formats are treated as anon subs, and are cloned each time
506write is called (if necessary).
507
2814eb74
PJ
508The flag SVf_PADSTALE is cleared on lexicals each time the my() is executed,
509and set on scope exit. This allows the 'Variable $x is not available' warning
510to be generated in evals, such as
511
512 { my $x = 1; sub f { eval '$x'} } f();
513
a4f1a029
NIS
514 AV * CvPADLIST(CV *cv)
515
516=for hackers
dd2155a4
DM
517Found in file pad.c
518
519=item cv_clone
520
521Clone a CV: make a new CV which points to the same code etc, but which
ad63d80f 522has a newly-created pad built by copying the prototype pad and capturing
dd2155a4
DM
523any outer lexicals.
524
525 CV* cv_clone(CV* proto)
526
527=for hackers
528Found in file pad.c
529
530=item cv_dump
531
532dump the contents of a CV
533
534 void cv_dump(CV *cv, char *title)
535
536=for hackers
537Found in file pad.c
538
539=item do_dump_pad
540
541Dump the contents of a padlist
542
543 void do_dump_pad(I32 level, PerlIO *file, PADLIST *padlist, int full)
544
545=for hackers
546Found in file pad.c
547
548=item intro_my
549
550"Introduce" my variables to visible status.
551
552 U32 intro_my()
553
554=for hackers
555Found in file pad.c
556
557=item pad_add_anon
558
559Add an anon code entry to the current compiling pad
560
561 PADOFFSET pad_add_anon(SV* sv, OPCODE op_type)
562
563=for hackers
564Found in file pad.c
565
566=item pad_add_name
567
b5c19bd7
DM
568Create a new name and associated PADMY SV in the current pad; return the
569offset.
dd2155a4
DM
570If C<typestash> is valid, the name is for a typed lexical; set the
571name's stash to that value.
572If C<ourstash> is valid, it's an our lexical, set the name's
573GvSTASH to that value
574
dd2155a4
DM
575If fake, it means we're cloning an existing entry
576
577 PADOFFSET pad_add_name(char *name, HV* typestash, HV* ourstash, bool clone)
578
579=for hackers
580Found in file pad.c
581
582=item pad_alloc
583
584Allocate a new my or tmp pad entry. For a my, simply push a null SV onto
585the end of PL_comppad, but for a tmp, scan the pad from PL_padix upwards
586for a slot which has no name and and no active value.
587
588 PADOFFSET pad_alloc(I32 optype, U32 tmptype)
589
590=for hackers
591Found in file pad.c
592
593=item pad_block_start
594
595Update the pad compilation state variables on entry to a new block
596
597 void pad_block_start(int full)
598
599=for hackers
600Found in file pad.c
601
602=item pad_check_dup
603
604Check for duplicate declarations: report any of:
605 * a my in the current scope with the same name;
606 * an our (anywhere in the pad) with the same name and the same stash
607 as C<ourstash>
608C<is_our> indicates that the name to check is an 'our' declaration
609
dd2155a4
DM
610 void pad_check_dup(char* name, bool is_our, HV* ourstash)
611
612=for hackers
613Found in file pad.c
614
615=item pad_findlex
616
617Find a named lexical anywhere in a chain of nested pads. Add fake entries
b5c19bd7
DM
618in the inner pads if it's found in an outer one.
619
620Returns the offset in the bottom pad of the lex or the fake lex.
621cv is the CV in which to start the search, and seq is the current cop_seq
622to match against. If warn is true, print appropriate warnings. The out_*
623vars return values, and so are pointers to where the returned values
624should be stored. out_capture, if non-null, requests that the innermost
625instance of the lexical is captured; out_name_sv is set to the innermost
626matched namesv or fake namesv; out_flags returns the flags normally
627associated with the IVX field of a fake namesv.
628
629Note that pad_findlex() is recursive; it recurses up the chain of CVs,
630then comes back down, adding fake entries as it goes. It has to be this way
631because fake namesvs in anon protoypes have to store in NVX the index into
632the parent pad.
633
634 PADOFFSET pad_findlex(char *name, CV* cv, U32 seq, int warn, SV** out_capture, SV** out_name_sv, int *out_flags)
dd2155a4
DM
635
636=for hackers
637Found in file pad.c
638
639=item pad_findmy
640
ad63d80f 641Given a lexical name, try to find its offset, first in the current pad,
dd2155a4 642or failing that, in the pads of any lexically enclosing subs (including
ad63d80f
JP
643the complications introduced by eval). If the name is found in an outer pad,
644then a fake entry is added to the current pad.
dd2155a4
DM
645Returns the offset in the current pad, or NOT_IN_PAD on failure.
646
647 PADOFFSET pad_findmy(char* name)
648
649=for hackers
650Found in file pad.c
651
652=item pad_fixup_inner_anons
653
654For any anon CVs in the pad, change CvOUTSIDE of that CV from
7dafbf52
DM
655old_cv to new_cv if necessary. Needed when a newly-compiled CV has to be
656moved to a pre-existing CV struct.
dd2155a4
DM
657
658 void pad_fixup_inner_anons(PADLIST *padlist, CV *old_cv, CV *new_cv)
659
660=for hackers
661Found in file pad.c
662
663=item pad_free
664
665Free the SV at offet po in the current pad.
666
667 void pad_free(PADOFFSET po)
668
669=for hackers
670Found in file pad.c
671
672=item pad_leavemy
673
674Cleanup at end of scope during compilation: set the max seq number for
675lexicals in this scope and warn of any lexicals that never got introduced.
676
677 void pad_leavemy()
678
679=for hackers
680Found in file pad.c
681
682=item pad_new
683
ad63d80f 684Create a new compiling padlist, saving and updating the various global
dd2155a4
DM
685vars at the same time as creating the pad itself. The following flags
686can be OR'ed together:
687
688 padnew_CLONE this pad is for a cloned CV
689 padnew_SAVE save old globals
690 padnew_SAVESUB also save extra stuff for start of sub
691
c7c737cb 692 PADLIST* pad_new(int flags)
dd2155a4
DM
693
694=for hackers
695Found in file pad.c
696
697=item pad_push
698
699Push a new pad frame onto the padlist, unless there's already a pad at
700this depth, in which case don't bother creating a new one.
701If has_args is true, give the new pad an @_ in slot zero.
702
703 void pad_push(PADLIST *padlist, int depth, int has_args)
704
705=for hackers
706Found in file pad.c
707
708=item pad_reset
709
710Mark all the current temporaries for reuse
711
712 void pad_reset()
713
714=for hackers
715Found in file pad.c
716
717=item pad_setsv
718
719Set the entry at offset po in the current pad to sv.
720Use the macro PAD_SETSV() rather than calling this function directly.
721
722 void pad_setsv(PADOFFSET po, SV* sv)
723
724=for hackers
725Found in file pad.c
726
727=item pad_swipe
728
729Abandon the tmp in the current pad at offset po and replace with a
730new one.
731
732 void pad_swipe(PADOFFSET po, bool refadjust)
733
734=for hackers
735Found in file pad.c
736
737=item pad_tidy
738
739Tidy up a pad after we've finished compiling it:
740 * remove most stuff from the pads of anonsub prototypes;
741 * give it a @_;
742 * mark tmps as such.
743
744 void pad_tidy(padtidy_type type)
745
746=for hackers
747Found in file pad.c
748
749=item pad_undef
750
751Free the padlist associated with a CV.
752If parts of it happen to be current, we null the relevant
753PL_*pad* global vars so that we don't have any dangling references left.
754We also repoint the CvOUTSIDE of any about-to-be-orphaned
a3985cdc 755inner subs to the outer of this cv.
dd2155a4 756
7dafbf52
DM
757(This function should really be called pad_free, but the name was already
758taken)
759
a3985cdc 760 void pad_undef(CV* cv)
dd2155a4
DM
761
762=for hackers
763Found in file pad.c
a4f1a029
NIS
764
765
766=back
767
768=head1 Stack Manipulation Macros
769
770=over 8
771
772=item djSP
773
774Declare Just C<SP>. This is actually identical to C<dSP>, and declares
775a local copy of perl's stack pointer, available via the C<SP> macro.
776See C<SP>. (Available for backward source code compatibility with the
777old (Perl 5.005) thread model.)
778
779 djSP;
780
781=for hackers
782Found in file pp.h
783
784=item LVRET
785
786True if this op will be the return value of an lvalue subroutine
787
788=for hackers
789Found in file pp.h
790
791
792=back
793
794=head1 SV Manipulation Functions
795
796=over 8
797
29489e7c
DM
798=item find_uninit_var
799
800Find the name of the undefined variable (if any) that caused the operator o
801to issue a "Use of uninitialized value" warning.
802If match is true, only return a name if it's value matches uninit_sv.
803So roughly speaking, if a unary operator (such as OP_COS) generates a
804warning, then following the direct child of the op may yield an
805OP_PADSV or OP_GV that gives the name of the undefined variable. On the
806other hand, with OP_ADD there are two branches to follow, so we only print
807the variable name if we get an exact match.
808
809The name is returned as a mortal SV.
810
811Assumes that PL_op is the op that originally triggered the error, and that
812PL_comppad/PL_curpad points to the currently executing pad.
813
814 SV* find_uninit_var(OP* obase, SV* uninit_sv, bool top)
815
816=for hackers
817Found in file sv.c
818
a4f1a029
NIS
819=item report_uninit
820
821Print appropriate "Use of uninitialized variable" warning
822
29489e7c 823 void report_uninit(SV* uninit_sv)
a4f1a029
NIS
824
825=for hackers
826Found in file sv.c
827
645c22ef
DM
828=item sv_add_arena
829
830Given a chunk of memory, link it to the head of the list of arenas,
831and split it into a list of free SVs.
832
833 void sv_add_arena(char* ptr, U32 size, U32 flags)
834
835=for hackers
836Found in file sv.c
837
838=item sv_clean_all
839
840Decrement the refcnt of each remaining SV, possibly triggering a
841cleanup. This function may have to be called multiple times to free
8fb26106 842SVs which are in complex self-referential hierarchies.
645c22ef
DM
843
844 I32 sv_clean_all()
845
846=for hackers
847Found in file sv.c
848
849=item sv_clean_objs
850
851Attempt to destroy all objects not yet freed
852
853 void sv_clean_objs()
854
855=for hackers
856Found in file sv.c
857
858=item sv_free_arenas
859
860Deallocate the memory used by all arenas. Note that all the individual SV
861heads and bodies within the arenas must already have been freed.
862
863 void sv_free_arenas()
864
865=for hackers
866Found in file sv.c
867
a4f1a029 868
954c1994
GS
869=back
870
871=head1 AUTHORS
872
1c846c1f
NIS
873The autodocumentation system was originally added to the Perl core by
874Benjamin Stuhl. Documentation is by whoever was kind enough to
954c1994
GS
875document their functions.
876
877=head1 SEE ALSO
878
879perlguts(1), perlapi(1)
880