This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Add a Configure question for mad (Misc Attribute Decoration - Larry's
[perl5.git] / gv.c
2006-03-05 Nicholas ClarkPerl_gv_name_set should not leak the old HEK. Allow...
2006-03-05 Nicholas ClarkMove the GvNAME HEK into the IV union - every GV is...
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-02-27 Nicholas ClarkChange 27330 failed to decontaminate SvCUR/GvFLAGS...
2006-02-27 Andy LesterSpeedups and shrinkages of SvREFCNT_inc
2006-02-25 Nicholas ClarkStore GvGP in the SV head union. For all the common...
2006-02-24 Nicholas ClarkGiven that Perl_gp_free() is refcount-dec-and-maybe...
2006-02-23 Nicholas ClarkRemove set magic from typeglobs. Remove typeglob magic...
2006-02-23 Nicholas ClarkRemove get magic from typeglobs. This means that PVGVs...
2006-02-20 Nicholas ClarkAdd a new CvISXSUB() macro, for abstracting the test...
2006-02-14 Andy LesterSun Studio lint patches
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-02 Nicholas Clarkgv_fetchpvn_flags ranks highly in the profile, and...
2006-02-02 Nicholas ClarkYet more instances of gv_fetchpv... that should be...
2006-02-02 Nicholas ClarkAnd another assumption.
2006-02-01 Nicholas Clarkdoubleplusoops. Apart from the documented NUL terminati...
2006-02-01 Nicholas ClarkOops. 1 NUL termination assumption remains in Perl_gv_f...
2006-01-31 Nicholas ClarkMake Perl_gv_fetchpvn_flags actually heed the passed...
2006-01-28 Nicholas ClarkPERL_DONT_CREATE_GVSV wasn't as effective as it should...
2006-01-18 Steve HayChange all NEWSV() to newSV() in the core and non-dual...
2006-01-11 Gisle AasA few more places that can use hv_fetchs().
2006-01-10 Andy LesterIt's the Barbie bus patch
2006-01-06 Jarkko Hietaniemisprinkle dVAR
2006-01-04 Rafael Garcia-SuarezMore copyright updates
2006-01-04 Gisle AasMake the new STR_WITH_LEN() affected compile under...
2006-01-04 Gisle AasGet rid of a few more hardcoded string lengths.
2006-01-04 Gisle AasIntroduce the macros newSVpvs(str) and sv_catpvs(sv...
2006-01-03 Steve PetersBad symbols that are pretending to be dirhandles, shoul...
2005-12-30 TelsReduce size of buffers for identifier names, as suggest...
2005-12-30 TelsPerl_gv_fetchpv vs. gv_fetchpvn
2005-12-29 Andy Lesterav.c cleanup, plus!
2005-12-22 Andy LesterHo! Ho! Ho! Santa brings consting!
2005-12-22 Nicholas ClarkAdd an optimisation to allow proxy constant subroutines...
2005-12-20 Nicholas ClarkTake care in toke.c not to convert constant subroutine...
2005-12-20 Nicholas ClarkAdd a GV_NOADD_NOINIT flag to gv_fetch{pv,pvn,sv} that...
2005-12-20 Nicholas ClarkCroak if gv_init doesn't know how to create a typeglob...
2005-12-20 Nicholas Clarkgv_fetchpv, gv_fetchpvn and gv_fetchsv take a bitmask...
2005-12-19 Nicholas ClarkMake gv_init recognise a reference-to-something in...
2005-12-16 Nicholas Clarks/Nullhv/NULL/g;
2005-12-16 Nicholas Clarks/Nullav/NULL/g
2005-10-30 Nicholas ClarkReplace gv_fetchmethod() with a macro to call gv_fetchm...
2005-10-29 Nicholas Clarkgv_fullname3 and gv_efullname3 are definately mathoms...
2005-10-29 Nicholas Clarkgv_fullname and gv_efullname are definately mathoms.
2005-10-19 Andy LesterMore consting, and DRY leads to shrinking object code
2005-10-13 Andy LesterStas' croak patch and then some
2005-09-29 Dave Mitchellthe return value of start_subparse() can legally be...
2005-09-18 Nicholas ClarkIt looks like the only way to reliably make Perl_hv_nam...
2005-08-25 Nicholas ClarkNo need to manually set the reference count of a new...
2005-07-13 Andy LesterMore embed.fnc plowing
2005-07-13 Dave Mitchellmake the expensive ckWARN() be called as late as possible
2005-07-10 Andy LesterMaking my way thru embed.fnc
2005-07-08 Jim CromieRe: janitorial work ? [patch]
2005-07-04 Andy LesterPost-YAPC consting, now with an attachment!
2005-06-29 Nicholas ClarkFixes to -DPERL_DONT_CREATE_GVSV to make more tests...
2005-06-29 Nicholas ClarkFirst stab at not automatically creating an unused...
2005-06-28 Nicholas ClarkConvert strcpy to memcpy where we already know the...
2005-06-27 Andy LesterWe're going round in circles with pp_sys.c
2005-06-23 Nicholas ClarkRemove the reference loop between symbol tables and...
2005-06-23 Nicholas ClarkAdd a define PERL_POISON which tries to trip up anythin...
2005-06-20 Andy LesterThe continuing adventures of Constman and Localize Boy
2005-06-20 Rafael Garcia-SuarezRemove the deprecated $# variable
2005-06-07 Nicholas ClarkMore SvPV consting.
2005-06-07 Nicholas ClarkLots of consting
2005-06-07 Andy LesterUnvoid SvUPGRADE
2005-06-03 Andy LesterRandom consting
2005-06-02 Andy Lesteruse lengths in sv_setpv() calls
2005-06-02 Andy LesterQuotes fixed, see also perl #36079
2005-05-26 Nicholas ClarkStore the package name as a shared HEK.
2005-05-21 Rafael Garcia-SuarezReally fix change 24527
2005-05-21 Rafael Garcia-SuarezCompilation fix
2005-05-21 Nicholas ClarkMove hv_name, hv_eiter and hv_riter into a new aux...
2005-05-21 Steve PetersSvPVX_const - patch #2
2005-05-18 Gisle AasWell defined $? and introduction of ${^CHILD_ERROR_NATI...
2005-05-11 Rafael Garcia-SuarezInclude vim/emacs modelines in generated files to open...
2005-05-10 Rafael Garcia-SuarezAdd editor boilerplates to all C files
2005-05-09 Andy Lesterattributes-two.patch, the next batch
2005-05-09 Nicholas ClarkHoist the static "AUTOLOAD" into a static const variabl...
2005-05-02 Andy Lesterprintf.patch: Adding printf checking for gcc
2005-04-21 Jarkko HietaniemiSymbian port of Perl
2005-04-19 Steve PetersRefactoring to Sv*_set() macros - patch #5
2005-04-18 Steve PetersRefactoring to Sv*_set() macros - patch #4
2005-04-05 Nicholas ClarkAdd casting to allow g++ (3.3.5) to compile the core...
2005-03-25 Andy LesterConsting five
2005-03-24 Andy LesterThird consting batch
2005-03-18 Andy LesterMore const parms
2005-03-14 Andy LesterAdding const qualifiers
2005-01-19 Robin BarkerFurther follow-up to 23767
2005-01-07 Nicholas ClarkStage 1 of utf8 support for soft references.
2005-01-04 Nicholas ClarkAdd ${^UTF8LOCALE} to give perl space access to PL_utf8...
2005-01-01 Nicholas ClarkNot all the world's a VAX, er ASCII, so don't make...
2004-12-31 Nicholas ClarkImprove documentation for is_gv_magical, and split...
2004-12-31 Nicholas ClarkBecause name is always NUL terminated we can incorporat...
2004-12-31 Nicholas ClarkGenerate smaller object code by using a single switch...
2004-12-31 Nicholas ClarkTidy up comments in change 23716
2004-12-31 Nicholas ClarkRefactor gv_fetchpv so that the overwhelmingly common...
2004-12-13 Steve HayDocument gv_stashpvn
2004-12-07 Nicholas ClarkRevert part of the change to gv_fullname4(), as the...
next