From 4e99c6b708b232d1cd61c29148e2d8290b625786 Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Tue, 17 Dec 2013 21:48:29 -0700 Subject: [PATCH] Add target_ops argument to to_insn_history_range 2014-02-19 Tom Tromey * target.h (struct target_ops) : Add argument. * target.c (target_insn_history_range): Add argument. * record-btrace.c (record_btrace_insn_history_range): Add 'self' argument. (record_btrace_insn_history_from): Update. --- gdb/ChangeLog | 9 +++++++++ gdb/record-btrace.c | 5 +++-- gdb/target.c | 2 +- gdb/target.h | 3 ++- 4 files changed, 15 insertions(+), 4 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index a02f50b..18495bf 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,14 @@ 2014-02-19 Tom Tromey + * target.h (struct target_ops) : Add + argument. + * target.c (target_insn_history_range): Add argument. + * record-btrace.c (record_btrace_insn_history_range): Add 'self' + argument. + (record_btrace_insn_history_from): Update. + +2014-02-19 Tom Tromey + * target.h (struct target_ops) : Add argument. * target.c (target_insn_history_from): Add argument. diff --git a/gdb/record-btrace.c b/gdb/record-btrace.c index 2e130df..b022d59 100644 --- a/gdb/record-btrace.c +++ b/gdb/record-btrace.c @@ -398,7 +398,8 @@ record_btrace_insn_history (struct target_ops *self, int size, int flags) /* The to_insn_history_range method of target record-btrace. */ static void -record_btrace_insn_history_range (ULONGEST from, ULONGEST to, int flags) +record_btrace_insn_history_range (struct target_ops *self, + ULONGEST from, ULONGEST to, int flags) { struct btrace_thread_info *btinfo; struct btrace_insn_history *history; @@ -478,7 +479,7 @@ record_btrace_insn_history_from (struct target_ops *self, end = ULONGEST_MAX; } - record_btrace_insn_history_range (begin, end, flags); + record_btrace_insn_history_range (self, begin, end, flags); } /* Print the instruction number range for a function call history line. */ diff --git a/gdb/target.c b/gdb/target.c index 6727134..b27098c 100644 --- a/gdb/target.c +++ b/gdb/target.c @@ -4447,7 +4447,7 @@ target_insn_history_range (ULONGEST begin, ULONGEST end, int flags) for (t = current_target.beneath; t != NULL; t = t->beneath) if (t->to_insn_history_range != NULL) { - t->to_insn_history_range (begin, end, flags); + t->to_insn_history_range (t, begin, end, flags); return; } diff --git a/gdb/target.h b/gdb/target.h index f562a84..d1be473 100644 --- a/gdb/target.h +++ b/gdb/target.h @@ -965,7 +965,8 @@ struct target_ops /* Disassemble a section of the recorded execution trace from instruction BEGIN (inclusive) to instruction END (inclusive). */ - void (*to_insn_history_range) (ULONGEST begin, ULONGEST end, int flags); + void (*to_insn_history_range) (struct target_ops *, + ULONGEST begin, ULONGEST end, int flags); /* Print a function trace of the recorded execution trace. If SIZE < 0, print abs (SIZE) preceding functions; otherwise, print SIZE -- 2.7.4