summaryrefslogtreecommitdiff
path: root/sv.c
Commit message (Expand)AuthorAgeFilesLines
* Remove obsolete interpreter variable PL_utf8_alnumcRafael Garcia-Suarez2009-09-131-1/+0
* convert a bunch of duplicated mortalization logic in sv.c into a private file...Yves Orton2009-09-051-13/+15
* add a note about the previous patches from gfxYves Orton2009-09-051-0/+12
* newSVpvn_flags() does mortalization in place, instead of calling sv_2mortal()gfx2009-09-051-2/+8
* String with NULL auto-increment bug fixBo Borgerson2009-08-251-1/+1
* Add clear magic to %^H so that the HE chain is reset when you empty it.Zefram2009-08-211-2/+3
* Perl_newIO() can become a mathom by making newIO() a wrapper around newSV_type()Nicholas Clark2009-08-081-1/+15
* Move the "types are equal" early return ahead of the COW-removal.Nicholas Clark2009-08-081-3/+12
* in perl_clone_using, free the prt_tableDavid Mitchell2009-08-051-5/+6
* dup saved_curcop in PL_parserDavid Mitchell2009-07-261-0/+11
* mro::method_changed_in(..) ignores AUTOLOAD (RT #60220)Tony Cook2009-07-181-0/+4
* Allocate XPV* memory using sizeof() and the offset of the first real member.Nicholas Clark2009-07-171-58/+46
* Eliminate struct regexp_allocated and xpvio_allocated.Nicholas Clark2009-07-171-6/+9
* Add a pluggable hook in op_free()Vincent Pit2009-07-081-0/+2
* Add test to make sure everything that outputs an exception or warning has a m...James Mastros2009-06-271-2/+2
* Fix casting warningRafael Garcia-Suarez2009-05-311-2/+2
* Fix [RT#6266] -- sv_pos_u2b expects to be called with a valid character indexAlex Vandiver2009-05-301-2/+3
* Explicitely point to $. when it causes an uninitialized warning for ranges in...Vincent Pit2009-05-261-0/+8
* Use only one block of memory for both PL_psig_name and PL_psig_ptr.Nicholas Clark2009-05-211-6/+4
* fix glob-assign for FORMATH.Merijn Brand2009-05-201-0/+1
* Remove binary compatibility scaffolding for the change to PL_bitcount.Nicholas Clark2009-05-201-1/+0
* Replace run-time on-demand initialisation of PL_bitcount with a constant table.Nicholas Clark2009-05-201-1/+1
* In perl_clone_using(), use sv_dup_inc_multiple() to clone the temps stack.Nicholas Clark2009-05-191-6/+3
* Add S_sv_dup_inc_multiple(), used in place of loops that call sv_dup_inc().Nicholas Clark2009-05-181-11/+24
* In perl_clone_using(), don't use Newxz() for arrays we immediately assign to.Nicholas Clark2009-05-181-2/+2
* In Perl_ptr_table_new(), fight back against the cult of Newxz().Nicholas Clark2009-05-181-1/+1
* Tidy the implementation of Perl_mg_dup().Nicholas Clark2009-05-181-25/+26
* In Perl_mg_dup(), remove a branch by tracking the address to write to instead ofNicholas Clark2009-05-181-6/+4
* In Perl_mg_dup(), the while loop does the NULL check for us already.Nicholas Clark2009-05-181-4/+1
* In Perl_mg_dup(), don't call ptr_table_fetch, as we never call ptr_table_store.Nicholas Clark2009-05-181-4/+0
* Inline S_glob_2pv() into Perl_sv_2pv_flags(). (Existing bugs included.)Nicholas Clark2009-05-121-23/+17
* In Perl_gp_dup(), no need to explicitly zero ret->gp_refcnt after the Newxz().Nicholas Clark2009-05-041-1/+2
* Make Perl_hek_dup() cope with a NULL "source" parameter (by returning NULL).Nicholas Clark2009-05-041-4/+3
* Fix SEGVs when cloning a typeglob that has been undefined. (RT #64954)Nicholas Clark2009-05-041-1/+1
* Remove all #ifdef MACOS_TRADITIONAL code in core and non-dual-life XS code.Nicholas Clark2009-04-271-6/+0
* In the context of PERL_OLD_COPY_ON_WRITE, remove comments about global mutexes.Nicholas Clark2009-04-191-12/+0
* GvUNIQUE* have been defined as 0 since 2005/06/30 - high time to remove them.Nicholas Clark2009-04-131-17/+1
* Change Perl_newCONSTSUB() so that a NULL sv generates an empty list return.Nicholas Clark2009-03-291-0/+3
* Don't COW PVFMs, as the IVX is now used for FmLINES. (since change 34134)Nicholas Clark2009-03-281-1/+1
* fix a couple of comments that annoyingly look like merge conflict markersDavid Mitchell2009-03-061-2/+2
* The correct name of PERL_UTF8_magic is PERL_MAGIC_utf8, so use it in sv.c api...Vincent Pit2009-02-071-3/+3
* Optimize away calls to empty DESTROY methodsRafael Garcia-Suarez2009-01-201-1/+5
* Combine sv_utf8_upgrade with a following growKarl2009-01-191-1/+2
* Bump coopyright year in embed.pl and various files that were just touchedRafael Garcia-Suarez2009-01-021-1/+2
* Faster sv_utf8_upgrade()karl williamson2009-01-021-29/+224
* Add Perl_mro_register() to register Method Resolution Orders,Nicholas Clark2008-12-271-0/+2
* sv_dup(): avoid cloning empty arrayskevin brintnall2008-12-261-1/+4
* Update comments and documentation dealing with utfKarl2008-12-261-0/+4
* It looks like the previous patch is working fine on UNIXish boxes,Steve Peters2008-12-191-4/+0
* Subject: PATCH 5.10 documentationSteve Peters2008-12-191-7/+16