* monitor.h (struct memrw_cmd->resp_delim): Document this as a regexp.
[deliverable/binutils-gdb.git] / gdb / alpha-tdep.c
CommitLineData
cef4c2e7 1/* Target-dependent code for the ALPHA architecture, for GDB, the GNU Debugger.
a1a0d974 2 Copyright 1993, 1994, 1995 Free Software Foundation, Inc.
cef4c2e7
PS
3
4This file is part of GDB.
5
6This program is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 2 of the License, or
9(at your option) any later version.
10
11This program is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with this program; if not, write to the Free Software
6c9638b4 18Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
cef4c2e7
PS
19
20#include "defs.h"
21#include "frame.h"
22#include "inferior.h"
23#include "symtab.h"
24#include "value.h"
25#include "gdbcmd.h"
26#include "gdbcore.h"
27#include "dis-asm.h"
72bba93b
SG
28#include "symfile.h"
29#include "objfiles.h"
2b576293 30#include "gdb_string.h"
cef4c2e7
PS
31
32/* FIXME: Some of this code should perhaps be merged with mips-tdep.c. */
33
72bba93b
SG
34/* FIXME: Put this declaration in frame.h. */
35extern struct obstack frame_cache_obstack;
cef4c2e7
PS
36\f
37
38/* Forward declarations. */
39
669caa9c 40static CORE_ADDR read_next_frame_reg PARAMS ((struct frame_info *, int));
cef4c2e7 41
669caa9c 42static CORE_ADDR heuristic_proc_start PARAMS ((CORE_ADDR));
cef4c2e7 43
669caa9c
SS
44static alpha_extra_func_info_t heuristic_proc_desc PARAMS ((CORE_ADDR,
45 CORE_ADDR,
46 struct frame_info *));
cef4c2e7 47
e3be225e
SS
48static alpha_extra_func_info_t find_proc_desc PARAMS ((CORE_ADDR,
49 struct frame_info *));
cef4c2e7 50
e3be225e 51#if 0
669caa9c 52static int alpha_in_lenient_prologue PARAMS ((CORE_ADDR, CORE_ADDR));
e3be225e 53#endif
cef4c2e7 54
e3be225e
SS
55static void reinit_frame_cache_sfunc PARAMS ((char *, int,
56 struct cmd_list_element *));
cef4c2e7 57
72bba93b
SG
58static CORE_ADDR after_prologue PARAMS ((CORE_ADDR pc,
59 alpha_extra_func_info_t proc_desc));
60
61static int in_prologue PARAMS ((CORE_ADDR pc,
62 alpha_extra_func_info_t proc_desc));
63
cef4c2e7
PS
64/* Heuristic_proc_start may hunt through the text section for a long
65 time across a 2400 baud serial line. Allows the user to limit this
66 search. */
67static unsigned int heuristic_fence_post = 0;
68
69/* Layout of a stack frame on the alpha:
70
71 | |
72 pdr members: | 7th ... nth arg, |
73 | `pushed' by caller. |
74 | |
75----------------|-------------------------------|<-- old_sp == vfp
76 ^ ^ ^ ^ | |
77 | | | | | |
78 | |localoff | Copies of 1st .. 6th |
79 | | | | | argument if necessary. |
80 | | | v | |
3e6b0674
PS
81 | | | --- |-------------------------------|<-- FRAME_LOCALS_ADDRESS
82 | | | | |
cef4c2e7
PS
83 | | | | Locals and temporaries. |
84 | | | | |
85 | | | |-------------------------------|
86 | | | | |
87 |-fregoffset | Saved float registers. |
88 | | | | F9 |
89 | | | | . |
90 | | | | . |
91 | | | | F2 |
92 | | v | |
93 | | -------|-------------------------------|
94 | | | |
95 | | | Saved registers. |
96 | | | S6 |
97 |-regoffset | . |
98 | | | . |
99 | | | S0 |
100 | | | pdr.pcreg |
101 | v | |
102 | ----------|-------------------------------|
103 | | |
104 frameoffset | Argument build area, gets |
105 | | 7th ... nth arg for any |
106 | | called procedure. |
107 v | |
108 -------------|-------------------------------|<-- sp
109 | |
110*/
111
112#define PROC_LOW_ADDR(proc) ((proc)->pdr.adr) /* least address */
113#define PROC_HIGH_ADDR(proc) ((proc)->pdr.iline) /* upper address bound */
114#define PROC_DUMMY_FRAME(proc) ((proc)->pdr.iopt) /* frame for CALL_DUMMY */
115#define PROC_FRAME_OFFSET(proc) ((proc)->pdr.frameoffset)
116#define PROC_FRAME_REG(proc) ((proc)->pdr.framereg)
117#define PROC_REG_MASK(proc) ((proc)->pdr.regmask)
118#define PROC_FREG_MASK(proc) ((proc)->pdr.fregmask)
119#define PROC_REG_OFFSET(proc) ((proc)->pdr.regoffset)
120#define PROC_FREG_OFFSET(proc) ((proc)->pdr.fregoffset)
121#define PROC_PC_REG(proc) ((proc)->pdr.pcreg)
122#define PROC_LOCALOFF(proc) ((proc)->pdr.localoff)
123#define PROC_SYMBOL(proc) (*(struct symbol**)&(proc)->pdr.isym)
124#define _PROC_MAGIC_ 0x0F0F0F0F
125#define PROC_DESC_IS_DUMMY(proc) ((proc)->pdr.isym == _PROC_MAGIC_)
126#define SET_PROC_DESC_IS_DUMMY(proc) ((proc)->pdr.isym = _PROC_MAGIC_)
127
128struct linked_proc_info
129{
130 struct alpha_extra_func_info info;
131 struct linked_proc_info *next;
132} *linked_proc_desc_table = NULL;
133
134\f
09af5868 135/* Guaranteed to set frame->saved_regs to some values (it never leaves it
72bba93b
SG
136 NULL). */
137
138void
669caa9c
SS
139alpha_find_saved_regs (frame)
140 struct frame_info *frame;
72bba93b
SG
141{
142 int ireg;
143 CORE_ADDR reg_position;
144 unsigned long mask;
145 alpha_extra_func_info_t proc_desc;
146 int returnreg;
147
669caa9c 148 frame->saved_regs = (struct frame_saved_regs *)
72bba93b 149 obstack_alloc (&frame_cache_obstack, sizeof(struct frame_saved_regs));
669caa9c 150 memset (frame->saved_regs, 0, sizeof (struct frame_saved_regs));
72bba93b 151
e4dbd248
PS
152 /* If it is the frame for __sigtramp, the saved registers are located
153 in a sigcontext structure somewhere on the stack. __sigtramp
154 passes a pointer to the sigcontext structure on the stack.
155 If the stack layout for __sigtramp changes, or if sigcontext offsets
156 change, we might have to update this code. */
157#ifndef SIGFRAME_PC_OFF
158#define SIGFRAME_PC_OFF (2 * 8)
159#define SIGFRAME_REGSAVE_OFF (4 * 8)
160#define SIGFRAME_FPREGSAVE_OFF (SIGFRAME_REGSAVE_OFF + 32 * 8 + 8)
161#endif
162 if (frame->signal_handler_caller)
163 {
164 CORE_ADDR sigcontext_pointer_addr;
165 CORE_ADDR sigcontext_addr;
166
167 if (frame->next)
168 sigcontext_pointer_addr = frame->next->frame;
169 else
170 sigcontext_pointer_addr = frame->frame;
171 sigcontext_addr = read_memory_integer(sigcontext_pointer_addr, 8);
172 for (ireg = 0; ireg < 32; ireg++)
173 {
174 reg_position = sigcontext_addr + SIGFRAME_REGSAVE_OFF + ireg * 8;
175 frame->saved_regs->regs[ireg] = reg_position;
176 }
177 for (ireg = 0; ireg < 32; ireg++)
178 {
179 reg_position = sigcontext_addr + SIGFRAME_FPREGSAVE_OFF + ireg * 8;
180 frame->saved_regs->regs[FP0_REGNUM + ireg] = reg_position;
181 }
182 frame->saved_regs->regs[PC_REGNUM] = sigcontext_addr + SIGFRAME_PC_OFF;
183 return;
184 }
185
669caa9c 186 proc_desc = frame->proc_desc;
72bba93b
SG
187 if (proc_desc == NULL)
188 /* I'm not sure how/whether this can happen. Normally when we can't
189 find a proc_desc, we "synthesize" one using heuristic_proc_desc
190 and set the saved_regs right away. */
191 return;
192
193 /* Fill in the offsets for the registers which gen_mask says
194 were saved. */
195
669caa9c 196 reg_position = frame->frame + PROC_REG_OFFSET (proc_desc);
72bba93b
SG
197 mask = PROC_REG_MASK (proc_desc);
198
199 returnreg = PROC_PC_REG (proc_desc);
200
e4dbd248 201 /* Note that RA is always saved first, regardless of its actual
72bba93b
SG
202 register number. */
203 if (mask & (1 << returnreg))
204 {
669caa9c 205 frame->saved_regs->regs[returnreg] = reg_position;
72bba93b
SG
206 reg_position += 8;
207 mask &= ~(1 << returnreg); /* Clear bit for RA so we
208 don't save again later. */
209 }
210
211 for (ireg = 0; ireg <= 31 ; ++ireg)
212 if (mask & (1 << ireg))
213 {
669caa9c 214 frame->saved_regs->regs[ireg] = reg_position;
72bba93b
SG
215 reg_position += 8;
216 }
217
218 /* Fill in the offsets for the registers which float_mask says
219 were saved. */
220
669caa9c 221 reg_position = frame->frame + PROC_FREG_OFFSET (proc_desc);
72bba93b
SG
222 mask = PROC_FREG_MASK (proc_desc);
223
224 for (ireg = 0; ireg <= 31 ; ++ireg)
225 if (mask & (1 << ireg))
226 {
669caa9c 227 frame->saved_regs->regs[FP0_REGNUM+ireg] = reg_position;
72bba93b
SG
228 reg_position += 8;
229 }
230
669caa9c 231 frame->saved_regs->regs[PC_REGNUM] = frame->saved_regs->regs[returnreg];
72bba93b 232}
cef4c2e7
PS
233
234static CORE_ADDR
235read_next_frame_reg(fi, regno)
669caa9c 236 struct frame_info *fi;
cef4c2e7
PS
237 int regno;
238{
cef4c2e7
PS
239 for (; fi; fi = fi->next)
240 {
e4dbd248
PS
241 /* We have to get the saved sp from the sigcontext
242 if it is a signal handler frame. */
243 if (regno == SP_REGNUM && !fi->signal_handler_caller)
cef4c2e7 244 return fi->frame;
72bba93b
SG
245 else
246 {
247 if (fi->saved_regs == NULL)
248 alpha_find_saved_regs (fi);
249 if (fi->saved_regs->regs[regno])
250 return read_memory_integer(fi->saved_regs->regs[regno], 8);
251 }
cef4c2e7
PS
252 }
253 return read_register(regno);
254}
255
256CORE_ADDR
257alpha_frame_saved_pc(frame)
669caa9c 258 struct frame_info *frame;
cef4c2e7
PS
259{
260 alpha_extra_func_info_t proc_desc = frame->proc_desc;
0434c1a0
PS
261 /* We have to get the saved pc from the sigcontext
262 if it is a signal handler frame. */
adbe434b 263 int pcreg = frame->signal_handler_caller ? PC_REGNUM : frame->pc_reg;
cef4c2e7
PS
264
265 if (proc_desc && PROC_DESC_IS_DUMMY(proc_desc))
266 return read_memory_integer(frame->frame - 8, 8);
267
268 return read_next_frame_reg(frame, pcreg);
269}
270
271CORE_ADDR
272alpha_saved_pc_after_call (frame)
669caa9c 273 struct frame_info *frame;
cef4c2e7 274{
adbe434b
PS
275 CORE_ADDR pc = frame->pc;
276 CORE_ADDR tmp;
277 alpha_extra_func_info_t proc_desc;
278 int pcreg;
279
280 /* Skip over shared library trampoline if necessary. */
281 tmp = SKIP_TRAMPOLINE_CODE (pc);
282 if (tmp != 0)
283 pc = tmp;
284
285 proc_desc = find_proc_desc (pc, frame->next);
286 pcreg = proc_desc ? PROC_PC_REG (proc_desc) : RA_REGNUM;
cef4c2e7
PS
287
288 return read_register (pcreg);
289}
290
291
292static struct alpha_extra_func_info temp_proc_desc;
293static struct frame_saved_regs temp_saved_regs;
294
295/* This fencepost looks highly suspicious to me. Removing it also
296 seems suspicious as it could affect remote debugging across serial
297 lines. */
298
299static CORE_ADDR
300heuristic_proc_start(pc)
301 CORE_ADDR pc;
302{
303 CORE_ADDR start_pc = pc;
304 CORE_ADDR fence = start_pc - heuristic_fence_post;
305
306 if (start_pc == 0) return 0;
307
308 if (heuristic_fence_post == UINT_MAX
309 || fence < VM_MIN_ADDRESS)
310 fence = VM_MIN_ADDRESS;
311
312 /* search back for previous return */
313 for (start_pc -= 4; ; start_pc -= 4)
314 if (start_pc < fence)
315 {
316 /* It's not clear to me why we reach this point when
317 stop_soon_quietly, but with this test, at least we
318 don't print out warnings for every child forked (eg, on
319 decstation). 22apr93 rich@cygnus.com. */
320 if (!stop_soon_quietly)
321 {
322 static int blurb_printed = 0;
323
324 if (fence == VM_MIN_ADDRESS)
325 warning("Hit beginning of text section without finding");
326 else
327 warning("Hit heuristic-fence-post without finding");
328
329 warning("enclosing function for address 0x%lx", pc);
330 if (!blurb_printed)
331 {
332 printf_filtered ("\
333This warning occurs if you are debugging a function without any symbols\n\
334(for example, in a stripped executable). In that case, you may wish to\n\
335increase the size of the search with the `set heuristic-fence-post' command.\n\
336\n\
337Otherwise, you told GDB there was a function where there isn't one, or\n\
338(more likely) you have encountered a bug in GDB.\n");
339 blurb_printed = 1;
340 }
341 }
342
343 return 0;
344 }
345 else if (ABOUT_TO_RETURN(start_pc))
346 break;
347
348 start_pc += 4; /* skip return */
349 return start_pc;
350}
351
352static alpha_extra_func_info_t
353heuristic_proc_desc(start_pc, limit_pc, next_frame)
354 CORE_ADDR start_pc, limit_pc;
669caa9c 355 struct frame_info *next_frame;
cef4c2e7 356{
2fe3b329 357 CORE_ADDR sp = read_next_frame_reg (next_frame, SP_REGNUM);
cef4c2e7
PS
358 CORE_ADDR cur_pc;
359 int frame_size;
360 int has_frame_reg = 0;
361 unsigned long reg_mask = 0;
362
363 if (start_pc == 0)
364 return NULL;
669caa9c
SS
365 memset (&temp_proc_desc, '\0', sizeof(temp_proc_desc));
366 memset (&temp_saved_regs, '\0', sizeof(struct frame_saved_regs));
367 PROC_LOW_ADDR (&temp_proc_desc) = start_pc;
cef4c2e7
PS
368
369 if (start_pc + 200 < limit_pc)
370 limit_pc = start_pc + 200;
371 frame_size = 0;
372 for (cur_pc = start_pc; cur_pc < limit_pc; cur_pc += 4)
373 {
374 char buf[4];
375 unsigned long word;
376 int status;
377
378 status = read_memory_nobpt (cur_pc, buf, 4);
379 if (status)
380 memory_error (status, cur_pc);
381 word = extract_unsigned_integer (buf, 4);
382
383 if ((word & 0xffff0000) == 0x23de0000) /* lda $sp,n($sp) */
384 frame_size += (-word) & 0xffff;
385 else if ((word & 0xfc1f0000) == 0xb41e0000 /* stq reg,n($sp) */
386 && (word & 0xffff0000) != 0xb7fe0000) /* reg != $zero */
387 {
388 int reg = (word & 0x03e00000) >> 21;
389 reg_mask |= 1 << reg;
390 temp_saved_regs.regs[reg] = sp + (short)word;
391 }
392 else if (word == 0x47de040f) /* bis sp,sp fp */
393 has_frame_reg = 1;
394 }
395 if (has_frame_reg)
396 PROC_FRAME_REG(&temp_proc_desc) = GCC_FP_REGNUM;
397 else
398 PROC_FRAME_REG(&temp_proc_desc) = SP_REGNUM;
399 PROC_FRAME_OFFSET(&temp_proc_desc) = frame_size;
400 PROC_REG_MASK(&temp_proc_desc) = reg_mask;
401 PROC_PC_REG(&temp_proc_desc) = RA_REGNUM;
72bba93b 402 PROC_LOCALOFF(&temp_proc_desc) = 0; /* XXX - bogus */
cef4c2e7
PS
403 return &temp_proc_desc;
404}
405
72bba93b
SG
406/* This returns the PC of the first inst after the prologue. If we can't
407 find the prologue, then return 0. */
408
409static CORE_ADDR
410after_prologue (pc, proc_desc)
411 CORE_ADDR pc;
412 alpha_extra_func_info_t proc_desc;
413{
72bba93b
SG
414 struct symtab_and_line sal;
415 CORE_ADDR func_addr, func_end;
416
417 if (!proc_desc)
418 proc_desc = find_proc_desc (pc, NULL);
419
420 if (proc_desc)
421 {
422 /* If function is frameless, then we need to do it the hard way. I
423 strongly suspect that frameless always means prologueless... */
424 if (PROC_FRAME_REG (proc_desc) == SP_REGNUM
425 && PROC_FRAME_OFFSET (proc_desc) == 0)
426 return 0;
427 }
428
429 if (!find_pc_partial_function (pc, NULL, &func_addr, &func_end))
430 return 0; /* Unknown */
431
432 sal = find_pc_line (func_addr, 0);
433
434 if (sal.end < func_end)
435 return sal.end;
436
437 /* The line after the prologue is after the end of the function. In this
438 case, tell the caller to find the prologue the hard way. */
439
440 return 0;
441}
442
443/* Return non-zero if we *might* be in a function prologue. Return zero if we
444 are definatly *not* in a function prologue. */
445
446static int
447in_prologue (pc, proc_desc)
448 CORE_ADDR pc;
449 alpha_extra_func_info_t proc_desc;
450{
451 CORE_ADDR after_prologue_pc;
452
453 after_prologue_pc = after_prologue (pc, proc_desc);
454
455 if (after_prologue_pc == 0
456 || pc < after_prologue_pc)
457 return 1;
458 else
459 return 0;
460}
461
cef4c2e7 462static alpha_extra_func_info_t
669caa9c 463find_proc_desc (pc, next_frame)
cef4c2e7 464 CORE_ADDR pc;
669caa9c 465 struct frame_info *next_frame;
cef4c2e7
PS
466{
467 alpha_extra_func_info_t proc_desc;
468 struct block *b;
469 struct symbol *sym;
470 CORE_ADDR startaddr;
471
472 /* Try to get the proc_desc from the linked call dummy proc_descs
473 if the pc is in the call dummy.
474 This is hairy. In the case of nested dummy calls we have to find the
475 right proc_desc, but we might not yet know the frame for the dummy
476 as it will be contained in the proc_desc we are searching for.
477 So we have to find the proc_desc whose frame is closest to the current
478 stack pointer. */
72bba93b 479
cef4c2e7
PS
480 if (PC_IN_CALL_DUMMY (pc, 0, 0))
481 {
482 struct linked_proc_info *link;
2fe3b329 483 CORE_ADDR sp = read_next_frame_reg (next_frame, SP_REGNUM);
cef4c2e7
PS
484 alpha_extra_func_info_t found_proc_desc = NULL;
485 long min_distance = LONG_MAX;
486
487 for (link = linked_proc_desc_table; link; link = link->next)
488 {
489 long distance = (CORE_ADDR) PROC_DUMMY_FRAME (&link->info) - sp;
490 if (distance > 0 && distance < min_distance)
491 {
492 min_distance = distance;
493 found_proc_desc = &link->info;
494 }
495 }
496 if (found_proc_desc != NULL)
497 return found_proc_desc;
498 }
499
500 b = block_for_pc(pc);
72bba93b 501
cef4c2e7
PS
502 find_pc_partial_function (pc, NULL, &startaddr, NULL);
503 if (b == NULL)
504 sym = NULL;
505 else
506 {
507 if (startaddr > BLOCK_START (b))
508 /* This is the "pathological" case referred to in a comment in
509 print_frame_info. It might be better to move this check into
510 symbol reading. */
511 sym = NULL;
512 else
513 sym = lookup_symbol (MIPS_EFI_SYMBOL_NAME, b, LABEL_NAMESPACE,
514 0, NULL);
515 }
516
4f69fe46
JK
517 /* If we never found a PDR for this function in symbol reading, then
518 examine prologues to find the information. */
519 if (sym && ((mips_extra_func_info_t) SYMBOL_VALUE (sym))->pdr.framereg == -1)
520 sym = NULL;
521
cef4c2e7
PS
522 if (sym)
523 {
72bba93b
SG
524 /* IF this is the topmost frame AND
525 * (this proc does not have debugging information OR
cef4c2e7
PS
526 * the PC is in the procedure prologue)
527 * THEN create a "heuristic" proc_desc (by analyzing
528 * the actual code) to replace the "official" proc_desc.
529 */
530 proc_desc = (alpha_extra_func_info_t)SYMBOL_VALUE(sym);
72bba93b
SG
531 if (next_frame == NULL)
532 {
533 if (PROC_DESC_IS_DUMMY (proc_desc) || in_prologue (pc, proc_desc))
534 {
cef4c2e7 535 alpha_extra_func_info_t found_heuristic =
72bba93b
SG
536 heuristic_proc_desc (PROC_LOW_ADDR (proc_desc),
537 pc, next_frame);
cef4c2e7 538 if (found_heuristic)
de7ad6d8
JK
539 {
540 PROC_LOCALOFF (found_heuristic) =
541 PROC_LOCALOFF (proc_desc);
adbe434b 542 PROC_PC_REG (found_heuristic) = PROC_PC_REG (proc_desc);
de7ad6d8
JK
543 proc_desc = found_heuristic;
544 }
72bba93b
SG
545 }
546 }
cef4c2e7
PS
547 }
548 else
549 {
72bba93b
SG
550 /* Is linked_proc_desc_table really necessary? It only seems to be used
551 by procedure call dummys. However, the procedures being called ought
552 to have their own proc_descs, and even if they don't,
553 heuristic_proc_desc knows how to create them! */
554
555 register struct linked_proc_info *link;
556 for (link = linked_proc_desc_table; link; link = link->next)
557 if (PROC_LOW_ADDR(&link->info) <= pc
558 && PROC_HIGH_ADDR(&link->info) > pc)
559 return &link->info;
560
cef4c2e7
PS
561 if (startaddr == 0)
562 startaddr = heuristic_proc_start (pc);
563
564 proc_desc =
565 heuristic_proc_desc (startaddr, pc, next_frame);
566 }
567 return proc_desc;
568}
569
570alpha_extra_func_info_t cached_proc_desc;
571
669caa9c 572CORE_ADDR
cef4c2e7 573alpha_frame_chain(frame)
669caa9c 574 struct frame_info *frame;
cef4c2e7
PS
575{
576 alpha_extra_func_info_t proc_desc;
577 CORE_ADDR saved_pc = FRAME_SAVED_PC(frame);
578
579 if (saved_pc == 0 || inside_entry_file (saved_pc))
580 return 0;
581
582 proc_desc = find_proc_desc(saved_pc, frame);
583 if (!proc_desc)
584 return 0;
585
586 cached_proc_desc = proc_desc;
587
588 /* Fetch the frame pointer for a dummy frame from the procedure
589 descriptor. */
590 if (PROC_DESC_IS_DUMMY(proc_desc))
669caa9c 591 return (CORE_ADDR) PROC_DUMMY_FRAME(proc_desc);
cef4c2e7
PS
592
593 /* If no frame pointer and frame size is zero, we must be at end
594 of stack (or otherwise hosed). If we don't check frame size,
595 we loop forever if we see a zero size frame. */
596 if (PROC_FRAME_REG (proc_desc) == SP_REGNUM
597 && PROC_FRAME_OFFSET (proc_desc) == 0
cef4c2e7
PS
598 /* The previous frame from a sigtramp frame might be frameless
599 and have frame size zero. */
600 && !frame->signal_handler_caller)
0434c1a0
PS
601 {
602 /* The alpha __sigtramp routine is frameless and has a frame size
603 of zero, but we are able to backtrace through it. */
604 char *name;
605 find_pc_partial_function (saved_pc, &name,
606 (CORE_ADDR *)NULL, (CORE_ADDR *)NULL);
607 if (IN_SIGTRAMP (saved_pc, name))
608 return frame->frame;
609 else
610 return 0;
611 }
cef4c2e7
PS
612 else
613 return read_next_frame_reg(frame, PROC_FRAME_REG(proc_desc))
0434c1a0 614 + PROC_FRAME_OFFSET(proc_desc);
cef4c2e7
PS
615}
616
617void
669caa9c
SS
618init_extra_frame_info (frame)
619 struct frame_info *frame;
cef4c2e7 620{
cef4c2e7
PS
621 /* Use proc_desc calculated in frame_chain */
622 alpha_extra_func_info_t proc_desc =
669caa9c 623 frame->next ? cached_proc_desc : find_proc_desc(frame->pc, frame->next);
cef4c2e7 624
669caa9c 625 frame->saved_regs = NULL;
adbe434b
PS
626 frame->localoff = 0;
627 frame->pc_reg = RA_REGNUM;
628 frame->proc_desc = proc_desc == &temp_proc_desc ? 0 : proc_desc;
cef4c2e7
PS
629 if (proc_desc)
630 {
adbe434b
PS
631 /* Get the locals offset and the saved pc register from the
632 procedure descriptor, they are valid even if we are in the
633 middle of the prologue. */
669caa9c 634 frame->localoff = PROC_LOCALOFF(proc_desc);
adbe434b 635 frame->pc_reg = PROC_PC_REG(proc_desc);
cef4c2e7 636
cef4c2e7 637 /* Fixup frame-pointer - only needed for top frame */
72bba93b 638
cef4c2e7
PS
639 /* Fetch the frame pointer for a dummy frame from the procedure
640 descriptor. */
641 if (PROC_DESC_IS_DUMMY(proc_desc))
669caa9c 642 frame->frame = (CORE_ADDR) PROC_DUMMY_FRAME(proc_desc);
72bba93b 643
cef4c2e7
PS
644 /* This may not be quite right, if proc has a real frame register.
645 Get the value of the frame relative sp, procedure might have been
646 interrupted by a signal at it's very start. */
669caa9c
SS
647 else if (frame->pc == PROC_LOW_ADDR (proc_desc) && !PROC_DESC_IS_DUMMY (proc_desc))
648 frame->frame = read_next_frame_reg (frame->next, SP_REGNUM);
cef4c2e7 649 else
669caa9c
SS
650 frame->frame = read_next_frame_reg (frame->next, PROC_FRAME_REG (proc_desc))
651 + PROC_FRAME_OFFSET (proc_desc);
cef4c2e7
PS
652
653 if (proc_desc == &temp_proc_desc)
cef4c2e7 654 {
09af5868
PS
655 char *name;
656
657 /* Do not set the saved registers for a sigtramp frame,
658 alpha_find_saved_registers will do that for us.
659 We can't use frame->signal_handler_caller, it is not yet set. */
660 find_pc_partial_function (frame->pc, &name,
661 (CORE_ADDR *)NULL,(CORE_ADDR *)NULL);
662 if (!IN_SIGTRAMP (frame->pc, name))
663 {
664 frame->saved_regs = (struct frame_saved_regs*)
665 obstack_alloc (&frame_cache_obstack,
666 sizeof (struct frame_saved_regs));
667 *frame->saved_regs = temp_saved_regs;
668 frame->saved_regs->regs[PC_REGNUM]
669 = frame->saved_regs->regs[RA_REGNUM];
670 }
cef4c2e7 671 }
cef4c2e7
PS
672 }
673}
674
675/* ALPHA stack frames are almost impenetrable. When execution stops,
676 we basically have to look at symbol information for the function
677 that we stopped in, which tells us *which* register (if any) is
678 the base of the frame pointer, and what offset from that register
679 the frame itself is at.
680
681 This presents a problem when trying to examine a stack in memory
682 (that isn't executing at the moment), using the "frame" command. We
683 don't have a PC, nor do we have any registers except SP.
684
685 This routine takes two arguments, SP and PC, and tries to make the
686 cached frames look as if these two arguments defined a frame on the
687 cache. This allows the rest of info frame to extract the important
688 arguments without difficulty. */
689
669caa9c 690struct frame_info *
cef4c2e7
PS
691setup_arbitrary_frame (argc, argv)
692 int argc;
669caa9c 693 CORE_ADDR *argv;
cef4c2e7
PS
694{
695 if (argc != 2)
696 error ("ALPHA frame specifications require two arguments: sp and pc");
697
698 return create_new_frame (argv[0], argv[1]);
699}
700
701/* The alpha passes the first six arguments in the registers, the rest on
702 the stack. The register arguments are eventually transferred to the
703 argument transfer area immediately below the stack by the called function
704 anyway. So we `push' at least six arguments on the stack, `reload' the
705 argument registers and then adjust the stack pointer to point past the
706 sixth argument. This algorithm simplifies the passing of a large struct
707 which extends from the registers to the stack.
708 If the called function is returning a structure, the address of the
709 structure to be returned is passed as a hidden first argument. */
710
cef4c2e7
PS
711CORE_ADDR
712alpha_push_arguments (nargs, args, sp, struct_return, struct_addr)
7810d333
JK
713 int nargs;
714 value_ptr *args;
715 CORE_ADDR sp;
716 int struct_return;
717 CORE_ADDR struct_addr;
cef4c2e7
PS
718{
719 register i;
720 int accumulate_size = struct_return ? 8 : 0;
3e6b0674 721 int arg_regs_size = ALPHA_NUM_ARG_REGS * 8;
cef4c2e7
PS
722 struct alpha_arg { char *contents; int len; int offset; };
723 struct alpha_arg *alpha_args =
724 (struct alpha_arg*)alloca (nargs * sizeof (struct alpha_arg));
725 register struct alpha_arg *m_arg;
726 char raw_buffer[sizeof (CORE_ADDR)];
727 int required_arg_regs;
728
729 for (i = 0, m_arg = alpha_args; i < nargs; i++, m_arg++)
730 {
5222ca60 731 value_ptr arg = args[i];
cef4c2e7 732 /* Cast argument to long if necessary as the compiler does it too. */
b3636ee5
JK
733 switch (TYPE_CODE (VALUE_TYPE (arg)))
734 {
735 case TYPE_CODE_INT:
736 case TYPE_CODE_BOOL:
737 case TYPE_CODE_CHAR:
738 case TYPE_CODE_RANGE:
739 case TYPE_CODE_ENUM:
740 if (TYPE_LENGTH (VALUE_TYPE (arg)) < TYPE_LENGTH (builtin_type_long))
741 arg = value_cast (builtin_type_long, arg);
742 break;
743 default:
744 break;
745 }
cef4c2e7
PS
746 m_arg->len = TYPE_LENGTH (VALUE_TYPE (arg));
747 m_arg->offset = accumulate_size;
748 accumulate_size = (accumulate_size + m_arg->len + 7) & ~7;
749 m_arg->contents = VALUE_CONTENTS(arg);
750 }
751
752 /* Determine required argument register loads, loading an argument register
753 is expensive as it uses three ptrace calls. */
754 required_arg_regs = accumulate_size / 8;
3e6b0674
PS
755 if (required_arg_regs > ALPHA_NUM_ARG_REGS)
756 required_arg_regs = ALPHA_NUM_ARG_REGS;
cef4c2e7
PS
757
758 /* Make room for the arguments on the stack. */
759 if (accumulate_size < arg_regs_size)
760 accumulate_size = arg_regs_size;
761 sp -= accumulate_size;
762
763 /* Keep sp aligned to a multiple of 16 as the compiler does it too. */
764 sp &= ~15;
765
766 /* `Push' arguments on the stack. */
767 for (i = nargs; m_arg--, --i >= 0; )
768 write_memory(sp + m_arg->offset, m_arg->contents, m_arg->len);
769 if (struct_return)
770 {
771 store_address (raw_buffer, sizeof (CORE_ADDR), struct_addr);
772 write_memory (sp, raw_buffer, sizeof (CORE_ADDR));
773 }
774
775 /* Load the argument registers. */
776 for (i = 0; i < required_arg_regs; i++)
777 {
778 LONGEST val;
779
780 val = read_memory_integer (sp + i * 8, 8);
781 write_register (A0_REGNUM + i, val);
782 write_register (FPA0_REGNUM + i, val);
783 }
784
785 return sp + arg_regs_size;
786}
787
788void
789alpha_push_dummy_frame()
790{
791 int ireg;
72bba93b
SG
792 struct linked_proc_info *link;
793 alpha_extra_func_info_t proc_desc;
cef4c2e7
PS
794 CORE_ADDR sp = read_register (SP_REGNUM);
795 CORE_ADDR save_address;
796 char raw_buffer[MAX_REGISTER_RAW_SIZE];
797 unsigned long mask;
798
72bba93b 799 link = (struct linked_proc_info *) xmalloc(sizeof (struct linked_proc_info));
cef4c2e7
PS
800 link->next = linked_proc_desc_table;
801 linked_proc_desc_table = link;
72bba93b
SG
802
803 proc_desc = &link->info;
cef4c2e7
PS
804
805 /*
806 * The registers we must save are all those not preserved across
807 * procedure calls.
808 * In addition, we must save the PC and RA.
809 *
810 * Dummy frame layout:
811 * (high memory)
812 * Saved PC
813 * Saved F30
814 * ...
815 * Saved F0
816 * Saved R29
817 * ...
818 * Saved R0
819 * Saved R26 (RA)
820 * Parameter build area
821 * (low memory)
822 */
823
824/* MASK(i,j) == (1<<i) + (1<<(i+1)) + ... + (1<<j)). Assume i<=j<31. */
825#define MASK(i,j) (((1L << ((j)+1)) - 1) ^ ((1L << (i)) - 1))
826#define GEN_REG_SAVE_MASK (MASK(0,8) | MASK(16,29))
827#define GEN_REG_SAVE_COUNT 24
828#define FLOAT_REG_SAVE_MASK (MASK(0,1) | MASK(10,30))
829#define FLOAT_REG_SAVE_COUNT 23
830 /* The special register is the PC as we have no bit for it in the save masks.
831 alpha_frame_saved_pc knows where the pc is saved in a dummy frame. */
832#define SPECIAL_REG_SAVE_COUNT 1
833
834 PROC_REG_MASK(proc_desc) = GEN_REG_SAVE_MASK;
835 PROC_FREG_MASK(proc_desc) = FLOAT_REG_SAVE_MASK;
836 /* PROC_REG_OFFSET is the offset from the dummy frame to the saved RA,
837 but keep SP aligned to a multiple of 16. */
838 PROC_REG_OFFSET(proc_desc) =
839 - ((8 * (SPECIAL_REG_SAVE_COUNT
840 + GEN_REG_SAVE_COUNT
841 + FLOAT_REG_SAVE_COUNT)
842 + 15) & ~15);
843 PROC_FREG_OFFSET(proc_desc) =
844 PROC_REG_OFFSET(proc_desc) + 8 * GEN_REG_SAVE_COUNT;
845
846 /* Save general registers.
847 The return address register is the first saved register, all other
848 registers follow in ascending order.
849 The PC is saved immediately below the SP. */
850 save_address = sp + PROC_REG_OFFSET(proc_desc);
851 store_address (raw_buffer, 8, read_register (RA_REGNUM));
852 write_memory (save_address, raw_buffer, 8);
853 save_address += 8;
854 mask = PROC_REG_MASK(proc_desc) & 0xffffffffL;
855 for (ireg = 0; mask; ireg++, mask >>= 1)
856 if (mask & 1)
857 {
858 if (ireg == RA_REGNUM)
859 continue;
860 store_address (raw_buffer, 8, read_register (ireg));
861 write_memory (save_address, raw_buffer, 8);
862 save_address += 8;
863 }
864
865 store_address (raw_buffer, 8, read_register (PC_REGNUM));
866 write_memory (sp - 8, raw_buffer, 8);
867
868 /* Save floating point registers. */
869 save_address = sp + PROC_FREG_OFFSET(proc_desc);
870 mask = PROC_FREG_MASK(proc_desc) & 0xffffffffL;
871 for (ireg = 0; mask; ireg++, mask >>= 1)
872 if (mask & 1)
873 {
874 store_address (raw_buffer, 8, read_register (ireg + FP0_REGNUM));
875 write_memory (save_address, raw_buffer, 8);
876 save_address += 8;
877 }
878
879 /* Set and save the frame address for the dummy.
880 This is tricky. The only registers that are suitable for a frame save
881 are those that are preserved across procedure calls (s0-s6). But if
882 a read system call is interrupted and then a dummy call is made
883 (see testsuite/gdb.t17/interrupt.exp) the dummy call hangs till the read
884 is satisfied. Then it returns with the s0-s6 registers set to the values
885 on entry to the read system call and our dummy frame pointer would be
886 destroyed. So we save the dummy frame in the proc_desc and handle the
887 retrieval of the frame pointer of a dummy specifically. The frame register
888 is set to the virtual frame (pseudo) register, it's value will always
889 be read as zero and will help us to catch any errors in the dummy frame
890 retrieval code. */
891 PROC_DUMMY_FRAME(proc_desc) = sp;
892 PROC_FRAME_REG(proc_desc) = FP_REGNUM;
893 PROC_FRAME_OFFSET(proc_desc) = 0;
894 sp += PROC_REG_OFFSET(proc_desc);
895 write_register (SP_REGNUM, sp);
896
72bba93b 897 PROC_LOW_ADDR(proc_desc) = CALL_DUMMY_ADDRESS ();
cef4c2e7
PS
898 PROC_HIGH_ADDR(proc_desc) = PROC_LOW_ADDR(proc_desc) + 4;
899
900 SET_PROC_DESC_IS_DUMMY(proc_desc);
901 PROC_PC_REG(proc_desc) = RA_REGNUM;
902}
903
904void
905alpha_pop_frame()
906{
907 register int regnum;
669caa9c 908 struct frame_info *frame = get_current_frame ();
cef4c2e7
PS
909 CORE_ADDR new_sp = frame->frame;
910
911 alpha_extra_func_info_t proc_desc = frame->proc_desc;
912
913 write_register (PC_REGNUM, FRAME_SAVED_PC(frame));
72bba93b
SG
914 if (frame->saved_regs == NULL)
915 alpha_find_saved_regs (frame);
cef4c2e7
PS
916 if (proc_desc)
917 {
918 for (regnum = 32; --regnum >= 0; )
919 if (PROC_REG_MASK(proc_desc) & (1 << regnum))
920 write_register (regnum,
921 read_memory_integer (frame->saved_regs->regs[regnum],
922 8));
923 for (regnum = 32; --regnum >= 0; )
924 if (PROC_FREG_MASK(proc_desc) & (1 << regnum))
925 write_register (regnum + FP0_REGNUM,
926 read_memory_integer (frame->saved_regs->regs[regnum + FP0_REGNUM], 8));
927 }
928 write_register (SP_REGNUM, new_sp);
929 flush_cached_frames ();
cef4c2e7
PS
930
931 if (proc_desc && PROC_DESC_IS_DUMMY(proc_desc))
932 {
933 struct linked_proc_info *pi_ptr, *prev_ptr;
934
935 for (pi_ptr = linked_proc_desc_table, prev_ptr = NULL;
936 pi_ptr != NULL;
937 prev_ptr = pi_ptr, pi_ptr = pi_ptr->next)
938 {
939 if (&pi_ptr->info == proc_desc)
940 break;
941 }
942
943 if (pi_ptr == NULL)
944 error ("Can't locate dummy extra frame info\n");
945
946 if (prev_ptr != NULL)
947 prev_ptr->next = pi_ptr->next;
948 else
949 linked_proc_desc_table = pi_ptr->next;
950
951 free (pi_ptr);
952 }
953}
954\f
955/* To skip prologues, I use this predicate. Returns either PC itself
956 if the code at PC does not look like a function prologue; otherwise
957 returns an address that (if we're lucky) follows the prologue. If
958 LENIENT, then we must skip everything which is involved in setting
959 up the frame (it's OK to skip more, just so long as we don't skip
960 anything which might clobber the registers which are being saved.
961 Currently we must not skip more on the alpha, but we might the lenient
962 stuff some day. */
963
964CORE_ADDR
965alpha_skip_prologue (pc, lenient)
966 CORE_ADDR pc;
967 int lenient;
968{
969 unsigned long inst;
970 int offset;
72bba93b 971 CORE_ADDR post_prologue_pc;
2fe3b329
PS
972 char buf[4];
973
974#ifdef GDB_TARGET_HAS_SHARED_LIBS
975 /* Silently return the unaltered pc upon memory errors.
976 This could happen on OSF/1 if decode_line_1 tries to skip the
977 prologue for quickstarted shared library functions when the
978 shared library is not yet mapped in.
979 Reading target memory is slow over serial lines, so we perform
980 this check only if the target has shared libraries. */
981 if (target_read_memory (pc, buf, 4))
982 return pc;
983#endif
72bba93b
SG
984
985 /* See if we can determine the end of the prologue via the symbol table.
986 If so, then return either PC, or the PC after the prologue, whichever
987 is greater. */
988
989 post_prologue_pc = after_prologue (pc, NULL);
990
991 if (post_prologue_pc != 0)
992 return max (pc, post_prologue_pc);
993
994 /* Can't determine prologue from the symbol table, need to examine
995 instructions. */
cef4c2e7
PS
996
997 /* Skip the typical prologue instructions. These are the stack adjustment
998 instruction and the instructions that save registers on the stack
999 or in the gcc frame. */
1000 for (offset = 0; offset < 100; offset += 4)
1001 {
cef4c2e7
PS
1002 int status;
1003
1004 status = read_memory_nobpt (pc + offset, buf, 4);
1005 if (status)
1006 memory_error (status, pc + offset);
1007 inst = extract_unsigned_integer (buf, 4);
1008
1009 /* The alpha has no delay slots. But let's keep the lenient stuff,
1010 we might need it for something else in the future. */
1011 if (lenient && 0)
1012 continue;
1013
1014 if ((inst & 0xffff0000) == 0x27bb0000) /* ldah $gp,n($t12) */
1015 continue;
1016 if ((inst & 0xffff0000) == 0x23bd0000) /* lda $gp,n($gp) */
1017 continue;
1018 if ((inst & 0xffff0000) == 0x23de0000) /* lda $sp,n($sp) */
1019 continue;
1020 else if ((inst & 0xfc1f0000) == 0xb41e0000
1021 && (inst & 0xffff0000) != 0xb7fe0000)
1022 continue; /* stq reg,n($sp) */
1023 /* reg != $zero */
1024 else if ((inst & 0xfc1f0000) == 0x9c1e0000
1025 && (inst & 0xffff0000) != 0x9ffe0000)
1026 continue; /* stt reg,n($sp) */
1027 /* reg != $zero */
1028 else if (inst == 0x47de040f) /* bis sp,sp,fp */
1029 continue;
1030 else
1031 break;
1032 }
1033 return pc + offset;
1034}
1035
e3be225e 1036#if 0
cef4c2e7
PS
1037/* Is address PC in the prologue (loosely defined) for function at
1038 STARTADDR? */
1039
1040static int
1041alpha_in_lenient_prologue (startaddr, pc)
1042 CORE_ADDR startaddr;
1043 CORE_ADDR pc;
1044{
1045 CORE_ADDR end_prologue = alpha_skip_prologue (startaddr, 1);
1046 return pc >= startaddr && pc < end_prologue;
1047}
e3be225e 1048#endif
cef4c2e7 1049
ad09cb2b
PS
1050/* The alpha needs a conversion between register and memory format if
1051 the register is a floating point register and
1052 memory format is float, as the register format must be double
1053 or
1054 memory format is an integer with 4 bytes or less, as the representation
1055 of integers in floating point registers is different. */
1056void
1057alpha_register_convert_to_virtual (regnum, valtype, raw_buffer, virtual_buffer)
1058 int regnum;
1059 struct type *valtype;
1060 char *raw_buffer;
1061 char *virtual_buffer;
1062{
1063 if (TYPE_LENGTH (valtype) >= REGISTER_RAW_SIZE (regnum))
1064 {
1065 memcpy (virtual_buffer, raw_buffer, REGISTER_VIRTUAL_SIZE (regnum));
1066 return;
1067 }
1068
1069 if (TYPE_CODE (valtype) == TYPE_CODE_FLT)
1070 {
1071 double d = extract_floating (raw_buffer, REGISTER_RAW_SIZE (regnum));
1072 store_floating (virtual_buffer, TYPE_LENGTH (valtype), d);
1073 }
1074 else if (TYPE_CODE (valtype) == TYPE_CODE_INT && TYPE_LENGTH (valtype) <= 4)
1075 {
1076 unsigned LONGEST l;
1077 l = extract_unsigned_integer (raw_buffer, REGISTER_RAW_SIZE (regnum));
1078 l = ((l >> 32) & 0xc0000000) | ((l >> 29) & 0x3fffffff);
1079 store_unsigned_integer (virtual_buffer, TYPE_LENGTH (valtype), l);
1080 }
1081 else
1082 error ("Cannot retrieve value from floating point register");
1083}
1084
1085void
1086alpha_register_convert_to_raw (valtype, regnum, virtual_buffer, raw_buffer)
1087 struct type *valtype;
1088 int regnum;
1089 char *virtual_buffer;
1090 char *raw_buffer;
1091{
1092 if (TYPE_LENGTH (valtype) >= REGISTER_RAW_SIZE (regnum))
1093 {
1094 memcpy (raw_buffer, virtual_buffer, REGISTER_RAW_SIZE (regnum));
1095 return;
1096 }
1097
1098 if (TYPE_CODE (valtype) == TYPE_CODE_FLT)
1099 {
1100 double d = extract_floating (virtual_buffer, TYPE_LENGTH (valtype));
1101 store_floating (raw_buffer, REGISTER_RAW_SIZE (regnum), d);
1102 }
1103 else if (TYPE_CODE (valtype) == TYPE_CODE_INT && TYPE_LENGTH (valtype) <= 4)
1104 {
1105 unsigned LONGEST l;
1106 if (TYPE_UNSIGNED (valtype))
1107 l = extract_unsigned_integer (virtual_buffer, TYPE_LENGTH (valtype));
1108 else
1109 l = extract_signed_integer (virtual_buffer, TYPE_LENGTH (valtype));
1110 l = ((l & 0xc0000000) << 32) | ((l & 0x3fffffff) << 29);
1111 store_unsigned_integer (raw_buffer, REGISTER_RAW_SIZE (regnum), l);
1112 }
1113 else
1114 error ("Cannot store value in floating point register");
1115}
1116
cef4c2e7
PS
1117/* Given a return value in `regbuf' with a type `valtype',
1118 extract and copy its value into `valbuf'. */
669caa9c 1119
cef4c2e7
PS
1120void
1121alpha_extract_return_value (valtype, regbuf, valbuf)
1122 struct type *valtype;
1123 char regbuf[REGISTER_BYTES];
1124 char *valbuf;
1125{
92a6d600
PS
1126 if (TYPE_CODE (valtype) == TYPE_CODE_FLT)
1127 alpha_register_convert_to_virtual (FP0_REGNUM, valtype,
1128 regbuf + REGISTER_BYTE (FP0_REGNUM),
1129 valbuf);
1130 else
1131 memcpy (valbuf, regbuf + REGISTER_BYTE (V0_REGNUM), TYPE_LENGTH (valtype));
cef4c2e7
PS
1132}
1133
1134/* Given a return value in `regbuf' with a type `valtype',
7810d333 1135 write its value into the appropriate register. */
669caa9c 1136
cef4c2e7
PS
1137void
1138alpha_store_return_value (valtype, valbuf)
1139 struct type *valtype;
1140 char *valbuf;
1141{
cef4c2e7 1142 char raw_buffer[MAX_REGISTER_RAW_SIZE];
92a6d600
PS
1143 int regnum = V0_REGNUM;
1144 int length = TYPE_LENGTH (valtype);
cef4c2e7 1145
92a6d600
PS
1146 if (TYPE_CODE (valtype) == TYPE_CODE_FLT)
1147 {
1148 regnum = FP0_REGNUM;
1149 length = REGISTER_RAW_SIZE (regnum);
1150 alpha_register_convert_to_raw (valtype, regnum, valbuf, raw_buffer);
1151 }
1152 else
1153 memcpy (raw_buffer, valbuf, length);
cef4c2e7 1154
92a6d600 1155 write_register_bytes (REGISTER_BYTE (regnum), raw_buffer, length);
cef4c2e7
PS
1156}
1157
cef4c2e7
PS
1158/* Just like reinit_frame_cache, but with the right arguments to be
1159 callable as an sfunc. */
669caa9c 1160
cef4c2e7
PS
1161static void
1162reinit_frame_cache_sfunc (args, from_tty, c)
1163 char *args;
1164 int from_tty;
1165 struct cmd_list_element *c;
1166{
1167 reinit_frame_cache ();
1168}
1169
72bba93b
SG
1170/* This is the definition of CALL_DUMMY_ADDRESS. It's a heuristic that is used
1171 to find a convenient place in the text segment to stick a breakpoint to
1172 detect the completion of a target function call (ala call_function_by_hand).
1173 */
1174
1175CORE_ADDR
1176alpha_call_dummy_address ()
1177{
1178 CORE_ADDR entry;
1179 struct minimal_symbol *sym;
1180
1181 entry = entry_point_address ();
1182
1183 if (entry != 0)
1184 return entry;
1185
2d336b1b 1186 sym = lookup_minimal_symbol ("_Prelude", NULL, symfile_objfile);
72bba93b
SG
1187
1188 if (!sym || MSYMBOL_TYPE (sym) != mst_text)
1189 return 0;
1190 else
1191 return SYMBOL_VALUE_ADDRESS (sym) + 4;
1192}
1193
cef4c2e7
PS
1194void
1195_initialize_alpha_tdep ()
1196{
1197 struct cmd_list_element *c;
1198
18b46e7c
SS
1199 tm_print_insn = print_insn_alpha;
1200
cef4c2e7
PS
1201 /* Let the user set the fence post for heuristic_proc_start. */
1202
1203 /* We really would like to have both "0" and "unlimited" work, but
1204 command.c doesn't deal with that. So make it a var_zinteger
1205 because the user can always use "999999" or some such for unlimited. */
1206 c = add_set_cmd ("heuristic-fence-post", class_support, var_zinteger,
1207 (char *) &heuristic_fence_post,
1208 "\
1209Set the distance searched for the start of a function.\n\
1210If you are debugging a stripped executable, GDB needs to search through the\n\
1211program for the start of a function. This command sets the distance of the\n\
1212search. The only need to set it is when debugging a stripped executable.",
1213 &setlist);
1214 /* We need to throw away the frame cache when we set this, since it
1215 might change our ability to get backtraces. */
1216 c->function.sfunc = reinit_frame_cache_sfunc;
1217 add_show_from_set (c, &showlist);
1218}
This page took 0.235665 seconds and 4 git commands to generate.