]>
Commit | Line | Data |
---|---|---|
dd3b648e | 1 | /* Low level MIPS interface to ptrace, for GDB when running under Unix. |
b543979c | 2 | Copyright 1988, 1989, 1991, 1992 Free Software Foundation, Inc. |
dd3b648e RP |
3 | Contributed by Alessandro Forin([email protected]) at CMU |
4 | and by Per Bothner([email protected]) at U.Wisconsin. | |
5 | ||
6 | This file is part of GDB. | |
7 | ||
99a7de40 | 8 | This program is free software; you can redistribute it and/or modify |
dd3b648e | 9 | it under the terms of the GNU General Public License as published by |
99a7de40 JG |
10 | the Free Software Foundation; either version 2 of the License, or |
11 | (at your option) any later version. | |
dd3b648e | 12 | |
99a7de40 | 13 | This program is distributed in the hope that it will be useful, |
dd3b648e RP |
14 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 | GNU General Public License for more details. | |
17 | ||
18 | You should have received a copy of the GNU General Public License | |
99a7de40 JG |
19 | along with this program; if not, write to the Free Software |
20 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
dd3b648e | 21 | |
d747e0af | 22 | #include "defs.h" |
dd3b648e | 23 | #include "inferior.h" |
dd3b648e RP |
24 | #include "gdbcore.h" |
25 | ||
6872cfda JG |
26 | /* For now we stub this out; sgi core format is super-hairy (and completely |
27 | different in the new release). | |
28 | For most mips systems, this function is defined in coredep.c. */ | |
625453dc | 29 | |
6872cfda | 30 | #if defined(sgi) |
625453dc | 31 | void |
43a16f26 JG |
32 | fetch_core_registers (core_reg_sect, core_reg_size, which, reg_addr) |
33 | char *core_reg_sect; | |
34 | unsigned core_reg_size; | |
35 | int which; | |
36 | unsigned int reg_addr; | |
625453dc SG |
37 | { |
38 | return; | |
39 | } | |
6872cfda JG |
40 | #endif |
41 | ||
42 | /* Access to the inferior is only good for native systems, not cross. | |
43 | I am not sure why this is stubbed out on SGI... [email protected] */ | |
44 | ||
45 | #if defined(sgi) || !defined(GDB_TARGET_IS_MIPS) | |
625453dc | 46 | |
1ab3bf1b | 47 | /* ARGSUSED */ |
625453dc | 48 | void |
1ab3bf1b JG |
49 | fetch_inferior_registers (regno) |
50 | int regno; | |
625453dc SG |
51 | { |
52 | return; | |
53 | } | |
54 | ||
1ab3bf1b JG |
55 | /* ARGSUSED */ |
56 | void | |
625453dc SG |
57 | store_inferior_registers (regno) |
58 | int regno; | |
59 | { | |
60 | return; | |
61 | } | |
62 | ||
63 | ||
64 | #else | |
65 | ||
eb54a95a JG |
66 | /* DECstation native... */ |
67 | ||
68 | #include <sys/ptrace.h> | |
69 | ||
70 | /* Map gdb internal register number to ptrace ``address''. | |
71 | These ``addresses'' are defined in DECstation <sys/ptrace.h> */ | |
abefb1f1 PB |
72 | |
73 | #define REGISTER_PTRACE_ADDR(regno) \ | |
eb54a95a JG |
74 | (regno < 32 ? GPR_BASE + regno \ |
75 | : regno == PC_REGNUM ? PC \ | |
76 | : regno == CAUSE_REGNUM ? CAUSE \ | |
77 | : regno == HI_REGNUM ? MMHI \ | |
78 | : regno == LO_REGNUM ? MMLO \ | |
79 | : regno == FCRCS_REGNUM ? FPC_CSR \ | |
80 | : regno == FCRIR_REGNUM ? FPC_EIR \ | |
81 | : regno >= FP0_REGNUM ? FPR_BASE + (regno - FP0_REGNUM) \ | |
abefb1f1 PB |
82 | : 0) |
83 | ||
dd3b648e RP |
84 | /* Get all registers from the inferior */ |
85 | ||
86 | void | |
1ab3bf1b JG |
87 | fetch_inferior_registers (regno) |
88 | int regno; | |
dd3b648e | 89 | { |
dd3b648e RP |
90 | register unsigned int regaddr; |
91 | char buf[MAX_REGISTER_RAW_SIZE]; | |
92 | register int i; | |
93 | ||
94 | registers_fetched (); | |
95 | ||
96 | for (regno = 1; regno < NUM_REGS; regno++) | |
97 | { | |
abefb1f1 | 98 | regaddr = REGISTER_PTRACE_ADDR (regno); |
dd3b648e RP |
99 | for (i = 0; i < REGISTER_RAW_SIZE (regno); i += sizeof (int)) |
100 | { | |
eb54a95a | 101 | *(int *) &buf[i] = ptrace (PT_READ_U, inferior_pid, |
e676a15f | 102 | (PTRACE_ARG3_TYPE) regaddr, 0); |
dd3b648e RP |
103 | regaddr += sizeof (int); |
104 | } | |
105 | supply_register (regno, buf); | |
106 | } | |
107 | } | |
108 | ||
109 | /* Store our register values back into the inferior. | |
110 | If REGNO is -1, do this for all registers. | |
111 | Otherwise, REGNO specifies which register (so we can save time). */ | |
112 | ||
625453dc | 113 | void |
dd3b648e RP |
114 | store_inferior_registers (regno) |
115 | int regno; | |
625453dc | 116 | { |
dd3b648e RP |
117 | register unsigned int regaddr; |
118 | char buf[80]; | |
119 | ||
120 | if (regno == 0) | |
121 | return; | |
122 | ||
123 | if (regno > 0) | |
124 | { | |
abefb1f1 | 125 | regaddr = REGISTER_PTRACE_ADDR (regno); |
dd3b648e | 126 | errno = 0; |
eb54a95a | 127 | ptrace (PT_WRITE_U, inferior_pid, (PTRACE_ARG3_TYPE) regaddr, |
e676a15f | 128 | read_register (regno)); |
dd3b648e RP |
129 | if (errno != 0) |
130 | { | |
131 | sprintf (buf, "writing register number %d", regno); | |
132 | perror_with_name (buf); | |
133 | } | |
134 | } | |
135 | else | |
136 | { | |
abefb1f1 | 137 | for (regno = 0; regno < NUM_REGS; regno++) |
dd3b648e | 138 | { |
abefb1f1 PB |
139 | if (regno == ZERO_REGNUM || regno == PS_REGNUM |
140 | || regno == BADVADDR_REGNUM || regno == CAUSE_REGNUM | |
b543979c JG |
141 | || regno == FCRIR_REGNUM || regno == FP_REGNUM |
142 | || (regno >= FIRST_EMBED_REGNUM && regno <= LAST_EMBED_REGNUM)) | |
dd3b648e RP |
143 | continue; |
144 | regaddr = register_addr (regno, 1); | |
145 | errno = 0; | |
e676a15f FF |
146 | ptrace (6, inferior_pid, (PTRACE_ARG3_TYPE) regaddr, |
147 | read_register (regno)); | |
dd3b648e RP |
148 | if (errno != 0) |
149 | { | |
150 | sprintf (buf, "writing all regs, number %d", regno); | |
151 | perror_with_name (buf); | |
152 | } | |
153 | } | |
154 | } | |
155 | } | |
156 | ||
625453dc | 157 | #endif /* sgi */ |