| Commit message (Expand) | Author | Age | Files | Lines |
* | [perl #85026] Iterate hashes by hand during do_sv_dump | Ton Hospel | 2011-06-11 | 1 | -12/+24 |
* | Revert "Perl_do_sv_dump: alert when skipping elements" | Father Chrysostomos | 2011-06-11 | 1 | -27/+22 |
* | Generate magic_names in dump.c using mg_vtable.pl. | Nicholas Clark | 2011-06-11 | 1 | -43/+1 |
* | Provide the names of the magic vtables in PL_magic_vtable_names[]. | Nicholas Clark | 2011-06-11 | 1 | -33/+5 |
* | Replace references to PL_vtbl_{bm,fm} in the code with PL_vtbl_regexp. | Nicholas Clark | 2011-06-11 | 1 | -2/+0 |
* | Abolish PL_vtbl_sig. It's been all 0s since it was added in 5.0 alpha 2. | Nicholas Clark | 2011-06-11 | 1 | -1/+0 |
* | Don't even declare PL_vtbl_sigelem under -DPERL_MICRO | Nicholas Clark | 2011-06-11 | 1 | -0/+2 |
* | Store FBMs in PVMGs, instead of GVs. | Nicholas Clark | 2011-06-11 | 1 | -7/+8 |
* | Use SvTAIL() instead of BmFLAGS(). The core no longer uses BmFLAGS(). | Nicholas Clark | 2011-06-11 | 1 | -1/+0 |
* | Test that SvFLAGS() & SVpad_NAME is SVpad_NAME, not just non-zero. | Nicholas Clark | 2011-06-11 | 1 | -3/+5 |
* | Perl_do_sv_dump() shouldn't show "IV" for a FBM, as it's not valid. | Nicholas Clark | 2011-06-11 | 1 | -2/+2 |
* | In Perl_pv_escape(), avoid reading 1 byte beyond the end of the buffer. | Nicholas Clark | 2011-05-24 | 1 | -1/+1 |
* | Clean: Actually use HvUSEDKEYS() instead of HvKEYS() | Michael Witten | 2011-05-18 | 1 | -4/+4 |
* | Store the compiled format in mg_ptr instead of after SvCUR() - fixes RT #89218 | Nicholas Clark | 2011-05-18 | 1 | -1/+0 |
* | Fix excess whitespace in pod. | Michael Stevens | 2011-02-04 | 1 | -3/+3 |
* | Perl_do_sv_dump: dump REGEXP body | David Mitchell | 2011-01-30 | 1 | -4/+85 |
* | Perl_do_sv_dump: move stub REGEXP code | David Mitchell | 2011-01-30 | 1 | -7/+6 |
* | Perl_do_sv_dump: add some blank lines and headers | David Mitchell | 2011-01-30 | 1 | -0/+23 |
* | Remove vestigial ORANGE references | David Mitchell | 2011-01-30 | 1 | -1/+1 |
* | clear up unused var warning in prev patch | Chip Salzenberg | 2011-01-21 | 1 | -1/+3 |
* | Since xmldump_packsubs does not actually output XML, don't call it from xmldu... | Chip Salzenberg | 2011-01-21 | 1 | -1/+0 |
* | pv_escape: Add option to dump all non-ascii as hex | Karl Williamson | 2010-12-19 | 1 | -5/+9 |
* | dump.c: correct pod statement | Karl Williamson | 2010-12-19 | 1 | -5/+4 |
* | Refactor ENAME dumping in Perl_do_sv_dump() to simplify the code slightly. | Nicholas Clark | 2010-11-25 | 1 | -19/+16 |
* | Convert xhv_name in struct xpvhv_aux to be a union of HEK* and HEK** | Nicholas Clark | 2010-11-24 | 1 | -2/+2 |
* | Clarify the hekp assignment in dump.c | Father Chrysostomos | 2010-11-22 | 1 | -0/+7 |
* | Fix NAMECOUNT output format in dump.c | Father Chrysostomos | 2010-10-29 | 1 | -2/+2 |
* | Teach dump.c about all magic flags | Florian Ragwitz | 2010-10-29 | 1 | -5/+11 |
* | Teach dump.c about ENAMEs | Father Chrysostomos | 2010-10-28 | 1 | -0/+31 |
* | plugin mechanism to rewrite calls to a subroutine | Zefram | 2010-10-10 | 1 | -0/+1 |
* | Remove MEMBER_TO_FPTR. | Ben Morrow | 2010-10-06 | 1 | -2/+2 |
* | systematically provide pv/pvn/pvs/sv quartets | Zefram | 2010-09-28 | 1 | -0/+7 |
* | prevent Devel::Peek::Dump from lieing to us about evil class names | Yves Orton | 2010-08-25 | 1 | -1/+8 |
* | Remove CALL_FPTR and CPERLscope. | Ben Morrow | 2010-08-20 | 1 | -1/+1 |
* | DEBUG_LEAKING_SCALARS: add sv_debug_parent | David Mitchell | 2010-08-01 | 1 | -2/+2 |
* | Dump didn't display CVf_ISXSUB flag | David Mitchell | 2010-07-29 | 1 | -1/+2 |
* | Perl_do_sv_dump didn't increase nesting for magic | David Mitchell | 2010-07-29 | 1 | -1/+1 |
* | Perl_do_sv_dump: alert when skipping elements | David Mitchell | 2010-07-29 | 1 | -22/+27 |
* | add CVf_CVGV_RC flag | David Mitchell | 2010-07-18 | 1 | -1/+2 |
* | Sort and complete the op flags lists for op_dump() | Vincent Pit | 2010-07-11 | 1 | -11/+20 |
* | Remove extraneous semicolon from OP_PRIVATE_ONCE. | Craig A. Berry | 2010-06-03 | 1 | -1/+1 |
* | Migrate most other op_private to name conversion into S_op_private_to_names(). | Nicholas Clark | 2010-05-28 | 1 | -57/+38 |
* | In Perl_do_op_dump(), move calls to append_flags() into S_op_private_to_names() | Nicholas Clark | 2010-05-28 | 1 | -12/+34 |
* | Add C_ARRAY_END(), returning a pointer to after the last element of an array. | Nicholas Clark | 2010-05-28 | 1 | -1/+1 |
* | In Perl_do_op_dump(), reorder the ops within the if (o->op_private) clause. | Nicholas Clark | 2010-05-28 | 1 | -29/+29 |
* | In Perl_do_sv_dump(), use append_flags() for PVCV, PVFM and PVGP flags. | Nicholas Clark | 2010-05-28 | 1 | -22/+38 |
* | In Perl_do_sv_dump(), for PVCV and PVFM, test for SvCOMPILED(sv) last. | Nicholas Clark | 2010-05-28 | 1 | -1/+1 |
* | In Perl_do_op_dump(), move runs of op_private name tests to S_append_flags(). | Nicholas Clark | 2010-05-28 | 1 | -47/+44 |
* | Create S_append_flags() from a common code pattern in dump.c. | Nicholas Clark | 2010-05-28 | 1 | -44/+64 |
* | add OPpDEREFed flag to avoid double mg_get() | David Mitchell | 2010-05-25 | 1 | -0/+5 |