This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perldelta for 2384afee9 / #123553
[perl5.git] / pod / perlhacktips.pod
CommitLineData
0061d4fa 1
04c692a8
DR
2=encoding utf8
3
4=for comment
5Consistent formatting of this file is achieved with:
6 perl ./Porting/podtidy pod/perlhacktips.pod
7
8=head1 NAME
9
10perlhacktips - Tips for Perl core C code hacking
11
12=head1 DESCRIPTION
13
14This document will help you learn the best way to go about hacking on
9b22382a 15the Perl core C code. It covers common problems, debugging, profiling,
04c692a8
DR
16and more.
17
18If you haven't read L<perlhack> and L<perlhacktut> yet, you might want
19to do that first.
20
21=head1 COMMON PROBLEMS
22
9b22382a 23Perl source plays by ANSI C89 rules: no C99 (or C++) extensions. In
04c692a8
DR
24some cases we have to take pre-ANSI requirements into consideration.
25You don't care about some particular platform having broken Perl? I
26hear there is still a strong demand for J2EE programmers.
27
28=head2 Perl environment problems
29
30=over 4
31
32=item *
33
34Not compiling with threading
35
36Compiling with threading (-Duseithreads) completely rewrites the
9b22382a 37function prototypes of Perl. You better try your changes with that.
04c692a8
DR
38Related to this is the difference between "Perl_-less" and "Perl_-ly"
39APIs, for example:
40
41 Perl_sv_setiv(aTHX_ ...);
42 sv_setiv(...);
43
44The first one explicitly passes in the context, which is needed for
9b22382a
FC
45e.g. threaded builds. The second one does that implicitly; do not get
46them mixed. If you are not passing in a aTHX_, you will need to do a
04c692a8
DR
47dTHX (or a dVAR) as the first thing in the function.
48
49See L<perlguts/"How multiple interpreters and concurrency are
50supported"> for further discussion about context.
51
52=item *
53
54Not compiling with -DDEBUGGING
55
56The DEBUGGING define exposes more code to the compiler, therefore more
9b22382a 57ways for things to go wrong. You should try it.
04c692a8
DR
58
59=item *
60
61Introducing (non-read-only) globals
62
63Do not introduce any modifiable globals, truly global or file static.
64They are bad form and complicate multithreading and other forms of
9b22382a 65concurrency. The right way is to introduce them as new interpreter
04c692a8
DR
66variables, see F<intrpvar.h> (at the very end for binary
67compatibility).
68
69Introducing read-only (const) globals is okay, as long as you verify
70with e.g. C<nm libperl.a|egrep -v ' [TURtr] '> (if your C<nm> has
9b22382a 71BSD-style output) that the data you added really is read-only. (If it
04c692a8
DR
72is, it shouldn't show up in the output of that command.)
73
74If you want to have static strings, make them constant:
75
76 static const char etc[] = "...";
77
78If you want to have arrays of constant strings, note carefully the
79right combination of C<const>s:
80
81 static const char * const yippee[] =
82 {"hi", "ho", "silver"};
83
84There is a way to completely hide any modifiable globals (they are all
85moved to heap), the compilation setting
9b22382a 86C<-DPERL_GLOBAL_STRUCT_PRIVATE>. It is not normally used, but can be
04c692a8
DR
87used for testing, read more about it in L<perlguts/"Background and
88PERL_IMPLICIT_CONTEXT">.
89
90=item *
91
92Not exporting your new function
93
94Some platforms (Win32, AIX, VMS, OS/2, to name a few) require any
95function that is part of the public API (the shared Perl library) to be
9b22382a 96explicitly marked as exported. See the discussion about F<embed.pl> in
04c692a8
DR
97L<perlguts>.
98
99=item *
100
101Exporting your new function
102
103The new shiny result of either genuine new functionality or your
9b22382a 104arduous refactoring is now ready and correctly exported. So what could
04c692a8
DR
105possibly go wrong?
106
107Maybe simply that your function did not need to be exported in the
9b22382a 108first place. Perl has a long and not so glorious history of exporting
04c692a8
DR
109functions that it should not have.
110
111If the function is used only inside one source code file, make it
9b22382a 112static. See the discussion about F<embed.pl> in L<perlguts>.
04c692a8
DR
113
114If the function is used across several files, but intended only for
115Perl's internal use (and this should be the common case), do not export
9b22382a 116it to the public API. See the discussion about F<embed.pl> in
04c692a8
DR
117L<perlguts>.
118
119=back
120
121=head2 Portability problems
122
123The following are common causes of compilation and/or execution
9b22382a
FC
124failures, not common to Perl as such. The C FAQ is good bedtime
125reading. Please test your changes with as many C compilers and
04c692a8
DR
126platforms as possible; we will, anyway, and it's nice to save oneself
127from public embarrassment.
128
129If using gcc, you can add the C<-std=c89> option which will hopefully
9b22382a 130catch most of these unportabilities. (However it might also catch
04c692a8
DR
131incompatibilities in your system's header files.)
132
133Use the Configure C<-Dgccansipedantic> flag to enable the gcc C<-ansi
134-pedantic> flags which enforce stricter ANSI rules.
135
136If using the C<gcc -Wall> note that not all the possible warnings (like
137C<-Wunitialized>) are given unless you also compile with C<-O>.
138
139Note that if using gcc, starting from Perl 5.9.5 the Perl core source
140code files (the ones at the top level of the source code distribution,
141but not e.g. the extensions under ext/) are automatically compiled with
142as many as possible of the C<-std=c89>, C<-ansi>, C<-pedantic>, and a
143selection of C<-W> flags (see cflags.SH).
144
145Also study L<perlport> carefully to avoid any bad assumptions about the
146operating system, filesystems, and so forth.
147
148You may once in a while try a "make microperl" to see whether we can
9b22382a 149still compile Perl with just the bare minimum of interfaces. (See
04c692a8
DR
150README.micro.)
151
152Do not assume an operating system indicates a certain compiler.
153
154=over 4
155
156=item *
157
158Casting pointers to integers or casting integers to pointers
159
160 void castaway(U8* p)
161 {
162 IV i = p;
163
164or
165
166 void castaway(U8* p)
167 {
168 IV i = (IV)p;
169
9b22382a
FC
170Both are bad, and broken, and unportable. Use the PTR2IV() macro that
171does it right. (Likewise, there are PTR2UV(), PTR2NV(), INT2PTR(), and
04c692a8
DR
172NUM2PTR().)
173
174=item *
175
176Casting between data function pointers and data pointers
177
178Technically speaking casting between function pointers and data
179pointers is unportable and undefined, but practically speaking it seems
180to work, but you should use the FPTR2DPTR() and DPTR2FPTR() macros.
181Sometimes you can also play games with unions.
182
183=item *
184
185Assuming sizeof(int) == sizeof(long)
186
187There are platforms where longs are 64 bits, and platforms where ints
188are 64 bits, and while we are out to shock you, even platforms where
9b22382a 189shorts are 64 bits. This is all legal according to the C standard. (In
04c692a8
DR
190other words, "long long" is not a portable way to specify 64 bits, and
191"long long" is not even guaranteed to be any wider than "long".)
192
193Instead, use the definitions IV, UV, IVSIZE, I32SIZE, and so forth.
194Avoid things like I32 because they are B<not> guaranteed to be
195I<exactly> 32 bits, they are I<at least> 32 bits, nor are they
9b22382a 196guaranteed to be B<int> or B<long>. If you really explicitly need
04c692a8
DR
19764-bit variables, use I64 and U64, but only if guarded by HAS_QUAD.
198
199=item *
200
201Assuming one can dereference any type of pointer for any type of data
202
203 char *p = ...;
204 long pony = *p; /* BAD */
205
206Many platforms, quite rightly so, will give you a core dump instead of
768312ab 207a pony if the p happens not to be correctly aligned.
04c692a8
DR
208
209=item *
210
211Lvalue casts
212
213 (int)*p = ...; /* BAD */
214
9b22382a 215Simply not portable. Get your lvalue to be of the right type, or maybe
04c692a8
DR
216use temporary variables, or dirty tricks with unions.
217
218=item *
219
220Assume B<anything> about structs (especially the ones you don't
221control, like the ones coming from the system headers)
222
223=over 8
224
225=item *
226
227That a certain field exists in a struct
228
229=item *
230
231That no other fields exist besides the ones you know of
232
233=item *
234
235That a field is of certain signedness, sizeof, or type
236
237=item *
238
239That the fields are in a certain order
240
241=over 8
242
243=item *
244
245While C guarantees the ordering specified in the struct definition,
246between different platforms the definitions might differ
247
248=back
249
250=item *
251
252That the sizeof(struct) or the alignments are the same everywhere
253
254=over 8
255
256=item *
257
258There might be padding bytes between the fields to align the fields -
259the bytes can be anything
260
261=item *
262
263Structs are required to be aligned to the maximum alignment required by
264the fields - which for native types is for usually equivalent to
265sizeof() of the field
266
267=back
268
269=back
270
271=item *
272
273Assuming the character set is ASCIIish
274
9b22382a 275Perl can compile and run under EBCDIC platforms. See L<perlebcdic>.
04c692a8
DR
276This is transparent for the most part, but because the character sets
277differ, you shouldn't use numeric (decimal, octal, nor hex) constants
9b22382a
FC
278to refer to characters. You can safely say 'A', but not 0x41. You can
279safely say '\n', but not \012. If a character doesn't have a trivial
eb6d698b
KW
280input form, you should add it to the list in
281F<regen/unicode_constants.pl>, and have Perl create #defines for you,
282based on the current platform.
04c692a8
DR
283
284Also, the range 'A' - 'Z' in ASCII is an unbroken sequence of 26 upper
9b22382a
FC
285case alphabetic characters. That is not true in EBCDIC. Nor for 'a' to
286'z'. But '0' - '9' is an unbroken range in both systems. Don't assume
04c692a8
DR
287anything about other ranges.
288
289Many of the comments in the existing code ignore the possibility of
9b22382a 290EBCDIC, and may be wrong therefore, even if the code works. This is
04c692a8
DR
291actually a tribute to the successful transparent insertion of being
292able to handle EBCDIC without having to change pre-existing code.
293
294UTF-8 and UTF-EBCDIC are two different encodings used to represent
9b22382a 295Unicode code points as sequences of bytes. Macros with the same names
04c692a8
DR
296(but different definitions) in C<utf8.h> and C<utfebcdic.h> are used to
297allow the calling code to think that there is only one such encoding.
298This is almost always referred to as C<utf8>, but it means the EBCDIC
9b22382a
FC
299version as well. Again, comments in the code may well be wrong even if
300the code itself is right. For example, the concept of C<invariant
301characters> differs between ASCII and EBCDIC. On ASCII platforms, only
302characters that do not have the high-order bit set (i.e. whose ordinals
04c692a8
DR
303are strict ASCII, 0 - 127) are invariant, and the documentation and
304comments in the code may assume that, often referring to something
9b22382a 305like, say, C<hibit>. The situation differs and is not so simple on
04c692a8
DR
306EBCDIC machines, but as long as the code itself uses the
307C<NATIVE_IS_INVARIANT()> macro appropriately, it works, even if the
308comments are wrong.
309
310=item *
311
312Assuming the character set is just ASCII
313
9b22382a 314ASCII is a 7 bit encoding, but bytes have 8 bits in them. The 128 extra
04c692a8
DR
315characters have different meanings depending on the locale. Absent a
316locale, currently these extra characters are generally considered to be
9b22382a 317unassigned, and this has presented some problems. This is being changed
04c692a8
DR
318starting in 5.12 so that these characters will be considered to be
319Latin-1 (ISO-8859-1).
320
321=item *
322
323Mixing #define and #ifdef
324
325 #define BURGLE(x) ... \
326 #ifdef BURGLE_OLD_STYLE /* BAD */
327 ... do it the old way ... \
328 #else
329 ... do it the new way ... \
330 #endif
331
9b22382a 332You cannot portably "stack" cpp directives. For example in the above
04c692a8
DR
333you need two separate BURGLE() #defines, one for each #ifdef branch.
334
335=item *
336
337Adding non-comment stuff after #endif or #else
338
339 #ifdef SNOSH
340 ...
341 #else !SNOSH /* BAD */
342 ...
343 #endif SNOSH /* BAD */
344
345The #endif and #else cannot portably have anything non-comment after
9b22382a 346them. If you want to document what is going (which is a good idea
04c692a8
DR
347especially if the branches are long), use (C) comments:
348
349 #ifdef SNOSH
350 ...
351 #else /* !SNOSH */
352 ...
353 #endif /* SNOSH */
354
355The gcc option C<-Wendif-labels> warns about the bad variant (by
356default on starting from Perl 5.9.4).
357
358=item *
359
360Having a comma after the last element of an enum list
361
362 enum color {
363 CERULEAN,
364 CHARTREUSE,
365 CINNABAR, /* BAD */
366 };
367
9b22382a 368is not portable. Leave out the last comma.
04c692a8
DR
369
370Also note that whether enums are implicitly morphable to ints varies
371between compilers, you might need to (int).
372
373=item *
374
375Using //-comments
376
377 // This function bamfoodles the zorklator. /* BAD */
378
9b22382a 379That is C99 or C++. Perl is C89. Using the //-comments is silently
04c692a8
DR
380allowed by many C compilers but cranking up the ANSI C89 strictness
381(which we like to do) causes the compilation to fail.
382
383=item *
384
385Mixing declarations and code
386
387 void zorklator()
388 {
389 int n = 3;
390 set_zorkmids(n); /* BAD */
391 int q = 4;
392
9b22382a 393That is C99 or C++. Some C compilers allow that, but you shouldn't.
04c692a8
DR
394
395The gcc option C<-Wdeclaration-after-statements> scans for such
396problems (by default on starting from Perl 5.9.4).
397
398=item *
399
400Introducing variables inside for()
401
402 for(int i = ...; ...; ...) { /* BAD */
403
9b22382a 404That is C99 or C++. While it would indeed be awfully nice to have that
04c692a8
DR
405also in C89, to limit the scope of the loop variable, alas, we cannot.
406
407=item *
408
409Mixing signed char pointers with unsigned char pointers
410
411 int foo(char *s) { ... }
412 ...
413 unsigned char *t = ...; /* Or U8* t = ... */
414 foo(t); /* BAD */
415
416While this is legal practice, it is certainly dubious, and downright
417fatal in at least one platform: for example VMS cc considers this a
9b22382a 418fatal error. One cause for people often making this mistake is that a
04c692a8
DR
419"naked char" and therefore dereferencing a "naked char pointer" have an
420undefined signedness: it depends on the compiler and the flags of the
421compiler and the underlying platform whether the result is signed or
9b22382a 422unsigned. For this very same reason using a 'char' as an array index is
04c692a8
DR
423bad.
424
425=item *
426
427Macros that have string constants and their arguments as substrings of
428the string constants
429
430 #define FOO(n) printf("number = %d\n", n) /* BAD */
431 FOO(10);
432
433Pre-ANSI semantics for that was equivalent to
434
435 printf("10umber = %d\10");
436
9b22382a 437which is probably not what you were expecting. Unfortunately at least
04c692a8
DR
438one reasonably common and modern C compiler does "real backward
439compatibility" here, in AIX that is what still happens even though the
440rest of the AIX compiler is very happily C89.
441
442=item *
443
444Using printf formats for non-basic C types
445
446 IV i = ...;
447 printf("i = %d\n", i); /* BAD */
448
449While this might by accident work in some platform (where IV happens to
9b22382a 450be an C<int>), in general it cannot. IV might be something larger. Even
04c692a8
DR
451worse the situation is with more specific types (defined by Perl's
452configuration step in F<config.h>):
453
454 Uid_t who = ...;
455 printf("who = %d\n", who); /* BAD */
456
457The problem here is that Uid_t might be not only not C<int>-wide but it
458might also be unsigned, in which case large uids would be printed as
459negative values.
460
461There is no simple solution to this because of printf()'s limited
462intelligence, but for many types the right format is available as with
463either 'f' or '_f' suffix, for example:
464
465 IVdf /* IV in decimal */
466 UVxf /* UV is hexadecimal */
467
468 printf("i = %"IVdf"\n", i); /* The IVdf is a string constant. */
469
470 Uid_t_f /* Uid_t in decimal */
471
472 printf("who = %"Uid_t_f"\n", who);
473
474Or you can try casting to a "wide enough" type:
475
476 printf("i = %"IVdf"\n", (IV)something_very_small_and_signed);
477
478Also remember that the C<%p> format really does require a void pointer:
479
480 U8* p = ...;
481 printf("p = %p\n", (void*)p);
482
483The gcc option C<-Wformat> scans for such problems.
484
485=item *
486
487Blindly using variadic macros
488
489gcc has had them for a while with its own syntax, and C99 brought them
9b22382a 490with a standardized syntax. Don't use the former, and use the latter
04c692a8
DR
491only if the HAS_C99_VARIADIC_MACROS is defined.
492
493=item *
494
495Blindly passing va_list
496
497Not all platforms support passing va_list to further varargs (stdarg)
9b22382a 498functions. The right thing to do is to copy the va_list using the
04c692a8
DR
499Perl_va_copy() if the NEED_VA_COPY is defined.
500
501=item *
502
503Using gcc statement expressions
504
505 val = ({...;...;...}); /* BAD */
506
9b22382a 507While a nice extension, it's not portable. The Perl code does
04c692a8
DR
508admittedly use them if available to gain some extra speed (essentially
509as a funky form of inlining), but you shouldn't.
510
511=item *
512
513Binding together several statements in a macro
514
515Use the macros STMT_START and STMT_END.
516
517 STMT_START {
518 ...
519 } STMT_END
520
521=item *
522
523Testing for operating systems or versions when should be testing for
524features
525
526 #ifdef __FOONIX__ /* BAD */
527 foo = quux();
528 #endif
529
530Unless you know with 100% certainty that quux() is only ever available
531for the "Foonix" operating system B<and> that is available B<and>
532correctly working for B<all> past, present, B<and> future versions of
9b22382a 533"Foonix", the above is very wrong. This is more correct (though still
04c692a8
DR
534not perfect, because the below is a compile-time check):
535
536 #ifdef HAS_QUUX
537 foo = quux();
538 #endif
539
540How does the HAS_QUUX become defined where it needs to be? Well, if
541Foonix happens to be Unixy enough to be able to run the Configure
542script, and Configure has been taught about detecting and testing
9b22382a 543quux(), the HAS_QUUX will be correctly defined. In other platforms, the
04c692a8
DR
544corresponding configuration step will hopefully do the same.
545
546In a pinch, if you cannot wait for Configure to be educated, or if you
547have a good hunch of where quux() might be available, you can
548temporarily try the following:
549
550 #if (defined(__FOONIX__) || defined(__BARNIX__))
551 # define HAS_QUUX
552 #endif
553
554 ...
555
556 #ifdef HAS_QUUX
557 foo = quux();
558 #endif
559
560But in any case, try to keep the features and operating systems
561separate.
562
563=back
564
565=head2 Problematic System Interfaces
566
567=over 4
568
569=item *
570
9b22382a
FC
571malloc(0), realloc(0), calloc(0, 0) are non-portable. To be portable
572allocate at least one byte. (In general you should rarely need to work
04c692a8
DR
573at this low level, but instead use the various malloc wrappers.)
574
575=item *
576
9b22382a 577snprintf() - the return type is unportable. Use my_snprintf() instead.
04c692a8
DR
578
579=back
580
581=head2 Security problems
582
583Last but not least, here are various tips for safer coding.
bbc89b61 584See also L<perlclib> for libc/stdio replacements one should use.
04c692a8
DR
585
586=over 4
587
588=item *
589
590Do not use gets()
591
9b22382a 592Or we will publicly ridicule you. Seriously.
04c692a8
DR
593
594=item *
595
bbc89b61
JH
596Do not use tmpfile()
597
598Use mkstemp() instead.
599
600=item *
601
04c692a8
DR
602Do not use strcpy() or strcat() or strncpy() or strncat()
603
604Use my_strlcpy() and my_strlcat() instead: they either use the native
605implementation, or Perl's own implementation (borrowed from the public
606domain implementation of INN).
607
608=item *
609
610Do not use sprintf() or vsprintf()
611
612If you really want just plain byte strings, use my_snprintf() and
613my_vsnprintf() instead, which will try to use snprintf() and
9b22382a 614vsnprintf() if those safer APIs are available. If you want something
6bfe0388
KW
615fancier than a plain byte string, use
616L<C<Perl_form>()|perlapi/form> or SVs and
617L<C<Perl_sv_catpvf()>|perlapi/sv_catpvf>.
618
2e642750
KW
619Note that glibc C<printf()>, C<sprintf()>, etc. are buggy before glibc
620version 2.17. They won't allow a C<%.s> format with a precision to
621create a string that isn't valid UTF-8 if the current underlying locale
622of the program is UTF-8. What happens is that the C<%s> and its operand are
6bfe0388 623simply skipped without any notice.
2e642750 624L<https://sourceware.org/bugzilla/show_bug.cgi?id=6530>.
04c692a8 625
c98823ff
JH
626=item *
627
628Do not use atoi()
629
630Use grok_atou() instead. atoi() has ill-defined behavior on overflows,
631and cannot be used for incremental parsing. It is also affected by locale,
338aa8b0
JH
632which is bad.
633
634=item *
635
636Do not use strtol() or strtoul()
637
638Use grok_atou() instead. strtol() or strtoul() (or their IV/UV-friendly
639macro disguises, Strtol() and Strtoul(), or Atol() and Atoul() are
640affected by locale, which is bad.
c98823ff 641
04c692a8
DR
642=back
643
644=head1 DEBUGGING
645
646You can compile a special debugging version of Perl, which allows you
647to use the C<-D> option of Perl to tell more about what Perl is doing.
648But sometimes there is no alternative than to dive in with a debugger,
649either to see the stack trace of a core dump (very useful in a bug
650report), or trying to figure out what went wrong before the core dump
651happened, or how did we end up having wrong or unexpected results.
652
653=head2 Poking at Perl
654
655To really poke around with Perl, you'll probably want to build Perl for
656debugging, like this:
657
658 ./Configure -d -D optimize=-g
659 make
660
661C<-g> is a flag to the C compiler to have it produce debugging
662information which will allow us to step through a running program, and
663to see in which C function we are at (without the debugging information
664we might see only the numerical addresses of the functions, which is
665not very helpful).
666
667F<Configure> will also turn on the C<DEBUGGING> compilation symbol
9b22382a 668which enables all the internal debugging code in Perl. There are a
04c692a8
DR
669whole bunch of things you can debug with this: L<perlrun> lists them
670all, and the best way to find out about them is to play about with
9b22382a 671them. The most useful options are probably
04c692a8
DR
672
673 l Context (loop) stack processing
674 t Trace execution
675 o Method and overloading resolution
676 c String/numeric conversions
677
678Some of the functionality of the debugging code can be achieved using
679XS modules.
680
681 -Dr => use re 'debug'
682 -Dx => use O 'Debug'
683
684=head2 Using a source-level debugger
685
686If the debugging output of C<-D> doesn't help you, it's time to step
687through perl's execution with a source-level debugger.
688
689=over 3
690
691=item *
692
693We'll use C<gdb> for our examples here; the principles will apply to
694any debugger (many vendors call their debugger C<dbx>), but check the
695manual of the one you're using.
696
697=back
698
699To fire up the debugger, type
700
701 gdb ./perl
702
703Or if you have a core dump:
704
705 gdb ./perl core
706
707You'll want to do that in your Perl source tree so the debugger can
9b22382a 708read the source code. You should see the copyright message, followed by
04c692a8
DR
709the prompt.
710
711 (gdb)
712
713C<help> will get you into the documentation, but here are the most
714useful commands:
715
716=over 3
717
718=item * run [args]
719
720Run the program with the given arguments.
721
722=item * break function_name
723
724=item * break source.c:xxx
725
726Tells the debugger that we'll want to pause execution when we reach
727either the named function (but see L<perlguts/Internal Functions>!) or
728the given line in the named source file.
729
730=item * step
731
732Steps through the program a line at a time.
733
734=item * next
735
736Steps through the program a line at a time, without descending into
737functions.
738
739=item * continue
740
741Run until the next breakpoint.
742
743=item * finish
744
745Run until the end of the current function, then stop again.
746
747=item * 'enter'
748
749Just pressing Enter will do the most recent operation again - it's a
750blessing when stepping through miles of source code.
751
8b029fdf
MH
752=item * ptype
753
754Prints the C definition of the argument given.
755
756 (gdb) ptype PL_op
757 type = struct op {
758 OP *op_next;
759 OP *op_sibling;
760 OP *(*op_ppaddr)(void);
761 PADOFFSET op_targ;
762 unsigned int op_type : 9;
763 unsigned int op_opt : 1;
764 unsigned int op_slabbed : 1;
765 unsigned int op_savefree : 1;
766 unsigned int op_static : 1;
767 unsigned int op_folded : 1;
768 unsigned int op_spare : 2;
769 U8 op_flags;
770 U8 op_private;
771 } *
772
04c692a8
DR
773=item * print
774
9b22382a 775Execute the given C code and print its results. B<WARNING>: Perl makes
04c692a8 776heavy use of macros, and F<gdb> does not necessarily support macros
9b22382a 777(see later L</"gdb macro support">). You'll have to substitute them
04c692a8
DR
778yourself, or to invoke cpp on the source code files (see L</"The .i
779Targets">) So, for instance, you can't say
780
781 print SvPV_nolen(sv)
782
783but you have to say
784
785 print Perl_sv_2pv_nolen(sv)
786
787=back
788
789You may find it helpful to have a "macro dictionary", which you can
9b22382a 790produce by saying C<cpp -dM perl.c | sort>. Even then, F<cpp> won't
04c692a8
DR
791recursively apply those macros for you.
792
793=head2 gdb macro support
794
795Recent versions of F<gdb> have fairly good macro support, but in order
796to use it you'll need to compile perl with macro definitions included
9b22382a
FC
797in the debugging information. Using F<gcc> version 3.1, this means
798configuring with C<-Doptimize=-g3>. Other compilers might use a
04c692a8
DR
799different switch (if they support debugging macros at all).
800
801=head2 Dumping Perl Data Structures
802
803One way to get around this macro hell is to use the dumping functions
804in F<dump.c>; these work a little like an internal
805L<Devel::Peek|Devel::Peek>, but they also cover OPs and other
9b22382a 806structures that you can't get at from Perl. Let's take an example.
04c692a8 807We'll use the C<$a = $b + $c> we used before, but give it a bit of
9b22382a 808context: C<$b = "6XXXX"; $c = 2.3;>. Where's a good place to stop and
04c692a8
DR
809poke around?
810
811What about C<pp_add>, the function we examined earlier to implement the
812C<+> operator:
813
814 (gdb) break Perl_pp_add
815 Breakpoint 1 at 0x46249f: file pp_hot.c, line 309.
816
817Notice we use C<Perl_pp_add> and not C<pp_add> - see
9b22382a 818L<perlguts/Internal Functions>. With the breakpoint in place, we can
04c692a8
DR
819run our program:
820
821 (gdb) run -e '$b = "6XXXX"; $c = 2.3; $a = $b + $c'
822
823Lots of junk will go past as gdb reads in the relevant source files and
824libraries, and then:
825
826 Breakpoint 1, Perl_pp_add () at pp_hot.c:309
827 309 dSP; dATARGET; tryAMAGICbin(add,opASSIGN);
828 (gdb) step
829 311 dPOPTOPnnrl_ul;
830 (gdb)
831
832We looked at this bit of code before, and we said that
833C<dPOPTOPnnrl_ul> arranges for two C<NV>s to be placed into C<left> and
834C<right> - let's slightly expand it:
835
836 #define dPOPTOPnnrl_ul NV right = POPn; \
837 SV *leftsv = TOPs; \
838 NV left = USE_LEFT(leftsv) ? SvNV(leftsv) : 0.0
839
840C<POPn> takes the SV from the top of the stack and obtains its NV
841either directly (if C<SvNOK> is set) or by calling the C<sv_2nv>
9b22382a
FC
842function. C<TOPs> takes the next SV from the top of the stack - yes,
843C<POPn> uses C<TOPs> - but doesn't remove it. We then use C<SvNV> to
04c692a8
DR
844get the NV from C<leftsv> in the same way as before - yes, C<POPn> uses
845C<SvNV>.
846
847Since we don't have an NV for C<$b>, we'll have to use C<sv_2nv> to
9b22382a 848convert it. If we step again, we'll find ourselves there:
04c692a8 849
8b029fdf 850 (gdb) step
04c692a8
DR
851 Perl_sv_2nv (sv=0xa0675d0) at sv.c:1669
852 1669 if (!sv)
853 (gdb)
854
855We can now use C<Perl_sv_dump> to investigate the SV:
856
8b029fdf 857 (gdb) print Perl_sv_dump(sv)
04c692a8
DR
858 SV = PV(0xa057cc0) at 0xa0675d0
859 REFCNT = 1
860 FLAGS = (POK,pPOK)
861 PV = 0xa06a510 "6XXXX"\0
862 CUR = 5
863 LEN = 6
864 $1 = void
865
866We know we're going to get C<6> from this, so let's finish the
867subroutine:
868
869 (gdb) finish
870 Run till exit from #0 Perl_sv_2nv (sv=0xa0675d0) at sv.c:1671
871 0x462669 in Perl_pp_add () at pp_hot.c:311
872 311 dPOPTOPnnrl_ul;
873
874We can also dump out this op: the current op is always stored in
9b22382a 875C<PL_op>, and we can dump it with C<Perl_op_dump>. This'll give us
04c692a8
DR
876similar output to L<B::Debug|B::Debug>.
877
8b029fdf 878 (gdb) print Perl_op_dump(PL_op)
04c692a8
DR
879 {
880 13 TYPE = add ===> 14
881 TARG = 1
882 FLAGS = (SCALAR,KIDS)
883 {
884 TYPE = null ===> (12)
885 (was rv2sv)
886 FLAGS = (SCALAR,KIDS)
887 {
888 11 TYPE = gvsv ===> 12
889 FLAGS = (SCALAR)
890 GV = main::b
891 }
892 }
893
894# finish this later #
895
8b029fdf
MH
896=head2 Using gdb to look at specific parts of a program
897
898With the example above, you knew to look for C<Perl_pp_add>, but what if
899there were multiple calls to it all over the place, or you didn't know what
900the op was you were looking for?
901
902One way to do this is to inject a rare call somewhere near what you're looking
9b22382a 903for. For example, you could add C<study> before your method:
8b029fdf
MH
904
905 study;
906
907And in gdb do:
908
909 (gdb) break Perl_pp_study
910
9b22382a
FC
911And then step until you hit what you're
912looking for. This works well in a loop
8b029fdf
MH
913if you want to only break at certain iterations:
914
915 for my $c (1..100) {
916 study if $c == 50;
917 }
918
919=head2 Using gdb to look at what the parser/lexer are doing
920
921If you want to see what perl is doing when parsing/lexing your code, you can
72b22e55 922use C<BEGIN {}>:
8b029fdf
MH
923
924 print "Before\n";
925 BEGIN { study; }
926 print "After\n";
927
928And in gdb:
929
930 (gdb) break Perl_pp_study
931
932If you want to see what the parser/lexer is doing inside of C<if> blocks and
933the like you need to be a little trickier:
934
935 if ($a && $b && do { BEGIN { study } 1 } && $c) { ... }
936
04c692a8
DR
937=head1 SOURCE CODE STATIC ANALYSIS
938
939Various tools exist for analysing C source code B<statically>, as
9b22382a 940opposed to B<dynamically>, that is, without executing the code. It is
04c692a8
DR
941possible to detect resource leaks, undefined behaviour, type
942mismatches, portability problems, code paths that would cause illegal
943memory accesses, and other similar problems by just parsing the C code
944and looking at the resulting graph, what does it tell about the
9b22382a 945execution and data flows. As a matter of fact, this is exactly how C
04c692a8
DR
946compilers know to give warnings about dubious code.
947
948=head2 lint, splint
949
950The good old C code quality inspector, C<lint>, is available in several
951platforms, but please be aware that there are several different
952implementations of it by different vendors, which means that the flags
953are not identical across different platforms.
954
955There is a lint variant called C<splint> (Secure Programming Lint)
956available from http://www.splint.org/ that should compile on any
957Unix-like platform.
958
959There are C<lint> and <splint> targets in Makefile, but you may have to
960diddle with the flags (see above).
961
962=head2 Coverity
963
964Coverity (http://www.coverity.com/) is a product similar to lint and as
965a testbed for their product they periodically check several open source
966projects, and they give out accounts to open source developers to the
967defect databases.
968
969=head2 cpd (cut-and-paste detector)
970
9b22382a 971The cpd tool detects cut-and-paste coding. If one instance of the
04c692a8 972cut-and-pasted code changes, all the other spots should probably be
9b22382a 973changed, too. Therefore such code should probably be turned into a
04c692a8
DR
974subroutine or a macro.
975
976cpd (http://pmd.sourceforge.net/cpd.html) is part of the pmd project
9b22382a 977(http://pmd.sourceforge.net/). pmd was originally written for static
04c692a8
DR
978analysis of Java code, but later the cpd part of it was extended to
979parse also C and C++.
980
981Download the pmd-bin-X.Y.zip () from the SourceForge site, extract the
982pmd-X.Y.jar from it, and then run that on source code thusly:
983
0cbf2b31
FC
984 java -cp pmd-X.Y.jar net.sourceforge.pmd.cpd.CPD \
985 --minimum-tokens 100 --files /some/where/src --language c > cpd.txt
04c692a8
DR
986
987You may run into memory limits, in which case you should use the -Xmx
988option:
989
990 java -Xmx512M ...
991
992=head2 gcc warnings
993
994Though much can be written about the inconsistency and coverage
995problems of gcc warnings (like C<-Wall> not meaning "all the warnings",
996or some common portability problems not being covered by C<-Wall>, or
997C<-ansi> and C<-pedantic> both being a poorly defined collection of
998warnings, and so forth), gcc is still a useful tool in keeping our
999coding nose clean.
1000
1001The C<-Wall> is by default on.
1002
1003The C<-ansi> (and its sidekick, C<-pedantic>) would be nice to be on
1004always, but unfortunately they are not safe on all platforms, they can
1005for example cause fatal conflicts with the system headers (Solaris
9b22382a 1006being a prime example). If Configure C<-Dgccansipedantic> is used, the
04c692a8
DR
1007C<cflags> frontend selects C<-ansi -pedantic> for the platforms where
1008they are known to be safe.
1009
1010Starting from Perl 5.9.4 the following extra flags are added:
1011
1012=over 4
1013
1014=item *
1015
1016C<-Wendif-labels>
1017
1018=item *
1019
1020C<-Wextra>
1021
1022=item *
1023
1024C<-Wdeclaration-after-statement>
1025
1026=back
1027
1028The following flags would be nice to have but they would first need
1029their own Augean stablemaster:
1030
1031=over 4
1032
1033=item *
1034
1035C<-Wpointer-arith>
1036
1037=item *
1038
1039C<-Wshadow>
1040
1041=item *
1042
1043C<-Wstrict-prototypes>
1044
1045=back
1046
1047The C<-Wtraditional> is another example of the annoying tendency of gcc
1048to bundle a lot of warnings under one switch (it would be impossible to
1049deploy in practice because it would complain a lot) but it does contain
1050some warnings that would be beneficial to have available on their own,
1051such as the warning about string constants inside macros containing the
1052macro arguments: this behaved differently pre-ANSI than it does in
1053ANSI, and some C compilers are still in transition, AIX being an
1054example.
1055
1056=head2 Warnings of other C compilers
1057
1058Other C compilers (yes, there B<are> other C compilers than gcc) often
1059have their "strict ANSI" or "strict ANSI with some portability
1060extensions" modes on, like for example the Sun Workshop has its C<-Xa>
1061mode on (though implicitly), or the DEC (these days, HP...) has its
1062C<-std1> mode on.
1063
1064=head1 MEMORY DEBUGGERS
1065
d1fd4856
VP
1066B<NOTE 1>: Running under older memory debuggers such as Purify,
1067valgrind or Third Degree greatly slows down the execution: seconds
9b22382a 1068become minutes, minutes become hours. For example as of Perl 5.8.1, the
04c692a8 1069ext/Encode/t/Unicode.t takes extraordinarily long to complete under
9b22382a
FC
1070e.g. Purify, Third Degree, and valgrind. Under valgrind it takes more
1071than six hours, even on a snappy computer. The said test must be doing
1072something that is quite unfriendly for memory debuggers. If you don't
04c692a8 1073feel like waiting, that you can simply kill away the perl process.
d1fd4856
VP
1074Roughly valgrind slows down execution by factor 10, AddressSanitizer by
1075factor 2.
04c692a8
DR
1076
1077B<NOTE 2>: To minimize the number of memory leak false alarms (see
1078L</PERL_DESTRUCT_LEVEL> for more information), you have to set the
9b22382a 1079environment variable PERL_DESTRUCT_LEVEL to 2. For example, like this:
04c692a8
DR
1080
1081 env PERL_DESTRUCT_LEVEL=2 valgrind ./perl -Ilib ...
1082
1083B<NOTE 3>: There are known memory leaks when there are compile-time
1084errors within eval or require, seeing C<S_doeval> in the call stack is
9b22382a 1085a good sign of these. Fixing these leaks is non-trivial, unfortunately,
04c692a8
DR
1086but they must be fixed eventually.
1087
1088B<NOTE 4>: L<DynaLoader> will not clean up after itself completely
1089unless Perl is built with the Configure option
1090C<-Accflags=-DDL_UNLOAD_ALL_AT_EXIT>.
1091
04c692a8
DR
1092=head2 valgrind
1093
d1fd4856 1094The valgrind tool can be used to find out both memory leaks and illegal
9b22382a
FC
1095heap memory accesses. As of version 3.3.0, Valgrind only supports Linux
1096on x86, x86-64 and PowerPC and Darwin (OS X) on x86 and x86-64). The
d1fd4856 1097special "test.valgrind" target can be used to run the tests under
9b22382a 1098valgrind. Found errors and memory leaks are logged in files named
037ab3f1
MH
1099F<testfile.valgrind> and by default output is displayed inline.
1100
1101Example usage:
1102
1103 make test.valgrind
1104
1105Since valgrind adds significant overhead, tests will take much longer to
1106run. The valgrind tests support being run in parallel to help with this:
1107
1108 TEST_JOBS=9 make test.valgrind
1109
1110Note that the above two invocations will be very verbose as reachable
1111memory and leak-checking is enabled by default. If you want to just see
1112pure errors, try:
1113
1114 VG_OPTS='-q --leak-check=no --show-reachable=no' TEST_JOBS=9 \
1115 make test.valgrind
04c692a8
DR
1116
1117Valgrind also provides a cachegrind tool, invoked on perl as:
1118
1119 VG_OPTS=--tool=cachegrind make test.valgrind
1120
1121As system libraries (most notably glibc) are also triggering errors,
9b22382a 1122valgrind allows to suppress such errors using suppression files. The
04c692a8 1123default suppression file that comes with valgrind already catches a lot
9b22382a 1124of them. Some additional suppressions are defined in F<t/perl.supp>.
04c692a8
DR
1125
1126To get valgrind and for more information see
1127
0061d4fa 1128 http://valgrind.org/
04c692a8 1129
81c3bbe7
RU
1130=head2 AddressSanitizer
1131
4dd56148 1132AddressSanitizer is a clang and gcc extension, included in clang since
9b22382a 1133v3.1 and gcc since v4.8. It checks illegal heap pointers, global
4dd56148
NC
1134pointers, stack pointers and use after free errors, and is fast enough
1135that you can easily compile your debugging or optimized perl with it.
9b22382a 1136It does not check memory leaks though. AddressSanitizer is available
4dd56148 1137for Linux, Mac OS X and soon on Windows.
81c3bbe7 1138
8a64fbaa
VP
1139To build perl with AddressSanitizer, your Configure invocation should
1140look like:
81c3bbe7 1141
e8596d90
VP
1142 sh Configure -des -Dcc=clang \
1143 -Accflags=-faddress-sanitizer -Aldflags=-faddress-sanitizer \
1144 -Alddlflags=-shared\ -faddress-sanitizer
81c3bbe7
RU
1145
1146where these arguments mean:
1147
1148=over 4
1149
1150=item * -Dcc=clang
1151
8a64fbaa
VP
1152This should be replaced by the full path to your clang executable if it
1153is not in your path.
81c3bbe7
RU
1154
1155=item * -Accflags=-faddress-sanitizer
1156
8a64fbaa 1157Compile perl and extensions sources with AddressSanitizer.
81c3bbe7
RU
1158
1159=item * -Aldflags=-faddress-sanitizer
1160
8a64fbaa 1161Link the perl executable with AddressSanitizer.
81c3bbe7 1162
e8596d90 1163=item * -Alddlflags=-shared\ -faddress-sanitizer
81c3bbe7 1164
9b22382a 1165Link dynamic extensions with AddressSanitizer. You must manually
e8596d90
VP
1166specify C<-shared> because using C<-Alddlflags=-shared> will prevent
1167Configure from setting a default value for C<lddlflags>, which usually
5dfc6e97 1168contains C<-shared> (at least on Linux).
81c3bbe7
RU
1169
1170=back
1171
8a64fbaa
VP
1172See also
1173L<http://code.google.com/p/address-sanitizer/wiki/AddressSanitizer>.
81c3bbe7
RU
1174
1175
04c692a8
DR
1176=head1 PROFILING
1177
1178Depending on your platform there are various ways of profiling Perl.
1179
1180There are two commonly used techniques of profiling executables:
1181I<statistical time-sampling> and I<basic-block counting>.
1182
1183The first method takes periodically samples of the CPU program counter,
1184and since the program counter can be correlated with the code generated
1185for functions, we get a statistical view of in which functions the
9b22382a 1186program is spending its time. The caveats are that very small/fast
04c692a8
DR
1187functions have lower probability of showing up in the profile, and that
1188periodically interrupting the program (this is usually done rather
1189frequently, in the scale of milliseconds) imposes an additional
9b22382a 1190overhead that may skew the results. The first problem can be alleviated
04c692a8
DR
1191by running the code for longer (in general this is a good idea for
1192profiling), the second problem is usually kept in guard by the
1193profiling tools themselves.
1194
1195The second method divides up the generated code into I<basic blocks>.
1196Basic blocks are sections of code that are entered only in the
9b22382a
FC
1197beginning and exited only at the end. For example, a conditional jump
1198starts a basic block. Basic block profiling usually works by
04c692a8 1199I<instrumenting> the code by adding I<enter basic block #nnnn>
9b22382a
FC
1200book-keeping code to the generated code. During the execution of the
1201code the basic block counters are then updated appropriately. The
04c692a8
DR
1202caveat is that the added extra code can skew the results: again, the
1203profiling tools usually try to factor their own effects out of the
1204results.
1205
1206=head2 Gprof Profiling
1207
e2aed43d 1208I<gprof> is a profiling tool available in many Unix platforms which
9b22382a
FC
1209uses I<statistical time-sampling>. You can build a profiled version of
1210F<perl> by compiling using gcc with the flag C<-pg>. Either edit
1211F<config.sh> or re-run F<Configure>. Running the profiled version of
e2aed43d
NC
1212Perl will create an output file called F<gmon.out> which contains the
1213profiling data collected during the execution.
04c692a8 1214
e2aed43d
NC
1215quick hint:
1216
1217 $ sh Configure -des -Dusedevel -Accflags='-pg' \
1218 -Aldflags='-pg' -Alddlflags='-pg -shared' \
1219 && make perl
1220 $ ./perl ... # creates gmon.out in current directory
1221 $ gprof ./perl > out
1222 $ less out
1223
1224(you probably need to add C<-shared> to the <-Alddlflags> line until RT
1225#118199 is resolved)
04c692a8 1226
e2aed43d
NC
1227The F<gprof> tool can then display the collected data in various ways.
1228Usually F<gprof> understands the following options:
04c692a8
DR
1229
1230=over 4
1231
1232=item * -a
1233
1234Suppress statically defined functions from the profile.
1235
1236=item * -b
1237
1238Suppress the verbose descriptions in the profile.
1239
1240=item * -e routine
1241
1242Exclude the given routine and its descendants from the profile.
1243
1244=item * -f routine
1245
1246Display only the given routine and its descendants in the profile.
1247
1248=item * -s
1249
1250Generate a summary file called F<gmon.sum> which then may be given to
1251subsequent gprof runs to accumulate data over several runs.
1252
1253=item * -z
1254
1255Display routines that have zero usage.
1256
1257=back
1258
1259For more detailed explanation of the available commands and output
e2aed43d 1260formats, see your own local documentation of F<gprof>.
04c692a8 1261
e2aed43d 1262=head2 GCC gcov Profiling
04c692a8 1263
e2aed43d
NC
1264I<basic block profiling> is officially available in gcc 3.0 and later.
1265You can build a profiled version of F<perl> by compiling using gcc with
9b22382a 1266the flags C<-fprofile-arcs -ftest-coverage>. Either edit F<config.sh>
e2aed43d 1267or re-run F<Configure>.
04c692a8 1268
e2aed43d 1269quick hint:
04c692a8 1270
e2aed43d
NC
1271 $ sh Configure -des -Dusedevel -Doptimize='-g' \
1272 -Accflags='-fprofile-arcs -ftest-coverage' \
1273 -Aldflags='-fprofile-arcs -ftest-coverage' \
1274 -Alddlflags='-fprofile-arcs -ftest-coverage -shared' \
1275 && make perl
1276 $ rm -f regexec.c.gcov regexec.gcda
1277 $ ./perl ...
1278 $ gcov regexec.c
1279 $ less regexec.c.gcov
04c692a8 1280
e2aed43d
NC
1281(you probably need to add C<-shared> to the <-Alddlflags> line until RT
1282#118199 is resolved)
04c692a8
DR
1283
1284Running the profiled version of Perl will cause profile output to be
9b22382a 1285generated. For each source file an accompanying F<.gcda> file will be
04c692a8
DR
1286created.
1287
e2aed43d 1288To display the results you use the I<gcov> utility (which should be
9b22382a 1289installed if you have gcc 3.0 or newer installed). F<gcov> is run on
04c692a8
DR
1290source code files, like this
1291
1292 gcov sv.c
1293
9b22382a 1294which will cause F<sv.c.gcov> to be created. The F<.gcov> files contain
04c692a8 1295the source code annotated with relative frequencies of execution
9b22382a 1296indicated by "#" markers. If you want to generate F<.gcov> files for
6f134219
NC
1297all profiled object files, you can run something like this:
1298
1299 for file in `find . -name \*.gcno`
1300 do sh -c "cd `dirname $file` && gcov `basename $file .gcno`"
1301 done
04c692a8
DR
1302
1303Useful options of F<gcov> include C<-b> which will summarise the basic
1304block, branch, and function call coverage, and C<-c> which instead of
9b22382a 1305relative frequencies will use the actual counts. For more information
04c692a8 1306on the use of F<gcov> and basic block profiling with gcc, see the
9b22382a 1307latest GNU CC manual. As of gcc 4.8, this is at
e2aed43d 1308L<http://gcc.gnu.org/onlinedocs/gcc/Gcov-Intro.html#Gcov-Intro>
04c692a8
DR
1309
1310=head1 MISCELLANEOUS TRICKS
1311
1312=head2 PERL_DESTRUCT_LEVEL
1313
1314If you want to run any of the tests yourself manually using e.g.
4dd56148
NC
1315valgrind, please note that by default perl B<does not> explicitly
1316cleanup all the memory it has allocated (such as global memory arenas)
1317but instead lets the exit() of the whole program "take care" of such
1318allocations, also known as "global destruction of objects".
04c692a8
DR
1319
1320There is a way to tell perl to do complete cleanup: set the environment
9b22382a 1321variable PERL_DESTRUCT_LEVEL to a non-zero value. The t/TEST wrapper
04c692a8 1322does set this to 2, and this is what you need to do too, if you don't
f01ecde8 1323want to see the "global leaks": For example, for running under valgrind
04c692a8 1324
f01ecde8 1325 env PERL_DESTRUCT_LEVEL=2 valgrind ./perl -Ilib t/foo/bar.t
04c692a8
DR
1326
1327(Note: the mod_perl apache module uses also this environment variable
9b22382a
FC
1328for its own purposes and extended its semantics. Refer to the mod_perl
1329documentation for more information. Also, spawned threads do the
04c692a8
DR
1330equivalent of setting this variable to the value 1.)
1331
1332If, at the end of a run you get the message I<N scalars leaked>, you
1333can recompile with C<-DDEBUG_LEAKING_SCALARS>, which will cause the
1334addresses of all those leaked SVs to be dumped along with details as to
9b22382a
FC
1335where each SV was originally allocated. This information is also
1336displayed by Devel::Peek. Note that the extra details recorded with
04c692a8 1337each SV increases memory usage, so it shouldn't be used in production
9b22382a 1338environments. It also converts C<new_SV()> from a macro into a real
04c692a8
DR
1339function, so you can use your favourite debugger to discover where
1340those pesky SVs were allocated.
1341
1342If you see that you're leaking memory at runtime, but neither valgrind
1343nor C<-DDEBUG_LEAKING_SCALARS> will find anything, you're probably
1344leaking SVs that are still reachable and will be properly cleaned up
9b22382a
FC
1345during destruction of the interpreter. In such cases, using the C<-Dm>
1346switch can point you to the source of the leak. If the executable was
04c692a8 1347built with C<-DDEBUG_LEAKING_SCALARS>, C<-Dm> will output SV
9b22382a 1348allocations in addition to memory allocations. Each SV allocation has a
04c692a8 1349distinct serial number that will be written on creation and destruction
9b22382a 1350of the SV. So if you're executing the leaking code in a loop, you need
04c692a8 1351to look for SVs that are created, but never destroyed between each
9b22382a 1352cycle. If such an SV is found, set a conditional breakpoint within
04c692a8 1353C<new_SV()> and make it break only when C<PL_sv_serial> is equal to the
9b22382a 1354serial number of the leaking SV. Then you will catch the interpreter in
04c692a8
DR
1355exactly the state where the leaking SV is allocated, which is
1356sufficient in many cases to find the source of the leak.
1357
1358As C<-Dm> is using the PerlIO layer for output, it will by itself
9b22382a 1359allocate quite a bunch of SVs, which are hidden to avoid recursion. You
04c692a8
DR
1360can bypass the PerlIO layer if you use the SV logging provided by
1361C<-DPERL_MEM_LOG> instead.
1362
1363=head2 PERL_MEM_LOG
1364
1365If compiled with C<-DPERL_MEM_LOG>, both memory and SV allocations go
1366through logging functions, which is handy for breakpoint setting.
1367
1368Unless C<-DPERL_MEM_LOG_NOIMPL> is also compiled, the logging functions
1369read $ENV{PERL_MEM_LOG} to determine whether to log the event, and if
1370so how:
1371
1372 $ENV{PERL_MEM_LOG} =~ /m/ Log all memory ops
1373 $ENV{PERL_MEM_LOG} =~ /s/ Log all SV ops
1374 $ENV{PERL_MEM_LOG} =~ /t/ include timestamp in Log
1375 $ENV{PERL_MEM_LOG} =~ /^(\d+)/ write to FD given (default is 2)
1376
1377Memory logging is somewhat similar to C<-Dm> but is independent of
1378C<-DDEBUGGING>, and at a higher level; all uses of Newx(), Renew(), and
1379Safefree() are logged with the caller's source code file and line
9b22382a
FC
1380number (and C function name, if supported by the C compiler). In
1381contrast, C<-Dm> is directly at the point of C<malloc()>. SV logging is
04c692a8
DR
1382similar.
1383
1384Since the logging doesn't use PerlIO, all SV allocations are logged and
9b22382a 1385no extra SV allocations are introduced by enabling the logging. If
04c692a8
DR
1386compiled with C<-DDEBUG_LEAKING_SCALARS>, the serial number for each SV
1387allocation is also logged.
1388
1389=head2 DDD over gdb
1390
1391Those debugging perl with the DDD frontend over gdb may find the
1392following useful:
1393
1394You can extend the data conversion shortcuts menu, so for example you
1395can display an SV's IV value with one click, without doing any typing.
1396To do that simply edit ~/.ddd/init file and add after:
1397
1398 ! Display shortcuts.
1399 Ddd*gdbDisplayShortcuts: \
1400 /t () // Convert to Bin\n\
1401 /d () // Convert to Dec\n\
1402 /x () // Convert to Hex\n\
1403 /o () // Convert to Oct(\n\
1404
1405the following two lines:
1406
1407 ((XPV*) (())->sv_any )->xpv_pv // 2pvx\n\
1408 ((XPVIV*) (())->sv_any )->xiv_iv // 2ivx
1409
1410so now you can do ivx and pvx lookups or you can plug there the sv_peek
1411"conversion":
1412
1413 Perl_sv_peek(my_perl, (SV*)()) // sv_peek
1414
9b22382a 1415(The my_perl is for threaded builds.) Just remember that every line,
04c692a8
DR
1416but the last one, should end with \n\
1417
1418Alternatively edit the init file interactively via: 3rd mouse button ->
1419New Display -> Edit Menu
1420
1421Note: you can define up to 20 conversion shortcuts in the gdb section.
1422
470dd224
JH
1423=head2 C backtrace
1424
0762e42f
JH
1425On some platforms Perl supports retrieving the C level backtrace
1426(similar to what symbolic debuggers like gdb do).
470dd224
JH
1427
1428The backtrace returns the stack trace of the C call frames,
1429with the symbol names (function names), the object names (like "perl"),
1430and if it can, also the source code locations (file:line).
1431
0762e42f
JH
1432The supported platforms are Linux, and OS X (some *BSD might
1433work at least partly, but they have not yet been tested).
1434
1435This feature hasn't been tested with multiple threads, but it will
1436only show the backtrace of the thread doing the backtracing.
470dd224
JH
1437
1438The feature needs to be enabled with C<Configure -Dusecbacktrace>.
1439
0762e42f
JH
1440The C<-Dusecbacktrace> also enables keeping the debug information when
1441compiling/linking (often: C<-g>). Many compilers/linkers do support
1442having both optimization and keeping the debug information. The debug
1443information is needed for the symbol names and the source locations.
1444
1445Static functions might not be visible for the backtrace.
470dd224
JH
1446
1447Source code locations, even if available, can often be missing or
0762e42f
JH
1448misleading if the compiler has e.g. inlined code. Optimizer can
1449make matching the source code and the object code quite challenging.
470dd224
JH
1450
1451=over 4
1452
1453=item Linux
1454
59b3baca 1455You B<must> have the BFD (-lbfd) library installed, otherwise C<perl> will
0762e42f 1456fail to link. The BFD is usually distributed as part of the GNU binutils.
470dd224
JH
1457
1458Summary: C<Configure ... -Dusecbacktrace>
1459and you need C<-lbfd>.
1460
1461=item OS X
1462
0762e42f
JH
1463The source code locations are supported B<only> if you have
1464the Developer Tools installed. (BFD is B<not> needed.)
470dd224
JH
1465
1466Summary: C<Configure ... -Dusecbacktrace>
1467and installing the Developer Tools would be good.
1468
1469=back
1470
1471Optionally, for trying out the feature, you may want to enable
0762e42f
JH
1472automatic dumping of the backtrace just before a warning or croak (die)
1473message is emitted, by adding C<-Accflags=-DUSE_C_BACKTRACE_ON_ERROR>
1474for Configure.
470dd224
JH
1475
1476Unless the above additional feature is enabled, nothing about the
1477backtrace functionality is visible, except for the Perl/XS level.
1478
1479Furthermore, even if you have enabled this feature to be compiled,
1480you need to enable it in runtime with an environment variable:
0762e42f
JH
1481C<PERL_C_BACKTRACE_ON_ERROR=10>. It must be an integer higher
1482than zero, telling the desired frame count.
470dd224
JH
1483
1484Retrieving the backtrace from Perl level (using for example an XS
1485extension) would be much less exciting than one would hope: normally
1486you would see C<runops>, C<entersub>, and not much else. This API is
1487intended to be called B<from within> the Perl implementation, not from
1488Perl level execution.
1489
0762e42f 1490The C API for the backtrace is as follows:
470dd224
JH
1491
1492=over 4
1493
1494=item get_c_backtrace
1495
1496=item free_c_backtrace
1497
1498=item get_c_backtrace_dump
1499
1500=item dump_c_backtrace
1501
1502=back
1503
04c692a8
DR
1504=head2 Poison
1505
1506If you see in a debugger a memory area mysteriously full of 0xABABABAB
1507or 0xEFEFEFEF, you may be seeing the effect of the Poison() macros, see
1508L<perlclib>.
1509
1510=head2 Read-only optrees
1511
9b22382a 1512Under ithreads the optree is read only. If you want to enforce this, to
04c692a8 1513check for write accesses from buggy code, compile with
91fc0422
FC
1514C<-Accflags=-DPERL_DEBUG_READONLY_OPS>
1515to enable code that allocates op memory
4dd56148
NC
1516via C<mmap>, and sets it read-only when it is attached to a subroutine.
1517Any write access to an op results in a C<SIGBUS> and abort.
04c692a8
DR
1518
1519This code is intended for development only, and may not be portable
9b22382a
FC
1520even to all Unix variants. Also, it is an 80% solution, in that it
1521isn't able to make all ops read only. Specifically it does not apply to
4dd56148 1522op slabs belonging to C<BEGIN> blocks.
04c692a8 1523
4dd56148
NC
1524However, as an 80% solution it is still effective, as it has caught
1525bugs in the past.
04c692a8 1526
f789f6a4
FC
1527=head2 When is a bool not a bool?
1528
1529On pre-C99 compilers, C<bool> is defined as equivalent to C<char>.
1530Consequently assignment of any larger type to a C<bool> is unsafe and may
1531be truncated. The C<cBOOL> macro exists to cast it correctly.
1532
1533On those platforms and compilers where C<bool> really is a boolean (C++,
1534C99), it is easy to forget the cast. You can force C<bool> to be a C<char>
1535by compiling with C<-Accflags=-DPERL_BOOL_AS_CHAR>. You may also wish to
50e4f4d4
CB
1536run C<Configure> with something like
1537
cbc13c3d 1538 -Accflags='-Wconversion -Wno-sign-conversion -Wno-shorten-64-to-32'
50e4f4d4
CB
1539
1540or your compiler's equivalent to make it easier to spot any unsafe truncations
1541that show up.
f789f6a4 1542
04c692a8
DR
1543=head2 The .i Targets
1544
1545You can expand the macros in a F<foo.c> file by saying
1546
1547 make foo.i
1548
d1fd4856
VP
1549which will expand the macros using cpp. Don't be scared by the
1550results.
04c692a8
DR
1551
1552=head1 AUTHOR
1553
1554This document was originally written by Nathan Torkington, and is
1555maintained by the perl5-porters mailing list.