summaryrefslogtreecommitdiff
path: root/proto.h
Commit message (Collapse)AuthorAgeFilesLines
* Add the madly parser. I believe that this is all the C code. Now toNicholas Clark2006-03-091-0/+1
| | | | | find the bugs that stowed away. p4raw-id: //depot/perl@27447
* It helps to run embed.pl in the correct directory. (not the symlinkNicholas Clark2006-03-091-0/+3
| | | | | tree) p4raw-id: //depot/perl@27446
* MAD changes for bare skipspace()Nicholas Clark2006-03-091-0/+12
| | | p4raw-id: //depot/perl@27439
* Almost all the MAD changes for op.cNicholas Clark2006-03-081-0/+34
| | | p4raw-id: //depot/perl@27424
* MAD changes to dump.cNicholas Clark2006-03-081-0/+48
| | | p4raw-id: //depot/perl@27422
* Add MAD changes to pad code (new function Perl_pad_peg)Nicholas Clark2006-03-081-0/+5
| | | p4raw-id: //depot/perl@27419
* Change hv_name_set to take U32 length and flags parameters.Nicholas Clark2006-03-051-1/+1
| | | p4raw-id: //depot/perl@27381
* Provide Perl_gv_name_set to replace LVALUE use of GvNAME and GvNAMESET.Nicholas Clark2006-03-051-0/+3
| | | p4raw-id: //depot/perl@27377
* Non-null optimizationsAndy Lester2006-03-021-2/+2
| | | | | Message-ID: <20060302041345.GA13731@petdance.com> p4raw-id: //depot/perl@27360
* ptr_table_find() is only defined with ithreadsRafael Garcia-Suarez2006-02-271-0/+2
| | | p4raw-id: //depot/perl@27339
* Perl_save_aelem can't be constAndy Lester2006-02-241-1/+1
| | | | | Message-ID: <20060224045340.GA6318@petdance.com> p4raw-id: //depot/perl@27301
* Remove get magic from typeglobs. This means that PVGVs holdingNicholas Clark2006-02-231-4/+5
| | | | | | | | | | | typeglobs never need to use SvPVX. This comes at price - typeglobs were using magic get for their stringificiation, and to pass SvOK(), so need to make typeglobs SvOK by default (by sucking SVp_SCREAM into SVf_OK - it's the only flag left), tweak SvSCREAM() to also check SVp_POK, and teach sv_2[inpu]v how to convert globs. However, it should free up SvPVX for the next part of the plan to pointer indirections, and therefore CPU cache pressure. p4raw-id: //depot/perl@27278
* arena-rework : consolidated patchJim Cromie2006-02-181-1/+1
| | | | | | | | | Message-ID: <43F0F649.9040205@gmail.com> Tweaked somewhat to split the arena boolean from the arena_size, and with the PTE still doubling-up with one of the SV types in the array. p4raw-id: //depot/perl@27215
* The return value from S_hv_auxinit can be ignored, as it's also storedNicholas Clark2006-02-101-1/+0
| | | | | within the passed in hv parameter. p4raw-id: //depot/perl@27153
* A better fix than 27148Steve Hay2006-02-101-7/+7
| | | | | | | | | | | | | Subject: Win32 assert (was Re: Smoke [5.9.4] 27145 FAIL(M) MSWin32 WinXP/.Net SP2 (x86/2 cpu)) From: Nicholas Clark <nick@ccl4.org> Date: Fri, 10 Feb 2006 14:58:47 +0000 Message-ID: <20060210145847.GA85020@plum.flirble.org> Subject: RE: Win32 assert (was Re: Smoke [5.9.4] 27145 FAIL(M) MSWin32 WinXP/.Net SP2 (x86/2 cpu)) From: "Jan Dubois" <jand@ActiveState.com> Date: Fri, 10 Feb 2006 09:03:41 -0800 Message-ID: <024401c62e63$f1e53c10$6062a8c0@candy> p4raw-id: //depot/perl@27152
* Fix the effects of 27136 on Win32 with DEBUGGING and PERL_IMPLICIT_SYSSteve Hay2006-02-101-7/+7
| | | p4raw-id: //depot/perl@27148
* Really regenerate headersRafael Garcia-Suarez2006-02-091-51/+82
| | | p4raw-id: //depot/perl@27138
* Fixed embed.fnc entry for S_forbid_setid() and picked up a change in Steve Peters2006-02-051-1/+1
| | | | | pod/perlapi.pod for good measure when regenerating files. p4raw-id: //depot/perl@27087
* [patch] arena rework - arena setsJim Cromie2006-02-041-0/+5
| | | | | | Message-ID: <43DF4F66.4080808@gmail.com> Date: Tue, 31 Jan 2006 04:52:06 -0700 p4raw-id: //depot/perl@27079
* S_find_beginning is only called from one place, so by hoisting theNicholas Clark2006-02-031-1/+1
| | | | | | forbid_setid check for -x into the caller, we can eliminate the suidscript parameter from S_find_beginning. p4raw-id: //depot/perl@27076
* And as we've now got to the point where all calls to Perl_moreswitchesNicholas Clark2006-02-031-1/+1
| | | | | | | have -1 as the second argument, we can remove the second argument, which gets us back to where we started, only with the elimination of a per-thread variable. p4raw-id: //depot/perl@27075
* Eliminating PL_suidscript is more tricky, and requires changing theNicholas Clark2006-02-031-6/+7
| | | | | prototype of Perl_moreswitches. p4raw-id: //depot/perl@27070
* Passing the flag to S_forbit_setid as a single char rather than aNicholas Clark2006-02-031-3/+1
| | | | | string is a slight space optimisation. p4raw-id: //depot/perl@27069
* Oops. I *thought* that I had checked that all changed files were open.Nicholas Clark2006-02-031-2/+2
| | | | | Clearly not. (Fixes change 27066) p4raw-id: //depot/perl@27068
* Eliminate save_threadsv, as it is never linked to, and all it doesNicholas Clark2006-01-311-3/+0
| | | | | post 5005 threads is croak(). p4raw-id: //depot/perl@27021
* Avoid using space to create 2 functions just to force mathoms to beNicholas Clark2006-01-291-0/+4
| | | | | | linked. Instead, force the link via the perl interpreter structure via a function pointer that gets replaced at run time anyway. p4raw-id: //depot/perl@26990
* Un-const magic virtual tables; this consting breaks the nastyRafael Garcia-Suarez2006-01-231-1/+1
| | | | | things done by Swig, as noticed by Audrey. p4raw-id: //depot/perl@26924
* Gisle points out that it's ok to ignore the return value of newSVrv.Rafael Garcia-Suarez2006-01-171-2/+0
| | | | | | | | Due to how embed.pl is implemented, this also has the unfortunate side-effect of removing __attribute__malloc__ from the attributes of this function, but given that the new pointer is stored elsewhere anyway, this shouldn't impact what gcc could have optimized. p4raw-id: //depot/perl@26885
* Re: cloning and foo_dup functionsYitzchak Scott-Thoennes2006-01-121-13/+0
| | | | | Message-ID: <20060112094118.GA1432@efn.org> p4raw-id: //depot/perl@26799
* Refactor S_vdie_common so that Perl_vwarn can use it too.Nicholas Clark2006-01-111-1/+1
| | | p4raw-id: //depot/perl@26787
* It's the Barbie bus patchAndy Lester2006-01-101-1/+0
| | | | | Message-ID: <20060110054243.GA26165@petdance.com> p4raw-id: //depot/perl@26764
* Run regen.pl (Just updating copyright years)Steve Hay2006-01-041-1/+1
| | | p4raw-id: //depot/perl@26654
* RMAGIC on symbol tables is bad, m'kay.Nicholas Clark2005-12-301-0/+15
| | | | | | | | Allow hashes (and therefore all symbol tables) to store the backreference array in the hv_aux structure, and thereby undo the performance damage of 24966, which resulted in 60% of all hash lookups trying to mg_find tiehash magic. p4raw-id: //depot/perl@26530
* Actual real consting of parmsAndy Lester2005-12-291-2/+2
| | | | | Message-ID: <20051229071509.GA32653@petdance.com> p4raw-id: //depot/perl@26527
* av.c cleanup, plus!Andy Lester2005-12-291-9/+25
| | | | | Message-ID: <20051228214414.GD26033@petdance.com> p4raw-id: //depot/perl@26526
* re-implement MY_CXT API more efficiently, and add explicitDave Mitchell2005-12-291-0/+7
| | | | | interpeter arg variant p4raw-id: //depot/perl@26523
* Ho! Ho! Ho! Santa brings consting!Andy Lester2005-12-221-4/+11
| | | | | Message-ID: <20051222165717.GA2874@petdance.com> p4raw-id: //depot/perl@26450
* Take care in toke.c not to convert constant subroutine referenceNicholas Clark2005-12-201-1/+5
| | | | | | | | proxies into full blown PVGVs with PVCVs, and recognise them and inline their values. Adds a new function gv_const_sv(gv) to return the value of the constant subroutine from a GV, and adds a cv parameter to S_intuit_method. p4raw-id: //depot/perl@26427
* Re: [PATCH] Make the 'sort' pragma lexically scopedRobin Houston2005-12-191-0/+3
| | | | | Message-ID: <20051219174620.GA17940@rpc142.cs.man.ac.uk> p4raw-id: //depot/perl@26402
* latest switch/say/~~Robin Houston2005-12-191-0/+44
| | | | | Message-Id: <20051217204431.GB28940@rpc142.cs.man.ac.uk> p4raw-id: //depot/perl@26400
* Prevent require() from attempting to open directories and block Steve Peters2005-12-151-0/+5
| | | | | devices. This fixes RT #24404. p4raw-id: //depot/perl@26373
* Update embed.fnc and headers after change 26345 (spotted by Rafael)Nicholas Clark2005-12-131-8/+0
| | | p4raw-id: //depot/perl@26346
* All args in embed.fnc should be namedAndy Lester2005-12-071-16/+16
| | | | | Message-ID: <20051207160818.GA13465@petdance.com> p4raw-id: //depot/perl@26296
* More consting, and putting stuff in embed.fncAndy Lester2005-12-061-1/+20
| | | | | Message-ID: <20051205194613.GB7791@petdance.com> p4raw-id: //depot/perl@26281
* Better variable names make code clearerSADAHIRO Tomoyuki2005-12-051-1/+1
| | | | | | Subject: Re: XS-assisted SWASHGET (esp. for t/uni/class.t speedup) Message-Id: <20051204162412.D720.BQW10602@nifty.com> p4raw-id: //depot/perl@26257
* NULL is a legal value for newXS()'s name parameter.Marcus Holland-Moritz2005-12-041-1/+0
| | | | | (This caused strange build failures with gcc4 -O3) p4raw-id: //depot/perl@26253
* Re: XS-assisted SWASHGET (esp. for t/uni/class.t speedup)SADAHIRO Tomoyuki2005-11-301-0/+4
| | | | | Message-Id: <20051127170016.A786.BQW10602@nifty.com> p4raw-id: //depot/perl@26229
* Sort subs now in embed.fncAndy Lester2005-11-171-0/+39
| | | | | Message-ID: <20051117135338.GA31715@petdance.com> p4raw-id: //depot/perl@26147
* Suppress gcc warnings when ignoring the return value of io_close(),Rafael Garcia-Suarez2005-11-141-1/+0
| | | | | as suggested by Gisle Aas. p4raw-id: //depot/perl@26123
* Consting and localizing: Part LXVIIIAndy Lester2005-11-071-0/+6
| | | | | Message-ID: <20051104211256.GA12651@petdance.com> p4raw-id: //depot/perl@26028