X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=gdbserver%2Flinux-m68k-low.cc;h=838ba353b0b17f2a4c1097f4f295268fc3eef3ce;hb=0381901e629115f5f0d92a27fe74b1814f6f389a;hp=5e19ab02094d459927596bbaf667e9f426150802;hpb=3ca4edb6617353defacd3bf3a4ee3d458238419e;p=deliverable%2Fbinutils-gdb.git diff --git a/gdbserver/linux-m68k-low.cc b/gdbserver/linux-m68k-low.cc index 5e19ab0209..838ba353b0 100644 --- a/gdbserver/linux-m68k-low.cc +++ b/gdbserver/linux-m68k-low.cc @@ -42,6 +42,10 @@ protected: CORE_ADDR low_get_pc (regcache *regcache) override; void low_set_pc (regcache *regcache, CORE_ADDR newpc) override; + + int low_decr_pc_after_break () override; + + bool low_breakpoint_at (CORE_ADDR pc) override; }; /* The singleton target ops object. */ @@ -66,6 +70,12 @@ m68k_target::low_set_pc (regcache *regcache, CORE_ADDR pc) linux_set_pc_32bit (regcache, pc); } +int +m68k_target::low_decr_pc_after_break () +{ + return 2; +} + /* Defined in auto-generated file reg-m68k.c. */ void init_registers_m68k (void); extern const struct target_desc *tdesc_m68k; @@ -181,16 +191,16 @@ m68k_target::sw_breakpoint_from_kind (int kind, int *size) return m68k_breakpoint; } -static int -m68k_breakpoint_at (CORE_ADDR pc) +bool +m68k_target::low_breakpoint_at (CORE_ADDR pc) { unsigned char c[2]; read_inferior_memory (pc, c, 2); if (c[0] == 0x4E && c[1] == 0x4F) - return 1; + return true; - return 0; + return false; } #include @@ -246,42 +256,6 @@ m68k_target::low_arch_setup () current_process ()->tdesc = tdesc_m68k; } -/* Support for hardware single step. */ - -static int -m68k_supports_hardware_single_step (void) -{ - return 1; -} - -struct linux_target_ops the_low_target = { - NULL, - 2, - m68k_breakpoint_at, - NULL, /* supports_z_point_type */ - NULL, /* insert_point */ - NULL, /* remove_point */ - NULL, /* stopped_by_watchpoint */ - NULL, /* stopped_data_address */ - NULL, /* collect_ptrace_register */ - NULL, /* supply_ptrace_register */ - NULL, /* siginfo_fixup */ - NULL, /* new_process */ - NULL, /* delete_process */ - NULL, /* new_thread */ - NULL, /* delete_thread */ - NULL, /* new_fork */ - NULL, /* prepare_to_resume */ - NULL, /* process_qsupported */ - NULL, /* supports_tracepoints */ - NULL, /* get_thread_area */ - NULL, /* install_fast_tracepoint_jump_pad */ - NULL, /* emit_ops */ - NULL, /* get_min_fast_tracepoint_insn_len */ - NULL, /* supports_range_stepping */ - m68k_supports_hardware_single_step, -}; - /* The linux target ops object. */ linux_process_target *the_linux_target = &the_m68k_target;