summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Remove the tokeniser hack that prevents compile-time vivification of %stash::Nicholas Clark2010-05-212-27/+9
| | | | | | | | | | | | | | | | This was put in to ensure that defined %stash:: continued to return false after the implementation of hashes was changed, such that stashes were always defined. defined %stash:: is deprecated. This reverts the tokeniser changes of adc51b978ed1b2e9d4512c9bfa80386ac917d05a, 76138434928a968a390c791aec92e5f00017d01d, d6069db2e52f58ef65bf59f2fd453604270d2205 and part of 9bde8eb087a2c05d4c8b0394a59d28a09fe5f529, and updates the tests added with those commits to reflect the restored (but as yet unreleased) behaviour. I don't think that this should be merged to blead until after 5.12.0 ships, with the enabled deprecation warnings on defined %hash, as it changes subtle behaviour that all current released stable perls accept without warning.
* PL_in_load_module only has values 0 and 1, so can be a bool instead of int.Nicholas Clark2010-05-212-5/+4
|
* Perl_hv_fill(), count empty chains down, rather than used chains up.Nicholas Clark2010-05-211-4/+5
| | | | | | The assumption is that most chains of a hash are in use. Suggestion and initial patch by Ruslan Zakirov.
* Eliminate xhv_fill from struct xpvhv.Nicholas Clark2010-05-212-3/+2
|
* Make HvFILL() count the allocated buckets, instead of reading a stored value.Nicholas Clark2010-05-217-37/+40
| | | | | Add a function Perl_hv_fill to perform the count. This will save 1 IV per hash, and on some systems cause struct xpvhv to become cache aligned.
* Replace boolean use of HvFILL(hv) with HvTOTALKEYS(hv), which is equivalent.Nicholas Clark2010-05-212-8/+9
|
* followup to magic/overload fixDavid Mitchell2010-05-212-7/+7
| | | | | | | 6f1401dc2acd2a2b85df22b0a74e5f7e6e0a33aa was over-enthusiastic on removing redundant code in the comparison ops. This code was only used on 64-bit #ifdef branches which is why I failed to spot it earlier. So restore that code!
* make overload respect get magicDavid Mitchell2010-05-2113-220/+748
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In most places, ops checked their args for overload *before* doing mg_get(). This meant that, among other issues, tied vars that returned overloaded objects wouldn't trigger calling the overloaded method. (Actually, for tied and arrays and hashes, it still often would since mg_get gets called beforehand in rvalue context). This patch does the following: Makes sure get magic is called first. Moves most of the overload code formerly included by macros at the start of each pp function into the separate helper functions Perl_try_amagic_bin, Perl_try_amagic_un, S_try_amagic_ftest, with 3 new wrapper macros: tryAMAGICbin_MG, tryAMAGICun_MG, tryAMAGICftest_MG. This made the code 3800 bytes smaller. Makes sure that FETCH is not called multiple times. Much of this bit was helped by some earlier work from Father Chrysostomos. Added new functions and macros sv_inc_nomg(), sv_dec_nomg(), dPOPnv_nomg, dPOPXiirl_ul_nomg, dPOPTOPnnrl_nomg, dPOPTOPiirl_ul_nomg dPOPTOPiirl_nomg, SvIV_please_nomg, SvNV_nomg (again, some of these were based on Father Chrysostomos's work). Fixed the list version of the repeat operator (x): it now only calls overloaded methods for the scalar version: (1,2,$overloaded) x 10 no longer erroneously calls x_method($overloaded,10)) The only thing I haven't checked/fixed yet is overloading the iterator operator, <>.
* Remove union _xivu from _XPVCV_COMMON, and hence structs xpvcv and xpvfmNicholas Clark2010-05-212-6/+6
| | | | | | | Replaced with xcv_depth and xfm_lines respectively. Both structures might benefit from some field re-ordering. Update the descriptive comments in the definition of union _xivu.
* Remove union _xivu from struct regexp - replace it with a non-union paren_names.Nicholas Clark2010-05-212-6/+2
| | | | This was the only user of xivu_hv in union _xivu, so remove that too.
* Remove union _xivu from struct xpvhv - replace it with a non-union xav_keys.Nicholas Clark2010-05-212-4/+2
|
* Remove union _xivu from struct xpvav - replace it with a non-union xav_alloc.Nicholas Clark2010-05-213-6/+3
| | | | This was the only user of xivu_p1 in union _xivu, so remove that too.
* Reinstate space optimisations to SV body structures.Nicholas Clark2010-05-211-4/+22
|
* In the SV body, exchange the positions of the NV and stash/magic.Nicholas Clark2010-05-216-25/+26
|
* Remove all space optimisations from SV body structures.Nicholas Clark2010-05-211-31/+31
|
* The size of a character in C is per definition 1H.Merijn Brand2010-05-211-34/+4
|
* Fix CCINCDIR and CCLIBDIR for mingw64 cross compilerSisyphus2010-05-201-2/+12
| | | | | | | When building perl with the mingw64 x64 cross-compiler 'incpath', 'libpth', 'ldflags', 'lddlflags' and 'ldflags_nolargefiles' values in Config.pm and Config_heavy.pl are not being set correctly because, with that compiler, the include and lib directories are not immediately below $(CCHOME).
* fully test package-version-block syntaxZefram2010-05-201-14/+21
| | | | | | Extend the exhaustive package-version tests in t/op/packagev.t to test each case using package-block syntax in addition to the package-declaration syntax.
* additional tests for package block syntaxZefram2010-05-201-20/+72
| | | | | | Test that __PACKAGE__ propagates into string eval correctly. Test that __LINE__ is correct. Test that goto into and out of package blocks works correctly.
* fix SEGV with eval("package Foo {")Zefram2010-05-204-140/+163
| | | | | | OPs relating to the package name and version were subject to double freeing during error recovery from an incomplete package block. Fixed by using the op_latefree mechanism to shift the op free time.
* support "package Foo { ... }"Zefram2010-05-209-1054/+1162
| | | | | | Package block syntax limits the scope of the package declaration to the attached block. It's cleaner than requiring the declaration to come inside the block.
* PL_endav can be NULL, so in S_ithread_create() no need to set it to newAV().Nicholas Clark2010-05-201-1/+1
|
* Remove redundant hv_exists() calls from ithread_create()'s spec parser.Nicholas Clark2010-05-201-18/+19
| | | | | | | | hv_fetch(..., 0) won't create the element if it doesn't exist, returning a NULL pointer, so hv_exists() and hv_fetch() is doing two hash lookups where one would suffice. On this machine, reduces the object code by 3K, about 7%. Everyone's a winner.
* Change S_ithread_create() params from a single AV* to a pair of SV** pointers.Nicholas Clark2010-05-201-12/+19
| | | | | This saves creating, duplicating and freeing and AV, which is only ever used for an internal calling convention.
* In threads.xs, convert thread->params from RV to AV.Nicholas Clark2010-05-201-9/+9
| | | | | Pass around and store the array directly, rather than creating, holding and dereferencing a reference to it.
* SvIVX() isn't valid on SVt_REGEXPNicholas Clark2010-05-203-2/+4
|
* In sv.c, _all_ {new,del}_X* macros can be *_body_allocated.Nicholas Clark2010-05-201-15/+8
| | | | | | | Previously those where bodies_by_type[sv_type].offset was zero were using {new,del}_body_typed. However, the optimiser can spot this, and generates the same object code. This allows simplification of the C code, and more flexibility to rearrange the structures without generating bugs.
* update Ricardo Signes's emailRicardo Signes2010-05-201-1/+1
|
* Do not try to load a feature bundle when doing "no VERSION"Rafael Garcia-Suarez2010-05-201-1/+2
|
* do not check for deprecation of removed libv5.13.1Ricardo Signes2010-05-201-2/+2
|
* add the v5.13.1 epigraphRicardo Signes2010-05-201-0/+10
|
* remove =over/=back from epigraphs.pod, add empty sectionsRicardo Signes2010-05-201-186/+23
| | | | | ...even though they are *totally legal* and the suggested way to make a blockquote-like paragraph. Pod::Checker doesn't like them.
* add new release to perlhistRicardo Signes2010-05-201-0/+1
|
* update MANIFEST, remove delta for uninstalled fileRicardo Signes2010-05-202-5/+2
|
* further updates to CoreListRicardo Signes2010-05-202-68/+74
| | | | Who knew there was a helper to do this, now!
* Update META.ymlRicardo Signes2010-05-201-2/+1
| | | | Notice the glorious deletion of Switch from the manifest!
* bump CoreList versionRicardo Signes2010-05-201-2/+2
|
* add vertical space to CoreList.pmRicardo Signes2010-05-201-0/+11
| | | | | This makes it easy to move through the file with { and } in vi. Yes, this really helps.
* remove empty perldelta sectionRicardo Signes2010-05-201-2/+0
|
* update change commandRicardo Signes2010-05-201-2/+2
|
* Bump the perl version in various places for 5.13.1Ricardo Signes2010-05-2020-120/+120
|
* replace 2nd 5.013000 block with 5.013001Ricardo Signes2010-05-201-2/+2
|
* update CoreList for 5.13.1Ricardo Signes2010-05-201-1/+627
|
* bump version on modules changed since 5.13.0Ricardo Signes2010-05-204-4/+4
|
* pass through perl5131delta in prep of releaseRicardo Signes2010-05-201-155/+28
|
* Add a note in perl5131delta about given return valuesVincent Pit2010-05-202-8/+28
| | | | And tweak its documentation.
* Adding script used for recent perlhist changes.Curtis Jewell2010-05-191-0/+159
|
* Update perlhist.pod for 5.10.1-5.12.1Curtis Jewell2010-05-191-90/+94
|
* bumped File::Find version to 1.16David Golden2010-05-191-1/+1
|
* Fixed typo: "effecting data" -> "affecting data".Dan Dascalescu2010-05-191-1/+1
|