This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perldelta for 94a2f6a3c87a
[perl5.git] / op.c
2019-06-03 Tony Cook(perl #134048) prevent an erroneous assertion on OP_SCALAR
2019-05-31 Karl WilliamsonRemove redundant info on =for apidoc lines
2019-05-27 Dagfinn Ilmari Man... Don't use PL_check[op_type] to check for filetets ops...
2019-05-26 chinarulezzz{op, pp, regcomp}.c: fix missing parentheses in 'if...
2019-05-02 Aaron CraneRT#134061: don't call pad_findmy_pvn() with invalid...
2019-04-23 David Mitchellfix -DPERL_POISON builds
2019-04-17 David Mitchells/safefree()/Safefree() in a few places
2019-04-12 David Mitchellfix leak in Perl_coresub_op()
2019-04-12 David MitchellAvoid leak/crash calling CORE::foo()
2019-04-12 David Mitchellfix leak in do { ... } while 0
2019-04-12 David MitchellPerl_newLISTOP() allocate OP_PUSHMARK safely
2019-04-04 David Mitchellfix leak in Perl_vload_module()
2019-04-03 David MitchellAvoid leaks in Perl_custom_op_get_field()
2019-03-26 David Mitchellfix CvFILE() leak in Perl_newMYSUB()
2019-03-19 David Mitchellop_free() remove redundant !kid test
2019-03-19 David Mitchellhandle scope error in qr/\(?{/
2019-03-15 Karl WilliamsonS_multiconcat() Use faster variant counting
2019-03-12 David Mitchellfix blead on non-threaded builds
2019-03-11 David MitchellFix leak on syntax error in main prog
2019-03-11 David Mitchellfix leak when compiling typed hash deref
2019-03-07 David Mitchellfix CvFILE() leak in Perl_newATTRSUB_x()
2019-03-07 David Mitchelladd comments above Perl_newSTUB()
2019-03-07 David Mitchellfix leak in /[(?{]/
2019-03-07 David Mitchelldocs for op slab functions
2019-02-27 Karl WilliamsonFix dup_warnings()
2019-02-27 Karl WilliamsonAdd missing ARGS_ASSERT
2019-02-27 David Mitchelladd Perl_dup_warnings() and fix leak
2019-02-22 David MitchellPerl_op_sibling_splice(0 remove dead code
2019-02-19 David Mitchelladd dVAR's for PERL_GLOBAL_STRUCT_PRIVATE builds
2019-02-05 Tony Cook(perl #133824) fix threading builds
2019-02-04 Tony Cook(perl #108276) optimize child ops in sibling order
2019-02-04 Tony Cook(perl #108276) indent optimize_op() loop body
2019-02-04 Tony Cook(perl #108276) remove recursion from optimize_op()
2019-02-04 Tony Cook(perl #108276) add wrappers for deferred op processing
2019-02-04 Tony Cook(perl #108276) indent body of new finalize_op() loop
2019-02-04 Tony Cook(perl #108276) eliminate recursion from finalize_op()
2019-01-24 Tony CookPERL_OP_PARENT is always defined, stop testing for it
2019-01-22 Tony Cook(perl #130367) separate error for push etc on hash...
2019-01-06 Tony Cook(perl #133575) prevent set/longjmp clobbering locals...
2018-10-03 James E KeenanImplement scheduled fatalization of my() in false condi...
2018-09-26 Dagfinn Ilmari Man... Remove support for setting $[ to a non-zero value
2018-08-29 David Mitchellmulticoncat: mutator not seen in (lex = ...) .= ...
2018-07-14 David Mitchelltreat when(index() > -1) as a boolean expression
2018-04-19 Aaron Craneop.c: fix weird indentation
2018-02-19 David Mitchellmulticoncat: /$a(?{ $b . "c" })/ could crash
2018-02-19 David MitchellS_maybe_multiconcat(): fix some code comments
2018-02-04 Father ChrysostomosDisable CV-in-stash optimization
2018-01-19 Father ChrysostomosApply the mod flag to @a in \(@a)
2018-01-19 David Mitchelltr///: remove some I32 from S_pmtrans()
2018-01-19 David Mitchelltr/nonutf8/nonutf8/c: simplify GROW calc
2018-01-19 David Mitchelltr///; simplify $utf8 =~ tr/nonutf8/nonutf8/
2018-01-19 David Mitchelltr///c: handle len(replacement charlist) > 32767
2018-01-19 David Mitchelladd two structs for OP_TRANS
2018-01-19 David Mitchellfix "\x{100}..." =~ tr/.../.../cd
2018-01-19 David MitchellOP_TRANS: change extended table format
2018-01-19 David MitchellS_pmtrans(): add assert and simplify conditional
2018-01-19 David MitchellS_pmtrans(): always use op_private flag variables
2018-01-19 David MitchellS_pmtrans(): remove some whitespace
2018-01-19 David Mitchelltr/// functions: add some basic code comments
2018-01-08 Father ChrysostomosStop alloc_LOGOP from always setting OPf_KIDS
2017-12-31 Father ChrysostomosRemove experimental bitwise warning
2017-12-29 Zeframrevert smartmatch to 5.27.6 behaviour
2017-12-25 David Mitchellmutlitconcat: fix non-folding adjacent consts
2017-12-17 Zeframmerge branch zefram/dumb_match
2017-12-14 Zeframwarn on $a.$b.$c in void context
2017-12-12 Zeframproperly check readpipe()'s argument list
2017-12-11 David MitchellS_maybe_multiconcat(): use OPpCONCAT_NESTED flag
2017-12-06 Zeframremove stray NULLOK/NN from apidoc directives
2017-12-06 Zeframdon't mistake tr/// for assignable reference
2017-12-05 Zeframbetter name for parameter to newGIVENOP()
2017-12-05 Zeframinternally change "when" to "whereso"
2017-12-05 Zeframchange "when" keyword to "whereso"
2017-12-05 Zeframmerge leavegiven op type into leaveloop
2017-12-05 Zeframdocument newATTRSUB_x()
2017-12-05 Zeframmore fully document newCONSTSUB{,_flags}()
2017-12-05 Zeframdocument newXS_len_flags()
2017-12-05 Zeframavoid attaching prototype to freed XS sub
2017-12-04 David Mitchellmulticoncat: don't fold adjacent constants
2017-12-02 Father Chrysostomos[perl #132527] Allow 4-arg substr(delete ...)
2017-11-29 Zeframremove unused CXp_FOR_DEF and OPpITER_DEF
2017-11-29 David Mitchellrpeep(): use OPpPADHV_ISKEYS, not OPpRV2HV_ISKEYS
2017-11-29 Zeframuse LOOP struct for entergiven op
2017-11-28 Zeframremove useless "default" mechanism
2017-11-28 Jarkko HietaniemiMake certain the info is initialized.
2017-11-23 David Mitchelladd OPpCONCAT_NESTED flag
2017-11-22 Zeframeviscerate smartmatch
2017-11-21 Zeframremove unused arg from newGIVWHENOP()
2017-11-21 Zeframregularise "when"
2017-11-21 Zeframregularise "given"
2017-11-21 Zeframupdate newGIVENOP() doc for loss of lexical $_
2017-11-17 Zeframrip out quicksort and sort algorithm control
2017-11-16 Zeframfix lvalue context for 4-arg substr
2017-11-15 Father Chrysostomos[perl #132442] Fix stack with do {my sub l; 1}
2017-11-14 David MitchellOP_MULTICONCAT: fix AIX
2017-11-14 Zeframfix newPVOP() doc re freeing of pv
2017-11-13 David Mitchellchange OP_MULTICONCAT nargs from UV to SSize_t
2017-11-13 David Mitchellrename op_aux field from 'size' to 'ssize'
2017-11-12 Dagfinn Ilmari Man... Fix sprintf multiconcat on 32bit big-endian systems...
2017-11-11 Father ChrysostomosRevert "Temporarily revert CV-in-stash optimisation"
2017-11-06 Nicolas RUse my_memrchr helper for portability
next