|
From: Julian S. <js...@ac...> - 2006-09-14 08:54:30
|
Hi Josef
In the future, it would be useful for release management if you
could let me know when you make a commit which you want merged into
the stable branch. Also adding entries for callgrind-related bugs
you fix, into docs/internals/3_2_BUGSTATUS.txt would be helpful,
since that's how I keep track of the current global bug status.
Thanks,
J
On Wednesday 13 September 2006 23:57, sv...@va... wrote:
> Author: weidendo
> Date: 2006-09-13 23:57:38 +0100 (Wed, 13 Sep 2006)
> New Revision: 6064
>
> Log:
> callgrind_annotate: fix warnings with "--collect-jumps=yes"
>
> This callgrind option produces lines starting e.g. with
> "jfi" in the profile data files, which specifies a
> source file change between a jump source and jump target.
> This itself is meaningless for callgrind_annotate, as
> it can not show jump information in its annotation.
> However, such "jfi" lines can contain important mapping
> info for a (file ID, file name) tuple - which leads to
> further warnings and problems if ignored.
>
> Modified:
> trunk/callgrind/callgrind_annotate.in
>
>
> Modified: trunk/callgrind/callgrind_annotate.in
> ===================================================================
> --- trunk/callgrind/callgrind_annotate.in 2006-09-12 23:08:49 UTC (rev
> 6063) +++ trunk/callgrind/callgrind_annotate.in 2006-09-13 22:57:38 UTC
> (rev 6064) @@ -634,6 +634,16 @@
> } elsif (s/^(jump|jcnd)=//) {
> #ignore jump information
>
> + } elsif (s/^jfi=(.*)$//) {
> + # side effect needed: possibly add compression mapping
> + uncompressed_name("fl",$1);
> + # ignore jump information
> +
> + } elsif (s/^jfn=(.*)$//) {
> + # side effect needed: possibly add compression mapping
> + uncompressed_name("fn",$1);
> + # ignore jump information
> +
> } elsif (s/^totals:\s+//) {
> #ignore
>
>
>
> -------------------------------------------------------------------------
> Using Tomcat but need to do more? Need to support web services, security?
> Get stuff done quickly with pre-integrated technology to make your job
> easier Download IBM WebSphere Application Server v.1.0.1 based on Apache
> Geronimo
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> _______________________________________________
> Valgrind-developers mailing list
> Val...@li...
> https://lists.sourceforge.net/lists/listinfo/valgrind-developers
|