aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2010-04-22 02:18:32 +0000
committerMike Frysinger <vapier@gentoo.org>2010-04-22 02:18:32 +0000
commitef93a840784b53c63dec9c1f39aa934c11740f8b (patch)
tree3efa059143f2c03aa8782624e4269fc78677d99d
parent3ac9b6c910daef1a01271f14f137862eb570a420 (diff)
downloadgdb-ef93a840784b53c63dec9c1f39aa934c11740f8b.zip
gdb-ef93a840784b53c63dec9c1f39aa934c11740f8b.tar.gz
gdb-ef93a840784b53c63dec9c1f39aa934c11740f8b.tar.bz2
sim: profile: implement --profile-file backend
Need to update the sim_profile_print_bar() call after the common/ changes. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
-rw-r--r--sim/common/ChangeLog4
-rw-r--r--sim/common/cgen-scache.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/sim/common/ChangeLog b/sim/common/ChangeLog
index 1b0ac76..ddca266 100644
--- a/sim/common/ChangeLog
+++ b/sim/common/ChangeLog
@@ -1,5 +1,9 @@
2010-04-21 Mike Frysinger <vapier@gentoo.org>
+ * profile.c (sim_profile_print_bar): Add cpu argument.
+
+2010-04-21 Mike Frysinger <vapier@gentoo.org>
+
* sim-profile.h (sim_profile_print_bar): Use sim_cpu, not SIM_CPU.
2010-04-21 Mike Frysinger <vapier@gentoo.org>
diff --git a/sim/common/cgen-scache.c b/sim/common/cgen-scache.c
index 82f57b4..d92ecac 100644
--- a/sim/common/cgen-scache.c
+++ b/sim/common/cgen-scache.c
@@ -466,7 +466,7 @@ scache_print_profile (SIM_CPU *cpu, int verbose)
i,
max_val < 10000 ? 5 : 10,
sim_add_commas (buf, sizeof (buf), lengths[i]));
- sim_profile_print_bar (sd, PROFILE_HISTOGRAM_WIDTH,
+ sim_profile_print_bar (sd, cpu, PROFILE_HISTOGRAM_WIDTH,
lengths[i], max_val);
sim_io_printf (sd, "\n");
}