1 /* Native-dependent code for GNU/Linux on MIPS processors.
3 Copyright (C) 2001-2020 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
24 #include "mips-tdep.h"
27 #include "linux-nat-trad.h"
28 #include "mips-linux-tdep.h"
29 #include "target-descriptions.h"
31 #include "gdb_proc_service.h"
35 #include "nat/gdb_ptrace.h"
36 #include <asm/ptrace.h>
37 #include "inf-ptrace.h"
39 #include "nat/mips-linux-watch.h"
41 #ifndef PTRACE_GET_THREAD_AREA
42 #define PTRACE_GET_THREAD_AREA 25
45 class mips_linux_nat_target final
: public linux_nat_trad_target
48 /* Add our register access methods. */
49 void fetch_registers (struct regcache
*, int) override
;
50 void store_registers (struct regcache
*, int) override
;
52 void close () override
;
54 int can_use_hw_breakpoint (enum bptype
, int, int) override
;
56 int remove_watchpoint (CORE_ADDR
, int, enum target_hw_bp_type
,
57 struct expression
*) override
;
59 int insert_watchpoint (CORE_ADDR
, int, enum target_hw_bp_type
,
60 struct expression
*) override
;
62 bool stopped_by_watchpoint () override
;
64 bool stopped_data_address (CORE_ADDR
*) override
;
66 int region_ok_for_hw_watchpoint (CORE_ADDR
, int) override
;
68 const struct target_desc
*read_description () override
;
71 /* Override linux_nat_trad_target methods. */
72 CORE_ADDR
register_u_offset (struct gdbarch
*gdbarch
,
73 int regno
, int store_p
) override
;
75 /* Override linux_nat_target low methods. */
76 void low_new_thread (struct lwp_info
*lp
) override
;
79 /* Helpers. See definitions. */
80 void mips64_regsets_store_registers (struct regcache
*regcache
,
82 void mips64_regsets_fetch_registers (struct regcache
*regcache
,
86 static mips_linux_nat_target the_mips_linux_nat_target
;
88 /* Assume that we have PTRACE_GETREGS et al. support. If we do not,
89 we'll clear this and use PTRACE_PEEKUSER instead. */
90 static int have_ptrace_regsets
= 1;
92 /* Map gdb internal register number to ptrace ``address''.
93 These ``addresses'' are normally defined in <asm/ptrace.h>.
95 ptrace does not provide a way to read (or set) MIPS_PS_REGNUM,
96 and there's no point in reading or setting MIPS_ZERO_REGNUM.
97 We also can not set BADVADDR, CAUSE, or FCRIR via ptrace(). */
100 mips_linux_register_addr (struct gdbarch
*gdbarch
, int regno
, int store
)
104 if (regno
< 0 || regno
>= gdbarch_num_regs (gdbarch
))
105 error (_("Bogon register number %d."), regno
);
107 if (regno
> MIPS_ZERO_REGNUM
&& regno
< MIPS_ZERO_REGNUM
+ 32)
109 else if ((regno
>= mips_regnum (gdbarch
)->fp0
)
110 && (regno
< mips_regnum (gdbarch
)->fp0
+ 32))
111 regaddr
= FPR_BASE
+ (regno
- mips_regnum (gdbarch
)->fp0
);
112 else if (regno
== mips_regnum (gdbarch
)->pc
)
114 else if (regno
== mips_regnum (gdbarch
)->cause
)
115 regaddr
= store
? (CORE_ADDR
) -1 : CAUSE
;
116 else if (regno
== mips_regnum (gdbarch
)->badvaddr
)
117 regaddr
= store
? (CORE_ADDR
) -1 : BADVADDR
;
118 else if (regno
== mips_regnum (gdbarch
)->lo
)
120 else if (regno
== mips_regnum (gdbarch
)->hi
)
122 else if (regno
== mips_regnum (gdbarch
)->fp_control_status
)
124 else if (regno
== mips_regnum (gdbarch
)->fp_implementation_revision
)
125 regaddr
= store
? (CORE_ADDR
) -1 : FPC_EIR
;
126 else if (mips_regnum (gdbarch
)->dspacc
!= -1
127 && regno
>= mips_regnum (gdbarch
)->dspacc
128 && regno
< mips_regnum (gdbarch
)->dspacc
+ 6)
129 regaddr
= DSP_BASE
+ (regno
- mips_regnum (gdbarch
)->dspacc
);
130 else if (regno
== mips_regnum (gdbarch
)->dspctl
)
131 regaddr
= DSP_CONTROL
;
132 else if (mips_linux_restart_reg_p (gdbarch
) && regno
== MIPS_RESTART_REGNUM
)
135 regaddr
= (CORE_ADDR
) -1;
141 mips64_linux_register_addr (struct gdbarch
*gdbarch
, int regno
, int store
)
145 if (regno
< 0 || regno
>= gdbarch_num_regs (gdbarch
))
146 error (_("Bogon register number %d."), regno
);
148 /* On n32 we can't access 64-bit registers via PTRACE_PEEKUSR
149 or PTRACE_POKEUSR. */
150 if (register_size (gdbarch
, regno
) > sizeof (PTRACE_TYPE_RET
))
151 return (CORE_ADDR
) -1;
153 if (regno
> MIPS_ZERO_REGNUM
&& regno
< MIPS_ZERO_REGNUM
+ 32)
155 else if ((regno
>= mips_regnum (gdbarch
)->fp0
)
156 && (regno
< mips_regnum (gdbarch
)->fp0
+ 32))
157 regaddr
= MIPS64_FPR_BASE
+ (regno
- gdbarch_fp0_regnum (gdbarch
));
158 else if (regno
== mips_regnum (gdbarch
)->pc
)
160 else if (regno
== mips_regnum (gdbarch
)->cause
)
161 regaddr
= store
? (CORE_ADDR
) -1 : MIPS64_CAUSE
;
162 else if (regno
== mips_regnum (gdbarch
)->badvaddr
)
163 regaddr
= store
? (CORE_ADDR
) -1 : MIPS64_BADVADDR
;
164 else if (regno
== mips_regnum (gdbarch
)->lo
)
165 regaddr
= MIPS64_MMLO
;
166 else if (regno
== mips_regnum (gdbarch
)->hi
)
167 regaddr
= MIPS64_MMHI
;
168 else if (regno
== mips_regnum (gdbarch
)->fp_control_status
)
169 regaddr
= MIPS64_FPC_CSR
;
170 else if (regno
== mips_regnum (gdbarch
)->fp_implementation_revision
)
171 regaddr
= store
? (CORE_ADDR
) -1 : MIPS64_FPC_EIR
;
172 else if (mips_regnum (gdbarch
)->dspacc
!= -1
173 && regno
>= mips_regnum (gdbarch
)->dspacc
174 && regno
< mips_regnum (gdbarch
)->dspacc
+ 6)
175 regaddr
= DSP_BASE
+ (regno
- mips_regnum (gdbarch
)->dspacc
);
176 else if (regno
== mips_regnum (gdbarch
)->dspctl
)
177 regaddr
= DSP_CONTROL
;
178 else if (mips_linux_restart_reg_p (gdbarch
) && regno
== MIPS_RESTART_REGNUM
)
181 regaddr
= (CORE_ADDR
) -1;
186 /* Fetch the thread-local storage pointer for libthread_db. */
189 ps_get_thread_area (struct ps_prochandle
*ph
,
190 lwpid_t lwpid
, int idx
, void **base
)
192 if (ptrace (PTRACE_GET_THREAD_AREA
, lwpid
, NULL
, base
) != 0)
195 /* IDX is the bias from the thread pointer to the beginning of the
196 thread descriptor. It has to be subtracted due to implementation
197 quirks in libthread_db. */
198 *base
= (void *) ((char *)*base
- idx
);
203 /* Wrapper functions. These are only used by libthread_db. */
206 supply_gregset (struct regcache
*regcache
, const gdb_gregset_t
*gregsetp
)
208 if (mips_isa_regsize (regcache
->arch ()) == 4)
209 mips_supply_gregset (regcache
, (const mips_elf_gregset_t
*) gregsetp
);
211 mips64_supply_gregset (regcache
, (const mips64_elf_gregset_t
*) gregsetp
);
215 fill_gregset (const struct regcache
*regcache
,
216 gdb_gregset_t
*gregsetp
, int regno
)
218 if (mips_isa_regsize (regcache
->arch ()) == 4)
219 mips_fill_gregset (regcache
, (mips_elf_gregset_t
*) gregsetp
, regno
);
221 mips64_fill_gregset (regcache
, (mips64_elf_gregset_t
*) gregsetp
, regno
);
225 supply_fpregset (struct regcache
*regcache
, const gdb_fpregset_t
*fpregsetp
)
227 mips64_supply_fpregset (regcache
, (const mips64_elf_fpregset_t
*) fpregsetp
);
231 fill_fpregset (const struct regcache
*regcache
,
232 gdb_fpregset_t
*fpregsetp
, int regno
)
234 mips64_fill_fpregset (regcache
, (mips64_elf_fpregset_t
*) fpregsetp
, regno
);
238 /* Fetch REGNO (or all registers if REGNO == -1) from the target
239 using PTRACE_GETREGS et al. */
242 mips_linux_nat_target::mips64_regsets_fetch_registers
243 (struct regcache
*regcache
, int regno
)
245 struct gdbarch
*gdbarch
= regcache
->arch ();
251 if (regno
>= mips_regnum (gdbarch
)->fp0
252 && regno
<= mips_regnum (gdbarch
)->fp0
+ 32)
254 else if (regno
== mips_regnum (gdbarch
)->fp_control_status
)
256 else if (regno
== mips_regnum (gdbarch
)->fp_implementation_revision
)
261 /* DSP registers are optional and not a part of any set. */
262 have_dsp
= mips_regnum (gdbarch
)->dspctl
!= -1;
265 else if (regno
>= mips_regnum (gdbarch
)->dspacc
266 && regno
< mips_regnum (gdbarch
)->dspacc
+ 6)
268 else if (regno
== mips_regnum (gdbarch
)->dspctl
)
273 tid
= get_ptrace_pid (regcache
->ptid ());
275 if (regno
== -1 || (!is_fp
&& !is_dsp
))
277 mips64_elf_gregset_t regs
;
279 if (ptrace (PTRACE_GETREGS
, tid
, 0L, (PTRACE_TYPE_ARG3
) ®s
) == -1)
283 have_ptrace_regsets
= 0;
286 perror_with_name (_("Couldn't get registers"));
289 mips64_supply_gregset (regcache
,
290 (const mips64_elf_gregset_t
*) ®s
);
293 if (regno
== -1 || is_fp
)
295 mips64_elf_fpregset_t fp_regs
;
297 if (ptrace (PTRACE_GETFPREGS
, tid
, 0L,
298 (PTRACE_TYPE_ARG3
) &fp_regs
) == -1)
302 have_ptrace_regsets
= 0;
305 perror_with_name (_("Couldn't get FP registers"));
308 mips64_supply_fpregset (regcache
,
309 (const mips64_elf_fpregset_t
*) &fp_regs
);
313 linux_nat_trad_target::fetch_registers (regcache
, regno
);
314 else if (regno
== -1 && have_dsp
)
316 for (regi
= mips_regnum (gdbarch
)->dspacc
;
317 regi
< mips_regnum (gdbarch
)->dspacc
+ 6;
319 linux_nat_trad_target::fetch_registers (regcache
, regi
);
320 linux_nat_trad_target::fetch_registers (regcache
,
321 mips_regnum (gdbarch
)->dspctl
);
325 /* Store REGNO (or all registers if REGNO == -1) to the target
326 using PTRACE_SETREGS et al. */
329 mips_linux_nat_target::mips64_regsets_store_registers
330 (struct regcache
*regcache
, int regno
)
332 struct gdbarch
*gdbarch
= regcache
->arch ();
338 if (regno
>= mips_regnum (gdbarch
)->fp0
339 && regno
<= mips_regnum (gdbarch
)->fp0
+ 32)
341 else if (regno
== mips_regnum (gdbarch
)->fp_control_status
)
343 else if (regno
== mips_regnum (gdbarch
)->fp_implementation_revision
)
348 /* DSP registers are optional and not a part of any set. */
349 have_dsp
= mips_regnum (gdbarch
)->dspctl
!= -1;
352 else if (regno
>= mips_regnum (gdbarch
)->dspacc
353 && regno
< mips_regnum (gdbarch
)->dspacc
+ 6)
355 else if (regno
== mips_regnum (gdbarch
)->dspctl
)
360 tid
= get_ptrace_pid (regcache
->ptid ());
362 if (regno
== -1 || (!is_fp
&& !is_dsp
))
364 mips64_elf_gregset_t regs
;
366 if (ptrace (PTRACE_GETREGS
, tid
, 0L, (PTRACE_TYPE_ARG3
) ®s
) == -1)
367 perror_with_name (_("Couldn't get registers"));
369 mips64_fill_gregset (regcache
, ®s
, regno
);
371 if (ptrace (PTRACE_SETREGS
, tid
, 0L, (PTRACE_TYPE_ARG3
) ®s
) == -1)
372 perror_with_name (_("Couldn't set registers"));
375 if (regno
== -1 || is_fp
)
377 mips64_elf_fpregset_t fp_regs
;
379 if (ptrace (PTRACE_GETFPREGS
, tid
, 0L,
380 (PTRACE_TYPE_ARG3
) &fp_regs
) == -1)
381 perror_with_name (_("Couldn't get FP registers"));
383 mips64_fill_fpregset (regcache
, &fp_regs
, regno
);
385 if (ptrace (PTRACE_SETFPREGS
, tid
, 0L,
386 (PTRACE_TYPE_ARG3
) &fp_regs
) == -1)
387 perror_with_name (_("Couldn't set FP registers"));
391 linux_nat_trad_target::store_registers (regcache
, regno
);
392 else if (regno
== -1 && have_dsp
)
394 for (regi
= mips_regnum (gdbarch
)->dspacc
;
395 regi
< mips_regnum (gdbarch
)->dspacc
+ 6;
397 linux_nat_trad_target::store_registers (regcache
, regi
);
398 linux_nat_trad_target::store_registers (regcache
,
399 mips_regnum (gdbarch
)->dspctl
);
403 /* Fetch REGNO (or all registers if REGNO == -1) from the target
404 using any working method. */
407 mips_linux_nat_target::fetch_registers (struct regcache
*regcache
, int regnum
)
409 /* Unless we already know that PTRACE_GETREGS does not work, try it. */
410 if (have_ptrace_regsets
)
411 mips64_regsets_fetch_registers (regcache
, regnum
);
413 /* If we know, or just found out, that PTRACE_GETREGS does not work, fall
414 back to PTRACE_PEEKUSER. */
415 if (!have_ptrace_regsets
)
417 linux_nat_trad_target::fetch_registers (regcache
, regnum
);
419 /* Fill the inaccessible zero register with zero. */
420 if (regnum
== MIPS_ZERO_REGNUM
|| regnum
== -1)
421 regcache
->raw_supply_zeroed (MIPS_ZERO_REGNUM
);
425 /* Store REGNO (or all registers if REGNO == -1) to the target
426 using any working method. */
429 mips_linux_nat_target::store_registers (struct regcache
*regcache
, int regnum
)
431 /* Unless we already know that PTRACE_GETREGS does not work, try it. */
432 if (have_ptrace_regsets
)
433 mips64_regsets_store_registers (regcache
, regnum
);
435 /* If we know, or just found out, that PTRACE_GETREGS does not work, fall
436 back to PTRACE_PEEKUSER. */
437 if (!have_ptrace_regsets
)
438 linux_nat_trad_target::store_registers (regcache
, regnum
);
441 /* Return the address in the core dump or inferior of register
445 mips_linux_nat_target::register_u_offset (struct gdbarch
*gdbarch
,
446 int regno
, int store_p
)
448 if (mips_abi_regsize (gdbarch
) == 8)
449 return mips64_linux_register_addr (gdbarch
, regno
, store_p
);
451 return mips_linux_register_addr (gdbarch
, regno
, store_p
);
454 const struct target_desc
*
455 mips_linux_nat_target::read_description ()
457 static int have_dsp
= -1;
461 int tid
= get_ptrace_pid (inferior_ptid
);
464 ptrace (PTRACE_PEEKUSER
, tid
, DSP_CONTROL
, 0);
474 perror_with_name (_("Couldn't check DSP support"));
479 /* Report that target registers are a size we know for sure
480 that we can get from ptrace. */
481 if (_MIPS_SIM
== _ABIO32
)
482 return have_dsp
? tdesc_mips_dsp_linux
: tdesc_mips_linux
;
484 return have_dsp
? tdesc_mips64_dsp_linux
: tdesc_mips64_linux
;
487 /* -1 if the kernel and/or CPU do not support watch registers.
488 1 if watch_readback is valid and we can read style, num_valid
490 0 if we need to read the watch_readback. */
492 static int watch_readback_valid
;
494 /* Cached watch register read values. */
496 static struct pt_watch_regs watch_readback
;
498 static struct mips_watchpoint
*current_watches
;
500 /* The current set of watch register values for writing the
503 static struct pt_watch_regs watch_mirror
;
506 mips_show_dr (const char *func
, CORE_ADDR addr
,
507 int len
, enum target_hw_bp_type type
)
511 puts_unfiltered (func
);
513 printf_unfiltered (" (addr=%s, len=%d, type=%s)",
514 paddress (target_gdbarch (), addr
), len
,
515 type
== hw_write
? "data-write"
516 : (type
== hw_read
? "data-read"
517 : (type
== hw_access
? "data-read/write"
518 : (type
== hw_execute
? "instruction-execute"
520 puts_unfiltered (":\n");
522 for (i
= 0; i
< MAX_DEBUG_REGISTER
; i
++)
523 printf_unfiltered ("\tDR%d: lo=%s, hi=%s\n", i
,
524 paddress (target_gdbarch (),
525 mips_linux_watch_get_watchlo (&watch_mirror
,
527 paddress (target_gdbarch (),
528 mips_linux_watch_get_watchhi (&watch_mirror
,
532 /* Target to_can_use_hw_breakpoint implementation. Return 1 if we can
533 handle the specified watch type. */
536 mips_linux_nat_target::can_use_hw_breakpoint (enum bptype type
,
540 uint32_t wanted_mask
, irw_mask
;
542 if (!mips_linux_read_watch_registers (inferior_ptid
.lwp (),
544 &watch_readback_valid
, 0))
549 case bp_hardware_watchpoint
:
550 wanted_mask
= W_MASK
;
552 case bp_read_watchpoint
:
553 wanted_mask
= R_MASK
;
555 case bp_access_watchpoint
:
556 wanted_mask
= R_MASK
| W_MASK
;
563 i
< mips_linux_watch_get_num_valid (&watch_readback
) && cnt
;
566 irw_mask
= mips_linux_watch_get_irw_mask (&watch_readback
, i
);
567 if ((irw_mask
& wanted_mask
) == wanted_mask
)
570 return (cnt
== 0) ? 1 : 0;
573 /* Target to_stopped_by_watchpoint implementation. Return 1 if
574 stopped by watchpoint. The watchhi R and W bits indicate the watch
575 register triggered. */
578 mips_linux_nat_target::stopped_by_watchpoint ()
583 if (!mips_linux_read_watch_registers (inferior_ptid
.lwp (),
585 &watch_readback_valid
, 1))
588 num_valid
= mips_linux_watch_get_num_valid (&watch_readback
);
590 for (n
= 0; n
< MAX_DEBUG_REGISTER
&& n
< num_valid
; n
++)
591 if (mips_linux_watch_get_watchhi (&watch_readback
, n
) & (R_MASK
| W_MASK
))
597 /* Target to_stopped_data_address implementation. Set the address
598 where the watch triggered (if known). Return 1 if the address was
602 mips_linux_nat_target::stopped_data_address (CORE_ADDR
*paddr
)
604 /* On mips we don't know the low order 3 bits of the data address,
605 so we must return false. */
609 /* Target to_region_ok_for_hw_watchpoint implementation. Return 1 if
610 the specified region can be covered by the watch registers. */
613 mips_linux_nat_target::region_ok_for_hw_watchpoint (CORE_ADDR addr
, int len
)
615 struct pt_watch_regs dummy_regs
;
618 if (!mips_linux_read_watch_registers (inferior_ptid
.lwp (),
620 &watch_readback_valid
, 0))
623 dummy_regs
= watch_readback
;
624 /* Clear them out. */
625 for (i
= 0; i
< mips_linux_watch_get_num_valid (&dummy_regs
); i
++)
626 mips_linux_watch_set_watchlo (&dummy_regs
, i
, 0);
627 return mips_linux_watch_try_one_watch (&dummy_regs
, addr
, len
, 0);
630 /* Write the mirrored watch register values for each thread. */
633 write_watchpoint_regs (void)
640 tid
= lp
->ptid
.lwp ();
641 if (ptrace (PTRACE_SET_WATCH_REGS
, tid
, &watch_mirror
, NULL
) == -1)
642 perror_with_name (_("Couldn't write debug register"));
647 /* linux_nat_target::low_new_thread implementation. Write the
648 mirrored watch register values for the new thread. */
651 mips_linux_nat_target::low_new_thread (struct lwp_info
*lp
)
653 long tid
= lp
->ptid
.lwp ();
655 if (!mips_linux_read_watch_registers (tid
,
657 &watch_readback_valid
, 0))
660 if (ptrace (PTRACE_SET_WATCH_REGS
, tid
, &watch_mirror
, NULL
) == -1)
661 perror_with_name (_("Couldn't write debug register"));
664 /* Target to_insert_watchpoint implementation. Try to insert a new
665 watch. Return zero on success. */
668 mips_linux_nat_target::insert_watchpoint (CORE_ADDR addr
, int len
,
669 enum target_hw_bp_type type
,
670 struct expression
*cond
)
672 struct pt_watch_regs regs
;
673 struct mips_watchpoint
*new_watch
;
674 struct mips_watchpoint
**pw
;
678 if (!mips_linux_read_watch_registers (inferior_ptid
.lwp (),
680 &watch_readback_valid
, 0))
686 regs
= watch_readback
;
687 /* Add the current watches. */
688 mips_linux_watch_populate_regs (current_watches
, ®s
);
690 /* Now try to add the new watch. */
691 if (!mips_linux_watch_try_one_watch (®s
, addr
, len
,
692 mips_linux_watch_type_to_irw (type
)))
695 /* It fit. Stick it on the end of the list. */
696 new_watch
= XNEW (struct mips_watchpoint
);
697 new_watch
->addr
= addr
;
698 new_watch
->len
= len
;
699 new_watch
->type
= type
;
700 new_watch
->next
= NULL
;
702 pw
= ¤t_watches
;
708 retval
= write_watchpoint_regs ();
711 mips_show_dr ("insert_watchpoint", addr
, len
, type
);
716 /* Target to_remove_watchpoint implementation. Try to remove a watch.
717 Return zero on success. */
720 mips_linux_nat_target::remove_watchpoint (CORE_ADDR addr
, int len
,
721 enum target_hw_bp_type type
,
722 struct expression
*cond
)
727 struct mips_watchpoint
**pw
;
728 struct mips_watchpoint
*w
;
730 /* Search for a known watch that matches. Then unlink and free
733 pw
= ¤t_watches
;
736 if (w
->addr
== addr
&& w
->len
== len
&& w
->type
== type
)
747 return -1; /* We don't know about it, fail doing nothing. */
749 /* At this point watch_readback is known to be valid because we
750 could not have added the watch without reading it. */
751 gdb_assert (watch_readback_valid
== 1);
753 watch_mirror
= watch_readback
;
754 mips_linux_watch_populate_regs (current_watches
, &watch_mirror
);
756 retval
= write_watchpoint_regs ();
759 mips_show_dr ("remove_watchpoint", addr
, len
, type
);
764 /* Target to_close implementation. Free any watches and call the
765 super implementation. */
768 mips_linux_nat_target::close ()
770 struct mips_watchpoint
*w
;
771 struct mips_watchpoint
*nw
;
773 /* Clean out the current_watches list. */
781 current_watches
= NULL
;
783 linux_nat_trad_target::close ();
786 void _initialize_mips_linux_nat ();
788 _initialize_mips_linux_nat ()
790 add_setshow_boolean_cmd ("show-debug-regs", class_maintenance
,
791 &show_debug_regs
, _("\
792 Set whether to show variables that mirror the mips debug registers."), _("\
793 Show whether to show variables that mirror the mips debug registers."), _("\
794 Use \"on\" to enable, \"off\" to disable.\n\
795 If enabled, the debug registers values are shown when GDB inserts\n\
796 or removes a hardware breakpoint or watchpoint, and when the inferior\n\
797 triggers a breakpoint or watchpoint."),
800 &maintenance_set_cmdlist
,
801 &maintenance_show_cmdlist
);
803 linux_target
= &the_mips_linux_nat_target
;
804 add_inf_child_target (&the_mips_linux_nat_target
);