aboutsummaryrefslogtreecommitdiff
path: root/cachegrind
diff options
context:
space:
mode:
authorsewardj <sewardj@a5019735-40e9-0310-863c-91ae7b9d1cf9>2007-02-07 19:55:30 +0000
committersewardj <sewardj@a5019735-40e9-0310-863c-91ae7b9d1cf9>2007-02-07 19:55:30 +0000
commite1216cbfeb840d103e478f58231093857b4daaed (patch)
tree4303eb6ea7202e4ee3809a367e2dda17cc40b01f /cachegrind
parent4d56c7c0c7a07afa9cc826616243a151204ab8d4 (diff)
downloadvalgrind-e1216cbfeb840d103e478f58231093857b4daaed.tar.gz
* Add new flag --cachegrind-out-file to specify the output file
basename to be something other than "cachegrind.out". * Observe the core-supplied --log-file-qualifier, if specified, in creation of output file names. * To make the above work, move most of the stuff in cg_pre_clo_init into cg_post_clo_init, so that the core's determination of the log file qualifier, if any, is done by the time cachegrind comes to process its arguments. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@6572 a5019735-40e9-0310-863c-91ae7b9d1cf9
Diffstat (limited to 'cachegrind')
-rw-r--r--cachegrind/cg_main.c78
-rw-r--r--cachegrind/docs/cg-manual.xml26
2 files changed, 86 insertions, 18 deletions
diff --git a/cachegrind/cg_main.c b/cachegrind/cg_main.c
index 1e1ff0757..5f713e055 100644
--- a/cachegrind/cg_main.c
+++ b/cachegrind/cg_main.c
@@ -977,7 +977,16 @@ static CC Ir_total;
static CC Dr_total;
static CC Dw_total;
-static Char* cachegrind_out_file;
+// The output file base name specified by the user using the
+// --cachegrind-out-file switch. This is combined with the
+// process ID and optional user-supplied qualifier (from
+// --log-file-qualifier) to produce the name stored in
+// cachegrind_out_file.
+static Char* cachegrind_out_file_basename = "cachegrind.out";
+
+// The final, completed name for the output file.
+static Char* cachegrind_out_file = NULL;
+
static void fprint_CC_table_and_calc_totals(void)
{
@@ -1296,6 +1305,9 @@ static Bool cg_process_cmd_line_option(Char* arg)
parse_cache_opt(&clo_D1_cache, &arg[5]);
else if (VG_CLO_STREQN(5, arg, "--L2="))
parse_cache_opt(&clo_L2_cache, &arg[5]);
+ else if (VG_CLO_STREQN(22, arg, "--cachegrind-out-file=")) {
+ cachegrind_out_file_basename = &arg[22];
+ }
else
return False;
@@ -1308,6 +1320,8 @@ static void cg_print_usage(void)
" --I1=<size>,<assoc>,<line_size> set I1 cache manually\n"
" --D1=<size>,<assoc>,<line_size> set D1 cache manually\n"
" --L2=<size>,<assoc>,<line_size> set L2 cache manually\n"
+" --cachegrind-out-file=<file> write profile data to <file>.<pid>\n"
+" [cachegrind.out.<pid>]\n"
);
}
@@ -1322,19 +1336,10 @@ static void cg_print_debug_usage(void)
/*--- Setup ---*/
/*--------------------------------------------------------------------*/
-static void cg_post_clo_init(void)
-{
- cache_t I1c, D1c, L2c;
-
- configure_caches(&I1c, &D1c, &L2c);
-
- cachesim_I1_initcache(I1c);
- cachesim_D1_initcache(D1c);
- cachesim_L2_initcache(L2c);
-}
-
static Char base_dir[VKI_PATH_MAX];
+static void cg_post_clo_init(void); /* just below */
+
static void cg_pre_clo_init(void)
{
VG_(details_name) ("Cachegrind");
@@ -1353,14 +1358,49 @@ static void cg_pre_clo_init(void)
VG_(needs_command_line_options)(cg_process_cmd_line_option,
cg_print_usage,
cg_print_debug_usage);
+}
+
+static void cg_post_clo_init(void)
+{
+ HChar* qual = NULL;
+ cache_t I1c, D1c, L2c;
+ Int filename_szB;
/* Get working directory */
tl_assert( VG_(getcwd)(base_dir, VKI_PATH_MAX) );
- /* Block is big enough for dir name + cachegrind.out.<pid> */
- cachegrind_out_file = VG_(malloc)((VG_(strlen)(base_dir) + 32)*sizeof(Char));
- VG_(sprintf)(cachegrind_out_file, "%s/cachegrind.out.%d",
- base_dir, VG_(getpid)());
+ /* Do we have a --log-file-qualifier= to consider? */
+ if (VG_(clo_log_file_qualifier)) {
+ qual = VG_(getenv)(VG_(clo_log_file_qualifier));
+ }
+
+ /* Block is big enough for
+ dir name ++ cachegrind_out_file_basename
+ ++ ".<pid>"
+ ++ the log file qualifier, if in use */
+ filename_szB
+ = VG_(strlen)(base_dir)
+ + 1 /* "/" */
+ + VG_(strlen)(cachegrind_out_file_basename)
+ + 11 /* "." <pid>, assuming sizeof(pid) <= 4 */
+ + (qual ? (10 + VG_(strlen)(qual)) : 0)
+ + 1; /* to guarantee checkable zero at the end */
+
+ tl_assert(filename_szB > 0);
+ cachegrind_out_file
+ = VG_(calloc)( sizeof(Char), filename_szB );
+
+ if (qual) {
+ VG_(sprintf)(cachegrind_out_file, "%s/%s.%d.lfq.%s",
+ base_dir, cachegrind_out_file_basename,
+ VG_(getpid)(), qual);
+ } else {
+ VG_(sprintf)(cachegrind_out_file, "%s/%s.%d",
+ base_dir, cachegrind_out_file_basename,
+ VG_(getpid)());
+ }
+
+ tl_assert( cachegrind_out_file[filename_szB-1] == 0 );
CC_table = VG_(OSet_Create)(offsetof(LineCC, loc),
cmp_CodeLoc_LineCC,
@@ -1371,6 +1411,12 @@ static void cg_pre_clo_init(void)
stringTable = VG_(OSet_Create)(/*keyOff*/0,
stringCmp,
VG_(malloc), VG_(free));
+
+ configure_caches(&I1c, &D1c, &L2c);
+
+ cachesim_I1_initcache(I1c);
+ cachesim_D1_initcache(D1c);
+ cachesim_L2_initcache(L2c);
}
VG_DETERMINE_INTERFACE_VERSION(cg_pre_clo_init)
diff --git a/cachegrind/docs/cg-manual.xml b/cachegrind/docs/cg-manual.xml
index b09fc67c6..cfc1c8339 100644
--- a/cachegrind/docs/cg-manual.xml
+++ b/cachegrind/docs/cg-manual.xml
@@ -257,9 +257,10 @@ follow that.</para>
<title>Output file</title>
<para>As well as printing summary information, Cachegrind also
-writes line-by-line cache profiling information to a file named
+writes line-by-line cache profiling information to a user-specified
+file. By default this file is named
<computeroutput>cachegrind.out.pid</computeroutput>. This file
-is human-readable, but is best interpreted by the accompanying
+is human-readable, but is intended to be interpreted by the accompanying
program <computeroutput>cg_annotate</computeroutput>, described
in the next section.</para>
@@ -275,6 +276,15 @@ file:</para>
in the current directory (but that won't happen very often
because it takes some time for process ids to be
recycled).</para>
+ <para>
+ To use a basename other than the default
+ <computeroutput>cachegrind.out.</computeroutput>,
+ use the <computeroutput>--cachegrind-out-file</computeroutput>
+ switch.</para>
+ <para>
+ To add further qualifiers to the output filename you can use
+ the core's <computeroutput>--log-file-qualifier</computeroutput>
+ flag.</para>
</listitem>
<listitem>
<para>It can be huge: <computeroutput>ls -l</computeroutput>
@@ -344,6 +354,18 @@ configuration, or failing that, via defaults).</para>
</listitem>
</varlistentry>
+ <varlistentry id="opt.cachegrind-out-file" xreflabel="--cachegrind-out-file">
+ <term>
+ <option><![CDATA[--cachegrind-out-file=<basename> ]]></option>
+ </term>
+ <listitem>
+ <para>Write the profile data to <![CDATA[<basename>.<pid>]]>
+ rather than to the default output file,
+ <![CDATA[cachegrind.out.<pid>]]>.
+ </para>
+ </listitem>
+ </varlistentry>
+
</variablelist>
<!-- end of xi:include in the manpage -->