summaryrefslogtreecommitdiff
path: root/pp_hot.c
Commit message (Collapse)AuthorAgeFilesLines
* slurping an empty file should return '' rather than undef, withGurusamy Sarathy1999-02-141-1/+11
| | | | | commensurate effects on ARGV processing p4raw-id: //depot/perl@2910
* fix ops that are not filehandle constructors to not create GV if itGurusamy Sarathy1999-02-121-8/+28
| | | | | | doesn't already exist (avoids leaks); extend semantics of defined() so that defined(*{$foo}) works (experimental) p4raw-id: //depot/perl@2879
* make qw() into a true list at compile time (slightly modifiedGurusamy Sarathy1999-02-081-3/+3
| | | | | variant of patch suggested by Tom Hughes <tom@compton.demon.co.uk>) p4raw-id: //depot/perl@2835
* Fix list-context //g with zero-length matchesIlya Zakharevich1999-02-071-3/+3
| | | | | Message-ID: <19990207170009.A894@monk.mps.ohio-state.edu> p4raw-id: //depot/perl@2827
* Fixing \G bug by Francois DesarmenienIlya Zakharevich1999-01-191-1/+2
| | | | | | To: Mailing list Perl5 <perl5-porters@perl.org> Message-ID: <19990118205702.A18379@monk.mps.ohio-state.edu> p4raw-id: //depot/cfgperl@2644
* Bugs in hairy interactions of feature in RExIlya Zakharevich1998-12-291-1/+5
| | | | | | | | To: perl5-porters@perl.org (Mailing list Perl5) Message-ID: <MLIST_199812080637.BAA16025@monk.mps.ohio-state.edu> \G fixes (wasn't working right with //g, s///, and $_ in (?{})). p4raw-id: //depot/cfgperl@2515
* 5.005_54, as releasedGurusamy Sarathy1998-12-011-2/+2
| | | p4raw-id: //depot/perl@2430
* another threads reliability fix: serialize writes to thr->threadsvGurusamy Sarathy1998-11-291-9/+15
| | | | | | | | avoid most uses of PL_na (which is much more inefficient than a simple local); update docs to suit; PL_na now being thr->Tna may be a minor compatibility issue for extensions--will require dTHR outside of XSUBs (those get automatic dTHR) p4raw-id: //depot/perl@2387
* various fixes for race conditions under threads: mutex locks basedGurusamy Sarathy1998-11-291-2/+1
| | | | | | | | | | | on PL_threadnum were seriously flawed, since it means more than one thread could enter the critical region; PL_na was global instead of thread-local; child thread could finish and free thr structures before Thread->new() got around to creating the Thread object; cv_clone() needed locking, as it mucks with PL_comppad and other global data; new_struct_thread() needed to lock template-thread's mutex while copying its data p4raw-id: //depot/perl@2385
* backout change#2334Gurusamy Sarathy1998-11-291-1/+1
| | | | | p4raw-link: @2334 on //depot/perl: 60ad88b8fe9480f2f097fca26f4f3a9f83a4f830 p4raw-id: //depot/perl@2383
* Fix \G in REx without //gIlya Zakharevich1998-11-281-22/+20
| | | | | Message-Id: <199811260433.XAA29281@monk.mps.ohio-state.edu> p4raw-id: //depot/perl@2365
* s/Regexp/re/ and clarify policy on lowercased object namespacesGurusamy Sarathy1998-11-281-1/+1
| | | p4raw-id: //depot/perl@2334
* Overloaded <> and deref againIlya Zakharevich1998-10-301-7/+34
| | | | | Message-Id: <199810300304.WAA23291@monk.mps.ohio-state.edu> p4raw-id: //depot/perl@2150
* phase 1 of somewhat major rearrangement of PERL_OBJECT stuffGurusamy Sarathy1998-10-301-14/+14
| | | | | | | | | | (objpp.h is gone, embed.pl now does some of that); objXSUB.h should soon be automated also; the global variables that escaped the PL_foo conversion are now reined in; renamed MAGIC in regcomp.h to REG_MAGIC to avoid collision with the type of same name; duplicated lists of pp_things in various places is now gone; result has only been tested on win32 p4raw-id: //depot/perl@2133
* various win32 tweaks; disable new xs_cpp section (it createsGurusamy Sarathy1998-10-261-1/+1
| | | | | ambiguous inference graph for %.xs --> %.o) p4raw-id: //depot/perl@2086
* Speed up aassignIlya Zakharevich1998-10-251-0/+1
| | | | | Message-Id: <199810190310.XAA28102@monk.mps.ohio-state.edu> p4raw-id: //depot/perl@2062
* integrate changes#1982,2014,2021 (from maint-5.005)Gurusamy Sarathy1998-10-251-4/+4
| | | | | | | p4raw-link: @2021 on //depot/maint-5.005/perl: ece095e7b265a16d4ec3543b1418100f9c635a87 p4raw-link: @2014 on //depot/maint-5.005/perl: cca0b9804acab4b7678c0f185888d57497a5c2a9 p4raw-link: @1982 on //depot/maint-5.005/perl: fe676099d996f70caaedeb6ae85adc3ee59d2240 p4raw-id: //depot/perl@2059
* avoid the circular refcnt logic in magic_mutexfree()Gurusamy Sarathy1998-10-251-1/+0
| | | p4raw-id: //depot/perl@2052
* Program with utf8 identifiers fails to compileLarry Wall1998-10-231-1/+7
| | | p4raw-id: //depot/perl@2038
* two typosGurusamy Sarathy1998-10-141-1/+1
| | | p4raw-id: //depot/perl@1948
* defer "deep recursion" warnings until CXt_SUB context is properlyGurusamy Sarathy1998-10-131-3/+7
| | | | | set up p4raw-id: //depot/perl@1945
* change#1614 merely disabled earlier fix (doh!); undo it and properlyGurusamy Sarathy1998-10-131-1/+6
| | | | | | | | fixup the cop_seq value that must be seen by lexical lookups that emanate within eval'' p4raw-link: @1614 on //depot/perl: bd28dd3ca083953e5682058b02b9529902e14ca9 p4raw-id: //depot/perl@1944
* force copy of substrings when matching against temporariesGurusamy Sarathy1998-10-131-4/+5
| | | p4raw-id: //depot/perl@1942
* make warning about glob process failure optionalGurusamy Sarathy1998-10-021-2/+6
| | | p4raw-id: //depot/perl@1912
* various tweaks: fix signed vs. unsigned problems that prevented C++Gurusamy Sarathy1998-08-101-6/+6
| | | | | | builds; add sundry PERL_OBJECT scaffolding to get it to build; fix lexical warning testsuite for win32 p4raw-id: //depot/perl@1777
* lexical warnings; tweaks to places that didn't apply correctlyPaul Marquess1998-08-091-18/+22
| | | | | | Message-Id: <9807290828.AA26286@claudius.bfsec.bt.co.uk> Subject: lexical warnings patch for 5.005_50 p4raw-id: //depot/perl@1773
* integrate maint-5.005 changes into mainlineGurusamy Sarathy1998-08-081-14/+24
|\ | | | | p4raw-id: //depot/perl@1760
| * tweaked version of suggested patchIlya Zakharevich1998-08-021-9/+9
| | | | | | | | | | | | Message-Id: <199807210140.VAA17186@monk.mps.ohio-state.edu> Subject: [PATCH 5.004_75] Enable -DS p4raw-id: //depot/maint-5.005/perl@1701
| * support OE/MVSJarkko Hietaniemi1998-08-021-2/+8
| | | | | | | | | | | | Message-Id: <199808010903.MAA09371@alpha.hut.fi> Subject: [PATCH] 5.005_01: OE MVS p4raw-id: //depot/maint-5.005/perl@1697
| * avoid reusing foreach itervar if magic got tacked onto itStephen McCamant1998-08-021-2/+6
| | | | | | | | | | | | Message-ID: <13758.36756.215424.719750@alias-2.pr.mcs.net> Subject: [PATCH] Re: pos() resetting changed with 5.005? p4raw-id: //depot/maint-5.005/perl@1682
| * fix buggy detection of failed glob()Gurusamy Sarathy1998-08-011-1/+1
| | | | | | p4raw-id: //depot/maint-5.005/perl@1674
* | Here are the long-expected Unicode/UTF-8 modifications.Larry Wall1998-07-241-16/+24
|/ | | p4raw-id: //depot/utfperl@1651
* applied patch, add new message to perldetaStephen McCamant1998-07-221-0/+2
| | | | | | Message-Id: <13749.910.83378.949909@alias-2.pr.mcs.net> Subject: [PATCH] Band-aid patch for local($avhv->{a}) p4raw-id: //depot/perl@1619
* complete s/foo/PL_foo/ changes (all escaped cases identified withGurusamy Sarathy1998-07-201-1/+1
| | | | | | brute force search script). Result builds and passes all tests on Solaris. win32 and PERL_OBJECT are still untested. p4raw-id: //depot/perl@1578
* Add PL_ to merged fileNick Ing-Simmons1998-07-191-1/+1
| | | p4raw-id: //depot/ansiperl@1567
* Merge MainlineNick Ing-Simmons1998-07-191-3/+5
|\ | | | | p4raw-id: //depot/ansiperl@1566
| * fix flawed substitution-loop detection on zero-length matchesIlya Zakharevich1998-07-191-1/+3
| | | | | | | | | | | | Message-Id: <199807171755.NAA27720@monk.mps.ohio-state.edu> Subject: [PATCH 5.004_72] Substitution loop in devel branch p4raw-id: //depot/perl@1560
| * make failed matches return empty list in list contextGurusamy Sarathy1998-07-191-2/+2
| | | | | | p4raw-id: //depot/perl@1542
* | PL_ scheme Builds under Minw32 - some SEGFAULT snagsNick Ing-Simmons1998-07-181-20/+20
| | | | | | p4raw-id: //depot/ansiperl@1537
* | PL_ stuff for threadsNick Ing-Simmons1998-07-181-53/+53
| | | | | | p4raw-id: //depot/ansiperl@1534
* | PL_ prefix to all perlvars, part1Nick Ing-Simmons1998-07-181-148/+148
|/ | | | | Builds and passes all tests at one limit i.e. -DPERL_GLOBAL_STRUCT p4raw-id: //depot/ansiperl@1532
* don't copy foreach itervar when no external refs existGisle Aas1998-07-151-10/+28
| | | | | | Message-ID: <m33ec3nbfm.fsf@furu.g.aas.no> Subject: Re: Testcase for 1..n closure change p4raw-id: //depot/perl@1508
* added patch, tweaked PERL_OBJECT thingsGraham Barr1998-07-131-0/+10
| | | | | | Message-Id: <19980712195747.C493@pobox.com> Subject: [ PATCH perl5.004_72] patch to add qr// p4raw-id: //depot/perl@1461
* Update os2's OS2::ProcessIlya Zakharevich1998-07-111-2/+11
| | | | | Message-Id: <199807112221.SAA03221@monk.mps.ohio-state.edu> p4raw-id: //depot/perl@1441
* undo problematic change#1367Gurusamy Sarathy1998-07-091-8/+1
| | | | | p4raw-link: @1367 on //depot/perl: d426b052dee31c20224ef2893d5c969ad5a2c617 p4raw-id: //depot/perl@1398
* merge changes from maintbranch (1354, and relevant part of 1356); allGurusamy Sarathy1998-07-091-1/+3
| | | | | maintenance changes upto 1356 merged p4raw-id: //depot/perl@1397
* get it building again on win32Gurusamy Sarathy1998-07-091-5/+5
| | | p4raw-id: //depot/perl@1394
* add patch for C<use re 'debug'>Ilya Zakharevich1998-07-081-5/+5
| | | | | | Message-Id: <199807070224.WAA10318@monk.mps.ohio-state.edu> Subject: Re: _70 and Devel::RE p4raw-id: //depot/perl@1371
* Faster foreach integer rangeGisle Aas1998-07-081-1/+8
| | | | | Message-ID: <m3k95qm1pg.fsf@furu.g.aas.no> p4raw-id: //depot/perl@1367
* fix accidental RE-de-optimizationGurusamy Sarathy1998-07-071-1/+1
| | | | | | | | | | | | | From: larry@wall.org (Larry Wall) Date: Mon, 6 Jul 1998 17:49:31 -0700 Message-Id: <199807070049.RAA23475@wall.org> Subject: Re: before you deluge us with patches -- From: Ilya Zakharevich <ilya@math.ohio-state.edu> Date: Tue, 7 Jul 1998 03:10:56 -0400 (EDT) Message-Id: <199807070710.DAA25399@monk.mps.ohio-state.edu> Subject: Re: before you deluge us with patches p4raw-id: //depot/perl@1359