This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Promote v5.36 usage and feature bundles doc
[perl5.git] / pp.c
2022-08-25 Richard LeachAdd OPpTARGET_MY optimization to OP_UNDEF
2022-08-15 Paul "LeoNerd" EvansUse the cPMOPx-family of macros instead of manual ...
2022-08-12 Yves OrtonAdd a new env var PERL_RAND_SEED
2022-08-08 Tony Cookexplicitly ignore the result of sv_utf8_downgrade()
2022-08-05 Richard LeachReplace sv_2mortal(newSVhek( with newSVhek_mortal
2022-07-18 Tony Cookavoid signed integer overflow in "use integer" ops
2022-07-05 James RaspassAdd builtin::is_tainted
2022-07-04 Karl Williamsonlocale: Change macro name to be C conformant
2022-06-20 David Mitchells/JUMPENV/JMPENV/g
2022-06-14 Karl WilliamsonConvert '!!' to cBOOL()
2022-06-08 Richard Leachpp_unshift: av_store is often unnecessary
2022-05-28 sisyphuspp.c - fix for Perl_pow for ivsize== 4, nv is 'doubledo...
2022-03-07 Paul "LeoNerd" EvansRename is{bool,weak} to is_{bool,weak}
2022-03-07 Richard LeachPerl_newSV_type_mortal - new inline function introduced...
2022-03-07 Richard LeachInlined newSV_type(SVt_NULL) leaner than non-inlined...
2022-01-24 James RaspassAdd ceil & floor to builtin
2021-12-09 TAKAI KousukeSimplify IV abs operation in pp_abs.
2021-12-09 TAKAI KousukeUnify SETu() calls in pp_abs.
2021-12-09 TAKAI KousukeReplace SvUV_nomg(sv) with SvUVX(sv) in pp_abs.
2021-12-08 Paul "LeoNerd" EvansGive blessed() the same TRUEBOOL optimisation that...
2021-12-08 Paul "LeoNerd" EvansAdd builtin::blessed, refaddr and reftype
2021-12-04 Richard LeachMisc microoptimizations when dealing with new SVs
2021-12-04 Paul "LeoNerd" EvansAdd builtin:: funcs for handling weakrefs
2021-12-03 Paul "LeoNerd" EvansImprovements to OP_ISBOOL
2021-12-01 Paul "LeoNerd" EvansDirect optree implementations of builtin:: functions
2021-10-07 David Mitchelladd OPpUSEINT op_private flag bit
2021-09-22 TAKAI KousukeUse fabs/fabsl/fabsq for NVs in pp_abs.
2021-08-25 Paul "LeoNerd" EvansConvert some existing uses of SvRV_set() to use the...
2021-08-23 Nicholas ClarkPre-extend new anonymous hashes before assigning to...
2021-06-01 Paul "LeoNerd" EvansRename G_ARRAY to G_LIST; provide back-compat when...
2021-05-31 Michael G SchwernBase *.[ch] files: Replace leading tabs with blanks
2021-04-16 TAKAI Kousukepp.c: Clip shift amount of <<, >> to avoid overflow
2021-03-29 Karl WilliamsonFix broken left shift of IV_MIN under 'use integer'
2021-03-29 Karl Williamsonpp.c: Fix comment
2021-02-09 Richard Leachpp_split: realarray to bool, multiline to scoped const
2021-02-09 Richard Leachpp_split: reduce new SV flag computations
2021-02-05 Karl WilliamsonAvoid some compiler warnings with -DNO_LOCALE
2021-01-03 Felipe GasperSignatures: add argument counts to count-mismatch error...
2020-12-30 Karl WilliamsonFix buggy fc() in Turkish locale
2020-12-08 TAKAI Kousukepp.c: oct() now skips "0o" and "o" prefix.
2020-11-15 Richard Leachpp_split: add TonyC's stack-not-refcounted-suggestion...
2020-11-15 Richard Leachpp_split: no SWITCHSTACK in @ary = split(...) optimisation
2020-10-08 Richard Leachpp_split: reify using NULL rather than PL_sv_undef...
2020-10-03 Richard Leachpp_split: RXf_NULL branch - separate out scalar & UTF8...
2020-10-02 Hugo van der SandenRevert "pp_split: RXf_NULL branch [...]"
2020-09-30 Richard Leachpp_split: RXf_NULL branch - separate out (gimme_scalar...
2020-08-30 Richard Leachpp_akeys: use av_top_index rather than Perl_av_len
2020-08-20 Karl WilliamsonUse av_top_index() instead of av_tindex()
2020-08-20 Karl Williamsonpp.c: Convert to use av_count()
2020-07-30 Richard LeachRemove obsolete FCRYPT ifdefs and associated PL_cryptse...
2020-07-30 Richard Leachpp.c/pp_hot.c - add NV<->NV case to numerical compariso...
2020-07-20 Dagfinn Ilmari Man... Remove use of dVAR in core
2020-05-30 H.Merijn BrandPerl 6 -> Raku where appropriate
2020-05-27 Tony Cookset magic on $lex for $lex = (index(...) == -1) and...
2020-05-27 Tony Cookfix utf8 length magic handling for scalar reverse
2020-03-29 Dagfinn Ilmari Man... Perl_unipmlemented_op: Fix comment and unnecessary...
2020-03-13 Zeframchained comparisons
2020-02-05 Dagfinn Ilmari Man... pp_i_modulo(): remove workaround for ancient glibc bug
2020-02-04 David Mitchellpp_crypt(): reindent CPP directives
2020-02-03 David Mitchellpp_crypt(): remove ancient glibc bug workaround
2020-01-14 Karl WilliamsonImprove performance of grok_bin_oct_hex()
2019-12-09 Paul "LeoNerd" EvansAdd the `isa` operator
2019-10-30 Tomasz Konojackiremove CONSERVATIVE and LIBERAL
2019-10-30 Tomasz Konojackiuse PTR2nat() instead of casting pointers to unsigned...
2019-10-03 David Mitchellfix some signed/unsigned warnings
2019-09-23 David MitchellSignatures: change param count from IV to UV
2019-09-23 David MitchellOP_ARGCHECK: use custom aux struct
2019-05-28 Dagfinn Ilmari Man... Remove remaining assignments to SvCUR and SvLEN in...
2019-05-24 Karl WilliamsonRemove undefined behavior from IV shifting
2019-05-24 Karl Williamsonpp.c: Add two UNLIKELY()s
2019-05-24 Karl WilliamsonCreate fcn for lossless conversion of NV to IV
2019-05-24 Karl Williamsonpp.c: White-space only
2019-04-12 Karl Williamsonpp.c: Silence some MS VC warnings
2019-03-19 Karl Williamsonpp.c: Use safer utf8_hop
2019-03-19 Karl Williamsonpp.c, pp_sys.c: Use DO_UTF8 instead of its expansion
2019-03-08 Karl WilliamsonPATCH: [perl #133876] Write out of bounds
2019-02-21 Tony Cook(perl #133778) adjust MARK if we extend the stack in...
2019-02-19 David Mitchelladd dVAR's for PERL_GLOBAL_STRUCT_PRIVATE builds
2019-02-05 Karl Williamsonpp.c: White-space only
2019-02-05 Karl Williamsonpp.c: Add handling for Turkish locales for uc() etc
2019-02-05 Karl Williamsonpp.c: Clarify comment
2019-02-05 David MitchellEliminate AMGf_set flag
2019-02-05 Karl Williamsonpp.c: White-space only
2019-02-05 Karl Williamsonpp.c: Avoid use of unsafe function
2019-02-05 Karl Williamsonpp.c: Add branch prediction hint
2019-02-05 Karl Williamsonpp.c: Don't assume worst case memory needs
2019-02-05 Karl Williamsonpp.c: Don't use function call for easy copy
2019-02-05 Karl Williamsonpp.c: Don't use function call for easy copy
2019-02-05 Karl Williamsonpp.c: pp_fc(): Simplify
2019-02-05 Karl Williamsonpp.c: White-space, comments only
2019-02-05 Karl Williamsonpp.c: Reorder clause order in an 'if'
2019-02-05 Karl Williamsonpp.c: Use faster method to convert to UTF-8
2019-02-05 Karl Williamsonpp.c: Add missing assert
2018-11-21 Tomasz Konojackioptimize IV -> UV conversions
2018-11-05 David MitchellDon't localise array / hash slice ref assignment
2018-11-02 Tomasz Konojackipp_divide: use modulo instead of multiplication
2018-05-11 David Mitchellfix build failure with recent glibc
2018-04-26 David MitchellRevert "Unweaken refs in in-place reverse"
2018-04-08 Marc-PhilipPATCH: [perl #133074] 5.26.1: some coverity fixes
2018-03-07 Daniel Draganrmv/de-dup static const char array "strings"
next