This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
B: Really remove unused var
[perl5.git] / op.c
2017-10-08 Father Chrysostomos[perl #129916] Allow sub-in-stash outside of main
2017-08-28 Father Chrysostomos[perl #131883] Include pkg in :prototype warnings
2017-08-28 Father ChrysostomosAdd another param to validate_proto
2017-08-22 Father ChrysostomosSprinkle diag_listed_as; perldiag tweaks
2017-08-22 Father ChrysostomosAdd SORTf_UNSTABLE flag
2017-08-08 Zeframuse cv_set_call_checker_flags() where possible
2017-08-08 Zeframadd cv_get_call_checker_flags()
2017-08-08 Zeframfix parameter name in doc
2017-08-07 David Mitchellfix index(...) == -1 type optimisations
2017-08-05 David Mitchellextend index(...) == -1 optimisation
2017-08-04 David Mitchellmerge Perl_ck_cmp() and Perl_ck_eq()
2017-08-01 David Mitchellfix ($lex = index(....)) == -1
2017-07-31 Zeframfix example code in wrap_op_checker() doc
2017-07-27 David Mitchellmake scalar(keys(%lexical)) less slow.
2017-07-27 David Mitchelloptimise (index() == -1)
2017-07-27 David Mitchelladd boolean context support to several ops
2017-07-27 David MitchellS_check_for_bool_cxt(): avoid OPpTARGET_MY + bool
2017-07-27 David Mitchelloptimise @array in boolean context
2017-07-27 David Mitchelloptimise away OP_KEYS op in scalar/void context
2017-07-27 David Mitchelluse OPpAVHVSWITCH_MASK
2017-07-27 David Mitchellgive REGEXP SVs the POK flag again
2017-07-27 David MitchellS_check_for_bool_cxt(): special-case OP_AND
2017-07-21 Father Chrysostomosop.c: Confusing comment typo
2017-07-10 Tony Cook(perl #131597) ensure the GV slot is filled for our...
2017-07-02 Father Chrysostomosop.c: Remove unused THX param
2017-06-26 David MitchellS_gen_constant_list(): initialise si_stack_hwm
2017-06-22 Dagfinn Ilmari Man... [perl #131627] Fix multideref for $x{qw/a/->$*}
2017-06-05 David Mitchellmake OP_REF support boolean context
2017-06-02 Dagfinn Ilmari Man... Add support for deleting key/value slices (RT#131328)
2017-02-20 Karl Williamsonop.c: Add comment
2017-02-19 Aaron Crane[perl #130815] fix ck_return null-pointer deref on...
2017-02-18 Andy LesterMoving variables to their innermost scope.
2017-02-18 David Mitchellpp_multideref: tweak an assertion
2017-02-14 Karl WilliamsonImprove handling pattern compilation errors
2017-02-08 Tony Cook(perl #130705) don't convert match with argument to qr
2017-02-07 David Mitchellmultideref: handle both OPpLVAL_INTRO,OPpDEREF
2017-01-27 Zeframfix range op under aborted constant folding
2017-01-24 David Mitchellhandle op_pv better in op_clear() and op_dump()
2017-01-23 David Mitchellavoid sort assert failure after compile fail
2017-01-22 Zeframhandle errors in gen_constant_list
2017-01-17 David Mitchelladd S_process_optree() function to op.c
2017-01-16 Abigailmy() in a false conditional will be fatal in Perl 5.30
2017-01-14 Father Chrysostomos[perl #130546] Restore delete-scalar-slice warning
2017-01-06 David MitchellIn A && B, stop special-casing boolean-ness of A
2017-01-06 David Mitchelladd xor, grep, flip, flop to boolean cxt detection
2017-01-06 David Mitchellreindent block in rpeep()
2017-01-06 David Mitchellre-implement boolean context detection
2017-01-02 David MitchellHandle chop(@a =~ tr///)
2016-12-23 Karl WilliamsonConvert core (except toke.c) to use isFOO_utf8_safe()
2016-12-05 David Mitchellassertion failure in ... or ((0) x 0))
2016-12-05 David Mitchelladd some /* NOTREACHED */
2016-12-05 Andy LesterClean up warnings uncovered by 'clang -Weverything'.
2016-11-24 David Mitchellavoid premature free of referent in list assign
2016-11-18 Karl WilliamsonChange white space to avoid C++ deprecation warning
2016-11-14 David Mitchelleliminate OPpRUNTIME private PMOP flag
2016-11-12 Aaron Craneop.c: clarify documentation for Perl_load_module()
2016-10-22 Lukas Maiop.c: silence compiler warning in fold_constants()
2016-10-19 Yves Ortonop.c: use new SvPVCLEAR and constant string friendly...
2016-10-18 Karl Williamsonop.c: Fix EBCDIC-only bug
2016-10-17 Tony Cook(perl #128996) prevent PL_op pointing to freed ops
2016-10-12 Lukas Maiop.c: fix what looks like typos in comments
2016-10-04 David MitchellPerl_newASSIGNOP: fix on g++ builds
2016-10-04 David Mitchellfix common assign issue on @a = (split(), 1)
2016-10-04 David MitchellBetter optimise my/local @a = split()
2016-10-04 David Mitchellre-indent block in Perl_newASSIGNOP
2016-10-04 David Mitchellmake OP_SPLIT a PMOP, and eliminate OP_PUSHRE
2016-09-29 David MitchellOP_SASSIGN: make op_first==op_last for UNOP
2016-09-29 Reini Urbansassign was used as UNOP, optimize {or,and,dor}assign
2016-09-29 Reini Urbansassign is wrongly declared as BASEOP, not BINOP.
2016-09-28 David MitchellOP_MULTIDEREF: ignore customised delete/exists
2016-09-26 David Mitchellmake PADOFFSET be SSizet_t
2016-09-26 David Mitchellfix builds under USE_PAD_RESET
2016-09-10 Father Chrysostomos[perl #129090] Crash with sub c{sub c}
2016-09-10 Father Chrysostomosop.c: Avoid string cmp when unnecessary
2016-09-05 Father Chrysostomos[perl #47047] Fix erroneous AUTOLOAD warning
2016-09-05 Father ChrysostomosStop setting OPf_REF on OP_ENTERSUB
2016-09-05 David MitchellnewATTRSUB_x(): document what the cv var is for
2016-09-05 David Mitchellmake S_already_defined() in op.c return void
2016-09-05 David Mitchellreindent and reformat newMYSUB and newATTRSUB_x
2016-09-05 David MitchellnewMYSUB/Perl_newATTRSUB_x remove a goto
2016-09-05 David Mitchellavoid using freed ops on BEGIN :attr {}
2016-09-05 David Mitchellassert op not freed in finalize_op() and rpeep()
2016-08-28 Father Chrysostomos[perl #125679] Don’t make lvref ops on error
2016-08-17 Jarkko HietaniemiCoverity CID #152143: annotate switch fallthru.
2016-08-03 David Mitchellpeephole optimise op_other branch in OP_ARGDEFELEM
2016-08-03 David MitchellOP_MULTIDEREF: remove ghost entry in op_aux list
2016-08-03 David Mitchelladd OP_ARGELEM, OP_ARGDEFELEM, OP_ARGCHECK ops
2016-08-03 David Mitchellmake op.c:S_alloc_LOGOP() non-static
2016-08-03 David Mitchellsub signatures: use parser rather than lexer
2016-07-29 Father ChrysostomosNew bug numbers in *.[ch]
2016-07-17 Father ChrysostomosClearer declared_refs warning msg
2016-07-17 Father ChrysostomosMake my\ experimental
2016-07-17 Father ChrysostomosAllow my \$a
2016-07-13 David Mitchellop.c: explain op_next generation better
2016-07-04 Father Chrysostomos[perl #128532] Crash vivifying stub in deleted pkg
2016-07-01 David Mitchellop_lvalue_flags(): silence compiler warning
2016-06-27 David MitchellS_lvref() OP_[AH]SLICE => OP_LVREFSLICE flag issue
2016-06-12 Father Chrysostomos[perl #128260] Fix \substr %h
2016-06-11 Father Chrysostomos[perl #128260] Fix lvalue cx for substr and vec
2016-06-11 Father Chrysostomosop.c: Factor out common code for potential lv cx
next