summaryrefslogtreecommitdiff
path: root/pad.c
Commit message (Expand)AuthorAgeFilesLines
* In comments, correct two instances of SVf_PADSTALE to SVs_PADSTALE.Nicholas Clark2010-03-081-2/+2
* Missing static storage class for some new static functionsRafael Garcia-Suarez2009-11-201-1/+1
* Make the style of pad_add_name's flags consistent with pad_new's and pad_tidy's.Nicholas Clark2009-11-151-7/+7
* Change S_pad_check_dup()'s arguments from char*/STRLEN to SV *.Nicholas Clark2009-11-151-15/+8
* Convert pad_check_dup() to static linkage, and call it from Perl_pad_add_name().Nicholas Clark2009-11-151-7/+9
* Refactor common code paths from Perl_pad_add_name() into S_pad_add_name_sv().Nicholas Clark2009-11-151-56/+69
* Add length and flags arguments to Perl_pad_add_name().Nicholas Clark2009-11-091-8/+20
* Add length and flags arguments to Perl_pad_check_dup().Nicholas Clark2009-11-091-1/+13
* In Perl_pad_check_dup(), use sv rather than name for diagnostics.Nicholas Clark2009-11-091-3/+3
* Add length and flags arguments to Perl_pad_findmy(), moving it to the public ...Nicholas Clark2009-11-071-1/+17
* Add Perl_ck_warner_d(), which combines Perl_ckwarn_d() and Perl_warner().Nicholas Clark2009-10-121-5/+4
* Add Perl_ck_warner(), which combines Perl_ckwarn() and Perl_warner().Nicholas Clark2009-10-121-9/+7
* Simpify logic in Perl_pad_free(): SvIsCOW() has the same semantics in all cases.Nicholas Clark2009-04-191-7/+1
* Just s/Perl_/S_/ isn't good enough - you also need to add the C<static>Nicholas Clark2008-11-261-1/+1
* The vestigial PL_pad_reset_pending can actually be bool, rather thanNicholas Clark2008-11-261-1/+1
* pad_reset() is only used in pad.c, so can be static.Nicholas Clark2008-11-261-1/+1
* PATCH: Large omnibus patch to clean up the JRRT quotesTom Christiansen2008-11-021-6/+10
* Eliminate (SV *) casts from the rest of *.c, picking up one (further)Nicholas Clark2008-10-301-19/+19
* Use pvs macros instead of pvn where possible.Marcus Holland-Moritz2008-10-291-1/+1
* Eliminate (AV *) casts in *.c.Nicholas Clark2008-10-291-18/+18
* Add MUTABLE_CV(), and eliminate (CV *) casts in *.c.Nicholas Clark2008-10-291-8/+8
* Every remaining (HV *) cast in *.cNicholas Clark2008-10-281-1/+1
* No, it's not a const SV* if we subsequently callMarcus Holland-Moritz2008-10-261-1/+1
* Update copyright years.Nicholas Clark2008-10-251-1/+2
* assert() that every NN argument is not NULL. Otherwise we have theNicholas Clark2008-02-121-0/+30
* [perl #49522] state variable not availableDave Mitchell2008-01-191-4/+9
* change #31447 was wrong. Really handle cloning a stale lexical varDave Mitchell2008-01-091-5/+5
* when anon subs are cloned, the 'assign once only' flag should beDave Mitchell2007-09-101-0/+3
* [perl #43425] local $[: fix scoping during parser error handling.Dave Mitchell2007-07-161-2/+2
* safely handle cloning a stale lexical varDave Mitchell2007-06-221-2/+2
* move PL_in_my and PL_in_my_stash into the PL_parser structDave Mitchell2007-05-121-1/+1
* Various variables in intrpvar.h and thrdvar.h are considerably largerNicholas Clark2007-04-211-1/+1
* Like fake scalars, state variables shouldn't get new pad entriesRafael Garcia-Suarez2007-03-121-1/+4
* Add a new API function newSV_type, to replace the idiom:Nicholas Clark2007-02-181-7/+4
* Update copyright years in .c filesRafael Garcia-Suarez2007-01-051-1/+1
* 4th patch from: Marcus Holland-Moritz2007-01-041-1/+1
* Rename OURSTASH to SvOURSTASH and OURSTASH_set to SvOURSTASH_set.Nicholas Clark2007-01-031-5/+5
* With xlow and xhigh as U32, PAD_MAX shouldn't be IV_MAX, as on a 64 bitNicholas Clark2006-12-291-1/+1
* Move PAD_COMPNAME_GEN from SvCUR to SvUVX.Nicholas Clark2006-12-281-3/+1
* Move PAD_FAKELEX_ANON and PAD_FAKELEX_MULTI to pad.h, export them viaNicholas Clark2006-12-281-5/+0
* Move the low/high cop sequences from NVX/IVX to a two U32 structureNicholas Clark2006-12-281-14/+18
* Abstract the pad code's overloaded use of SvNVX and SvIVX intoNicholas Clark2006-12-281-34/+43
* Change PAD_MAX to something a bit less FORTRAN-ish than 999999999.Nicholas Clark2006-12-281-1/+1
* pads haven't actually contained any PVGVs since change 27313.Nicholas Clark2006-12-121-1/+2
* Introduce a new keyword, state, for state variables.Rafael Garcia-Suarez2006-05-031-3/+8
* reduce gcc -ansi -pedantic noise plus a suggestionJarkko Hietaniemi2006-04-281-1/+2
* use NOOP macroAndy Lester2006-04-251-1/+1
* A couple of casts to PADOFFSET.Marcus Holland-Moritz2006-04-241-5/+5
* SvREFCNT_inc tweaksAndy Lester2006-04-031-5/+5
* Add MAD changes to pad code (new function Perl_pad_peg)Nicholas Clark2006-03-081-1/+9