]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/config/mips/tm-mips.h
27af00d54d4aa4b8dbc3663b8abfbc0f01b6e3c9
[thirdparty/binutils-gdb.git] / gdb / config / mips / tm-mips.h
1 /* Definitions to make GDB run on a mips box under 4.3bsd.
2
3 Copyright 1986, 1987, 1989, 1991, 1992, 1993, 1994, 1995, 1996,
4 1997, 1998, 1999, 2000, 2002, 2003 Free Software Foundation, Inc.
5
6 Contributed by Per Bothner (bothner@cs.wisc.edu) at U.Wisconsin
7 and by Alessandro Forin (af@cs.cmu.edu) at CMU..
8
9 This file is part of GDB.
10
11 This program is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 2 of the License, or
14 (at your option) any later version.
15
16 This program is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License for more details.
20
21 You should have received a copy of the GNU General Public License
22 along with this program; if not, write to the Free Software
23 Foundation, Inc., 59 Temple Place - Suite 330,
24 Boston, MA 02111-1307, USA. */
25
26 #ifndef TM_MIPS_H
27 #define TM_MIPS_H 1
28
29 #include "regcache.h"
30
31 struct frame_info;
32 struct symbol;
33 struct type;
34 struct value;
35
36 /* Return non-zero if PC points to an instruction which will cause a step
37 to execute both the instruction at PC and an instruction at PC+4. */
38 extern int mips_step_skips_delay (CORE_ADDR);
39 #define STEP_SKIPS_DELAY_P (1)
40 #define STEP_SKIPS_DELAY(pc) (mips_step_skips_delay (pc))
41
42 /* Special symbol found in blocks associated with routines. We can
43 hang mdebug_extra_func_info's off of this. */
44
45 #define MDEBUG_EFI_SYMBOL_NAME "__GDB_EFI_INFO__"
46
47 /* Functions for dealing with MIPS16 call and return stubs. */
48 #define DEPRECATED_IGNORE_HELPER_CALL(pc) mips_ignore_helper (pc)
49 extern int mips_ignore_helper (CORE_ADDR pc);
50
51 #endif /* TM_MIPS_H */