This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
universal.c: Make croak_xs_usage account for UTF8
[perl5.git] / op.c
2011-10-06 Brian FraserMake op.c warnings UTF8-clean
2011-10-06 Brian Fraserop.c: Flag named methods if they are in UTF-8.
2011-10-06 Brian Fraserop.c: newCONSTSUB and newXS UTF8 cleanup.
2011-09-10 Jim Cromieimplement OP_IS_NUMCOMPARE like other OP_IS macros
2011-09-09 Zeframremove index offsetting ($[)
2011-09-08 Robin Barkerremove unused variables and assignments
2011-09-06 Nicholas ClarkS_op_integerize() needs a dVAR, else -DPERL_GLOBAL_STRU...
2011-09-05 Gerard GoossenMove non-constant folding parts of fold_constants into...
2011-09-01 Gerard GoossenUse OPpDEREF for lvalue sub, such that the flags contai...
2011-08-28 Father Chrysostomos&CORE::substr()
2011-08-28 Father Chrysostomos&CORE::select()
2011-08-27 Father Chrysostomos&CORE::foo() for (sys)read and recv
2011-08-25 Father Chrysostomos&CORE::foo() for @ and $@ prototypes, except unlink
2011-08-25 Father Chrysostomos&CORE::caller()
2011-08-25 Father Chrysostomos&CORE::binmode()
2011-08-25 Father ChrysostomosAllow ampersand calls for CORE subs with $*$$**$ protos
2011-08-25 Father ChrysostomosEnable ampersand calls to CORE subs with $$$ prototypes
2011-08-25 Father ChrysostomosSimplify the CORE::__FOO__ op-generation code
2011-08-25 Father ChrysostomosMove coresub op-creation from gv.c to op.c
2011-08-25 Gerard GoossenMove making inplace sort and reverse away from the...
2011-08-25 Father ChrysostomosRevert "Test CORE::break’s prototype"
2011-08-25 Father ChrysostomosTest CORE::break’s prototype
2011-08-24 Gerard Goossen[perl #97088] Prevent double get-magic in various cases
2011-08-22 Father ChrysostomosMake unlink with implicit $_ work once more
2011-08-21 Father ChrysostomosRefactor unpack’s newDEFSVOP logic; correct prototype
2011-08-17 Father Chrysostomos[perl #96126] Allocate CvFILE more simply
2011-08-16 Father Chrysostomos[perl #97076] Fix mad+threads bareword strict exemption
2011-08-16 Gerard GoossenRemove OPpENTERSUB_NOMOD.
2011-08-16 Gerard GoossenPropagate lvalue context only to children of list ops...
2011-08-15 Father ChrysostomosGive not and getprotobynumber listop prototypes
2011-08-15 Gerard GoossenMove checking of CV to GV assigned (OPpASSIGN_CV_TO_GV...
2011-08-15 Father ChrysostomosMake lock(&foo) syntax nominally lock the subroutine
2011-08-14 Father ChrysostomosUpdate core_prototype’s docs
2011-08-14 Father ChrysostomosMove pp_-specific code out of core_prototype
2011-08-14 Father ChrysostomosChange core_prototype to take a keyword num
2011-08-14 Father ChrysostomosAdd inlinable &CORE::functions
2011-08-14 Father ChrysostomosMake core_prototype provide the op number as well
2011-08-14 Father ChrysostomosRemove select’s prototype
2011-08-12 Father ChrysostomosChange (l)stat’s prototype from * to ;*
2011-08-12 Father ChrysostomosRevert "[perl #95550] Remove prototypes from (l)stat"
2011-08-11 Gerard GoossenMove bareword checking from the peephole optimizer...
2011-08-11 Gerard GoossenMove context propagation and finalize_optree from do_ev...
2011-08-09 Father ChrysostomosMake prototype("CORE::CORE") die once more.
2011-08-08 Gerard GoossenOnly warn about "Statement unlikely to be reached"...
2011-08-08 Gerard GoossenChange aassign_common_vars to check using the optree...
2011-08-08 Gerard GoossenMove aassign common var detection to a separate function.
2011-08-06 Father ChrysostomosRemove comment from ck_glob that is no longer relevant
2011-08-02 Father ChrysostomosRemove Perl_mod
2011-07-31 Gerard GoossenCall finalize_optree on optree generated by newFORM.
2011-07-28 Gerard GoossenAdd finalize_optree function which can take over all...
2011-07-26 Father Chrysostomos[perl #95550] Remove prototypes from (l)stat
2011-07-26 Father Chrysostomoscore_prototype: Remove special cases for lock and tie
2011-07-26 Father Chrysostomoscore_prototype: Eliminate the special mkdir case
2011-07-26 Father ChrysostomosAdd core_prototype; make pp_prototype use it
2011-07-21 Father Chrysostomos[perl #81290] assertion failure with lock &lvsub
2011-07-18 Vincent PitTransform the loop in rpeep that handles the undeferred ops
2011-07-18 David MitchellPerl_rpeep: undo tail recursion optimisation
2011-07-17 Father ChrysostomosRename store/fetch_cop_label as cop_*
2011-07-15 David Mitchellensure SVs_PADTMP and SVs_PADTMP not both on
2011-07-14 David Mitchellfully short-circuit &&, ||, //
2011-07-14 David Mitchellmake peep optimiser recurse mostly only shallowly
2011-07-13 Brian FraserThis cleans the "Can't localize lexical variable" error.
2011-07-13 Brian FraserHandling of the flag parameter in Perl_allocmy, instead...
2011-07-13 ZeframAPIify pad functions
2011-07-11 Gerard Goossenuse a flag to signal a stacking filetests instead of...
2011-07-10 Father ChrysostomosPropagate (non-)lvalue context through nested calls
2011-06-28 David MitchellRT 64804: tainting with index() of a constant
2011-06-27 Vincent PitFix context propagation below return()
2011-06-25 Vincent PitCorrectly preserve the stack on an implicit break.
2011-06-24 Father ChrysostomosAllow the \$ proto to accept any scalar lvalue [perl...
2011-06-24 Father ChrysostomosMake Perl_op_lvalue_flags provide a no-croak option
2011-06-24 Father Chrysostomosop_lvalue .= _flags
2011-06-21 Father ChrysostomosStop ‘sub :lvalue :Foo’ from applying :lvalue to define...
2011-06-17 Father ChrysostomosAllow ‘sub x :lvalue’ to apply to XSUBs and stubs
2011-06-12 Nicholas ClarkSplit OP_AELEMFAST_LEX out from OP_AELEMFAST.
2011-06-10 Father ChrysostomosScalar keys assignment through lvalue subs
2011-06-09 Father ChrysostomosFix my + attrs + list assignment
2011-06-04 Father Chrysostomos[perl #7946] Lvalue subs do not autovivify
2011-06-01 Father ChrysostomosMake empty lvalue subs work correctly
2011-06-01 Father ChrysostomosAllow rvalue syntax in expr returned from lvalue sub
2011-05-25 Hojung Yoon[perl #90888] each(ARRAY) on scalar context should...
2011-05-19 Michael WittenPerl_ck_split: Avoid unnecessary assignment
2011-05-19 Nicholas ClarkIn Perl_op_clear(), uncomment the call to mad_free()
2011-05-19 Nicholas ClarkIn S_fold_constants() under MAD, need to copy the SV...
2011-05-19 Nicholas ClarkUnder ithreads, convert SVOPs stored in MADPROPs to...
2011-05-19 Nicholas ClarkAllocate MADPROPs using PerlMemShared_malloc()
2011-04-19 Father ChrysostomosMake keys $scalar an lvalue
2011-04-19 Father ChrysostomosMake keys/value/each $scalar accept only unblessed...
2011-04-18 Father ChrysostomosMake push/shift $scalar accept only unblessed aryrefs
2011-04-03 Father Chrysostomos[perl #87064] eval no longer shares filters
2011-02-06 David Mitchellallow wrap-around of PL_cop_seqmax
2011-01-21 David Mitchelladd GvCV_set() and GvGP_set() macros.
2011-01-20 Tony Cookprovide an explicit cast to the enum parameter for C++
2011-01-17 Karl WilliamsonCH] Change usage of regex/op common to common names
2011-01-16 Karl WilliamsonUse multi-bit field for regex character set
2011-01-16 Karl Williamson.pm: rename variables to reflect expanded usage
2011-01-10 Karl Williamsonop.c: Remove unnecessary flag
2011-01-09 Nicholas ClarkGenerate pp_* prototypes in pp_proto.h, and remove...
2011-01-07 Peter J. Acklam... Fix typos (spelling errors) in Perl sources.
2011-01-02 David Mitchellmake <expr> always overload if expr is overloaded
next