]>
Commit | Line | Data |
---|---|---|
7d9884b9 | 1 | /* Target-dependent code for the MIPS architecture, for GDB, the GNU Debugger. |
c2a0f1cb | 2 | Copyright 1988, 1989, 1990, 1991, 1992, 1993 Free Software Foundation, Inc. |
bd5635a1 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 | ||
361bf6ee | 8 | This program is free software; you can redistribute it and/or modify |
bd5635a1 | 9 | it under the terms of the GNU General Public License as published by |
361bf6ee JG |
10 | the Free Software Foundation; either version 2 of the License, or |
11 | (at your option) any later version. | |
bd5635a1 | 12 | |
361bf6ee | 13 | This program is distributed in the hope that it will be useful, |
bd5635a1 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 | |
361bf6ee JG |
19 | along with this program; if not, write to the Free Software |
20 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
bd5635a1 | 21 | |
bd5635a1 | 22 | #include "defs.h" |
bd5635a1 RP |
23 | #include "frame.h" |
24 | #include "inferior.h" | |
25 | #include "symtab.h" | |
26 | #include "value.h" | |
27 | #include "gdbcmd.h" | |
ef08856f | 28 | #include "language.h" |
bd5635a1 RP |
29 | |
30 | #ifdef USG | |
31 | #include <sys/types.h> | |
32 | #endif | |
33 | ||
34 | #include <sys/param.h> | |
35 | #include <sys/dir.h> | |
36 | #include <signal.h> | |
37 | #include <sys/ioctl.h> | |
38 | ||
39 | #include "gdbcore.h" | |
62a469e1 SG |
40 | #include "symfile.h" |
41 | #include "objfiles.h" | |
bd5635a1 RP |
42 | |
43 | #ifndef MIPSMAGIC | |
44 | #ifdef MIPSEL | |
45 | #define MIPSMAGIC MIPSELMAGIC | |
46 | #else | |
47 | #define MIPSMAGIC MIPSEBMAGIC | |
48 | #endif | |
49 | #endif | |
50 | ||
51 | #define VM_MIN_ADDRESS (unsigned)0x400000 | |
52 | ||
53 | #include <sys/user.h> /* After a.out.h */ | |
54 | #include <sys/file.h> | |
55 | #include <sys/stat.h> | |
56 | ||
57 | \f | |
c2a0f1cb ILT |
58 | /* Some MIPS boards don't support floating point, so we permit the |
59 | user to turn it off. */ | |
60 | int mips_fpu = 1; | |
61 | ||
0f552c5f JG |
62 | #define PROC_LOW_ADDR(proc) ((proc)->pdr.adr) /* least address */ |
63 | #define PROC_HIGH_ADDR(proc) ((proc)->pdr.iline) /* upper address bound */ | |
64 | #define PROC_FRAME_OFFSET(proc) ((proc)->pdr.frameoffset) | |
65 | #define PROC_FRAME_REG(proc) ((proc)->pdr.framereg) | |
66 | #define PROC_REG_MASK(proc) ((proc)->pdr.regmask) | |
67 | #define PROC_FREG_MASK(proc) ((proc)->pdr.fregmask) | |
68 | #define PROC_REG_OFFSET(proc) ((proc)->pdr.regoffset) | |
69 | #define PROC_FREG_OFFSET(proc) ((proc)->pdr.fregoffset) | |
70 | #define PROC_PC_REG(proc) ((proc)->pdr.pcreg) | |
71 | #define PROC_SYMBOL(proc) (*(struct symbol**)&(proc)->pdr.isym) | |
bd5635a1 | 72 | #define _PROC_MAGIC_ 0x0F0F0F0F |
0f552c5f JG |
73 | #define PROC_DESC_IS_DUMMY(proc) ((proc)->pdr.isym == _PROC_MAGIC_) |
74 | #define SET_PROC_DESC_IS_DUMMY(proc) ((proc)->pdr.isym = _PROC_MAGIC_) | |
bd5635a1 RP |
75 | |
76 | struct linked_proc_info | |
77 | { | |
78 | struct mips_extra_func_info info; | |
79 | struct linked_proc_info *next; | |
dac4929a | 80 | } *linked_proc_desc_table = NULL; |
bd5635a1 RP |
81 | |
82 | \f | |
83 | #define READ_FRAME_REG(fi, regno) read_next_frame_reg((fi)->next, regno) | |
84 | ||
0f552c5f | 85 | static int |
bd5635a1 RP |
86 | read_next_frame_reg(fi, regno) |
87 | FRAME fi; | |
88 | int regno; | |
89 | { | |
90 | #define SIGFRAME_BASE sizeof(struct sigcontext) | |
91 | #define SIGFRAME_PC_OFF (-SIGFRAME_BASE+ 2*sizeof(int)) | |
92 | #define SIGFRAME_SP_OFF (-SIGFRAME_BASE+32*sizeof(int)) | |
93 | #define SIGFRAME_RA_OFF (-SIGFRAME_BASE+34*sizeof(int)) | |
94 | for (; fi; fi = fi->next) | |
95 | if (in_sigtramp(fi->pc, 0)) { | |
96 | /* No idea if this code works. --PB. */ | |
97 | int offset; | |
98 | if (regno == PC_REGNUM) offset = SIGFRAME_PC_OFF; | |
99 | else if (regno == RA_REGNUM) offset = SIGFRAME_RA_OFF; | |
100 | else if (regno == SP_REGNUM) offset = SIGFRAME_SP_OFF; | |
101 | else return 0; | |
102 | return read_memory_integer(fi->frame + offset, 4); | |
103 | } | |
104 | else if (regno == SP_REGNUM) return fi->frame; | |
105 | else if (fi->saved_regs->regs[regno]) | |
106 | return read_memory_integer(fi->saved_regs->regs[regno], 4); | |
107 | return read_register(regno); | |
108 | } | |
109 | ||
110 | int | |
111 | mips_frame_saved_pc(frame) | |
112 | FRAME frame; | |
113 | { | |
0f552c5f | 114 | mips_extra_func_info_t proc_desc = frame->proc_desc; |
bd5635a1 | 115 | int pcreg = proc_desc ? PROC_PC_REG(proc_desc) : RA_REGNUM; |
0f552c5f | 116 | |
bd5635a1 RP |
117 | if (proc_desc && PROC_DESC_IS_DUMMY(proc_desc)) |
118 | return read_memory_integer(frame->frame - 4, 4); | |
0f552c5f | 119 | |
bd5635a1 RP |
120 | return read_next_frame_reg(frame, pcreg); |
121 | } | |
122 | ||
123 | static struct mips_extra_func_info temp_proc_desc; | |
124 | static struct frame_saved_regs temp_saved_regs; | |
125 | ||
a8172eea RP |
126 | /* This fencepost looks highly suspicious to me. Removing it also |
127 | seems suspicious as it could affect remote debugging across serial | |
128 | lines. At the very least, this needs a warning message. | |
129 | [email protected] 12mar93. */ | |
130 | ||
0f552c5f JG |
131 | static CORE_ADDR |
132 | heuristic_proc_start(pc) | |
bd5635a1 RP |
133 | CORE_ADDR pc; |
134 | { | |
bd5635a1 | 135 | CORE_ADDR start_pc = pc; |
5e2e79f8 | 136 | CORE_ADDR fence = start_pc - 200; |
0f552c5f JG |
137 | |
138 | if (start_pc == 0) return 0; | |
bd5635a1 | 139 | if (fence < VM_MIN_ADDRESS) fence = VM_MIN_ADDRESS; |
0f552c5f | 140 | |
bd5635a1 RP |
141 | /* search back for previous return */ |
142 | for (start_pc -= 4; ; start_pc -= 4) | |
a8172eea RP |
143 | if (start_pc < fence) |
144 | { | |
145 | warning("Cannot find enclosing function for pc 0x%x", pc); | |
146 | return 0; | |
147 | } | |
bd5635a1 RP |
148 | else if (ABOUT_TO_RETURN(start_pc)) |
149 | break; | |
150 | ||
151 | start_pc += 8; /* skip return, and its delay slot */ | |
152 | #if 0 | |
153 | /* skip nops (usually 1) 0 - is this */ | |
154 | while (start_pc < pc && read_memory_integer (start_pc, 4) == 0) | |
155 | start_pc += 4; | |
156 | #endif | |
157 | return start_pc; | |
158 | } | |
159 | ||
0f552c5f | 160 | static mips_extra_func_info_t |
bd5635a1 RP |
161 | heuristic_proc_desc(start_pc, limit_pc, next_frame) |
162 | CORE_ADDR start_pc, limit_pc; | |
163 | FRAME next_frame; | |
164 | { | |
165 | CORE_ADDR sp = next_frame ? next_frame->frame : read_register (SP_REGNUM); | |
166 | CORE_ADDR cur_pc; | |
167 | int frame_size; | |
168 | int has_frame_reg = 0; | |
169 | int reg30; /* Value of $r30. Used by gcc for frame-pointer */ | |
170 | unsigned long reg_mask = 0; | |
171 | ||
172 | if (start_pc == 0) return NULL; | |
173 | bzero(&temp_proc_desc, sizeof(temp_proc_desc)); | |
174 | bzero(&temp_saved_regs, sizeof(struct frame_saved_regs)); | |
a70dc898 RP |
175 | PROC_LOW_ADDR(&temp_proc_desc) = start_pc; |
176 | ||
bd5635a1 RP |
177 | if (start_pc + 200 < limit_pc) limit_pc = start_pc + 200; |
178 | restart: | |
179 | frame_size = 0; | |
180 | for (cur_pc = start_pc; cur_pc < limit_pc; cur_pc += 4) { | |
181 | unsigned long word; | |
182 | int status; | |
183 | ||
a70dc898 | 184 | status = read_memory_nobpt (cur_pc, (char *)&word, 4); |
bd5635a1 | 185 | if (status) memory_error (status, cur_pc); |
5e2e79f8 | 186 | SWAP_TARGET_AND_HOST (&word, sizeof (word)); |
bd5635a1 RP |
187 | if ((word & 0xFFFF0000) == 0x27bd0000) /* addiu $sp,$sp,-i */ |
188 | frame_size += (-word) & 0xFFFF; | |
189 | else if ((word & 0xFFFF0000) == 0x23bd0000) /* addu $sp,$sp,-i */ | |
190 | frame_size += (-word) & 0xFFFF; | |
191 | else if ((word & 0xFFE00000) == 0xafa00000) { /* sw reg,offset($sp) */ | |
192 | int reg = (word & 0x001F0000) >> 16; | |
193 | reg_mask |= 1 << reg; | |
194 | temp_saved_regs.regs[reg] = sp + (short)word; | |
195 | } | |
196 | else if ((word & 0xFFFF0000) == 0x27be0000) { /* addiu $30,$sp,size */ | |
197 | if ((unsigned short)word != frame_size) | |
198 | reg30 = sp + (unsigned short)word; | |
199 | else if (!has_frame_reg) { | |
200 | int alloca_adjust; | |
201 | has_frame_reg = 1; | |
202 | reg30 = read_next_frame_reg(next_frame, 30); | |
203 | alloca_adjust = reg30 - (sp + (unsigned short)word); | |
204 | if (alloca_adjust > 0) { | |
205 | /* FP > SP + frame_size. This may be because | |
206 | /* of an alloca or somethings similar. | |
207 | * Fix sp to "pre-alloca" value, and try again. | |
208 | */ | |
209 | sp += alloca_adjust; | |
210 | goto restart; | |
211 | } | |
212 | } | |
213 | } | |
214 | else if ((word & 0xFFE00000) == 0xafc00000) { /* sw reg,offset($30) */ | |
215 | int reg = (word & 0x001F0000) >> 16; | |
216 | reg_mask |= 1 << reg; | |
217 | temp_saved_regs.regs[reg] = reg30 + (short)word; | |
218 | } | |
219 | } | |
220 | if (has_frame_reg) { | |
221 | PROC_FRAME_REG(&temp_proc_desc) = 30; | |
222 | PROC_FRAME_OFFSET(&temp_proc_desc) = 0; | |
223 | } | |
224 | else { | |
225 | PROC_FRAME_REG(&temp_proc_desc) = SP_REGNUM; | |
226 | PROC_FRAME_OFFSET(&temp_proc_desc) = frame_size; | |
227 | } | |
228 | PROC_REG_MASK(&temp_proc_desc) = reg_mask; | |
229 | PROC_PC_REG(&temp_proc_desc) = RA_REGNUM; | |
230 | return &temp_proc_desc; | |
231 | } | |
232 | ||
0f552c5f | 233 | static mips_extra_func_info_t |
bd5635a1 RP |
234 | find_proc_desc(pc, next_frame) |
235 | CORE_ADDR pc; | |
236 | FRAME next_frame; | |
237 | { | |
238 | mips_extra_func_info_t proc_desc; | |
0f552c5f | 239 | struct block *b = block_for_pc(pc); |
bd5635a1 | 240 | struct symbol *sym = |
dac4929a | 241 | b ? lookup_symbol(MIPS_EFI_SYMBOL_NAME, b, LABEL_NAMESPACE, 0, NULL) : NULL; |
0f552c5f JG |
242 | |
243 | if (sym) | |
bd5635a1 RP |
244 | { |
245 | /* IF this is the topmost frame AND | |
246 | * (this proc does not have debugging information OR | |
247 | * the PC is in the procedure prologue) | |
be772100 | 248 | * THEN create a "heuristic" proc_desc (by analyzing |
bd5635a1 RP |
249 | * the actual code) to replace the "official" proc_desc. |
250 | */ | |
0f552c5f | 251 | proc_desc = (mips_extra_func_info_t)SYMBOL_VALUE(sym); |
bd5635a1 RP |
252 | if (next_frame == NULL) { |
253 | struct symtab_and_line val; | |
254 | struct symbol *proc_symbol = | |
255 | PROC_DESC_IS_DUMMY(proc_desc) ? 0 : PROC_SYMBOL(proc_desc); | |
0f552c5f | 256 | |
bd5635a1 RP |
257 | if (proc_symbol) { |
258 | val = find_pc_line (BLOCK_START | |
259 | (SYMBOL_BLOCK_VALUE(proc_symbol)), | |
260 | 0); | |
261 | val.pc = val.end ? val.end : pc; | |
262 | } | |
263 | if (!proc_symbol || pc < val.pc) { | |
264 | mips_extra_func_info_t found_heuristic = | |
265 | heuristic_proc_desc(PROC_LOW_ADDR(proc_desc), | |
266 | pc, next_frame); | |
267 | if (found_heuristic) proc_desc = found_heuristic; | |
268 | } | |
269 | } | |
270 | } | |
271 | else | |
272 | { | |
0f552c5f JG |
273 | /* Is linked_proc_desc_table really necessary? It only seems to be used |
274 | by procedure call dummys. However, the procedures being called ought | |
275 | to have their own proc_descs, and even if they don't, | |
276 | heuristic_proc_desc knows how to create them! */ | |
277 | ||
bd5635a1 RP |
278 | register struct linked_proc_info *link; |
279 | for (link = linked_proc_desc_table; link; link = link->next) | |
280 | if (PROC_LOW_ADDR(&link->info) <= pc | |
281 | && PROC_HIGH_ADDR(&link->info) > pc) | |
282 | return &link->info; | |
283 | proc_desc = | |
284 | heuristic_proc_desc(heuristic_proc_start(pc), pc, next_frame); | |
285 | } | |
286 | return proc_desc; | |
287 | } | |
288 | ||
289 | mips_extra_func_info_t cached_proc_desc; | |
290 | ||
0f552c5f JG |
291 | FRAME_ADDR |
292 | mips_frame_chain(frame) | |
bd5635a1 RP |
293 | FRAME frame; |
294 | { | |
bd5635a1 RP |
295 | mips_extra_func_info_t proc_desc; |
296 | CORE_ADDR saved_pc = FRAME_SAVED_PC(frame); | |
be772100 | 297 | |
0f552c5f JG |
298 | if (saved_pc == 0 || inside_entry_file (saved_pc)) |
299 | return 0; | |
300 | ||
bd5635a1 | 301 | proc_desc = find_proc_desc(saved_pc, frame); |
0f552c5f JG |
302 | if (!proc_desc) |
303 | return 0; | |
304 | ||
bd5635a1 RP |
305 | cached_proc_desc = proc_desc; |
306 | return read_next_frame_reg(frame, PROC_FRAME_REG(proc_desc)) | |
0f552c5f | 307 | + PROC_FRAME_OFFSET(proc_desc); |
bd5635a1 RP |
308 | } |
309 | ||
310 | void | |
311 | init_extra_frame_info(fci) | |
312 | struct frame_info *fci; | |
313 | { | |
314 | extern struct obstack frame_cache_obstack; | |
315 | /* Use proc_desc calculated in frame_chain */ | |
316 | mips_extra_func_info_t proc_desc = fci->next ? cached_proc_desc : | |
317 | find_proc_desc(fci->pc, fci->next); | |
0f552c5f | 318 | |
bd5635a1 RP |
319 | fci->saved_regs = (struct frame_saved_regs*) |
320 | obstack_alloc (&frame_cache_obstack, sizeof(struct frame_saved_regs)); | |
321 | bzero(fci->saved_regs, sizeof(struct frame_saved_regs)); | |
322 | fci->proc_desc = | |
0f552c5f | 323 | proc_desc == &temp_proc_desc ? 0 : proc_desc; |
bd5635a1 RP |
324 | if (proc_desc) |
325 | { | |
326 | int ireg; | |
327 | CORE_ADDR reg_position; | |
328 | unsigned long mask; | |
329 | /* r0 bit means kernel trap */ | |
330 | int kernel_trap = PROC_REG_MASK(proc_desc) & 1; | |
331 | ||
c2a0f1cb ILT |
332 | /* Fixup frame-pointer - only needed for top frame */ |
333 | /* This may not be quite right, if proc has a real frame register */ | |
334 | if (fci->pc == PROC_LOW_ADDR(proc_desc)) | |
335 | fci->frame = read_register (SP_REGNUM); | |
336 | else | |
337 | fci->frame = READ_FRAME_REG(fci, PROC_FRAME_REG(proc_desc)) | |
338 | + PROC_FRAME_OFFSET(proc_desc); | |
bd5635a1 RP |
339 | |
340 | if (proc_desc == &temp_proc_desc) | |
341 | *fci->saved_regs = temp_saved_regs; | |
342 | else | |
343 | { | |
344 | /* find which general-purpose registers were saved */ | |
345 | reg_position = fci->frame + PROC_REG_OFFSET(proc_desc); | |
346 | mask = kernel_trap ? 0xFFFFFFFF : PROC_REG_MASK(proc_desc); | |
347 | for (ireg= 31; mask; --ireg, mask <<= 1) | |
348 | if (mask & 0x80000000) | |
349 | { | |
350 | fci->saved_regs->regs[ireg] = reg_position; | |
351 | reg_position -= 4; | |
352 | } | |
353 | /* find which floating-point registers were saved */ | |
354 | reg_position = fci->frame + PROC_FREG_OFFSET(proc_desc); | |
355 | /* The freg_offset points to where the first *double* register is saved. | |
356 | * So skip to the high-order word. */ | |
357 | reg_position += 4; | |
358 | mask = kernel_trap ? 0xFFFFFFFF : PROC_FREG_MASK(proc_desc); | |
359 | for (ireg = 31; mask; --ireg, mask <<= 1) | |
360 | if (mask & 0x80000000) | |
361 | { | |
d747e0af | 362 | fci->saved_regs->regs[FP0_REGNUM+ireg] = reg_position; |
bd5635a1 RP |
363 | reg_position -= 4; |
364 | } | |
365 | } | |
366 | ||
367 | /* hack: if argument regs are saved, guess these contain args */ | |
368 | if ((PROC_REG_MASK(proc_desc) & 0xF0) == 0) fci->num_args = -1; | |
369 | else if ((PROC_REG_MASK(proc_desc) & 0x80) == 0) fci->num_args = 4; | |
370 | else if ((PROC_REG_MASK(proc_desc) & 0x40) == 0) fci->num_args = 3; | |
371 | else if ((PROC_REG_MASK(proc_desc) & 0x20) == 0) fci->num_args = 2; | |
372 | else if ((PROC_REG_MASK(proc_desc) & 0x10) == 0) fci->num_args = 1; | |
373 | ||
374 | fci->saved_regs->regs[PC_REGNUM] = fci->saved_regs->regs[RA_REGNUM]; | |
375 | } | |
bd5635a1 RP |
376 | } |
377 | ||
a70dc898 RP |
378 | /* MIPS stack frames are almost impenetrable. When execution stops, |
379 | we basically have to look at symbol information for the function | |
380 | that we stopped in, which tells us *which* register (if any) is | |
381 | the base of the frame pointer, and what offset from that register | |
382 | the frame itself is at. | |
383 | ||
384 | This presents a problem when trying to examine a stack in memory | |
385 | (that isn't executing at the moment), using the "frame" command. We | |
386 | don't have a PC, nor do we have any registers except SP. | |
387 | ||
388 | This routine takes two arguments, SP and PC, and tries to make the | |
389 | cached frames look as if these two arguments defined a frame on the | |
390 | cache. This allows the rest of info frame to extract the important | |
391 | arguments without difficulty. */ | |
392 | ||
393 | FRAME | |
c2a0f1cb ILT |
394 | setup_arbitrary_frame (argc, argv) |
395 | int argc; | |
396 | FRAME_ADDR *argv; | |
a70dc898 | 397 | { |
c2a0f1cb ILT |
398 | if (argc != 2) |
399 | error ("MIPS frame specifications require two arguments: sp and pc"); | |
400 | ||
401 | return create_new_frame (argv[0], argv[1]); | |
a70dc898 RP |
402 | } |
403 | ||
bd5635a1 | 404 | |
0f552c5f JG |
405 | CORE_ADDR |
406 | mips_push_arguments(nargs, args, sp, struct_return, struct_addr) | |
bd5635a1 RP |
407 | int nargs; |
408 | value *args; | |
409 | CORE_ADDR sp; | |
410 | int struct_return; | |
411 | CORE_ADDR struct_addr; | |
412 | { | |
413 | CORE_ADDR buf; | |
414 | register i; | |
415 | int accumulate_size = struct_return ? 4 : 0; | |
416 | struct mips_arg { char *contents; int len; int offset; }; | |
417 | struct mips_arg *mips_args = | |
418 | (struct mips_arg*)alloca(nargs * sizeof(struct mips_arg)); | |
419 | register struct mips_arg *m_arg; | |
420 | for (i = 0, m_arg = mips_args; i < nargs; i++, m_arg++) { | |
421 | extern value value_arg_coerce(); | |
422 | value arg = value_arg_coerce (args[i]); | |
423 | m_arg->len = TYPE_LENGTH (VALUE_TYPE (arg)); | |
424 | /* This entire mips-specific routine is because doubles must be aligned | |
425 | * on 8-byte boundaries. It still isn't quite right, because MIPS decided | |
426 | * to align 'struct {int a, b}' on 4-byte boundaries (even though this | |
427 | * breaks their varargs implementation...). A correct solution | |
428 | * requires an simulation of gcc's 'alignof' (and use of 'alignof' | |
429 | * in stdarg.h/varargs.h). | |
430 | */ | |
431 | if (m_arg->len > 4) accumulate_size = (accumulate_size + 7) & -8; | |
432 | m_arg->offset = accumulate_size; | |
433 | accumulate_size = (accumulate_size + m_arg->len + 3) & -4; | |
434 | m_arg->contents = VALUE_CONTENTS(arg); | |
435 | } | |
436 | accumulate_size = (accumulate_size + 7) & (-8); | |
437 | if (accumulate_size < 16) accumulate_size = 16; | |
438 | sp -= accumulate_size; | |
439 | for (i = nargs; m_arg--, --i >= 0; ) | |
440 | write_memory(sp + m_arg->offset, m_arg->contents, m_arg->len); | |
441 | if (struct_return) { | |
442 | buf = struct_addr; | |
a70dc898 RP |
443 | write_memory(sp, (char *)&buf, sizeof(CORE_ADDR)); |
444 | } | |
bd5635a1 RP |
445 | return sp; |
446 | } | |
447 | ||
448 | /* MASK(i,j) == (1<<i) + (1<<(i+1)) + ... + (1<<j)). Assume i<=j<31. */ | |
449 | #define MASK(i,j) ((1 << (j)+1)-1 ^ (1 << (i))-1) | |
450 | ||
451 | void | |
452 | mips_push_dummy_frame() | |
453 | { | |
454 | int ireg; | |
455 | struct linked_proc_info *link = (struct linked_proc_info*) | |
456 | xmalloc(sizeof(struct linked_proc_info)); | |
457 | mips_extra_func_info_t proc_desc = &link->info; | |
458 | CORE_ADDR sp = read_register (SP_REGNUM); | |
459 | CORE_ADDR save_address; | |
460 | REGISTER_TYPE buffer; | |
461 | link->next = linked_proc_desc_table; | |
462 | linked_proc_desc_table = link; | |
463 | #define PUSH_FP_REGNUM 16 /* must be a register preserved across calls */ | |
464 | #define GEN_REG_SAVE_MASK MASK(1,16)|MASK(24,28)|(1<<31) | |
465 | #define GEN_REG_SAVE_COUNT 22 | |
466 | #define FLOAT_REG_SAVE_MASK MASK(0,19) | |
467 | #define FLOAT_REG_SAVE_COUNT 20 | |
468 | #define SPECIAL_REG_SAVE_COUNT 4 | |
469 | /* | |
470 | * The registers we must save are all those not preserved across | |
471 | * procedure calls. Dest_Reg (see tm-mips.h) must also be saved. | |
472 | * In addition, we must save the PC, and PUSH_FP_REGNUM. | |
473 | * (Ideally, we should also save MDLO/-HI and FP Control/Status reg.) | |
474 | * | |
475 | * Dummy frame layout: | |
476 | * (high memory) | |
477 | * Saved PC | |
478 | * Saved MMHI, MMLO, FPC_CSR | |
479 | * Saved R31 | |
480 | * Saved R28 | |
481 | * ... | |
482 | * Saved R1 | |
483 | * Saved D18 (i.e. F19, F18) | |
484 | * ... | |
485 | * Saved D0 (i.e. F1, F0) | |
c2a0f1cb | 486 | * CALL_DUMMY (subroutine stub; see tm-mips.h) |
bd5635a1 RP |
487 | * Parameter build area (not yet implemented) |
488 | * (low memory) | |
489 | */ | |
490 | PROC_REG_MASK(proc_desc) = GEN_REG_SAVE_MASK; | |
c2a0f1cb | 491 | PROC_FREG_MASK(proc_desc) = mips_fpu ? FLOAT_REG_SAVE_MASK : 0; |
bd5635a1 RP |
492 | PROC_REG_OFFSET(proc_desc) = /* offset of (Saved R31) from FP */ |
493 | -sizeof(long) - 4 * SPECIAL_REG_SAVE_COUNT; | |
494 | PROC_FREG_OFFSET(proc_desc) = /* offset of (Saved D18) from FP */ | |
495 | -sizeof(double) - 4 * (SPECIAL_REG_SAVE_COUNT + GEN_REG_SAVE_COUNT); | |
496 | /* save general registers */ | |
497 | save_address = sp + PROC_REG_OFFSET(proc_desc); | |
498 | for (ireg = 32; --ireg >= 0; ) | |
499 | if (PROC_REG_MASK(proc_desc) & (1 << ireg)) | |
500 | { | |
501 | buffer = read_register (ireg); | |
a70dc898 | 502 | write_memory (save_address, (char *)&buffer, sizeof(REGISTER_TYPE)); |
bd5635a1 RP |
503 | save_address -= 4; |
504 | } | |
0b0d6c3f PS |
505 | /* save floating-points registers starting with high order word */ |
506 | save_address = sp + PROC_FREG_OFFSET(proc_desc) + 4; | |
bd5635a1 RP |
507 | for (ireg = 32; --ireg >= 0; ) |
508 | if (PROC_FREG_MASK(proc_desc) & (1 << ireg)) | |
509 | { | |
7d9884b9 | 510 | buffer = read_register (ireg + FP0_REGNUM); |
a70dc898 | 511 | write_memory (save_address, (char *)&buffer, 4); |
bd5635a1 RP |
512 | save_address -= 4; |
513 | } | |
514 | write_register (PUSH_FP_REGNUM, sp); | |
515 | PROC_FRAME_REG(proc_desc) = PUSH_FP_REGNUM; | |
516 | PROC_FRAME_OFFSET(proc_desc) = 0; | |
517 | buffer = read_register (PC_REGNUM); | |
a70dc898 | 518 | write_memory (sp - 4, (char *)&buffer, sizeof(REGISTER_TYPE)); |
bd5635a1 | 519 | buffer = read_register (HI_REGNUM); |
a70dc898 | 520 | write_memory (sp - 8, (char *)&buffer, sizeof(REGISTER_TYPE)); |
bd5635a1 | 521 | buffer = read_register (LO_REGNUM); |
a70dc898 | 522 | write_memory (sp - 12, (char *)&buffer, sizeof(REGISTER_TYPE)); |
c2a0f1cb | 523 | buffer = read_register (mips_fpu ? FCRCS_REGNUM : ZERO_REGNUM); |
a70dc898 | 524 | write_memory (sp - 16, (char *)&buffer, sizeof(REGISTER_TYPE)); |
c2a0f1cb ILT |
525 | sp -= 4 * (GEN_REG_SAVE_COUNT |
526 | + (mips_fpu ? FLOAT_REG_SAVE_COUNT : 0) | |
527 | + SPECIAL_REG_SAVE_COUNT); | |
bd5635a1 RP |
528 | write_register (SP_REGNUM, sp); |
529 | PROC_LOW_ADDR(proc_desc) = sp - CALL_DUMMY_SIZE + CALL_DUMMY_START_OFFSET; | |
530 | PROC_HIGH_ADDR(proc_desc) = sp; | |
531 | SET_PROC_DESC_IS_DUMMY(proc_desc); | |
532 | PROC_PC_REG(proc_desc) = RA_REGNUM; | |
533 | } | |
534 | ||
535 | void | |
536 | mips_pop_frame() | |
dac4929a SG |
537 | { |
538 | register int regnum; | |
bd5635a1 RP |
539 | FRAME frame = get_current_frame (); |
540 | CORE_ADDR new_sp = frame->frame; | |
dac4929a | 541 | |
a70dc898 | 542 | mips_extra_func_info_t proc_desc = frame->proc_desc; |
dac4929a SG |
543 | |
544 | write_register (PC_REGNUM, FRAME_SAVED_PC(frame)); | |
545 | if (proc_desc) | |
546 | { | |
547 | for (regnum = 32; --regnum >= 0; ) | |
548 | if (PROC_REG_MASK(proc_desc) & (1 << regnum)) | |
549 | write_register (regnum, | |
550 | read_memory_integer (frame->saved_regs->regs[regnum], | |
551 | 4)); | |
552 | for (regnum = 32; --regnum >= 0; ) | |
553 | if (PROC_FREG_MASK(proc_desc) & (1 << regnum)) | |
554 | write_register (regnum + FP0_REGNUM, | |
555 | read_memory_integer (frame->saved_regs->regs[regnum + FP0_REGNUM], 4)); | |
556 | } | |
557 | write_register (SP_REGNUM, new_sp); | |
558 | flush_cached_frames (); | |
559 | /* We let mips_init_extra_frame_info figure out the frame pointer */ | |
560 | set_current_frame (create_new_frame (0, read_pc ())); | |
561 | ||
bd5635a1 RP |
562 | if (PROC_DESC_IS_DUMMY(proc_desc)) |
563 | { | |
dac4929a SG |
564 | struct linked_proc_info *pi_ptr, *prev_ptr; |
565 | ||
566 | for (pi_ptr = linked_proc_desc_table, prev_ptr = NULL; | |
567 | pi_ptr != NULL; | |
568 | prev_ptr = pi_ptr, pi_ptr = pi_ptr->next) | |
569 | { | |
570 | if (&pi_ptr->info == proc_desc) | |
571 | break; | |
572 | } | |
573 | ||
574 | if (pi_ptr == NULL) | |
575 | error ("Can't locate dummy extra frame info\n"); | |
576 | ||
577 | if (prev_ptr != NULL) | |
578 | prev_ptr->next = pi_ptr->next; | |
579 | else | |
580 | linked_proc_desc_table = pi_ptr->next; | |
581 | ||
582 | free (pi_ptr); | |
583 | ||
bd5635a1 RP |
584 | write_register (HI_REGNUM, read_memory_integer(new_sp - 8, 4)); |
585 | write_register (LO_REGNUM, read_memory_integer(new_sp - 12, 4)); | |
c2a0f1cb ILT |
586 | if (mips_fpu) |
587 | write_register (FCRCS_REGNUM, read_memory_integer(new_sp - 16, 4)); | |
bd5635a1 | 588 | } |
bd5635a1 RP |
589 | } |
590 | ||
0f552c5f | 591 | static void |
a70dc898 | 592 | mips_print_register (regnum, all) |
bd5635a1 RP |
593 | int regnum, all; |
594 | { | |
a70dc898 | 595 | unsigned char raw_buffer[MAX_REGISTER_RAW_SIZE * 2]; /* *2 for doubles */ |
bd5635a1 RP |
596 | REGISTER_TYPE val; |
597 | ||
5e2e79f8 FF |
598 | /* Get the data in raw format. */ |
599 | if (read_relative_register_raw_bytes (regnum, raw_buffer)) | |
600 | { | |
601 | printf_filtered ("%s: [Invalid]", reg_names[regnum]); | |
602 | return; | |
603 | } | |
604 | ||
d747e0af MT |
605 | /* If an even floating pointer register, also print as double. */ |
606 | if (regnum >= FP0_REGNUM && regnum < FP0_REGNUM+32 | |
607 | && !((regnum-FP0_REGNUM) & 1)) { | |
bd5635a1 | 608 | read_relative_register_raw_bytes (regnum+1, raw_buffer+4); |
d747e0af | 609 | printf_filtered ("(d%d: ", regnum-FP0_REGNUM); |
bd5635a1 RP |
610 | val_print (builtin_type_double, raw_buffer, 0, |
611 | stdout, 0, 1, 0, Val_pretty_default); | |
d747e0af | 612 | printf_filtered ("); "); |
bd5635a1 RP |
613 | } |
614 | fputs_filtered (reg_names[regnum], stdout); | |
615 | #ifndef NUMERIC_REG_NAMES | |
616 | if (regnum < 32) | |
617 | printf_filtered ("(r%d): ", regnum); | |
618 | else | |
619 | #endif | |
620 | printf_filtered (": "); | |
621 | ||
622 | /* If virtual format is floating, print it that way. */ | |
623 | if (TYPE_CODE (REGISTER_VIRTUAL_TYPE (regnum)) == TYPE_CODE_FLT | |
624 | && ! INVALID_FLOAT (raw_buffer, REGISTER_VIRTUAL_SIZE(regnum))) { | |
625 | val_print (REGISTER_VIRTUAL_TYPE (regnum), raw_buffer, 0, | |
626 | stdout, 0, 1, 0, Val_pretty_default); | |
627 | } | |
628 | /* Else print as integer in hex. */ | |
629 | else | |
630 | { | |
631 | long val; | |
632 | ||
633 | bcopy (raw_buffer, &val, sizeof (long)); | |
5e2e79f8 | 634 | SWAP_TARGET_AND_HOST ((char *)&val, sizeof (long)); |
bd5635a1 RP |
635 | if (val == 0) |
636 | printf_filtered ("0"); | |
637 | else if (all) | |
d8b3b00e | 638 | printf_filtered (local_hex_format(), val); |
bd5635a1 | 639 | else |
d8b3b00e | 640 | printf_filtered ("%s=%d", local_hex_string(val), val); |
bd5635a1 RP |
641 | } |
642 | } | |
643 | ||
d8b3b00e | 644 | /* Replacement for generic do_registers_info. */ |
0f552c5f | 645 | void |
361bf6ee | 646 | mips_do_registers_info (regnum, fpregs) |
bd5635a1 | 647 | int regnum; |
361bf6ee | 648 | int fpregs; |
bd5635a1 RP |
649 | { |
650 | if (regnum != -1) { | |
651 | mips_print_register (regnum, 0); | |
652 | printf_filtered ("\n"); | |
653 | } | |
654 | else { | |
655 | for (regnum = 0; regnum < NUM_REGS; ) { | |
d8b3b00e JG |
656 | if ((!fpregs) && regnum >= FP0_REGNUM && regnum <= FCRIR_REGNUM) { |
657 | regnum++; | |
658 | continue; | |
659 | } | |
bd5635a1 RP |
660 | mips_print_register (regnum, 1); |
661 | regnum++; | |
662 | if ((regnum & 3) == 0 || regnum == NUM_REGS) | |
663 | printf_filtered (";\n"); | |
664 | else | |
665 | printf_filtered ("; "); | |
666 | } | |
667 | } | |
668 | } | |
669 | /* Return number of args passed to a frame. described by FIP. | |
670 | Can return -1, meaning no way to tell. */ | |
671 | ||
0f552c5f | 672 | int |
bd5635a1 RP |
673 | mips_frame_num_args(fip) |
674 | FRAME fip; | |
675 | { | |
676 | #if 0 | |
677 | struct chain_info_t *p; | |
678 | ||
679 | p = mips_find_cached_frame(FRAME_FP(fip)); | |
680 | if (p->valid) | |
681 | return p->the_info.numargs; | |
682 | #endif | |
683 | return -1; | |
684 | } | |
685 | ||
686 | \f | |
687 | /* Bad floats: Returns 0 if P points to a valid IEEE floating point number, | |
688 | 1 if P points to a denormalized number or a NaN. LEN says whether this is | |
689 | a single-precision or double-precision float */ | |
690 | #define SINGLE_EXP_BITS 8 | |
691 | #define DOUBLE_EXP_BITS 11 | |
692 | int | |
693 | isa_NAN(p, len) | |
694 | int *p, len; | |
695 | { | |
696 | int exponent; | |
697 | if (len == 4) | |
698 | { | |
699 | exponent = *p; | |
700 | exponent = exponent << 1 >> (32 - SINGLE_EXP_BITS - 1); | |
701 | return ((exponent == -1) || (! exponent && *p)); | |
702 | } | |
703 | else if (len == 8) | |
704 | { | |
c2a0f1cb ILT |
705 | #if TARGET_BYTE_ORDER == BIG_ENDIAN |
706 | exponent = *p; | |
707 | #else | |
bd5635a1 | 708 | exponent = *(p+1); |
c2a0f1cb | 709 | #endif |
bd5635a1 RP |
710 | exponent = exponent << 1 >> (32 - DOUBLE_EXP_BITS - 1); |
711 | return ((exponent == -1) || (! exponent && *p * *(p+1))); | |
712 | } | |
713 | else return 1; | |
714 | } | |
407a8389 | 715 | \f |
0b0d6c3f PS |
716 | /* To skip prologues, I use this predicate. Returns either PC |
717 | itself if the code at PC does not look like a function prologue; | |
718 | otherwise returns an address that (if we're lucky) follows | |
719 | the prologue. */ | |
bd5635a1 | 720 | |
be772100 JG |
721 | CORE_ADDR |
722 | mips_skip_prologue(pc) | |
bd5635a1 RP |
723 | CORE_ADDR pc; |
724 | { | |
725 | struct symbol *f; | |
726 | struct block *b; | |
727 | unsigned long inst; | |
d747e0af | 728 | int offset; |
0b0d6c3f | 729 | int seen_sp_adjust = 0; |
bd5635a1 RP |
730 | |
731 | /* For -g modules and most functions anyways the | |
d747e0af MT |
732 | first instruction adjusts the stack. |
733 | But we allow some number of stores before the stack adjustment. | |
734 | (These are emitted by varags functions compiled by gcc-2.0. */ | |
735 | for (offset = 0; offset < 100; offset += 4) { | |
736 | inst = read_memory_integer(pc + offset, 4); | |
737 | if ((inst & 0xffff0000) == 0x27bd0000) /* addiu $sp,$sp,offset */ | |
0b0d6c3f PS |
738 | seen_sp_adjust = 1; |
739 | else if ((inst & 0xFFE00000) == 0xAFA00000) /* sw reg,n($sp) */ | |
740 | continue; | |
741 | else | |
742 | break; | |
d747e0af | 743 | } |
0b0d6c3f PS |
744 | if (seen_sp_adjust) |
745 | return pc + offset; | |
bd5635a1 RP |
746 | |
747 | /* Well, it looks like a frameless. Let's make sure. | |
748 | Note that we are not called on the current PC, | |
749 | but on the function`s start PC, and I have definitely | |
750 | seen optimized code that adjusts the SP quite later */ | |
751 | b = block_for_pc(pc); | |
752 | if (!b) return pc; | |
753 | ||
dac4929a | 754 | f = lookup_symbol(MIPS_EFI_SYMBOL_NAME, b, LABEL_NAMESPACE, 0, NULL); |
bd5635a1 RP |
755 | if (!f) return pc; |
756 | /* Ideally, I would like to use the adjusted info | |
757 | from mips_frame_info(), but for all practical | |
758 | purposes it will not matter (and it would require | |
759 | a different definition of SKIP_PROLOGUE()) | |
760 | ||
761 | Actually, it would not hurt to skip the storing | |
762 | of arguments on the stack as well. */ | |
0f552c5f | 763 | if (((mips_extra_func_info_t)SYMBOL_VALUE(f))->pdr.frameoffset) |
bd5635a1 RP |
764 | return pc + 4; |
765 | ||
766 | return pc; | |
767 | } | |
c2a0f1cb ILT |
768 | |
769 | /* Let the user turn off floating point. */ | |
770 | ||
771 | void | |
772 | _initialize_mips_tdep () | |
773 | { | |
774 | add_show_from_set | |
a8172eea | 775 | (add_set_cmd ("mipsfpu", class_support, var_boolean, |
c2a0f1cb ILT |
776 | (char *) &mips_fpu, |
777 | "Set use of floating point coprocessor.\n\ | |
778 | Turn off to avoid using floating point instructions when calling functions\n\ | |
779 | or dealing with return values.", &setlist), | |
780 | &showlist); | |
781 | } |