diff options
author | Yao Qi <yao@codesourcery.com> | 2013-07-27 07:49:05 +0000 |
---|---|---|
committer | Yao Qi <yao@codesourcery.com> | 2013-07-27 07:49:05 +0000 |
commit | aaee205620e524600a02c486f5da47c731676c3e (patch) | |
tree | 33258eb13e6966ad096b759ee41845a4aaf2f410 /gdb/Makefile.in | |
parent | b343645045c56a9e9a57b4c0ea425372e8063224 (diff) | |
download | gdb-aaee205620e524600a02c486f5da47c731676c3e.zip gdb-aaee205620e524600a02c486f5da47c731676c3e.tar.gz gdb-aaee205620e524600a02c486f5da47c731676c3e.tar.bz2 |
gdb/
* Makefile.in (HFILES_NO_SRCDIR): Add
common/mips-linux-watch.h.
(mips-linux-watch.o): New rule.
* common/mips-linux-watch.c: New.
* common/mips-linux-watch.h: New.
* config/mips/linux.mh (NATDEPFILES): Add mips-linux-watch.o
* mips-linux-nat.c: Include mips-linux-watch.h.
(W_BIT, R_BIT, I_BIT, W_MASK, R_MASK, I_MASK, IRW_MASK): Move
to common/mips-linux-watch.h.
(MAX_DEBUG_REGISTER): Likewise.
(enum pt_watch_style): Likewise.
(struct mips32_watch_regs): Likewise.
(struct mips64_watch_regs): Likewise.
(struct pt_watch_regs): Likewise.
(struct mips_watchpoint): Likewise.
(mips_linux_watch_get_irw_mask): Move to
common/mips-linux-watch.c.
(get_reg_mask, mips_linux_watch_get_num_valid): Likewise.
(mips_linux_watch_get_watchlo): Likewise.
(mips_linux_watch_set_watchlo): Likewise.
(mips_linux_watch_get_watchhi): Likewise.
(mips_linux_watch_set_watchhi): Likewise.
(mips_linux_read_watch_registers): Likewise.
(mips_linux_watch_type_to_irw): Likewise.
(mips_linux_stopped_data_address, fill_mask): Likewise.
(mips_linux_watch_try_one_watch): Likewise.
(mips_linux_watch_populate_regs): Likewise.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 2d574d4..8f4ee9e 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -787,7 +787,7 @@ LINTFILES = $(SFILES) $(YYFILES) $(CONFIG_SRCS) init.c HFILES_NO_SRCDIR = \ common/gdb_signals.h common/gdb_thread_db.h common/gdb_vecs.h \ -common/i386-xstate.h common/linux-ptrace.h \ +common/i386-xstate.h common/linux-ptrace.h common/mips-linux-watch.h \ proc-utils.h aarch64-tdep.h arm-tdep.h ax-gdb.h ppcfbsd-tdep.h \ ppcnbsd-tdep.h cli-out.h gdb_expat.h breakpoint.h infcall.h obsd-tdep.h \ exec.h m32r-tdep.h osabi.h gdbcore.h solib-som.h amd64bsd-nat.h \ @@ -2026,6 +2026,10 @@ target-common.o: ${srcdir}/common/target-common.c $(COMPILE) $(srcdir)/common/target-common.c $(POSTCOMPILE) +mips-linux-watch.o: ${srcdir}/common/mips-linux-watch.c + $(COMPILE) $(srcdir)/common/mips-linux-watch.c + $(POSTCOMPILE) + # # gdb/tui/ dependencies # |