summaryrefslogtreecommitdiff
path: root/pp_hot.c
Commit message (Expand)AuthorAgeFilesLines
* regen/opcode.pl should only generate prototypes for pp_* functions that exist.Nicholas Clark2011-01-091-1/+1
* Generate pp_* prototypes in pp_proto.h, and remove pp.symNicholas Clark2011-01-091-1/+1
* Fix typos (spelling errors) in Perl sources.Peter J. Acklam) (via RT2011-01-071-1/+1
* Convert tied READLINE to using Perl_tied_method()Nicholas Clark2011-01-051-12/+6
* Convert tied PRINT to using Perl_tied_method()Nicholas Clark2011-01-051-16/+5
* Reindent pp_rv2avVincent Pit2011-01-031-31/+31
* GvIO(gv) returns NULL for a NULL gv, so refactor to take advantage of this.Nicholas Clark2011-01-021-3/+3
* make <expr> always overload if expr is overloadedDavid Mitchell2011-01-021-1/+1
* standardise amagic method namingDavid Mitchell2010-12-311-1/+1
* As report_evil_fh() checks WARN_{CLOSED,UNOPENED}, don't duplicate this.Nicholas Clark2010-12-281-3/+2
* As report_wrongway_fh() checks ckWARN(WARN_IO) internally, don't duplicate this.Nicholas Clark2010-12-281-7/+5
* Argument op to report_evil_fh() is always PL_op->op_type, so need not be passedNicholas Clark2010-12-281-3/+3
* The io argument to report_evil_fh() is always GvIO(gv), so need not be passed.Nicholas Clark2010-12-281-3/+3
* Extract the OP_phoney_* code from report_evil_fh() into report_wrongway_fh()Nicholas Clark2010-12-281-2/+2
* only call amagic_deref_call() if we have toDavid Mitchell2010-12-161-5/+8
* don't upgrade overload IV return values to NVDavid Mitchell2010-12-151-1/+1
* Another oops.Father Chrysostomos2010-11-291-3/+1
* Oops.Father Chrysostomos2010-11-291-1/+0
* [perl #68560] calling closure prototype SEGVsFather Chrysostomos2010-11-291-1/+6
* fix for #23790.Marty Pauley2010-11-041-0/+23
* Inline tryAMAGICunDEREF_var() into its callers and eliminate it.Nicholas Clark2010-11-031-3/+4
* s///r leaks like a sieveFather Chrysostomos2010-11-021-1/+1
* RT #63790: &{PL_sv_yes} corrupted mark stackDavid Mitchell2010-10-301-0/+2
* [perl #78674] Fix stack pointer corruption in pp_concat() with 'use encoding'Niko Tyni2010-10-291-0/+3
* Revert "Fix for RT#1804: Anonymous glob breaks when assigned through"Father Chrysostomos2010-10-251-8/+0
* refactor and regularise label/statement grammarZefram2010-10-251-3/+4
* stop map,grep leaking temps [perl #48004]David Mitchell2010-10-041-0/+1
* [perl #77362] Assigning glob to lvalue causes stringificationFather Chrysostomos2010-09-261-4/+8
* call defout/stderr destructors lastDavid Mitchell2010-09-201-1/+1
* list cxt hash assign with dups gives garbageDavid Mitchell2010-09-111-8/+27
* pp_match: fix confusing layout in an if()David Mitchell2010-09-011-3/+3
* Copy RE capture buf on overload as well as TEMPDavid Mitchell2010-09-011-1/+1
* Remove CALL_FPTR and CPERLscope.Ben Morrow2010-08-201-1/+1
* Pure Perl lvalue subs can't return temps, even if they are magical. This hold...Eric Brine2010-08-131-3/+3
* RT #75468: readline ignores <> overloading when arg is tiedFather Chrysostomos2010-08-111-0/+1
* [perl #75656] lvalue subs don't copy on writeFather Chrysostomos2010-07-261-1/+4
* Fix for RT#1804: Anonymous glob breaks when assigned throughFather Chrysostomos2010-07-261-0/+8
* In pp_qr, use gv_stashsv() directly on the SV.Nicholas Clark2010-07-171-1/+1
* Add x-ref from call site in do_readline() of sv_grow() to it's matching test ...Josh ben Jore2010-07-141-2/+6
* add some comments to pp_concatDavid Mitchell2010-07-031-4/+4
* remove double stringify-overload from $ovld .= fooDavid Mitchell2010-07-031-3/+2
* Add Perl_croak_no_modify() to implement Perl_croak("%s", PL_no_modify).Nicholas Clark2010-06-271-3/+3
* fix for RT #8438: $tied->() doesn't call FETCHDavid Mitchell2010-06-041-26/+12
* rename DM_ARRAY flag to DM_ARRAY_ISADavid Mitchell2010-06-041-1/+1
* Revert "Re: [perl #51636] segmentation fault with array ties"David Mitchell2010-06-041-19/+3
* add OPpDEREFed flag to avoid double mg_get()David Mitchell2010-05-251-1/+2
* Deref ops ignore get-magic when SvROK(sv)Father Chrysostomos (via RT)2010-05-251-6/+1
* Add s///r (non-destructive substitution).David Caldwell2010-05-221-5/+25
* followup to magic/overload fixDavid Mitchell2010-05-211-1/+1
* make overload respect get magicDavid Mitchell2010-05-211-23/+26