]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/config/ia64/nm-linux.h
2004-01-05 Andrew Cagney <cagney@redhat.com>
[thirdparty/binutils-gdb.git] / gdb / config / ia64 / nm-linux.h
1 /* Native support for GNU/Linux, for GDB, the GNU debugger.
2 Copyright 1999, 2000, 2001
3 Free Software Foundation, Inc.
4
5 This file is part of GDB.
6
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 2 of the License, or
10 (at your option) any later version.
11
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.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
21
22 #ifndef NM_LINUX_H
23 #define NM_LINUX_H
24
25 struct target_ops;
26
27 #include "config/nm-linux.h"
28
29 /* Note: It seems likely that we'll have to eventually define
30 FETCH_INFERIOR_REGISTERS. But until that time, we'll make do
31 with the following. */
32
33 #define CANNOT_FETCH_REGISTER(regno) ia64_cannot_fetch_register(regno)
34 extern int ia64_cannot_fetch_register (int regno);
35
36 #define CANNOT_STORE_REGISTER(regno) ia64_cannot_store_register(regno)
37 extern int ia64_cannot_store_register (int regno);
38
39 #define U_REGS_OFFSET 0
40
41 #define PTRACE_ARG3_TYPE long
42 #define PTRACE_XFER_TYPE long
43
44 /* Hardware watchpoints */
45
46 #define TARGET_HAS_HARDWARE_WATCHPOINTS
47
48 #define TARGET_CAN_USE_HARDWARE_WATCHPOINT(type, cnt, ot) 1
49
50 /* The IA-64 architecture can step over a watch point (without triggering
51 it again) if the "dd" (data debug fault disable) bit in the processor
52 status word is set.
53
54 This PSR bit is set in ia64_linux_stopped_by_watchpoint when the
55 code there has determined that a hardware watchpoint has indeed
56 been hit. The CPU will then be able to execute one instruction
57 without triggering a watchpoint. */
58 #define HAVE_STEPPABLE_WATCHPOINT 1
59
60 #define STOPPED_BY_WATCHPOINT(W) \
61 ia64_linux_stopped_by_watchpoint (inferior_ptid)
62 extern CORE_ADDR ia64_linux_stopped_by_watchpoint (ptid_t ptid);
63
64 #define target_insert_watchpoint(addr, len, type) \
65 ia64_linux_insert_watchpoint (inferior_ptid, addr, len, type)
66 extern int ia64_linux_insert_watchpoint (ptid_t ptid, CORE_ADDR addr,
67 int len, int rw);
68
69 #define target_remove_watchpoint(addr, len, type) \
70 ia64_linux_remove_watchpoint (inferior_ptid, addr, len)
71 extern int ia64_linux_remove_watchpoint (ptid_t ptid, CORE_ADDR addr,
72 int len);
73
74 #include "target.h"
75
76 #define NATIVE_XFER_UNWIND_TABLE ia64_linux_xfer_unwind_table
77 extern LONGEST ia64_linux_xfer_unwind_table (struct target_ops *ops,
78 enum target_object object,
79 const char *annex,
80 void *readbuf,
81 const void *writebuf,
82 ULONGEST offset,
83 LONGEST len);
84
85 #endif /* #ifndef NM_LINUX_H */