summaryrefslogtreecommitdiff
path: root/ext
Commit message (Collapse)AuthorAgeFilesLines
* Track the mapping between source shared hash keys and target sharedNicholas Clark2005-05-251-0/+3
| | | | | hash keys to save repeated lookups during cloning. p4raw-id: //depot/perl@24574
* Replace all uses of HvNAME with the appropriate HvNAME_get orNicholas Clark2005-05-252-1/+3
| | | | | HvNAME_set p4raw-id: //depot/perl@24573
* ext/B/t/deparse.t was failing with t/TEST but not with t/harnessRafael Garcia-Suarez2005-05-241-6/+6
| | | p4raw-id: //depot/perl@24562
* Re: [perl #35857] [PATCH] B::Deparse doesnt handle warnings register properly.Yves Orton2005-05-241-1/+32
| | | | | Message-ID: <9b18b31105052302431fb0a3c2@mail.gmail.com> p4raw-id: //depot/perl@24559
* Assorted 2.15 fixes.Abhijit Menon-Sen2005-05-232-4/+17
| | | p4raw-id: //depot/perl@24556
* Remove one const to ensure that the universe doesn't tip over.Abhijit Menon-Sen2005-05-231-1/+1
| | | | | (At least on AIX.) p4raw-id: //depot/perl@24555
* Re: [perl #35938] [PATCH] SDBM_File fails to build on some platforms due to ↵Andy Dougherty2005-05-231-5/+3
| | | | | | | use of 'extern int errno' (was: Re: patches for lang/perl5.8 dfport override) Message-ID: <Pine.SOC.4.62.0505231143480.4714@maxwell.phys.lafayette.edu> p4raw-id: //depot/perl@24554
* Update to Scalar-List-Utils-1.17Graham Barr2005-05-237-9/+50
| | | p4raw-id: //depot/perl@24551
* Bytecode mustn't save the NVX for hashes now that the NVX is a unionNicholas Clark2005-05-231-1/+0
| | | | | containing pointers initialised to zero. p4raw-id: //depot/perl@24546
* Fix [perl #35929] : PerlIO::scalar didn't understand $/ = ""Rafael Garcia-Suarez2005-05-233-4/+17
| | | | | | because PerlIOScalar_unread was broken. Bump version number of PerlIO::scalar to 0.04. p4raw-id: //depot/perl@24543
* Add a union in place of xnv_nv, which allows AVs and HVs to re-useNicholas Clark2005-05-213-18/+0
| | | | | | | the memory to store pointers and integers. (Part 1 - will be reworked to be more efficient when IV or void* is 64 bit soon) p4raw-id: //depot/perl@24538
* add access to Perl_croak() via 'mycroak' in XS::APItestDave Mitchell2005-05-213-2/+10
| | | p4raw-id: //depot/perl@24533
* Move the xpv_pv/xrv_rv member into the SV head, in a union withNicholas Clark2005-05-214-21/+25
| | | | | IV and UV. Avoid allocating a body for IVs and RVs. p4raw-id: //depot/perl@24531
* Move hv_name, hv_eiter and hv_riter into a new aux structure.Nicholas Clark2005-05-216-32/+58
| | | | | | Provide (more efficient) _get and _set macros. Adjust the core to use them. p4raw-id: //depot/perl@24526
* Move placeholders into a new rhash magic type.Nicholas Clark2005-05-211-1/+5
| | | p4raw-id: //depot/perl@24525
* Remove PMROOT and replace it with a small shell script. Er, magic.Nicholas Clark2005-05-205-265/+250
| | | | | | (PMROOT being needed to implement bare C<reset> - how often do you use that?) p4raw-id: //depot/perl@24522
* Update XS code to declare PERL_UNUSED_DECL conditionallyNicholas Clark2005-05-203-18/+25
| | | p4raw-id: //depot/perl@24521
* Updaate ppport.h to get a conditional PERL_UNUSED_DECLNicholas Clark2005-05-202-38/+206
| | | p4raw-id: //depot/perl@24520
* Need to make PERL_UNUSED_DECL conditional as xlc on AIX doesn't likeNicholas Clark2005-05-202-12/+16
| | | | | it being redefined. p4raw-id: //depot/perl@24519
* Goodbye AvFLAGSNicholas Clark2005-05-209-286/+263
| | | p4raw-id: //depot/perl@24518
* Damnable applypatch nonsense.Abhijit Menon-Sen2005-05-201-0/+44
| | | p4raw-id: //depot/perl@24514
* Previously overlooked $SIG{DIE} patch from Slaven Rezic.Abhijit Menon-Sen2005-05-203-1/+5
| | | | | http://groups-beta.google.com/group/perl.perl5.porters/msg/2d10ba2c390ecc41 p4raw-id: //depot/perl@24512
* [perl #35857] [PATCH] B::Deparse doesnt handle warnings register properly. yves orton2005-05-191-2/+2
| | | | | Message-Id: <rt-3.0.11-35857-113142.6.75213005071278@perl.org> p4raw-id: //depot/perl@24505
* B::Disassembler.pmNicholas Clark2005-05-181-5/+5
| | | | | Message-ID: <20050517102817.GD94420@plum.flirble.org> p4raw-id: //depot/perl@24499
* Upgrade to Encode 2.10Nicholas Clark2005-05-166-10/+18
| | | p4raw-id: //depot/perl@24490
* This seems to be the right thing to do to iterate over layersRafael Garcia-Suarez2005-05-161-2/+2
| | | p4raw-id: //depot/perl@24476
* Upgrade to Time::HiRes 1.68Rafael Garcia-Suarez2005-05-163-25/+51
| | | p4raw-id: //depot/perl@24472
* Minor tweak to viaAndy Lester2005-05-151-4/+4
| | | | | | | Message-ID: <20050513163952.GA20167@petdance.com> from a bug report and patch by Matt Lawrence p4raw-id: //depot/perl@24471
* Update to Scalar-List-Utils-1.15Graham Barr2005-05-1338-450/+717
| | | p4raw-id: //depot/perl@24465
* make join.t threadsafe!Dave Mitchell2005-05-121-0/+3
| | | | | | tests 13 and 14 could output in reverse order. Add a lock to stop this. p4raw-id: //depot/perl@24455
* Include vim/emacs modelines in generated files to open themRafael Garcia-Suarez2005-05-113-2/+10
| | | | | | in read-only mode. Make vi modelines compatible with non-vim vi versions. p4raw-id: //depot/perl@24445
* s/sv_setpv(sv,"")/sv_setpvn(sv,"",0)/Nicholas Clark2005-05-102-2/+2
| | | | | plus a couple of 1 byte sv_setpv()s too. p4raw-id: //depot/perl@24439
* Experiment with using the ptr_table code to hold the seen hashNicholas Clark2005-05-101-6/+80
| | | p4raw-id: //depot/perl@24436
* Simplify the debug and assert logic.Nicholas Clark2005-05-101-7/+0
| | | p4raw-id: //depot/perl@24435
* Change 24165 missed one s/class/classname/ in the debugging code.Nicholas Clark2005-05-101-1/+1
| | | p4raw-id: //depot/perl@24434
* Upgrade to PathTools 3.07Rafael Garcia-Suarez2005-05-062-1/+29
| | | p4raw-id: //depot/perl@24407
* Bump version numbersNicholas Clark2005-05-054-4/+4
| | | p4raw-id: //depot/perl@24398
* Bump B version numbersNicholas Clark2005-05-056-6/+7
| | | p4raw-id: //depot/perl@24396
* A slightly better layout for the diagram.Nicholas Clark2005-05-021-17/+17
| | | p4raw-id: //depot/perl@24369
* Change inheritance hierarchy of B subclassses :Nicholas Clark2005-05-021-23/+23
| | | | | | Subject: @B::NV::ISA = 'B::IV'; Message-ID: <20050427135750.GD94420@plum.flirble.org> p4raw-id: //depot/perl@24366
* Re: [perl #31793] Data::Dumper: Useqq interacts badly with overloadingRafael Garcia-Suarez2005-05-021-5/+20
| | | | | Message-ID: <20041103163801.6839be30@valis.local> p4raw-id: //depot/perl@24364
* for AIX problems? RE: [PATCH] Symbian port of PerlH.Merijn Brand2005-04-261-75/+75
| | | | | | | | | Date: Tue, 26 Apr 2005 12:22:12 +0300 From: <jarkko.hietaniemi@nokia.com> Message-ID: <B356D8F434D20B40A8CEDAEC305A1F2453D6CB@esebe105.NOE.Nokia.com> From: Steve Hay <steve.hay@uk.radan.com> Message-ID: <426E11A3.8070002@uk.radan.com> p4raw-id: //depot/perl@24325
* Add STORABLE_attach hook (Adam Kennedy).Abhijit Menon-Sen2005-04-258-3/+536
| | | p4raw-id: //depot/perl@24316
* For now, TODO the 2 tests that fail on 5.8.xNicholas Clark2005-04-221-1/+9
| | | p4raw-id: //depot/perl@24286
* bytecode.pl, bytecode.h, and sv.h fixesSteve Peters2005-04-222-2/+2
| | | | | Message-ID: <20050421235547.GA12149@mccoy.peters.homeunix.org> p4raw-id: //depot/perl@24277
* Symbian port of PerlJarkko Hietaniemi2005-04-2118-119/+454
| | | | | Message-ID: <B356D8F434D20B40A8CEDAEC305A1F2453D653@esebe105.NOE.Nokia.com> p4raw-id: //depot/perl@24271
* In change 24266 I failed to actually change anything. Sigh.Dave Mitchell2005-04-201-1/+1
| | | p4raw-id: //depot/perl@24267
* Refactoring to Sv*_set() macros - patch #6Steve Peters2005-04-201-0/+7
| | | | | | Message-ID: <20050420112720.GA31042@mccoy.peters.homeunix.org> Date: Wed, 20 Apr 2005 06:27:20 -0500 p4raw-id: //depot/perl@24260
* run regen_headers after addition of FOO_set() macrosDave Mitchell2005-04-191-7/+7
| | | p4raw-id: //depot/perl@24257
* Force RVALUE macros when in PERL_DEBUG_COWNicholas Clark2005-04-191-1/+1
| | | p4raw-id: //depot/perl@24252