This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Further adjustement to change #27576 by Jan Dubois
[perl5.git] / sv.c
2006-03-23 Rafael Garcia-SuarezFurther adjustement to change #27576 by Jan Dubois
2006-03-23 Jan DuboisRE: [PATCH, no, really!] Re: [perl #38779] NAN's on...
2006-03-23 Nicholas ClarkCall S_utf8_mg_pos_cache_update() from S_sv_pos_u2b_cac...
2006-03-22 Nicholas ClarkTake advantage of uoffset >= uoffset0, to simplify...
2006-03-22 Nicholas ClarkAdd S_sv_pos_u2b_midway for when we know the utf-8...
2006-03-22 Nicholas ClarkCreate S_sv_pos_u2b_cached, which abstracts away utf...
2006-03-22 Nicholas ClarkThe simplest way to start on Perl_sv_pos_u2b seems...
2006-03-21 Nicholas Clark(Hopefully) make VMS happy.
2006-03-20 Nicholas ClarkExtend change 27558 - if we know the character offset...
2006-03-20 Nicholas ClarkIn Perl_sv_pos_b2u, if we know the character offset...
2006-03-20 Nicholas ClarkAbstract the string walking functionality from Perl_sv_...
2006-03-19 Nicholas ClarkRemove a redundant test on mg->mg_ptr. (It had to be...
2006-03-17 Nicholas ClarkMake Perl_sv_len_utf8 honour the new ${^UTF8CACHE}.
2006-03-17 Nicholas ClarkRemove a duplicated conditional test by putting everyth...
2006-03-17 Nicholas ClarkProperly set/reset the UTF-8 length cache in regcomp.c.
2006-03-17 Nicholas Clarksv_find() returning false, followed by sv_magic() to...
2006-03-15 Nicholas ClarkMoving the overloading flag from the reference to the...
2006-03-10 Nicholas ClarkMove the 12 static MAD variables from toke.c into the...
2006-03-09 Nicholas ClarkThe remainder of the toke.c MAD changes. Now to investi...
2006-03-07 Nicholas ClarkRemove the #define - ARENASETS are always on now.
2006-03-05 Nicholas ClarkPerl_gv_name_set should not leak the old HEK. Allow...
2006-03-05 Nicholas ClarkUse a HEK to store the GV's name, rather than a malloc...
2006-03-05 Nicholas ClarkProvide Perl_gv_name_set to replace LVALUE use of GvNAM...
2006-03-02 Andy LesterNon-null optimizations
2006-02-28 Steve HaySilence a VC++ warning with DEBUGGING builds
2006-02-27 Nicholas ClarkIn Perl_sv_setsv_flags, swap the default in the type...
2006-02-27 Steve HaySilence a VC++ warning
2006-02-27 Nicholas ClarkThere is now the potential for an upgrade from somethin...
2006-02-27 Rafael Garcia-Suarezptr_table_find() is only defined with ithreads
2006-02-27 H.Merijn BrandWorkaround for initialization errors on HP's pre-compiler
2006-02-27 Andy LesterSpeedups and shrinkages of SvREFCNT_inc
2006-02-25 Nicholas ClarkAmazingly, it seems that none of the other GV specific...
2006-02-25 Nicholas ClarkStore GvGP in the SV head union. For all the common...
2006-02-24 Nicholas ClarkAvoid special case SvMAGIC macros just to cope with...
2006-02-24 Nicholas ClarkUse PVMGs rather than PVGVs to store the names of our...
2006-02-24 Nicholas ClarkStore the stash for our in the magic slot. This will...
2006-02-24 Andy Lesterunused context warnings
2006-02-23 Nicholas ClarkReplace direct flags tests & manipulations for SVpad_TY...
2006-02-23 Nicholas ClarkWe have sufficient spare bits to store the SV type...
2006-02-23 Nicholas ClarkShrink struct body_details and hence sv.o slightly...
2006-02-23 Nicholas ClarkUsing U8 rather than size type shrinks the body_details...
2006-02-23 Nicholas ClarkRemove set magic from typeglobs. Remove typeglob magic...
2006-02-23 Nicholas ClarkRecalculate dstr in Perl_sv_setsv_flags, as dstr may...
2006-02-23 Nicholas ClarkRemove un-needed case in Perl_sv_setsv_flags (sv_upgrad...
2006-02-23 Nicholas ClarkRemove get magic from typeglobs. This means that PVGVs...
2006-02-23 Nicholas ClarkFix the copy sizes for PVFM and PVCV back to sanity.
2006-02-22 Nicholas ClarkChange 24643 made the mistake of assuming that CvCONST...
2006-02-21 Nicholas ClarkPL_body_arenas should be set to NULL when the interpret...
2006-02-20 Nicholas ClarkSteal code from maint, and use PERL_ARENA_ROOTS_SIZE...
2006-02-20 Nicholas ClarkPVCVs don't need XNVs either.
2006-02-20 Nicholas ClarkPVFMs don't need CvDEPTH, and PVCVs don't use SvIVX...
2006-02-20 Nicholas Clarkxcv_root and xcv_xsub can also be merged into a union...
2006-02-20 Nicholas ClarkAdd a new CvISXSUB() macro, for abstracting the test...
2006-02-20 Rafael Garcia-SuarezMore NullXXX macro removal from Andy Lester
2006-02-19 Nicholas ClarkShave sizeof(NV) bytes from formats, by using the same...
2006-02-19 Nicholas ClarkTo make arithmetic on tainted dualvars work properly...
2006-02-19 Nicholas ClarkSvROK(sv) will never be true when SvIOKp() or SvNOKp...
2006-02-18 Jim Cromiearena-rework : consolidated patch
2006-02-17 Jim CromieThe two whitespace changes from
2006-02-14 Nicholas ClarkBack out change change 10214 (drop SVp_IOK from >>...
2006-02-14 Andy LesterSun Studio lint patches
2006-02-13 Nicholas ClarkEnsure that public I, N and P flags are off when SvTAIN...
2006-02-11 Nicholas ClarkCoalesce 2 if blocks with duplicated conditions in...
2006-02-10 Steve HayA better fix than 27148
2006-02-10 Steve HayFix the effects of 27136 on Win32 with DEBUGGING and...
2006-02-09 Andy LesterTrying my "remove the pTHXes" patch again
2006-02-06 Nicholas ClarkRename S_glob_assign to S_glob_assign_glob
2006-02-06 Nicholas ClarkIn Perl_sv_upgrade, the assignment to new_type_details...
2006-02-06 Nicholas ClarkRemove a duplicate flag copy line from Perl_sv_setsv_flags.
2006-02-06 Nicholas ClarkFix bug #38439 - reference to typeglob assignment needs...
2006-02-05 Nicholas ClarkMerge the PVCV case into the common code in S_pvgv_assign.
2006-02-05 Nicholas ClarkMerge the PVAV and PVHV clauses into the common code...
2006-02-05 Nicholas ClarkMerge the default case (GvSV) with the common code...
2006-02-05 Nicholas ClarkStart to merge the 6 arms of S_pvgv_assign into one.
2006-02-05 Jim Cromie[patch] rework arenas - repair arenasets
2006-02-05 Nicholas ClarkThe message "Can't upgrade that kind of scalar" can...
2006-02-05 Nicholas Clarknew_body_type doesn't need to subtract the offset,...
2006-02-05 Nicholas ClarkMerge and refactor the PVAV and PVHV code in Perl_sv_up...
2006-02-05 Nicholas ClarkEliminate a croak we can't get to.
2006-02-04 Nicholas Clarkbcc was issuing a warning about this line in Perl_sv_2c...
2006-02-04 Nicholas ClarkEnhance PERL_TRACK_MEMPOOL so that it also emulates...
2006-02-04 Nicholas ClarkRejig the definition of ARENAS_PER_SET to maximise...
2006-02-04 Nicholas ClarkTweak arena sets to avoid assignment between different...
2006-02-04 Jim Cromie[patch] arena rework - arena sets
2006-02-03 Steven SchubigerRe: [PATCH] s/Null(gv|hv|sv)/NULL/g
2006-02-03 Steven Schubigers/Nullcv/NULL/g
2006-02-02 Steven SchubigerRe: [PATCH] s/Null(av|ch)/NULL/g
2006-02-01 Nicholas ClarkSince PERL_COPY_ON_WRITE became PERL_OLD_COPY_ON_WRITE...
2006-02-01 Nicholas ClarkReferences can't have SVp_IOK or SVp_NOK set, so no...
2006-02-01 Nicholas ClarkCorrect my comment, so that it's actually useful. :-)
2006-02-01 Jim Cromie[patch] arena rework - unify arenaroots
2006-01-30 Nicholas ClarkAssert that IVs and NVs can never be tainted.
2006-01-29 Nicholas ClarkC compilers don't let you return void. Pay attention...
2006-01-28 Nicholas ClarkSqueeze more flag manipulations together in sv_setsv_flags.
2006-01-28 Nicholas ClarkMerge the IOK and NOK clauses together in sv_setsv_flags.
2006-01-28 Nicholas ClarkThe flags manipulation in sv_setsv_flags can be more...
2006-01-28 Nicholas ClarkBy changing SvVOK() from returning 0/1 to 0/pointer...
2006-01-28 Nicholas ClarkPull the other large chunk of PVGV assignment code...
2006-01-28 Nicholas ClarkRemove goto glob_assign;
2006-01-28 Nicholas ClarkPull glob_assign out from sv_setsv_flags into a static...
next