summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMasatake YAMATO <yamato@redhat.com>2013-12-17 12:03:29 +0900
committerMark Wielaard <mjw@redhat.com>2013-12-18 11:53:56 +0100
commitc8c610bcfb9e90ab2d43c019da7eaade7017baec (patch)
tree5af1def37aee886ff2f2b75cae7794a5a40fbb7e
parentb3c810fb04a63813e0d0af28fd45fbd22c05df2e (diff)
downloadelfutils-c8c610bcfb9e90ab2d43c019da7eaade7017baec.tar.gz
stack: show binary and source file names where a function is defined
This patch adds the module and source file information to the each stack trace line. `-m' is for module file information and `-s' is for source file information. `-v' is for both and more. This is based on private discussion with Jan Kratochvil <jan.kratochvil@redhat.com>. In v2 patch, `-s' and `-m' options are introduced instead of using `-v' repeatedly as suggested by Mark Wielaard <mjw@redhat.com>. In v3 patch `-a' is added as extra option and source lines are printed on their own line. Signed-off-by: Masatake YAMATO <yamato@redhat.com> Signed-off-by: Mark Wielaard <mjw@redhat.com>
-rw-r--r--src/ChangeLog10
-rw-r--r--src/stack.c68
2 files changed, 72 insertions, 6 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index f899858f..77e4240d 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,13 @@
+2013-12-17 Masatake YAMATO <yamato@redhat.com>
+ Mark Wielaard <mjw@redhat.com>
+
+ * stack.c (show_activation, show_module, show_source): New variables.
+ (parse_opt): Set show_activation if -a option is given.
+ Set show_module if -m option is given. Set show_source if -s option
+ is given. Set all show booleans when -v option is given.
+ (main): Added `-a', `-m', `-s', and `-v' to the help message.
+ (frame_callback): Print module and source file information.
+
2013-11-25 Petr Machata <pmachata@redhat.com>
* elflint.c (valid_e_machine): Add EM_AARCH64.
diff --git a/src/stack.c b/src/stack.c
index f428ed08..242d3930 100644
--- a/src/stack.c
+++ b/src/stack.c
@@ -36,7 +36,9 @@ ARGP_PROGRAM_VERSION_HOOK_DEF = print_version;
/* Bug report address. */
ARGP_PROGRAM_BUG_ADDRESS_DEF = PACKAGE_BUGREPORT;
-static bool verbose = false;
+static bool show_activation = false;
+static bool show_module = false;
+static bool show_source = false;
static int
frame_callback (Dwfl_Frame *state, void *arg)
@@ -76,9 +78,44 @@ frame_callback (Dwfl_Frame *state, void *arg)
width = 16;
printf ("#%-2u 0x%0*" PRIx64, (*framenop)++, width, (uint64_t) pc);
- if (verbose)
+
+ if (show_activation)
printf ("%4s", ! isactivation ? "- 1" : "");
- printf (" %s\n", symname);
+
+ if (symname != NULL)
+ printf (" %s", symname);
+
+ if (show_module)
+ {
+ const char* fname;
+
+ fname = dwfl_module_info(mod, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+ if (fname != NULL)
+ printf (" - %s", fname);
+ }
+
+ if (show_source)
+ {
+ Dwfl_Line *lineobj = dwfl_module_getsrc(mod, pc_adjusted);
+ if (lineobj)
+ {
+ int line, col;
+ const char* sname;
+ line = col = -1;
+ sname = dwfl_lineinfo (lineobj, NULL, &line, &col, NULL, NULL);
+ if (sname != NULL)
+ {
+ printf ("\n %s", sname);
+ if (line > 0)
+ {
+ printf (":%d", line);
+ if (col > 0)
+ printf (":%d", col);
+ }
+ }
+ }
+ }
+ printf ("\n");
return DWARF_CB_OK;
}
@@ -117,8 +154,20 @@ parse_opt (int key, char *arg __attribute__ ((unused)),
state->child_inputs[0] = state->input;
break;
+ case 'm':
+ show_module = true;
+ break;
+
+ case 's':
+ show_source = true;
+ break;
+
+ case 'a':
+ show_activation = true;
+ break;
+
case 'v':
- verbose = true;
+ show_activation = show_source = show_module = true;
break;
default:
@@ -140,7 +189,14 @@ main (int argc, char **argv)
const struct argp_option options[] =
{
- { "verbose", 'v', NULL, 0, N_("Additionally show frames activation"), 0 },
+ { "activation", 'a', NULL, 0,
+ N_("Additionally show frame activation"), 0 },
+ { "module", 'm', NULL, 0,
+ N_("Additionally show module file information"), 0 },
+ { "source", 's', NULL, 0,
+ N_("Additionally show source file information"), 0 },
+ { "verbose", 'v', NULL, 0,
+ N_("Show all additional information (activation, module and source)"), 0 },
{ NULL, 0, NULL, 0, NULL, 0 }
};
@@ -165,7 +221,7 @@ Only real user processes are supported, no kernel or process maps."),
argp_parse (&argp, argc, argv, 0, &remaining, &dwfl);
assert (dwfl != NULL);
if (remaining != argc)
- error (2, 0, "eu-stack [--debuginfo-path=<path>] {-p <process id>|"
+ error (2, 0, "eu-stack [-a] [-m] [-s] [-v] [--debuginfo-path=<path>] {-p <process id>|"
"--core=<file> [--executable=<file>]|--help}");
/* dwfl_linux_proc_report has been already called from dwfl_standard_argp's