summaryrefslogtreecommitdiff
path: root/gv.c
Commit message (Expand)AuthorAgeFilesLines
* Purge all references to 5005 threads variables in the code.Nicholas Clark2007-02-031-1/+0
* Stop S_incline needing to temporarily write a '\0' into its passed-inNicholas Clark2007-01-261-8/+16
* As we're not passing over (or copying in) a NUL, don't need that extraNicholas Clark2007-01-261-10/+10
* Convert the last remaining 256 byte "small"bufs to 128 bytes.Nicholas Clark2007-01-251-1/+1
* Neither gv_fetchpvn_flags() nor hv_fetch() need a NUL terminatedNicholas Clark2007-01-251-6/+4
* The last parameter to gv_stashpv/gv_stashpvn/gv_stashsv is a bitmaskNicholas Clark2007-01-251-32/+31
* Change 28058 hadn't been tested with -DPERL_CREATE_GVSVNicholas Clark2007-01-251-1/+1
* Add missing SVfARG()s in require_tie_mod().Marcus Holland-Moritz2007-01-181-2/+2
* Add support for /k modfier for matching along with ${^PREMATCH}, ${^MATCH}, $...Yves Orton2007-01-151-0/+6
* Add get_cvn_flags(), which is like get_cv() but takes a length. ThisNicholas Clark2007-01-151-2/+1
* An implementation of change 29735 for blead (PL_curcop could be NULL)Nicholas Clark2007-01-101-2/+3
* Update copyright years in .c filesRafael Garcia-Suarez2007-01-051-1/+1
* 4th patch from: Marcus Holland-Moritz2007-01-041-2/+2
* Re: [PATCH] Change implementation of %+ to use a proper tied hash interface a...Yves Orton2007-01-041-39/+69
* Unshare the shared string gp_file_hek only if it exists in a GP.Rafael Garcia-Suarez2006-12-221-1/+2
* Add a new flag SVprv_PCS_IMPORTED (which is a pseudonym for SVf_SCREAM)Nicholas Clark2006-12-161-0/+6
* Split out the use of SVp_SCREAM for GVs with GPs into a new symbolicNicholas Clark2006-12-161-2/+2
* Change 27506 wasn't quite correct - the copy of the AMAGIC flag shouldNicholas Clark2006-11-041-0/+6
* Re: [PATCH] Initial attempt at named captures for perls regexp engineYves Orton2006-10-071-0/+4
* Don't bother generating the "Operation \"%s\": no method found..."Nicholas Clark2006-10-061-0/+3
* g++ stage 1 reachedJarkko Hietaniemi2006-08-081-13/+9
* g++ large patchJarkko Hietaniemi2006-08-071-10/+15
* Re: [perl #39733] $AUTOLOAD is never taintedRick Delaney2006-08-021-1/+0
* Proper use of enumsAndy Lester2006-06-121-0/+1
* A little more work needed to get ext/re/t/re.t test 14 (no segv) passingNicholas Clark2006-06-111-1/+7
* exhausting <> in BEGIN{} gets ARGVOUT used only once warningYitzchak Scott-Thoennes2006-06-071-0/+3
* [PATCH] gv.c constingAndy Lester2006-05-291-1/+1
* In Perl_Gv_AMupdate(), there's no need to call sv_unmagic() if we knowNicholas Clark2006-05-091-5/+8
* Gv_AMupdate() always creates magic, so mg can never be NULL.Nicholas Clark2006-05-091-0/+1
* GvFILE() cannot be a pointer to the memory owned by the COP, becauseNicholas Clark2006-05-021-1/+8
* De-duplicate the code that creates new GPs into Perl_newGP().Nicholas Clark2006-05-021-14/+22
* more -ansi -pedantic cleanlinessJarkko Hietaniemi2006-04-291-1/+1
* reduce gcc -ansi -pedantic noise plus a suggestionJarkko Hietaniemi2006-04-281-2/+2
* Re: [PATCH] cleanup 212 warnings emitted by gcc-4.2Marcus Holland-Moritz2006-04-261-1/+1
* use NOOP macroAndy Lester2006-04-251-2/+2
* Ensure GvNAME doesn't return NULLMarcus Holland-Moritz2006-04-241-1/+2
* Initializing variables is good. This is another Coverity catch.Steve Peters2006-04-051-1/+1
* Removed unnecessary pointers checksAndy Lester2006-04-021-5/+5
* Serialise changes to %^H onto the current COP. Return the compile timeNicholas Clark2006-03-311-1/+7
* Random accumulated patchesAndy Lester2006-03-311-5/+5
* Add a new per-interpeter variable PL_utf8cache, which will be used toNicholas Clark2006-03-161-0/+2
* Correct another gv_fetchpv() - it takes a bitmask of flags, not simplyNicholas Clark2006-03-091-1/+1
* Perl_gv_name_set should not leak the old HEK. Allow the flag GV_ADDNicholas Clark2006-03-051-1/+5
* Move the GvNAME HEK into the IV union - every GV is now 1 pointerNicholas Clark2006-03-051-1/+1
* Use a HEK to store the GV's name, rather than a malloc()ed string.Nicholas Clark2006-03-051-2/+6
* Provide Perl_gv_name_set to replace LVALUE use of GvNAME and GvNAMESET.Nicholas Clark2006-03-051-2/+12
* Change 27330 failed to decontaminate SvCUR/GvFLAGS when upgrading anNicholas Clark2006-02-271-2/+8
* Speedups and shrinkages of SvREFCNT_incAndy Lester2006-02-271-6/+8
* Store GvGP in the SV head union. For all the common lookups [eg GvCV()]Nicholas Clark2006-02-251-2/+2
* Given that Perl_gp_free() is refcount-dec-and-maybe-free for the globNicholas Clark2006-02-241-0/+1