1999-04-16 03:35:26 +02:00
|
|
|
/* Definitions for native support of irix5.
|
|
|
|
|
2007-01-09 18:59:20 +01:00
|
|
|
Copyright 1993, 1996, 1998, 1999, 2000, 2007 Free Software Foundation, Inc.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
This file is part of GDB.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
2007-08-23 20:08:50 +02:00
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
1999-07-07 22:19:36 +02:00
|
|
|
(at your option) any later version.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
You should have received a copy of the GNU General Public License
|
2007-08-23 20:08:50 +02:00
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
#undef IN_SOLIB_DYNSYM_RESOLVE_CODE
|
|
|
|
|
|
|
|
#define TARGET_HAS_HARDWARE_WATCHPOINTS
|
|
|
|
|
2002-08-13 20:03:38 +02:00
|
|
|
/* TARGET_CAN_USE_HARDWARE_WATCHPOINT is now defined to go through
|
|
|
|
the target vector. For Irix5, procfs_can_use_hw_watchpoint()
|
|
|
|
should be invoked. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
/* When a hardware watchpoint fires off the PC will be left at the
|
|
|
|
instruction which caused the watchpoint. It will be necessary for
|
|
|
|
GDB to step over the watchpoint. */
|
|
|
|
|
|
|
|
#define STOPPED_BY_WATCHPOINT(W) \
|
2001-05-04 06:15:33 +02:00
|
|
|
procfs_stopped_by_watchpoint(inferior_ptid)
|
|
|
|
extern int procfs_stopped_by_watchpoint (ptid_t);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
/* Use these macros for watchpoint insertion/deletion. */
|
|
|
|
/* type can be 0: write watch, 1: read watch, 2: access watch (read/write) */
|
2000-01-06 04:07:20 +01:00
|
|
|
#define target_insert_watchpoint(ADDR, LEN, TYPE) \
|
2001-05-04 06:15:33 +02:00
|
|
|
procfs_set_watchpoint (inferior_ptid, ADDR, LEN, TYPE, 0)
|
2000-01-06 04:07:20 +01:00
|
|
|
#define target_remove_watchpoint(ADDR, LEN, TYPE) \
|
2001-05-04 06:15:33 +02:00
|
|
|
procfs_set_watchpoint (inferior_ptid, ADDR, 0, 0, 0)
|
|
|
|
extern int procfs_set_watchpoint (ptid_t, CORE_ADDR, int, int, int);
|
2000-01-06 04:07:20 +01:00
|
|
|
|
|
|
|
#define TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT(SIZE) 1
|
2004-07-29 23:36:58 +02:00
|
|
|
|