| Commit message (Expand) | Author | Age | Files | Lines |
* | The remainder of the toke.c MAD changes. Now to investigate why MAD | Nicholas Clark | 2006-03-09 | 1 | -0/+9 |
* | Remove the #define - ARENASETS are always on now. | Nicholas Clark | 2006-03-07 | 1 | -36/+1 |
* | Perl_gv_name_set should not leak the old HEK. Allow the flag GV_ADD | Nicholas Clark | 2006-03-05 | 1 | -1/+1 |
* | Use a HEK to store the GV's name, rather than a malloc()ed string. | Nicholas Clark | 2006-03-05 | 1 | -4/+9 |
* | Provide Perl_gv_name_set to replace LVALUE use of GvNAME and GvNAMESET. | Nicholas Clark | 2006-03-05 | 1 | -3/+3 |
* | Non-null optimizations | Andy Lester | 2006-03-02 | 1 | -4/+4 |
* | Silence a VC++ warning with DEBUGGING builds | Steve Hay | 2006-02-28 | 1 | -1/+1 |
* | In Perl_sv_setsv_flags, swap the default in the type based switch to | Nicholas Clark | 2006-02-27 | 1 | -5/+4 |
* | Silence a VC++ warning | Steve Hay | 2006-02-27 | 1 | -1/+1 |
* | There is now the potential for an upgrade from something without an | Nicholas Clark | 2006-02-27 | 1 | -3/+15 |
* | ptr_table_find() is only defined with ithreads | Rafael Garcia-Suarez | 2006-02-27 | 1 | -1/+1 |
* | Workaround for initialization errors on HP's pre-compiler | H.Merijn Brand | 2006-02-27 | 1 | -3/+10 |
* | Speedups and shrinkages of SvREFCNT_inc | Andy Lester | 2006-02-27 | 1 | -17/+13 |
* | Amazingly, it seems that none of the other GV specific macros are | Nicholas Clark | 2006-02-25 | 1 | -3/+5 |
* | Store GvGP in the SV head union. For all the common lookups [eg GvCV()] | Nicholas Clark | 2006-02-25 | 1 | -22/+33 |
* | Avoid special case SvMAGIC macros just to cope with Perl_sv_unmagic. | Nicholas Clark | 2006-02-24 | 1 | -1/+1 |
* | Use PVMGs rather than PVGVs to store the names of our variables in the | Nicholas Clark | 2006-02-24 | 1 | -2/+1 |
* | Store the stash for our in the magic slot. This will allow us to use | Nicholas Clark | 2006-02-24 | 1 | -3/+11 |
* | unused context warnings | Andy Lester | 2006-02-24 | 1 | -2/+12 |
* | Replace direct flags tests & manipulations for SVpad_TYPED and | Nicholas Clark | 2006-02-23 | 1 | -2/+2 |
* | We have sufficient spare bits to store the SV type in body_details, | Nicholas Clark | 2006-02-23 | 1 | -21/+39 |
* | Shrink struct body_details and hence sv.o slightly further by using | Nicholas Clark | 2006-02-23 | 1 | -3/+3 |
* | Using U8 rather than size type shrinks the body_details table. | Nicholas Clark | 2006-02-23 | 1 | -3/+3 |
* | Remove set magic from typeglobs. Remove typeglob magic entirely. | Nicholas Clark | 2006-02-23 | 1 | -10/+16 |
* | Recalculate dstr in Perl_sv_setsv_flags, as dstr may have been upgraded. | Nicholas Clark | 2006-02-23 | 1 | -0/+2 |
* | Remove un-needed case in Perl_sv_setsv_flags (sv_upgrade will cover | Nicholas Clark | 2006-02-23 | 1 | -2/+0 |
* | Remove get magic from typeglobs. This means that PVGVs holding | Nicholas Clark | 2006-02-23 | 1 | -2/+71 |
* | Fix the copy sizes for PVFM and PVCV back to sanity. | Nicholas Clark | 2006-02-23 | 1 | -5/+2 |
* | Change 24643 made the mistake of assuming that CvCONST can only be true | Nicholas Clark | 2006-02-22 | 1 | -1/+1 |
* | PL_body_arenas should be set to NULL when the interpreter is cleared. | Nicholas Clark | 2006-02-21 | 1 | -0/+1 |
* | Steal code from maint, and use PERL_ARENA_ROOTS_SIZE to size the arena | Nicholas Clark | 2006-02-20 | 1 | -1/+1 |
* | PVCVs don't need XNVs either. | Nicholas Clark | 2006-02-20 | 1 | -5/+7 |
* | PVFMs don't need CvDEPTH, and PVCVs don't use SvIVX, so moving | Nicholas Clark | 2006-02-20 | 1 | -4/+4 |
* | xcv_root and xcv_xsub can also be merged into a union, providing a new | Nicholas Clark | 2006-02-20 | 1 | -1/+2 |
* | Add a new CvISXSUB() macro, for abstracting the test as to whether a | Nicholas Clark | 2006-02-20 | 1 | -1/+1 |
* | More NullXXX macro removal from Andy Lester | Rafael Garcia-Suarez | 2006-02-20 | 1 | -9/+9 |
* | Shave sizeof(NV) bytes from formats, by using the same offset | Nicholas Clark | 2006-02-19 | 1 | -3/+5 |
* | To make arithmetic on tainted dualvars work properly requires that | Nicholas Clark | 2006-02-19 | 1 | -1/+1 |
* | SvROK(sv) will never be true when SvIOKp() or SvNOKp() is true, so the | Nicholas Clark | 2006-02-19 | 1 | -10/+2 |
* | arena-rework : consolidated patch | Jim Cromie | 2006-02-18 | 1 | -200/+295 |
* | The two whitespace changes from | Jim Cromie | 2006-02-17 | 1 | -2/+2 |
* | Back out change change 10214 (drop SVp_IOK from >> PRIVSHIFT) as it | Nicholas Clark | 2006-02-14 | 1 | -1/+1 |
* | Sun Studio lint patches | Andy Lester | 2006-02-14 | 1 | -5/+6 |
* | Ensure that public I, N and P flags are off when SvTAINT is called on | Nicholas Clark | 2006-02-13 | 1 | -1/+6 |
* | Coalesce 2 if blocks with duplicated conditions in Perl_sv_dup. | Nicholas Clark | 2006-02-11 | 1 | -2/+5 |
* | A better fix than 27148 | Steve Hay | 2006-02-10 | 1 | -3/+3 |
* | Fix the effects of 27136 on Win32 with DEBUGGING and PERL_IMPLICIT_SYS | Steve Hay | 2006-02-10 | 1 | -3/+3 |
* | Trying my "remove the pTHXes" patch again | Andy Lester | 2006-02-09 | 1 | -31/+29 |
* | Rename S_glob_assign to S_glob_assign_glob | Nicholas Clark | 2006-02-06 | 1 | -6/+6 |
* | In Perl_sv_upgrade, the assignment to new_type_details only needs to | Nicholas Clark | 2006-02-06 | 1 | -3/+2 |