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/config | |
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/config')
-rw-r--r-- | gdb/config/mips/linux.mh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/config/mips/linux.mh b/gdb/config/mips/linux.mh index 2f8e5dd..a4f23e3 100644 --- a/gdb/config/mips/linux.mh +++ b/gdb/config/mips/linux.mh @@ -3,7 +3,7 @@ NAT_FILE= config/nm-linux.h NATDEPFILES= inf-ptrace.o fork-child.o mips-linux-nat.o \ linux-thread-db.o proc-service.o \ linux-nat.o linux-osdata.o linux-fork.o \ - linux-procfs.o linux-ptrace.o + linux-procfs.o linux-ptrace.o mips-linux-watch.o NAT_CDEPS = $(srcdir)/proc-service.list LOADLIBES = -ldl $(RDYNAMIC) |