aboutsummaryrefslogtreecommitdiff
path: root/gdb/record-btrace.c
diff options
context:
space:
mode:
authorFelix Willgerodt <felix.willgerodt@intel.com>2018-06-07 10:38:10 +0200
committerFelix Willgerodt <felix.willgerodt@intel.com>2024-08-14 11:20:56 +0200
commit4195751c5cade8db8321969ce94f919a80905a42 (patch)
tree528e6e06c463d7633e06a661d220289889cc1c1b /gdb/record-btrace.c
parent72bb34e65534f5f89b5b8f440ee83021a26c0058 (diff)
downloadbinutils-4195751c5cade8db8321969ce94f919a80905a42.zip
binutils-4195751c5cade8db8321969ce94f919a80905a42.tar.gz
binutils-4195751c5cade8db8321969ce94f919a80905a42.tar.bz2
btrace: Enable auxiliary instructions in record function-call-history.
Print the auxiliary data when a btrace_insn of type BTRACE_INSN_AUX is encountered in the function-call-history. Printing is active by default, it can be silenced with the /a modifier. This patch is in preparation for the new ptwrite feature, which is based on auxiliary instructions. Approved-By: Markus Metzger <markus.t.metzger@intel.com> Reviewed-By: Eli Zaretskii <eliz@gnu.org>
Diffstat (limited to 'gdb/record-btrace.c')
-rw-r--r--gdb/record-btrace.c34
1 files changed, 32 insertions, 2 deletions
diff --git a/gdb/record-btrace.c b/gdb/record-btrace.c
index 54c761d..92c01dc 100644
--- a/gdb/record-btrace.c
+++ b/gdb/record-btrace.c
@@ -1161,6 +1161,31 @@ btrace_get_bfun_name (const struct btrace_function *bfun)
return "??";
}
+static void
+btrace_print_aux_insn (struct ui_out *uiout,
+ const struct btrace_function *bfun,
+ const struct btrace_thread_info *btinfo,
+ int level)
+{
+ for (const btrace_insn &insn : bfun->insn)
+ {
+ if (insn.iclass == BTRACE_INSN_AUX)
+ {
+ /* Indent to the function level. */
+ uiout->text ("\t");
+ /* Adjust for RECORD_PRINT_INDENT_CALLS and indent one
+ additional level. */
+ for (int i = 0; i <= level; ++i)
+ uiout->text (" ");
+
+ uiout->text ("[");
+ uiout->field_fmt ("aux-data", "%s",
+ btinfo->aux_data.at (insn.aux_data_index).c_str ());
+ uiout->text ("]\n");
+ }
+ }
+}
+
/* Disassemble a section of the recorded function trace. */
static void
@@ -1181,6 +1206,7 @@ btrace_call_history (struct ui_out *uiout,
const struct btrace_function *bfun;
struct minimal_symbol *msym;
struct symbol *sym;
+ int level = 0;
bfun = btrace_call_get (&it);
sym = bfun->sym;
@@ -1207,9 +1233,9 @@ btrace_call_history (struct ui_out *uiout,
if ((flags & RECORD_PRINT_INDENT_CALLS) != 0)
{
- int level = bfun->level + btinfo->level, i;
+ level = bfun->level + btinfo->level;
- for (i = 0; i < level; ++i)
+ for (int i = 0; i < level; ++i)
uiout->text (" ");
}
@@ -1236,6 +1262,10 @@ btrace_call_history (struct ui_out *uiout,
}
uiout->text ("\n");
+
+ if (((flags & RECORD_DONT_PRINT_AUX) == 0)
+ && ((bfun->flags & BFUN_CONTAINS_AUX) != 0))
+ btrace_print_aux_insn (uiout, bfun, btinfo, level);
}
}