convert to_remove_hw_breakpoint
[deliverable/binutils-gdb.git] / gdb / ChangeLog
index 1bc4d8cd8d78645ae8cdf75cb753d48189e1d94e..81fd3f412d70c96afc397d3dcac357bfb90850a3 100644 (file)
@@ -1,3 +1,184 @@
+2014-02-19  Tom Tromey  <tromey@redhat.com>
+
+       * target-delegates.c: Rebuild.
+       * target.c (update_current_target): Don't inherit or default
+       to_remove_hw_breakpoint.
+       * target.h (struct target_ops) <to_remove_hw_breakpoint>: Use
+       TARGET_DEFAULT_RETURN.
+
+2014-02-19  Tom Tromey  <tromey@redhat.com>
+
+       * target-delegates.c: Rebuild.
+       * target.c (update_current_target): Don't inherit or default
+       to_insert_hw_breakpoint.
+       * target.h (struct target_ops) <to_insert_hw_breakpoint>: Use
+       TARGET_DEFAULT_RETURN.
+
+2014-02-19  Tom Tromey  <tromey@redhat.com>
+
+       * target-delegates.c: Rebuild.
+       * target.c (update_current_target): Don't inherit or default
+       to_can_use_hw_breakpoint.
+       * target.h (struct target_ops) <to_can_use_hw_breakpoint>: Use
+       TARGET_DEFAULT_RETURN.
+
+2014-02-19  Tom Tromey  <tromey@redhat.com>
+
+       * target-delegates.c: Rebuild.
+       * target.c (update_current_target): Don't inherit or default
+       to_files_info.
+       * target.h (struct target_ops) <to_files_info>: Use
+       TARGET_DEFAULT_IGNORE.
+
+2014-02-19  Tom Tromey  <tromey@redhat.com>
+
+       * target-delegates.c: Rebuild.
+       * target.c (update_current_target): Don't inherit or default
+       to_store.
+       * target.h (struct target_ops) <to_store>: Use
+       TARGET_DEFAULT_NORETURN.
+
+2014-02-19  Tom Tromey  <tromey@redhat.com>
+
+       * target-delegates.c: Rebuild.
+       * target.c (update_current_target): Don't inherit or default
+       to_post_attach.
+       * target.h (struct target_ops) <to_post_attach>: Use
+       TARGET_DEFAULT_IGNORE.
+
+2014-02-19  Tom Tromey  <tromey@redhat.com>
+
+       * target-delegates.c: Rebuild.
+       * target.c (update_current_target): Don't inherit or default
+       to_rcmd.
+       (default_rcmd): New function.
+       (do_monitor_command): Unconditionally delegate.
+       * target.h (struct target_ops) <to_rmcd>: Use
+       TARGET_DEFAULT_FUNC.
+
+2014-02-19  Tom Tromey  <tromey@redhat.com>
+
+       * target-delegates.c: Rebuild.
+       * target.c (init_dummy_target): Don't initialize to_attach.
+       (target_attach): Unconditionally delegate.
+       * target.h (struct target_ops) <to_attach>: Use
+       TARGET_DEFAULT_FUNC.
+
+2014-02-19  Tom Tromey  <tromey@redhat.com>
+
+       * target-delegates.c: Rebuild.
+       * target.c (target_detach): Unconditionally delegate.
+       (init_dummy_target): Don't initialize to_detach.
+       * target.h (struct target_ops) <to_detach>: Use
+       TARGET_DEFAULT_IGNORE.
+
+2014-02-19  Tom Tromey  <tromey@redhat.com>
+
+       * target.h (struct target_ops) <to_augmented_libraries_svr4_read>:
+       Add argument.
+       (target_augmented_libraries_svr4_read): Add argument.
+       * target.c (update_current_target): Update.
+       * remote.c (remote_augmented_libraries_svr4_read): Add 'self'
+       argument.
+
+2014-02-19  Tom Tromey  <tromey@redhat.com>
+
+       * target.h (struct target_ops) <to_call_history_range>: Add
+       argument.
+       * target.c (target_call_history_range): Add argument.
+       * record-btrace.c (record_btrace_call_history_range): Add 'self'
+       argument.
+       (record_btrace_call_history_from): Update.
+
+2014-02-19  Tom Tromey  <tromey@redhat.com>
+
+       * target.h (struct target_ops) <to_call_history_from>: Add
+       argument.
+       * target.c (target_call_history_from): Add argument.
+       * record-btrace.c (record_btrace_call_history_from): Add 'self'
+       argument.
+
+2014-02-19  Tom Tromey  <tromey@redhat.com>
+
+       * target.h (struct target_ops) <to_call_history>: Add argument.
+       * target.c (target_call_history): Add argument.
+       * record-btrace.c (record_btrace_call_history): Add 'self'
+       argument.
+
+2014-02-19  Tom Tromey  <tromey@redhat.com>
+
+       * target.h (struct target_ops) <to_insn_history_range>: 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  <tromey@redhat.com>
+
+       * target.h (struct target_ops) <to_insn_history_from>: Add
+       argument.
+       * target.c (target_insn_history_from): Add argument.
+       * record-btrace.c (record_btrace_insn_history_from): Add 'self'
+       argument.
+
+2014-02-19  Tom Tromey  <tromey@redhat.com>
+
+       * target.h (struct target_ops) <to_insn_history>: Add argument.
+       * target.c (target_insn_history): Add argument.
+       * record-btrace.c (record_btrace_insn_history): Add 'self'
+       argument.
+
+2014-02-19  Tom Tromey  <tromey@redhat.com>
+
+       * target.h (struct target_ops) <to_goto_record>: Add argument.
+       * target.c (target_goto_record): Add argument.
+       * record-full.c (record_full_goto): Add 'self' argument.
+       * record-btrace.c (record_btrace_goto): Add 'self' argument.
+
+2014-02-19  Tom Tromey  <tromey@redhat.com>
+
+       * target.h (struct target_ops) <to_goto_record_end>: Add argument.
+       * target.c (target_goto_record_end): Add argument.
+       * record-full.c (record_full_goto_end): Add 'self' argument.
+       * record-btrace.c (record_btrace_goto_end): Add 'self' argument.
+
+2014-02-19  Tom Tromey  <tromey@redhat.com>
+
+       * target.h (struct target_ops) <to_goto_record_begin>: Add
+       argument.
+       * target.c (target_goto_record_begin): Add argument.
+       * record-full.c (record_full_goto_begin): Add 'self' argument.
+       * record-btrace.c (record_btrace_goto_begin): Add 'self'
+       argument.
+
+2014-02-19  Tom Tromey  <tromey@redhat.com>
+
+       * target.h (struct target_ops) <to_record_is_replaying>: Add
+       argument.
+       * target.c (target_record_is_replaying): Add argument.
+       * record-full.c (record_full_is_replaying): Add 'self' argument.
+       * record-btrace.c (record_btrace_is_replaying): Add 'self'
+       argument.
+       (record_btrace_xfer_partial, record_btrace_store_registers)
+       (record_btrace_prepare_to_store, record_btrace_resume)
+       (record_btrace_wait, record_btrace_decr_pc_after_break)
+       (record_btrace_find_new_threads, record_btrace_thread_alive):
+       Update.
+
+2014-02-19  Tom Tromey  <tromey@redhat.com>
+
+       * target.h (struct target_ops) <to_delete_record>: Add argument.
+       * target.c (target_delete_record): Add argument.
+       * record-full.c (record_full_delete): Add 'self' argument.
+
+2014-02-19  Tom Tromey  <tromey@redhat.com>
+
+       * target.h (struct target_ops) <to_save_record>: Add argument.
+       * target.c (target_save_record): Add argument.
+       * record-full.c (record_full_save): Add 'self' argument.
+       (record_full_save): Add 'self' argument.
+
 2014-02-19  Tom Tromey  <tromey@redhat.com>
 
        * target.h (struct target_ops) <to_info_record>: Add argument.
This page took 0.028756 seconds and 4 git commands to generate.