]> git.vpit.fr Git - perl/modules/autovivification.git/history - autovivification.xs
Bundle vivify_ref()
[perl/modules/autovivification.git] / autovivification.xs
2015-07-01 Vincent PitBundle vivify_ref()
2015-05-14 Vincent PitDestroy the op map mutex at end time
2015-05-14 Vincent PitAdd a missing aTHX for Win32 builds
2015-05-14 Vincent PitMake sure gv ops seen by multideref are cleaned from...
2015-05-14 Vincent PitUpdate ptable.h
2015-05-14 Vincent PitRevamp module setup/teardown
2015-05-12 Vincent PitRename A_CHECK_MUTEX_* to A_CHECK_*
2015-05-12 Vincent PitDocument that the multideref implementation is only...
2015-05-12 Vincent PitSanitize the return value of a_do_multideref()
2015-04-29 Vincent PitSilence a couple of compiler warnings
2015-04-29 Vincent PitMake multideref work with stores
2015-04-27 Vincent PitAlso check for definedness for MDEREF_[AH]V_vivify_rv2...
2015-04-27 Vincent PitAdd a couple of missing break; statements in pp_multide...
2015-04-25 Vincent PitAdd support for OP_MULTIDEREF
2015-04-25 Vincent PitMake sure MULTIPLICITY builds set PERL_IMPLICIT_CONTEXT
2015-04-25 Vincent PitFactor the error messages in a separate helper function
2015-04-02 Vincent PitReplace STATIC by static
2015-02-06 Vincent PitReally be compatible with the OP_PARENT feature
2014-11-01 Vincent PitAlso mark the unstack ops in our peephole optimizer rt99458 rt99904
2014-10-04 Vincent PitSilence an "unused variable" compiler warnings on threa...
2014-10-04 Vincent PitAdd support for PERL_OP_PARENT
2014-10-04 Vincent PitDo nothing after that the thread local storage has...
2014-10-04 Vincent PitNullify thread local storage entries when they are...
2014-10-04 Vincent PitDon't cleanup thread local storage before END blocks...
2014-10-04 Vincent PitIn the rpeep replacement, don't check every op for...
2013-08-22 Vincent PitReplace check functions in a thread-safe way
2012-10-29 Vincent PitSilence "unused return values" for POPs calls
2011-11-11 Vincent PitReorder the members of the a_op_info struct a bit
2011-07-18 Vincent PitThe last argument to hv_fetch is the lvalue flag, not...
2011-01-04 Vincent PitOnly declare dMY_CXT when really needed
2011-01-04 Vincent PitAlways skip seen ops in our peep replacement rt64435
2011-01-03 Vincent PitFix building on Windows
2010-12-31 Vincent PitSpaces vs tabs
2010-12-31 Vincent PitGet rid of ENTERn/LEAVEn
2010-12-31 Vincent PitMove all run-time tweaks to the peephole optimizer
2010-12-31 Vincent PitFix rare segfaults and bugs with threads
2010-12-30 Vincent PitRemove trailing whitespace
2010-12-30 Vincent PitRemove the #ifdef wrapping the mutex locks/unlocks
2010-12-29 Andrew MainCompatibility fix for perl 5.13.7 and greater rt62800
2010-12-29 Vincent PitUpdate ptable.h
2010-10-03 Vincent PitGet rid of CALL_FPTR()
2010-06-26 Vincent PitUse the new CLONE_PARAMS API with perl 5.13.2
2010-06-21 Vincent PitMake a_map_fetch() a simple macro around ptable_fetch...
2010-06-19 Vincent PitReplace !a_defined() by a_undef()
2010-06-01 Vincent PitImprove the thread destructor trick
2010-05-18 Vincent PitUse a PPCODE: section in CLONE
2010-04-24 Vincent PitWhen a thread exits, teardown what we set up
2010-04-24 Vincent PitIntroduce A_THREADSAFE and A_FORKSAFE
2010-04-24 Vincent PitFix cloning of hints object when the require propagatio...
2010-04-24 Vincent PitImprove the require propagation workaround
2010-04-23 Vincent PitMake sure a_defined() calls get magic before testing... rt56870
2010-03-04 Vincent PitHandle non-numeric hints rt55154
2009-09-30 Vincent PitOnly look up to the first require scope for the require...
2009-06-24 Vincent PitHandle array and hash slices
2009-06-24 Vincent PitFactor the rv2xv recheck logic
2009-06-23 Vincent PitEliminate a quadratic behaviour at compile time
2009-06-19 Vincent PitAlso handle old-style dereferencing "$$hashref{key}"
2009-06-18 Vincent PitThe hint in a_hint() need not to be const
2009-06-18 Vincent PitStore UVs more portably into the hint
2009-06-18 Vincent PitClassify aliasing constructs in the "store" category
2009-06-18 Vincent PitReset the original pp whenever possible in pp_rv2xv
2009-06-18 Vincent Pitrv2xv introducing a gv don't need to be overridden
2009-06-17 Vincent PitA crude warning test
2009-06-17 Vincent PitIf we fetch from the pointer table, the entry must...
2009-06-17 Vincent PitUpdate ck_root() comment
2009-06-17 Vincent PitDon't autovivify in keys/values
2009-06-17 Vincent PitPlain dereferencing shouldn't have a different behaviour
2009-06-16 Vincent PitDelete exists/delete ops from the map when the pragma...
2009-06-15 Vincent PitFix segfaults for "keys %$x"
2009-06-15 Vincent PitDon't vivify when aliasing
2009-06-15 Vincent PitHelp the compiler optimize the PL_op->op_private hack
2009-06-15 Vincent PitDelete obsolete entries whenever possible
2009-06-14 Vincent PitInitial import