summaryrefslogtreecommitdiff
path: root/pp.c
Commit message (Expand)AuthorAgeFilesLines
* Remove IN_ENCODING macro, and all code dependent on itFather Chrysostomos2016-07-131-48/+2
* add missing dVAR in pp_avhvswitchDavid Mitchell2016-05-251-1/+1
* Allow assignment to &CORE::keys()Father Chrysostomos2016-05-201-2/+2
* Allow &CORE::foo() with array functionsFather Chrysostomos2016-05-201-7/+35
* Allow &CORE::foo() with hash functionsFather Chrysostomos2016-05-201-5/+16
* Add avhvswitch opFather Chrysostomos2016-05-201-0/+6
* pp.c: Use PL_op_desc in pp_coreargsFather Chrysostomos2016-05-201-1/+1
* [perl #128187] Forbid keys @_ in assigned lv subFather Chrysostomos2016-05-201-0/+9
* Correct error msg for sub:lvalue{%h{k}} in sassignFather Chrysostomos2016-05-201-1/+2
* Fix crash with: undef *_; shift;Father Chrysostomos2016-05-171-1/+1
* Remove some autoderef leftoversFather Chrysostomos2016-05-171-34/+4
* better glibc i_modulo bug handlingjimc2016-05-171-52/+2
* stop lc() etc accidentally modifying in-place.David Mitchell2016-03-241-11/+3
* Cast away Solaris Studio 12.3 warning.Jarkko Hietaniemi2016-02-041-1/+1
* make gimme consistently U8David Mitchell2016-02-031-8/+8
* convert CX_PUSHSUB/POPSUB to inline fnsDavid Mitchell2016-02-031-1/+1
* rename POPFOO() to CX_POPFOO()David Mitchell2016-02-031-1/+1
* add CX_CUR() macroDavid Mitchell2016-02-031-3/+3
* factor common code into POPSUB_ARGS()David Mitchell2016-02-031-14/+2
* pp_coreargs: rationalise @_ codeDavid Mitchell2016-02-031-9/+14
* pp_entersub: skip resetting @_David Mitchell2016-02-031-2/+6
* eliminate the argarray field from the CX structDavid Mitchell2016-02-031-2/+1
* assert that it's safe to remove CX.argarray fieldDavid Mitchell2016-02-031-0/+5
* fix op/infnan.t test fails with NAN conversion on VC 6Daniel Dragan2016-01-281-6/+16
* *glob{FILEHANDLE} is no longer deprecatedRicardo Signes2016-01-021-2/+0
* Deprecate wide chars in logical string opsKarl Williamson2015-12-161-0/+2
* infnan: NaN payload for mixed endian double-doublesJarkko Hietaniemi2015-12-141-2/+2
* pp_padav, pp_padhv whitespace onlyDavid Mitchell2015-12-141-16/+22
* [perl #126193] don't use a trash SV if no indexes are provided to pp_lsliceTony Cook2015-11-171-9/+14
* split pp_postdec() from pp_postinc() and improveDavid Mitchell2015-11-101-17/+63
* faster add, subtract, multiplyDavid Mitchell2015-11-101-9/+110
* perl #126396 IRIX longdouble infinity issuesJarkko Hietaniemi2015-10-191-0/+10
* optimise save/restore of PL_delaymagic.David Mitchell2015-10-181-6/+10
* Delay @ISA magic while unshiftingDagfinn Ilmari Mannsåker2015-10-181-2/+9
* Future-proof pp_trans against a possible future undefined behaviourVincent Pit2015-10-051-1/+2
* fix up EXTEND() callersDavid Mitchell2015-10-021-13/+16
* pp.c:pp_reverse: Don’t use find_rundefsvFather Chrysostomos2015-09-291-1/+1
* In pp.c:pp_coreargs, use DEFSV directlyFather Chrysostomos2015-09-291-4/+1
* Add macro for converting Latin1 to UTF-8, and use itKarl Williamson2015-09-041-1/+1
* Change to use UVCHR_SKIP over UNI_SKIPKarl Williamson2015-09-041-2/+2
* pp.c: White-space onlyKarl Williamson2015-09-031-1/+2
* Safefree(NULL) reductionDaniel Dragan2015-08-031-15/+16
* pp.c: Fix typo in commentKarl Williamson2015-08-011-1/+1
* uc(sharp s) is itself in very early Unicode versionsKarl Williamson2015-07-281-0/+4
* There are no folds to multiple chars in early Unicode versionsKarl Williamson2015-07-281-0/+6
* Delete experimental autoderef featureAaron Crane2015-07-131-42/+1
* Left overshift of negatives under use integer was still wrong.Jarkko Hietaniemi2015-07-031-1/+1
* Define left/right shift by negative to mean the reverse shiftJarkko Hietaniemi2015-06-281-8/+35
* assert(arg) before derefing it since it can be NULL.Jarkko Hietaniemi2015-06-261-7/+10
* assert(key) before it is derefed.Jarkko Hietaniemi2015-06-261-1/+4