2003-06-14 Andrew Cagney <cagney@redhat.com>
[deliverable/binutils-gdb.git] / gdb / config / mips / tm-mips.h
CommitLineData
c906108c 1/* Definitions to make GDB run on a mips box under 4.3bsd.
a094c6fb
AC
2
3 Copyright 1986, 1987, 1989, 1991, 1992, 1993, 1994, 1995, 1996,
95404a3e 4 1997, 1998, 1999, 2000, 2002, 2003 Free Software Foundation, Inc.
a094c6fb 5
c906108c
SS
6 Contributed by Per Bothner (bothner@cs.wisc.edu) at U.Wisconsin
7 and by Alessandro Forin (af@cs.cmu.edu) at CMU..
8
c5aa993b 9 This file is part of GDB.
c906108c 10
c5aa993b
JM
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.
c906108c 15
c5aa993b
JM
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.
c906108c 20
c5aa993b
JM
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. */
c906108c
SS
25
26#ifndef TM_MIPS_H
27#define TM_MIPS_H 1
28
bf64bfd6
AC
29#define GDB_MULTI_ARCH 1
30
f88e2c52
AC
31#include "regcache.h"
32
c906108c
SS
33struct frame_info;
34struct symbol;
35struct type;
36struct value;
c906108c
SS
37
38#include <bfd.h>
39#include "coff/sym.h" /* Needed for PDR below. */
40#include "coff/symconst.h"
41
c906108c
SS
42/* Return non-zero if PC points to an instruction which will cause a step
43 to execute both the instruction at PC and an instruction at PC+4. */
a14ed312 44extern int mips_step_skips_delay (CORE_ADDR);
c906108c
SS
45#define STEP_SKIPS_DELAY_P (1)
46#define STEP_SKIPS_DELAY(pc) (mips_step_skips_delay (pc))
47
95404a3e 48/* The size of a register. This is predefined in tm-mips64.h. */
c906108c
SS
49
50#ifndef MIPS_REGSIZE
51#define MIPS_REGSIZE 4
52#endif
53
5e2e9765
KB
54/* Initializer for an array of names for registers 32 and above.
55 There should be NUM_REGS-32 strings in this initializer. */
c906108c 56
cce74817
JM
57#ifndef MIPS_REGISTER_NAMES
58#define MIPS_REGISTER_NAMES \
5e2e9765 59 { "sr", "lo", "hi", "bad", "cause","pc", \
c906108c
SS
60 "f0", "f1", "f2", "f3", "f4", "f5", "f6", "f7", \
61 "f8", "f9", "f10", "f11", "f12", "f13", "f14", "f15", \
62 "f16", "f17", "f18", "f19", "f20", "f21", "f22", "f23",\
63 "f24", "f25", "f26", "f27", "f28", "f29", "f30", "f31",\
a094c6fb 64 "fsr", "fir", ""/*"fp"*/, "", \
c906108c
SS
65 "", "", "", "", "", "", "", "", \
66 "", "", "", "", "", "", "", "", \
67 }
68#endif
69
70/* Register numbers of various important registers.
71 Note that some of these values are "real" register numbers,
72 and correspond to the general registers of the machine,
73 and some are "phony" register numbers which are too large
74 to be actual register numbers as far as the user is concerned
75 but do serve to get the desired values when passed to read_register. */
76
77#define ZERO_REGNUM 0 /* read-only register, always 0 */
78#define V0_REGNUM 2 /* Function integer return value */
79#define A0_REGNUM 4 /* Loc of first arg during a subr call */
c906108c
SS
80#define T9_REGNUM 25 /* Contains address of callee in PIC */
81#define SP_REGNUM 29 /* Contains address of top of stack */
82#define RA_REGNUM 31 /* Contains return address value */
83#define PS_REGNUM 32 /* Contains processor status */
c5aa993b
JM
84#define HI_REGNUM 34 /* Multiple/divide temp */
85#define LO_REGNUM 33 /* ... */
c906108c
SS
86#define BADVADDR_REGNUM 35 /* bad vaddr for addressing exception */
87#define CAUSE_REGNUM 36 /* describes last exception */
88#define PC_REGNUM 37 /* Contains program counter */
c5aa993b
JM
89#define FP0_REGNUM 38 /* Floating point register 0 (single float) */
90#define FPA0_REGNUM (FP0_REGNUM+12) /* First float argument register */
c5aa993b
JM
91#define FCRCS_REGNUM 70 /* FP control/status */
92#define FCRIR_REGNUM 71 /* FP implementation/revision */
c906108c
SS
93#define UNUSED_REGNUM 73 /* Never used, FIXME */
94#define FIRST_EMBED_REGNUM 74 /* First CP0 register for embedded use */
95#define PRID_REGNUM 89 /* Processor ID */
96#define LAST_EMBED_REGNUM 89 /* Last one */
97
c906108c
SS
98/* Index within `registers' of the first byte of the space for
99 register N. */
100
101#define REGISTER_BYTE(N) ((N) * MIPS_REGSIZE)
102
c906108c
SS
103/* Return the GDB type object for the "standard" data type of data in
104 register N. */
105
106#ifndef REGISTER_VIRTUAL_TYPE
107#define REGISTER_VIRTUAL_TYPE(N) \
108 (((N) >= FP0_REGNUM && (N) < FP0_REGNUM+32) ? builtin_type_float \
109 : ((N) == 32 /*SR*/) ? builtin_type_uint32 \
110 : ((N) >= 70 && (N) <= 89) ? builtin_type_uint32 \
111 : builtin_type_int)
112#endif
113
114/* All mips targets store doubles in a register pair with the least
115 significant register in the lower numbered register.
116 If the target is big endian, double register values need conversion
117 between memory and register formats. */
118
102182a9
MS
119extern void mips_register_convert_to_type (int regnum,
120 struct type *type,
121 char *buffer);
122extern void mips_register_convert_from_type (int regnum,
123 struct type *type,
124 char *buffer);
125
126#define REGISTER_CONVERT_TO_TYPE(n, type, buffer) \
127 mips_register_convert_to_type ((n), (type), (buffer))
128
129#define REGISTER_CONVERT_FROM_TYPE(n, type, buffer) \
130 mips_register_convert_from_type ((n), (type), (buffer))
c906108c 131
c906108c 132\f
c906108c
SS
133/* Special symbol found in blocks associated with routines. We can hang
134 mips_extra_func_info_t's off of this. */
135
136#define MIPS_EFI_SYMBOL_NAME "__GDB_EFI_INFO__"
a14ed312 137extern void ecoff_relocate_efi (struct symbol *, CORE_ADDR);
c906108c
SS
138
139/* Specific information about a procedure.
140 This overlays the MIPS's PDR records,
141 mipsread.c (ab)uses this to save memory */
142
c5aa993b
JM
143typedef struct mips_extra_func_info
144 {
145 long numargs; /* number of args to procedure (was iopt) */
146 bfd_vma high_addr; /* upper address bound */
147 long frame_adjust; /* offset of FP from SP (used on MIPS16) */
148 PDR pdr; /* Procedure descriptor record */
149 }
150 *mips_extra_func_info_t;
c906108c 151
a14ed312 152extern void mips_print_extra_frame_info (struct frame_info *frame);
c906108c 153#define PRINT_EXTRA_FRAME_INFO(fi) \
cce74817 154 mips_print_extra_frame_info (fi)
c906108c
SS
155
156/* It takes two values to specify a frame on the MIPS.
157
158 In fact, the *PC* is the primary value that sets up a frame. The
159 PC is looked up to see what function it's in; symbol information
160 from that function tells us which register is the frame pointer
161 base, and what offset from there is the "virtual frame pointer".
162 (This is usually an offset from SP.) On most non-MIPS machines,
163 the primary value is the SP, and the PC, if needed, disambiguates
164 multiple functions with the same SP. But on the MIPS we can't do
165 that since the PC is not stored in the same part of the frame every
166 time. This does not seem to be a very clever way to set up frames,
7e73cedf 167 but there is nothing we can do about that. */
c906108c
SS
168
169#define SETUP_ARBITRARY_FRAME(argc, argv) setup_arbitrary_frame (argc, argv)
a14ed312 170extern struct frame_info *setup_arbitrary_frame (int, CORE_ADDR *);
c906108c 171
c906108c
SS
172/* These are defined in mdebugread.c and are used in mips-tdep.c */
173extern CORE_ADDR sigtramp_address, sigtramp_end;
a14ed312 174extern void fixup_sigtramp (void);
c906108c
SS
175
176/* Defined in mips-tdep.c and used in remote-mips.c */
a14ed312 177extern char *mips_read_processor_type (void);
c906108c
SS
178
179/* Functions for dealing with MIPS16 call and return stubs. */
c906108c 180#define IGNORE_HELPER_CALL(pc) mips_ignore_helper (pc)
a14ed312 181extern int mips_ignore_helper (CORE_ADDR pc);
c906108c 182
c906108c
SS
183/* Definitions and declarations used by mips-tdep.c and remote-mips.c */
184#define MIPS_INSTLEN 4 /* Length of an instruction */
c5aa993b 185#define MIPS16_INSTLEN 2 /* Length of an instruction on MIPS16 */
c906108c
SS
186#define MIPS_NUMREGS 32 /* Number of integer or float registers */
187typedef unsigned long t_inst; /* Integer big enough to hold an instruction */
188
c5aa993b 189#endif /* TM_MIPS_H */
c906108c 190
d4f3574e
SS
191/* Command to set the processor type. */
192extern void mips_set_processor_type_command (char *, int);
ac2e2ef7 193
9022177c
DJ
194/* Single step based on where the current instruction will take us. */
195extern void mips_software_single_step (enum target_signal, int);
This page took 0.2432 seconds and 4 git commands to generate.