summaryrefslogtreecommitdiff
path: root/gprof
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2010-07-16 14:52:14 +0000
committerNick Clifton <nickc@redhat.com>2010-07-16 14:52:14 +0000
commit93cf20549fb5a4cd15cdf0e2a5d68b2f415eeceb (patch)
treeecf3ec9b16ed43e748bcce67695d6871983d4cd6 /gprof
parent36a51c9314123f8b37808ebbab8b0006f8b89ed7 (diff)
downloadbinutils-redhat-93cf20549fb5a4cd15cdf0e2a5d68b2f415eeceb.tar.gz
* corefile.c (core_sym_class): Fix handling of subprogram names
and add support for cloned function names.
Diffstat (limited to 'gprof')
-rw-r--r--gprof/ChangeLog5
-rw-r--r--gprof/corefile.c18
2 files changed, 18 insertions, 5 deletions
diff --git a/gprof/ChangeLog b/gprof/ChangeLog
index 347ac07f3e..91483bf2ae 100644
--- a/gprof/ChangeLog
+++ b/gprof/ChangeLog
@@ -1,3 +1,8 @@
+2010-07-16 James Blackburn <james.blackburn@broadcom.com>
+
+ * corefile.c (core_sym_class): Fix handling of subprogram names
+ and add support for cloned function names.
+
2010-06-15 Doug Semler <dougsemler@gmail.com>
* gmon_io.c (gmon_out_read): Remove double fclose of input file.
diff --git a/gprof/corefile.c b/gprof/corefile.c
index b2697f832e..6b10d17748 100644
--- a/gprof/corefile.c
+++ b/gprof/corefile.c
@@ -385,12 +385,20 @@ core_sym_class (asymbol *sym)
if (*name == '$')
return 0;
- /* Do not discard nested subprograms (those
- which end with .NNN, where N are digits). */
if (*name == '.')
- for (name++; *name; name++)
- if (! ISDIGIT (*name))
- return 0;
+ {
+ /* Allow GCC cloned functions. */
+ if (strlen (name) > 7 && strncmp (name, ".clone.", 7) == 0)
+ name += 6;
+
+ /* Do not discard nested subprograms (those
+ which end with .NNN, where N are digits). */
+ for (name++; *name; name++)
+ if (! ISDIGIT (*name))
+ return 0;
+
+ break;
+ }
}
/* On systems where the C compiler adds an underscore to all