summaryrefslogtreecommitdiff
path: root/pad.c
Commit message (Expand)AuthorAgeFilesLines
* delay allocating trans table until neededZefram2012-02-251-2/+3
* Provide as much diagnostic information as possible in "panic: ..." messages.Nicholas Clark2012-01-161-4/+8
* Correct comment in pad.cFather Chrysostomos2011-10-151-1/+1
* Fix up pad_check_dup entry in perlinternFather Chrysostomos2011-10-091-4/+6
* make SVs_PADTMP and SVs_PADSTALE share a bitDavid Mitchell2011-10-071-1/+1
* [perl #98092] Fix unreferenced scalar warnings in clone.tFather Chrysostomos2011-09-011-14/+9
* Add find_rundefsv2 functionFather Chrysostomos2011-08-241-0/+18
* [perl #71154] undef &$coderef consistencyFather Chrysostomos2011-08-241-2/+3
* [perl #96126] Allocate CvFILE more simplyFather Chrysostomos2011-08-171-10/+3
* use the correct type for a format field width parameterTony Cook2011-07-241-1/+1
* Change sv_eq_pvn_flags()'s parameter pvlen from I32 to STRLEN.Nicholas Clark2011-07-151-2/+2
* Make prototypes and declarations for Perl_pad_add_name_{pv,pvn,sv} agree.Nicholas Clark2011-07-141-1/+1
* Fix perlintern links; regen known pod issuesFather Chrysostomos2011-07-121-2/+4
* Cleaned up warning messages in pad.c, plus related tests.Brian Fraser2011-07-121-9/+16
* Cleanup of pad fetching and storing. This version normalizes the data on both...Brian Fraser2011-07-121-3/+30
* Added sv_eq_pvn_flags to pad.c, which will be used by later commits.Brian Fraser2011-07-121-0/+41
* pad.c: flags checking for the UTF8 flag when necessaryBrian Fraser2011-07-121-3/+9
* Added a flags parameter to pad_findlex.Brian Fraser2011-07-121-8/+8
* APIify pad functionsZefram2011-07-121-154/+290
* Test that SvFLAGS() & SVpad_NAME is SVpad_NAME, not just non-zero.Nicholas Clark2011-06-111-2/+1
* fix typo in new pad.c commentDavid Mitchell2011-02-061-3/+3
* allow wrap-around of PL_cop_seqmaxDavid Mitchell2011-02-061-6/+37
* make 0 not a special value for COP_SEQ_RANGE_HIGHDavid Mitchell2011-02-061-9/+22
* rename PAD_MAX to PERL_PADSEQ_INTRODavid Mitchell2011-02-061-11/+14
* many string evals cause eventual scope issuesDavid Mitchell2011-02-061-2/+2
* Fix typos (spelling errors) in Perl sources.Peter J. Acklam) (via RT2011-01-071-3/+3
* [perl #19135] string eval turns off readonlyness on lexicalsFather Chrysostomos2010-12-081-5/+0
* No need to clone pad name 0, as it's never used.Nicholas Clark2010-11-231-1/+1
* In Perl_cv_undef(), only check potential pads against PL_comppadNicholas Clark2010-11-171-4/+8
* In S_pad_check_dup(), no need to check the 0th name entry.Nicholas Clark2010-11-171-2/+3
* Inline Perl_pad_undef() into its only caller, Perl_cv_undef().Nicholas Clark2010-11-161-101/+84
* Move Perl_cv_undef() from op.c to pad.cNicholas Clark2010-11-161-0/+66
* In Perl_pad_new(), allocate a 2 element array for padlist.Nicholas Clark2010-11-161-2/+12
* In Perl_pad_new(), avoid calling av_fetch() for something we already know.Nicholas Clark2010-11-161-3/+3
* Eliminate PL_dirtyFlorian Ragwitz2010-11-141-1/+1
* add CvSTASH_set() macro and make CvSTASH() rvalue onlyZefram2010-10-251-3/+1
* fix a couple of -Dmad compiler warningsDavid Mitchell2010-09-121-1/+2
* add CvGV_set() macro and make CvGV() rvalue onlyDavid Mitchell2010-07-181-1/+1
* change when to make CvGV refcountedDavid Mitchell2010-07-181-1/+1
* protect CvGV weakref with backrefDavid Mitchell2010-07-141-1/+1
* protect CvSTASH weakref with backrefsDavid Mitchell2010-07-141-0/+2
* Make pp_reverse fetch the lexical $_ from the correct padVincent Pit2010-06-031-0/+22
* In Perl_pad_add_name(), use sv_upgrade() directly rather than new[AH]V().Nicholas Clark2010-05-311-5/+5
* Only allocate entries for @_ when the subroutine is first called.Nicholas Clark2010-05-301-3/+0
* Set PADSTALE on all lexicals at the end of sub creation.Nicholas Clark2010-05-241-2/+25
* Don't clone the contents of lexicals in pads.Nicholas Clark2010-05-241-1/+45
* In Perl_pad_tidy(), merge the SvPADTMP_on() loops for padtidy_SUB and _FORMAT.Nicholas Clark2010-05-241-10/+1
* In Perl_padlist_dup() don't duplicate @_ or pads caused by recursion.Nicholas Clark2010-05-241-5/+56
* Convert PAD_DUP to a function Perl_padlist_dup().Nicholas Clark2010-05-241-0/+25
* In comments, correct two instances of SVf_PADSTALE to SVs_PADSTALE.Nicholas Clark2010-03-081-2/+2