* Makefile.in (ALLDEPFILES): Add alpha-osf1-tdep.c.
[deliverable/binutils-gdb.git] / gdb / alpha-tdep.c
CommitLineData
c906108c 1/* Target-dependent code for the ALPHA architecture, for GDB, the GNU Debugger.
ec32e4be 2 Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002
b6ba6518 3 Free Software Foundation, Inc.
c906108c 4
c5aa993b 5 This file is part of GDB.
c906108c 6
c5aa993b
JM
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
c906108c 11
c5aa993b
JM
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
c906108c 16
c5aa993b
JM
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
c906108c
SS
21
22#include "defs.h"
23#include "frame.h"
24#include "inferior.h"
25#include "symtab.h"
26#include "value.h"
27#include "gdbcmd.h"
28#include "gdbcore.h"
29#include "dis-asm.h"
30#include "symfile.h"
31#include "objfiles.h"
32#include "gdb_string.h"
c5f0f3d0 33#include "linespec.h"
4e052eda 34#include "regcache.h"
d16aafd8 35#include "doublest.h"
dc129d82
JT
36#include "arch-utils.h"
37
38#include "elf-bfd.h"
39
40#include "alpha-tdep.h"
41
42static gdbarch_init_ftype alpha_gdbarch_init;
43
44static gdbarch_register_name_ftype alpha_register_name;
45static gdbarch_register_raw_size_ftype alpha_register_raw_size;
46static gdbarch_register_virtual_size_ftype alpha_register_virtual_size;
47static gdbarch_register_virtual_type_ftype alpha_register_virtual_type;
48static gdbarch_register_byte_ftype alpha_register_byte;
49static gdbarch_cannot_fetch_register_ftype alpha_cannot_fetch_register;
50static gdbarch_cannot_store_register_ftype alpha_cannot_store_register;
51static gdbarch_register_convertible_ftype alpha_register_convertible;
52static gdbarch_register_convert_to_virtual_ftype
53 alpha_register_convert_to_virtual;
54static gdbarch_register_convert_to_raw_ftype alpha_register_convert_to_raw;
55static gdbarch_store_struct_return_ftype alpha_store_struct_return;
56static gdbarch_extract_return_value_ftype alpha_extract_return_value;
57static gdbarch_store_return_value_ftype alpha_store_return_value;
58static gdbarch_extract_struct_value_address_ftype
59 alpha_extract_struct_value_address;
60static gdbarch_use_struct_convention_ftype alpha_use_struct_convention;
61
62static gdbarch_frame_args_address_ftype alpha_frame_args_address;
63static gdbarch_frame_locals_address_ftype alpha_frame_locals_address;
64
65static gdbarch_skip_prologue_ftype alpha_skip_prologue;
66static gdbarch_get_saved_register_ftype alpha_get_saved_register;
67static gdbarch_saved_pc_after_call_ftype alpha_saved_pc_after_call;
68static gdbarch_frame_chain_ftype alpha_frame_chain;
69static gdbarch_frame_saved_pc_ftype alpha_frame_saved_pc;
70static gdbarch_frame_init_saved_regs_ftype alpha_frame_init_saved_regs;
71
72static gdbarch_push_arguments_ftype alpha_push_arguments;
73static gdbarch_push_dummy_frame_ftype alpha_push_dummy_frame;
74static gdbarch_pop_frame_ftype alpha_pop_frame;
75static gdbarch_fix_call_dummy_ftype alpha_fix_call_dummy;
76static gdbarch_init_frame_pc_first_ftype alpha_init_frame_pc_first;
77static gdbarch_init_extra_frame_info_ftype alpha_init_extra_frame_info;
c906108c 78
140f9984
JT
79struct frame_extra_info
80 {
81 alpha_extra_func_info_t proc_desc;
82 int localoff;
83 int pc_reg;
84 };
85
c906108c
SS
86/* FIXME: Some of this code should perhaps be merged with mips-tdep.c. */
87
88/* Prototypes for local functions. */
89
140f9984
JT
90static void alpha_find_saved_regs (struct frame_info *);
91
a14ed312 92static alpha_extra_func_info_t push_sigtramp_desc (CORE_ADDR low_addr);
c906108c 93
a14ed312 94static CORE_ADDR read_next_frame_reg (struct frame_info *, int);
c906108c 95
a14ed312 96static CORE_ADDR heuristic_proc_start (CORE_ADDR);
c906108c 97
a14ed312
KB
98static alpha_extra_func_info_t heuristic_proc_desc (CORE_ADDR,
99 CORE_ADDR,
100 struct frame_info *);
c906108c 101
a14ed312
KB
102static alpha_extra_func_info_t find_proc_desc (CORE_ADDR,
103 struct frame_info *);
c906108c
SS
104
105#if 0
a14ed312 106static int alpha_in_lenient_prologue (CORE_ADDR, CORE_ADDR);
c906108c
SS
107#endif
108
a14ed312 109static void reinit_frame_cache_sfunc (char *, int, struct cmd_list_element *);
c906108c 110
a14ed312
KB
111static CORE_ADDR after_prologue (CORE_ADDR pc,
112 alpha_extra_func_info_t proc_desc);
c906108c 113
a14ed312
KB
114static int alpha_in_prologue (CORE_ADDR pc,
115 alpha_extra_func_info_t proc_desc);
c906108c 116
a14ed312 117static int alpha_about_to_return (CORE_ADDR pc);
392a587b 118
a14ed312 119void _initialize_alpha_tdep (void);
392a587b 120
c906108c
SS
121/* Heuristic_proc_start may hunt through the text section for a long
122 time across a 2400 baud serial line. Allows the user to limit this
123 search. */
124static unsigned int heuristic_fence_post = 0;
c5aa993b 125/* *INDENT-OFF* */
c906108c
SS
126/* Layout of a stack frame on the alpha:
127
128 | |
129 pdr members: | 7th ... nth arg, |
130 | `pushed' by caller. |
131 | |
132----------------|-------------------------------|<-- old_sp == vfp
133 ^ ^ ^ ^ | |
134 | | | | | |
135 | |localoff | Copies of 1st .. 6th |
136 | | | | | argument if necessary. |
137 | | | v | |
138 | | | --- |-------------------------------|<-- FRAME_LOCALS_ADDRESS
139 | | | | |
140 | | | | Locals and temporaries. |
141 | | | | |
142 | | | |-------------------------------|
143 | | | | |
144 |-fregoffset | Saved float registers. |
145 | | | | F9 |
146 | | | | . |
147 | | | | . |
148 | | | | F2 |
149 | | v | |
150 | | -------|-------------------------------|
151 | | | |
152 | | | Saved registers. |
153 | | | S6 |
154 |-regoffset | . |
155 | | | . |
156 | | | S0 |
157 | | | pdr.pcreg |
158 | v | |
159 | ----------|-------------------------------|
160 | | |
161 frameoffset | Argument build area, gets |
162 | | 7th ... nth arg for any |
163 | | called procedure. |
164 v | |
165 -------------|-------------------------------|<-- sp
166 | |
167*/
c5aa993b
JM
168/* *INDENT-ON* */
169
c5aa993b 170#define PROC_LOW_ADDR(proc) ((proc)->pdr.adr) /* least address */
b83266a0
SS
171/* These next two fields are kind of being hijacked. I wonder if
172 iline is too small for the values it needs to hold, if GDB is
173 running on a 32-bit host. */
c5aa993b
JM
174#define PROC_HIGH_ADDR(proc) ((proc)->pdr.iline) /* upper address bound */
175#define PROC_DUMMY_FRAME(proc) ((proc)->pdr.cbLineOffset) /*CALL_DUMMY frame */
c906108c
SS
176#define PROC_FRAME_OFFSET(proc) ((proc)->pdr.frameoffset)
177#define PROC_FRAME_REG(proc) ((proc)->pdr.framereg)
178#define PROC_REG_MASK(proc) ((proc)->pdr.regmask)
179#define PROC_FREG_MASK(proc) ((proc)->pdr.fregmask)
180#define PROC_REG_OFFSET(proc) ((proc)->pdr.regoffset)
181#define PROC_FREG_OFFSET(proc) ((proc)->pdr.fregoffset)
182#define PROC_PC_REG(proc) ((proc)->pdr.pcreg)
183#define PROC_LOCALOFF(proc) ((proc)->pdr.localoff)
184#define PROC_SYMBOL(proc) (*(struct symbol**)&(proc)->pdr.isym)
185#define _PROC_MAGIC_ 0x0F0F0F0F
186#define PROC_DESC_IS_DUMMY(proc) ((proc)->pdr.isym == _PROC_MAGIC_)
187#define SET_PROC_DESC_IS_DUMMY(proc) ((proc)->pdr.isym = _PROC_MAGIC_)
188
189struct linked_proc_info
c5aa993b
JM
190 {
191 struct alpha_extra_func_info info;
192 struct linked_proc_info *next;
193 }
194 *linked_proc_desc_table = NULL;
c906108c 195\f
d734c450
JT
196int
197alpha_osf_in_sigtramp (CORE_ADDR pc, char *func_name)
198{
199 return (func_name != NULL && STREQ ("__sigtramp", func_name));
200}
c5aa993b 201
36a6271d
JT
202static CORE_ADDR
203alpha_frame_past_sigtramp_frame (struct frame_info *frame, CORE_ADDR pc)
c906108c 204{
36a6271d
JT
205 struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
206
207 if (tdep->skip_sigtramp_frame != NULL)
208 return (tdep->skip_sigtramp_frame (frame, pc));
209
210 return (0);
211}
212
213static LONGEST
214alpha_dynamic_sigtramp_offset (CORE_ADDR pc)
215{
216 struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
217
218 /* Must be provided by OS/ABI variant code if supported. */
219 if (tdep->dynamic_sigtramp_offset != NULL)
220 return (tdep->dynamic_sigtramp_offset (pc));
221
222 return (-1);
223}
224
225#define ALPHA_PROC_SIGTRAMP_MAGIC 0x0e0f0f0f
226
227/* Return TRUE if the procedure descriptor PROC is a procedure
228 descriptor that refers to a dynamically generated signal
229 trampoline routine. */
230static int
231alpha_proc_desc_is_dyn_sigtramp (struct alpha_extra_func_info *proc)
232{
233 struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
234
235 if (tdep->dynamic_sigtramp_offset != NULL)
236 return (proc->pdr.isym == ALPHA_PROC_SIGTRAMP_MAGIC);
237
238 return (0);
239}
240
241static void
242alpha_set_proc_desc_is_dyn_sigtramp (struct alpha_extra_func_info *proc)
243{
244 struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
245
246 if (tdep->dynamic_sigtramp_offset != NULL)
247 proc->pdr.isym = ALPHA_PROC_SIGTRAMP_MAGIC;
c906108c 248}
c5aa993b 249
c906108c
SS
250/* Dynamically create a signal-handler caller procedure descriptor for
251 the signal-handler return code starting at address LOW_ADDR. The
252 descriptor is added to the linked_proc_desc_table. */
253
254static alpha_extra_func_info_t
fba45db2 255push_sigtramp_desc (CORE_ADDR low_addr)
c906108c
SS
256{
257 struct linked_proc_info *link;
258 alpha_extra_func_info_t proc_desc;
259
260 link = (struct linked_proc_info *)
261 xmalloc (sizeof (struct linked_proc_info));
262 link->next = linked_proc_desc_table;
263 linked_proc_desc_table = link;
264
265 proc_desc = &link->info;
266
267 proc_desc->numargs = 0;
c5aa993b
JM
268 PROC_LOW_ADDR (proc_desc) = low_addr;
269 PROC_HIGH_ADDR (proc_desc) = low_addr + 3 * 4;
270 PROC_DUMMY_FRAME (proc_desc) = 0;
271 PROC_FRAME_OFFSET (proc_desc) = 0x298; /* sizeof(struct sigcontext_struct) */
272 PROC_FRAME_REG (proc_desc) = SP_REGNUM;
273 PROC_REG_MASK (proc_desc) = 0xffff;
274 PROC_FREG_MASK (proc_desc) = 0xffff;
275 PROC_PC_REG (proc_desc) = 26;
276 PROC_LOCALOFF (proc_desc) = 0;
36a6271d 277 alpha_set_proc_desc_is_dyn_sigtramp (proc_desc);
c906108c
SS
278 return (proc_desc);
279}
c906108c 280\f
c5aa993b 281
dc129d82 282static char *
636a6dfc
JT
283alpha_register_name (int regno)
284{
285 static char *register_names[] =
286 {
287 "v0", "t0", "t1", "t2", "t3", "t4", "t5", "t6",
288 "t7", "s0", "s1", "s2", "s3", "s4", "s5", "fp",
289 "a0", "a1", "a2", "a3", "a4", "a5", "t8", "t9",
290 "t10", "t11", "ra", "t12", "at", "gp", "sp", "zero",
291 "f0", "f1", "f2", "f3", "f4", "f5", "f6", "f7",
292 "f8", "f9", "f10", "f11", "f12", "f13", "f14", "f15",
293 "f16", "f17", "f18", "f19", "f20", "f21", "f22", "f23",
294 "f24", "f25", "f26", "f27", "f28", "f29", "f30", "fpcr",
295 "pc", "vfp",
296 };
297
298 if (regno < 0)
299 return (NULL);
300 if (regno >= (sizeof(register_names) / sizeof(*register_names)))
301 return (NULL);
302 return (register_names[regno]);
303}
d734c450 304
dc129d82 305static int
d734c450
JT
306alpha_cannot_fetch_register (int regno)
307{
dc129d82 308 return (regno == FP_REGNUM || regno == ALPHA_ZERO_REGNUM);
d734c450
JT
309}
310
dc129d82 311static int
d734c450
JT
312alpha_cannot_store_register (int regno)
313{
dc129d82 314 return (regno == FP_REGNUM || regno == ALPHA_ZERO_REGNUM);
d734c450
JT
315}
316
dc129d82 317static int
d734c450
JT
318alpha_register_convertible (int regno)
319{
320 return (regno >= FP0_REGNUM && regno <= FP0_REGNUM + 31);
321}
0d056799 322
dc129d82 323static struct type *
0d056799
JT
324alpha_register_virtual_type (int regno)
325{
326 return ((regno >= FP0_REGNUM && regno < (FP0_REGNUM+31))
327 ? builtin_type_double : builtin_type_long);
328}
f8453e34 329
dc129d82 330static int
f8453e34
JT
331alpha_register_byte (int regno)
332{
333 return (regno * 8);
334}
335
dc129d82 336static int
f8453e34
JT
337alpha_register_raw_size (int regno)
338{
339 return 8;
340}
341
dc129d82 342static int
f8453e34
JT
343alpha_register_virtual_size (int regno)
344{
345 return 8;
346}
636a6dfc
JT
347\f
348
c906108c
SS
349/* Guaranteed to set frame->saved_regs to some values (it never leaves it
350 NULL). */
351
140f9984 352static void
fba45db2 353alpha_find_saved_regs (struct frame_info *frame)
c906108c
SS
354{
355 int ireg;
356 CORE_ADDR reg_position;
357 unsigned long mask;
358 alpha_extra_func_info_t proc_desc;
359 int returnreg;
360
361 frame_saved_regs_zalloc (frame);
362
363 /* If it is the frame for __sigtramp, the saved registers are located
364 in a sigcontext structure somewhere on the stack. __sigtramp
365 passes a pointer to the sigcontext structure on the stack.
366 If the stack layout for __sigtramp changes, or if sigcontext offsets
367 change, we might have to update this code. */
368#ifndef SIGFRAME_PC_OFF
369#define SIGFRAME_PC_OFF (2 * 8)
370#define SIGFRAME_REGSAVE_OFF (4 * 8)
371#define SIGFRAME_FPREGSAVE_OFF (SIGFRAME_REGSAVE_OFF + 32 * 8 + 8)
372#endif
373 if (frame->signal_handler_caller)
374 {
375 CORE_ADDR sigcontext_addr;
376
377 sigcontext_addr = SIGCONTEXT_ADDR (frame);
378 for (ireg = 0; ireg < 32; ireg++)
379 {
c5aa993b
JM
380 reg_position = sigcontext_addr + SIGFRAME_REGSAVE_OFF + ireg * 8;
381 frame->saved_regs[ireg] = reg_position;
c906108c
SS
382 }
383 for (ireg = 0; ireg < 32; ireg++)
384 {
c5aa993b
JM
385 reg_position = sigcontext_addr + SIGFRAME_FPREGSAVE_OFF + ireg * 8;
386 frame->saved_regs[FP0_REGNUM + ireg] = reg_position;
c906108c
SS
387 }
388 frame->saved_regs[PC_REGNUM] = sigcontext_addr + SIGFRAME_PC_OFF;
389 return;
390 }
391
140f9984 392 proc_desc = frame->extra_info->proc_desc;
c906108c
SS
393 if (proc_desc == NULL)
394 /* I'm not sure how/whether this can happen. Normally when we can't
395 find a proc_desc, we "synthesize" one using heuristic_proc_desc
396 and set the saved_regs right away. */
397 return;
398
399 /* Fill in the offsets for the registers which gen_mask says
400 were saved. */
401
402 reg_position = frame->frame + PROC_REG_OFFSET (proc_desc);
403 mask = PROC_REG_MASK (proc_desc);
404
405 returnreg = PROC_PC_REG (proc_desc);
406
407 /* Note that RA is always saved first, regardless of its actual
408 register number. */
409 if (mask & (1 << returnreg))
410 {
411 frame->saved_regs[returnreg] = reg_position;
412 reg_position += 8;
c5aa993b
JM
413 mask &= ~(1 << returnreg); /* Clear bit for RA so we
414 don't save again later. */
c906108c
SS
415 }
416
c5aa993b 417 for (ireg = 0; ireg <= 31; ++ireg)
c906108c
SS
418 if (mask & (1 << ireg))
419 {
420 frame->saved_regs[ireg] = reg_position;
421 reg_position += 8;
422 }
423
424 /* Fill in the offsets for the registers which float_mask says
425 were saved. */
426
427 reg_position = frame->frame + PROC_FREG_OFFSET (proc_desc);
428 mask = PROC_FREG_MASK (proc_desc);
429
c5aa993b 430 for (ireg = 0; ireg <= 31; ++ireg)
c906108c
SS
431 if (mask & (1 << ireg))
432 {
c5aa993b 433 frame->saved_regs[FP0_REGNUM + ireg] = reg_position;
c906108c
SS
434 reg_position += 8;
435 }
436
437 frame->saved_regs[PC_REGNUM] = frame->saved_regs[returnreg];
438}
439
dc129d82 440static void
140f9984
JT
441alpha_frame_init_saved_regs (struct frame_info *fi)
442{
443 if (fi->saved_regs == NULL)
444 alpha_find_saved_regs (fi);
445 fi->saved_regs[SP_REGNUM] = fi->frame;
446}
447
dc129d82 448static void
0d056799
JT
449alpha_init_frame_pc_first (int fromleaf, struct frame_info *prev)
450{
451 prev->pc = (fromleaf ? SAVED_PC_AFTER_CALL (prev->next) :
452 prev->next ? FRAME_SAVED_PC (prev->next) : read_pc ());
453}
454
c906108c 455static CORE_ADDR
fba45db2 456read_next_frame_reg (struct frame_info *fi, int regno)
c906108c
SS
457{
458 for (; fi; fi = fi->next)
459 {
460 /* We have to get the saved sp from the sigcontext
c5aa993b 461 if it is a signal handler frame. */
c906108c
SS
462 if (regno == SP_REGNUM && !fi->signal_handler_caller)
463 return fi->frame;
464 else
465 {
466 if (fi->saved_regs == NULL)
467 alpha_find_saved_regs (fi);
468 if (fi->saved_regs[regno])
c5aa993b 469 return read_memory_integer (fi->saved_regs[regno], 8);
c906108c
SS
470 }
471 }
c5aa993b 472 return read_register (regno);
c906108c
SS
473}
474
dc129d82 475static CORE_ADDR
fba45db2 476alpha_frame_saved_pc (struct frame_info *frame)
c906108c 477{
140f9984 478 alpha_extra_func_info_t proc_desc = frame->extra_info->proc_desc;
c906108c
SS
479 /* We have to get the saved pc from the sigcontext
480 if it is a signal handler frame. */
140f9984
JT
481 int pcreg = frame->signal_handler_caller ? PC_REGNUM
482 : frame->extra_info->pc_reg;
c906108c 483
c5aa993b
JM
484 if (proc_desc && PROC_DESC_IS_DUMMY (proc_desc))
485 return read_memory_integer (frame->frame - 8, 8);
c906108c 486
c5aa993b 487 return read_next_frame_reg (frame, pcreg);
c906108c
SS
488}
489
dc129d82
JT
490static void
491alpha_get_saved_register (char *raw_buffer,
492 int *optimized,
493 CORE_ADDR *addrp,
494 struct frame_info *frame,
495 int regnum,
496 enum lval_type *lval)
497{
498 CORE_ADDR addr;
499
500 if (!target_has_registers)
501 error ("No registers.");
502
503 /* Normal systems don't optimize out things with register numbers. */
504 if (optimized != NULL)
505 *optimized = 0;
506 addr = find_saved_register (frame, regnum);
507 if (addr != 0)
508 {
509 if (lval != NULL)
510 *lval = lval_memory;
511 if (regnum == SP_REGNUM)
512 {
513 if (raw_buffer != NULL)
514 {
515 /* Put it back in target format. */
516 store_address (raw_buffer, REGISTER_RAW_SIZE (regnum),
517 (LONGEST) addr);
518 }
519 if (addrp != NULL)
520 *addrp = 0;
521 return;
522 }
523 if (raw_buffer != NULL)
524 target_read_memory (addr, raw_buffer, REGISTER_RAW_SIZE (regnum));
525 }
526 else
527 {
528 if (lval != NULL)
529 *lval = lval_register;
530 addr = REGISTER_BYTE (regnum);
531 if (raw_buffer != NULL)
532 read_register_gen (regnum, raw_buffer);
533 }
534 if (addrp != NULL)
535 *addrp = addr;
536}
537
538static CORE_ADDR
fba45db2 539alpha_saved_pc_after_call (struct frame_info *frame)
c906108c
SS
540{
541 CORE_ADDR pc = frame->pc;
542 CORE_ADDR tmp;
543 alpha_extra_func_info_t proc_desc;
544 int pcreg;
545
546 /* Skip over shared library trampoline if necessary. */
547 tmp = SKIP_TRAMPOLINE_CODE (pc);
548 if (tmp != 0)
549 pc = tmp;
550
551 proc_desc = find_proc_desc (pc, frame->next);
dc129d82 552 pcreg = proc_desc ? PROC_PC_REG (proc_desc) : ALPHA_RA_REGNUM;
c906108c
SS
553
554 if (frame->signal_handler_caller)
555 return alpha_frame_saved_pc (frame);
556 else
557 return read_register (pcreg);
558}
559
560
561static struct alpha_extra_func_info temp_proc_desc;
dc129d82 562static CORE_ADDR temp_saved_regs[ALPHA_NUM_REGS];
c906108c
SS
563
564/* Nonzero if instruction at PC is a return instruction. "ret
565 $zero,($ra),1" on alpha. */
566
567static int
fba45db2 568alpha_about_to_return (CORE_ADDR pc)
c906108c
SS
569{
570 return read_memory_integer (pc, 4) == 0x6bfa8001;
571}
572
573
574
575/* This fencepost looks highly suspicious to me. Removing it also
576 seems suspicious as it could affect remote debugging across serial
577 lines. */
578
579static CORE_ADDR
fba45db2 580heuristic_proc_start (CORE_ADDR pc)
c906108c 581{
d9b023cc 582 struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
c5aa993b
JM
583 CORE_ADDR start_pc = pc;
584 CORE_ADDR fence = start_pc - heuristic_fence_post;
c906108c 585
c5aa993b
JM
586 if (start_pc == 0)
587 return 0;
c906108c 588
c5aa993b 589 if (heuristic_fence_post == UINT_MAX
d9b023cc
JT
590 || fence < tdep->vm_min_address)
591 fence = tdep->vm_min_address;
c906108c 592
c5aa993b
JM
593 /* search back for previous return */
594 for (start_pc -= 4;; start_pc -= 4)
595 if (start_pc < fence)
596 {
597 /* It's not clear to me why we reach this point when
598 stop_soon_quietly, but with this test, at least we
599 don't print out warnings for every child forked (eg, on
600 decstation). 22apr93 rich@cygnus.com. */
601 if (!stop_soon_quietly)
c906108c 602 {
c5aa993b
JM
603 static int blurb_printed = 0;
604
d9b023cc 605 if (fence == tdep->vm_min_address)
c5aa993b
JM
606 warning ("Hit beginning of text section without finding");
607 else
608 warning ("Hit heuristic-fence-post without finding");
609
d4f3574e 610 warning ("enclosing function for address 0x%s", paddr_nz (pc));
c5aa993b 611 if (!blurb_printed)
c906108c 612 {
c5aa993b 613 printf_filtered ("\
c906108c
SS
614This warning occurs if you are debugging a function without any symbols\n\
615(for example, in a stripped executable). In that case, you may wish to\n\
616increase the size of the search with the `set heuristic-fence-post' command.\n\
617\n\
618Otherwise, you told GDB there was a function where there isn't one, or\n\
619(more likely) you have encountered a bug in GDB.\n");
c5aa993b 620 blurb_printed = 1;
c906108c 621 }
c906108c 622 }
c906108c 623
c5aa993b
JM
624 return 0;
625 }
626 else if (alpha_about_to_return (start_pc))
627 break;
628
629 start_pc += 4; /* skip return */
630 return start_pc;
c906108c
SS
631}
632
633static alpha_extra_func_info_t
fba45db2
KB
634heuristic_proc_desc (CORE_ADDR start_pc, CORE_ADDR limit_pc,
635 struct frame_info *next_frame)
c906108c 636{
c5aa993b
JM
637 CORE_ADDR sp = read_next_frame_reg (next_frame, SP_REGNUM);
638 CORE_ADDR cur_pc;
639 int frame_size;
640 int has_frame_reg = 0;
641 unsigned long reg_mask = 0;
642 int pcreg = -1;
643
644 if (start_pc == 0)
645 return NULL;
646 memset (&temp_proc_desc, '\0', sizeof (temp_proc_desc));
140f9984 647 memset (&temp_saved_regs, '\0', SIZEOF_FRAME_SAVED_REGS);
c5aa993b
JM
648 PROC_LOW_ADDR (&temp_proc_desc) = start_pc;
649
650 if (start_pc + 200 < limit_pc)
651 limit_pc = start_pc + 200;
652 frame_size = 0;
653 for (cur_pc = start_pc; cur_pc < limit_pc; cur_pc += 4)
654 {
655 char buf[4];
656 unsigned long word;
657 int status;
c906108c 658
c5aa993b
JM
659 status = read_memory_nobpt (cur_pc, buf, 4);
660 if (status)
661 memory_error (status, cur_pc);
662 word = extract_unsigned_integer (buf, 4);
c906108c 663
c5aa993b
JM
664 if ((word & 0xffff0000) == 0x23de0000) /* lda $sp,n($sp) */
665 {
666 if (word & 0x8000)
667 frame_size += (-word) & 0xffff;
668 else
669 /* Exit loop if a positive stack adjustment is found, which
670 usually means that the stack cleanup code in the function
671 epilogue is reached. */
672 break;
673 }
674 else if ((word & 0xfc1f0000) == 0xb41e0000 /* stq reg,n($sp) */
675 && (word & 0xffff0000) != 0xb7fe0000) /* reg != $zero */
676 {
677 int reg = (word & 0x03e00000) >> 21;
678 reg_mask |= 1 << reg;
140f9984 679 temp_saved_regs[reg] = sp + (short) word;
c5aa993b
JM
680
681 /* Starting with OSF/1-3.2C, the system libraries are shipped
682 without local symbols, but they still contain procedure
683 descriptors without a symbol reference. GDB is currently
684 unable to find these procedure descriptors and uses
685 heuristic_proc_desc instead.
686 As some low level compiler support routines (__div*, __add*)
687 use a non-standard return address register, we have to
688 add some heuristics to determine the return address register,
689 or stepping over these routines will fail.
690 Usually the return address register is the first register
691 saved on the stack, but assembler optimization might
692 rearrange the register saves.
693 So we recognize only a few registers (t7, t9, ra) within
694 the procedure prologue as valid return address registers.
695 If we encounter a return instruction, we extract the
696 the return address register from it.
697
698 FIXME: Rewriting GDB to access the procedure descriptors,
699 e.g. via the minimal symbol table, might obviate this hack. */
700 if (pcreg == -1
701 && cur_pc < (start_pc + 80)
dc129d82
JT
702 && (reg == ALPHA_T7_REGNUM || reg == ALPHA_T9_REGNUM
703 || reg == ALPHA_RA_REGNUM))
c5aa993b
JM
704 pcreg = reg;
705 }
706 else if ((word & 0xffe0ffff) == 0x6be08001) /* ret zero,reg,1 */
707 pcreg = (word >> 16) & 0x1f;
708 else if (word == 0x47de040f) /* bis sp,sp fp */
709 has_frame_reg = 1;
710 }
711 if (pcreg == -1)
712 {
713 /* If we haven't found a valid return address register yet,
714 keep searching in the procedure prologue. */
715 while (cur_pc < (limit_pc + 80) && cur_pc < (start_pc + 80))
716 {
717 char buf[4];
718 unsigned long word;
c906108c 719
c5aa993b
JM
720 if (read_memory_nobpt (cur_pc, buf, 4))
721 break;
722 cur_pc += 4;
723 word = extract_unsigned_integer (buf, 4);
c906108c 724
c5aa993b
JM
725 if ((word & 0xfc1f0000) == 0xb41e0000 /* stq reg,n($sp) */
726 && (word & 0xffff0000) != 0xb7fe0000) /* reg != $zero */
727 {
728 int reg = (word & 0x03e00000) >> 21;
dc129d82
JT
729 if (reg == ALPHA_T7_REGNUM || reg == ALPHA_T9_REGNUM
730 || reg == ALPHA_RA_REGNUM)
c5aa993b
JM
731 {
732 pcreg = reg;
733 break;
734 }
735 }
736 else if ((word & 0xffe0ffff) == 0x6be08001) /* ret zero,reg,1 */
737 {
738 pcreg = (word >> 16) & 0x1f;
739 break;
740 }
741 }
742 }
c906108c 743
c5aa993b 744 if (has_frame_reg)
dc129d82 745 PROC_FRAME_REG (&temp_proc_desc) = ALPHA_GCC_FP_REGNUM;
c5aa993b
JM
746 else
747 PROC_FRAME_REG (&temp_proc_desc) = SP_REGNUM;
748 PROC_FRAME_OFFSET (&temp_proc_desc) = frame_size;
749 PROC_REG_MASK (&temp_proc_desc) = reg_mask;
dc129d82 750 PROC_PC_REG (&temp_proc_desc) = (pcreg == -1) ? ALPHA_RA_REGNUM : pcreg;
c5aa993b
JM
751 PROC_LOCALOFF (&temp_proc_desc) = 0; /* XXX - bogus */
752 return &temp_proc_desc;
c906108c
SS
753}
754
755/* This returns the PC of the first inst after the prologue. If we can't
756 find the prologue, then return 0. */
757
758static CORE_ADDR
fba45db2 759after_prologue (CORE_ADDR pc, alpha_extra_func_info_t proc_desc)
c906108c
SS
760{
761 struct symtab_and_line sal;
762 CORE_ADDR func_addr, func_end;
763
764 if (!proc_desc)
765 proc_desc = find_proc_desc (pc, NULL);
766
767 if (proc_desc)
768 {
36a6271d 769 if (alpha_proc_desc_is_dyn_sigtramp (proc_desc))
c906108c
SS
770 return PROC_LOW_ADDR (proc_desc); /* "prologue" is in kernel */
771
772 /* If function is frameless, then we need to do it the hard way. I
c5aa993b 773 strongly suspect that frameless always means prologueless... */
c906108c
SS
774 if (PROC_FRAME_REG (proc_desc) == SP_REGNUM
775 && PROC_FRAME_OFFSET (proc_desc) == 0)
776 return 0;
777 }
778
779 if (!find_pc_partial_function (pc, NULL, &func_addr, &func_end))
780 return 0; /* Unknown */
781
782 sal = find_pc_line (func_addr, 0);
783
784 if (sal.end < func_end)
785 return sal.end;
786
787 /* The line after the prologue is after the end of the function. In this
788 case, tell the caller to find the prologue the hard way. */
789
790 return 0;
791}
792
793/* Return non-zero if we *might* be in a function prologue. Return zero if we
794 are definitively *not* in a function prologue. */
795
796static int
fba45db2 797alpha_in_prologue (CORE_ADDR pc, alpha_extra_func_info_t proc_desc)
c906108c
SS
798{
799 CORE_ADDR after_prologue_pc;
800
801 after_prologue_pc = after_prologue (pc, proc_desc);
802
803 if (after_prologue_pc == 0
804 || pc < after_prologue_pc)
805 return 1;
806 else
807 return 0;
808}
809
810static alpha_extra_func_info_t
fba45db2 811find_proc_desc (CORE_ADDR pc, struct frame_info *next_frame)
c906108c
SS
812{
813 alpha_extra_func_info_t proc_desc;
814 struct block *b;
815 struct symbol *sym;
816 CORE_ADDR startaddr;
817
818 /* Try to get the proc_desc from the linked call dummy proc_descs
819 if the pc is in the call dummy.
820 This is hairy. In the case of nested dummy calls we have to find the
821 right proc_desc, but we might not yet know the frame for the dummy
822 as it will be contained in the proc_desc we are searching for.
823 So we have to find the proc_desc whose frame is closest to the current
824 stack pointer. */
825
826 if (PC_IN_CALL_DUMMY (pc, 0, 0))
827 {
828 struct linked_proc_info *link;
829 CORE_ADDR sp = read_next_frame_reg (next_frame, SP_REGNUM);
830 alpha_extra_func_info_t found_proc_desc = NULL;
831 long min_distance = LONG_MAX;
832
833 for (link = linked_proc_desc_table; link; link = link->next)
834 {
835 long distance = (CORE_ADDR) PROC_DUMMY_FRAME (&link->info) - sp;
836 if (distance > 0 && distance < min_distance)
837 {
838 min_distance = distance;
839 found_proc_desc = &link->info;
840 }
841 }
842 if (found_proc_desc != NULL)
843 return found_proc_desc;
844 }
845
c5aa993b 846 b = block_for_pc (pc);
c906108c
SS
847
848 find_pc_partial_function (pc, NULL, &startaddr, NULL);
849 if (b == NULL)
850 sym = NULL;
851 else
852 {
853 if (startaddr > BLOCK_START (b))
854 /* This is the "pathological" case referred to in a comment in
855 print_frame_info. It might be better to move this check into
856 symbol reading. */
857 sym = NULL;
858 else
859 sym = lookup_symbol (MIPS_EFI_SYMBOL_NAME, b, LABEL_NAMESPACE,
860 0, NULL);
861 }
862
863 /* If we never found a PDR for this function in symbol reading, then
864 examine prologues to find the information. */
865 if (sym && ((mips_extra_func_info_t) SYMBOL_VALUE (sym))->pdr.framereg == -1)
866 sym = NULL;
867
868 if (sym)
869 {
c5aa993b
JM
870 /* IF this is the topmost frame AND
871 * (this proc does not have debugging information OR
872 * the PC is in the procedure prologue)
873 * THEN create a "heuristic" proc_desc (by analyzing
874 * the actual code) to replace the "official" proc_desc.
875 */
876 proc_desc = (alpha_extra_func_info_t) SYMBOL_VALUE (sym);
877 if (next_frame == NULL)
878 {
879 if (PROC_DESC_IS_DUMMY (proc_desc) || alpha_in_prologue (pc, proc_desc))
880 {
881 alpha_extra_func_info_t found_heuristic =
882 heuristic_proc_desc (PROC_LOW_ADDR (proc_desc),
883 pc, next_frame);
884 if (found_heuristic)
885 {
886 PROC_LOCALOFF (found_heuristic) =
887 PROC_LOCALOFF (proc_desc);
888 PROC_PC_REG (found_heuristic) = PROC_PC_REG (proc_desc);
889 proc_desc = found_heuristic;
890 }
891 }
892 }
c906108c
SS
893 }
894 else
895 {
896 long offset;
897
898 /* Is linked_proc_desc_table really necessary? It only seems to be used
c5aa993b
JM
899 by procedure call dummys. However, the procedures being called ought
900 to have their own proc_descs, and even if they don't,
901 heuristic_proc_desc knows how to create them! */
c906108c
SS
902
903 register struct linked_proc_info *link;
904 for (link = linked_proc_desc_table; link; link = link->next)
c5aa993b
JM
905 if (PROC_LOW_ADDR (&link->info) <= pc
906 && PROC_HIGH_ADDR (&link->info) > pc)
907 return &link->info;
c906108c
SS
908
909 /* If PC is inside a dynamically generated sigtramp handler,
c5aa993b 910 create and push a procedure descriptor for that code: */
36a6271d 911 offset = alpha_dynamic_sigtramp_offset (pc);
c906108c
SS
912 if (offset >= 0)
913 return push_sigtramp_desc (pc - offset);
914
915 /* If heuristic_fence_post is non-zero, determine the procedure
c5aa993b
JM
916 start address by examining the instructions.
917 This allows us to find the start address of static functions which
918 have no symbolic information, as startaddr would have been set to
919 the preceding global function start address by the
920 find_pc_partial_function call above. */
c906108c
SS
921 if (startaddr == 0 || heuristic_fence_post != 0)
922 startaddr = heuristic_proc_start (pc);
923
924 proc_desc =
925 heuristic_proc_desc (startaddr, pc, next_frame);
926 }
927 return proc_desc;
928}
929
930alpha_extra_func_info_t cached_proc_desc;
931
dc129d82 932static CORE_ADDR
fba45db2 933alpha_frame_chain (struct frame_info *frame)
c906108c 934{
c5aa993b
JM
935 alpha_extra_func_info_t proc_desc;
936 CORE_ADDR saved_pc = FRAME_SAVED_PC (frame);
937
938 if (saved_pc == 0 || inside_entry_file (saved_pc))
939 return 0;
940
941 proc_desc = find_proc_desc (saved_pc, frame);
942 if (!proc_desc)
943 return 0;
944
945 cached_proc_desc = proc_desc;
946
947 /* Fetch the frame pointer for a dummy frame from the procedure
948 descriptor. */
949 if (PROC_DESC_IS_DUMMY (proc_desc))
950 return (CORE_ADDR) PROC_DUMMY_FRAME (proc_desc);
951
952 /* If no frame pointer and frame size is zero, we must be at end
953 of stack (or otherwise hosed). If we don't check frame size,
954 we loop forever if we see a zero size frame. */
955 if (PROC_FRAME_REG (proc_desc) == SP_REGNUM
956 && PROC_FRAME_OFFSET (proc_desc) == 0
957 /* The previous frame from a sigtramp frame might be frameless
958 and have frame size zero. */
959 && !frame->signal_handler_caller)
36a6271d 960 return alpha_frame_past_sigtramp_frame (frame, saved_pc);
c5aa993b
JM
961 else
962 return read_next_frame_reg (frame, PROC_FRAME_REG (proc_desc))
963 + PROC_FRAME_OFFSET (proc_desc);
c906108c
SS
964}
965
966void
140f9984
JT
967alpha_print_extra_frame_info (struct frame_info *fi)
968{
969 if (fi
970 && fi->extra_info
971 && fi->extra_info->proc_desc
972 && fi->extra_info->proc_desc->pdr.framereg < NUM_REGS)
973 printf_filtered (" frame pointer is at %s+%s\n",
974 REGISTER_NAME (fi->extra_info->proc_desc->pdr.framereg),
975 paddr_d (fi->extra_info->proc_desc->pdr.frameoffset));
976}
977
dc129d82 978static void
140f9984 979alpha_init_extra_frame_info (int fromleaf, struct frame_info *frame)
c906108c
SS
980{
981 /* Use proc_desc calculated in frame_chain */
982 alpha_extra_func_info_t proc_desc =
c5aa993b 983 frame->next ? cached_proc_desc : find_proc_desc (frame->pc, frame->next);
c906108c 984
140f9984
JT
985 frame->extra_info = (struct frame_extra_info *)
986 frame_obstack_alloc (sizeof (struct frame_extra_info));
987
c906108c 988 frame->saved_regs = NULL;
140f9984 989 frame->extra_info->localoff = 0;
dc129d82 990 frame->extra_info->pc_reg = ALPHA_RA_REGNUM;
140f9984 991 frame->extra_info->proc_desc = proc_desc == &temp_proc_desc ? 0 : proc_desc;
c906108c
SS
992 if (proc_desc)
993 {
994 /* Get the locals offset and the saved pc register from the
c5aa993b
JM
995 procedure descriptor, they are valid even if we are in the
996 middle of the prologue. */
140f9984
JT
997 frame->extra_info->localoff = PROC_LOCALOFF (proc_desc);
998 frame->extra_info->pc_reg = PROC_PC_REG (proc_desc);
c906108c
SS
999
1000 /* Fixup frame-pointer - only needed for top frame */
1001
1002 /* Fetch the frame pointer for a dummy frame from the procedure
c5aa993b
JM
1003 descriptor. */
1004 if (PROC_DESC_IS_DUMMY (proc_desc))
1005 frame->frame = (CORE_ADDR) PROC_DUMMY_FRAME (proc_desc);
c906108c
SS
1006
1007 /* This may not be quite right, if proc has a real frame register.
c5aa993b
JM
1008 Get the value of the frame relative sp, procedure might have been
1009 interrupted by a signal at it's very start. */
c906108c 1010 else if (frame->pc == PROC_LOW_ADDR (proc_desc)
36a6271d 1011 && !alpha_proc_desc_is_dyn_sigtramp (proc_desc))
c906108c
SS
1012 frame->frame = read_next_frame_reg (frame->next, SP_REGNUM);
1013 else
1014 frame->frame = read_next_frame_reg (frame->next, PROC_FRAME_REG (proc_desc))
1015 + PROC_FRAME_OFFSET (proc_desc);
1016
1017 if (proc_desc == &temp_proc_desc)
1018 {
1019 char *name;
1020
1021 /* Do not set the saved registers for a sigtramp frame,
1022 alpha_find_saved_registers will do that for us.
1023 We can't use frame->signal_handler_caller, it is not yet set. */
1024 find_pc_partial_function (frame->pc, &name,
c5aa993b 1025 (CORE_ADDR *) NULL, (CORE_ADDR *) NULL);
d7bd68ca 1026 if (!PC_IN_SIGTRAMP (frame->pc, name))
c906108c 1027 {
c5aa993b 1028 frame->saved_regs = (CORE_ADDR *)
c906108c 1029 frame_obstack_alloc (SIZEOF_FRAME_SAVED_REGS);
140f9984
JT
1030 memcpy (frame->saved_regs, temp_saved_regs,
1031 SIZEOF_FRAME_SAVED_REGS);
c906108c 1032 frame->saved_regs[PC_REGNUM]
dc129d82 1033 = frame->saved_regs[ALPHA_RA_REGNUM];
c906108c
SS
1034 }
1035 }
1036 }
1037}
1038
dc129d82 1039static CORE_ADDR
140f9984
JT
1040alpha_frame_locals_address (struct frame_info *fi)
1041{
1042 return (fi->frame - fi->extra_info->localoff);
1043}
1044
dc129d82 1045static CORE_ADDR
140f9984
JT
1046alpha_frame_args_address (struct frame_info *fi)
1047{
1048 return (fi->frame - (ALPHA_NUM_ARG_REGS * 8));
1049}
1050
c906108c
SS
1051/* ALPHA stack frames are almost impenetrable. When execution stops,
1052 we basically have to look at symbol information for the function
1053 that we stopped in, which tells us *which* register (if any) is
1054 the base of the frame pointer, and what offset from that register
1055 the frame itself is at.
1056
1057 This presents a problem when trying to examine a stack in memory
1058 (that isn't executing at the moment), using the "frame" command. We
1059 don't have a PC, nor do we have any registers except SP.
1060
1061 This routine takes two arguments, SP and PC, and tries to make the
1062 cached frames look as if these two arguments defined a frame on the
1063 cache. This allows the rest of info frame to extract the important
1064 arguments without difficulty. */
1065
1066struct frame_info *
a57f9e49 1067alpha_setup_arbitrary_frame (int argc, CORE_ADDR *argv)
c906108c
SS
1068{
1069 if (argc != 2)
1070 error ("ALPHA frame specifications require two arguments: sp and pc");
1071
1072 return create_new_frame (argv[0], argv[1]);
1073}
1074
1075/* The alpha passes the first six arguments in the registers, the rest on
1076 the stack. The register arguments are eventually transferred to the
1077 argument transfer area immediately below the stack by the called function
1078 anyway. So we `push' at least six arguments on the stack, `reload' the
1079 argument registers and then adjust the stack pointer to point past the
1080 sixth argument. This algorithm simplifies the passing of a large struct
1081 which extends from the registers to the stack.
1082 If the called function is returning a structure, the address of the
1083 structure to be returned is passed as a hidden first argument. */
1084
dc129d82 1085static CORE_ADDR
ea7c478f 1086alpha_push_arguments (int nargs, struct value **args, CORE_ADDR sp,
fba45db2 1087 int struct_return, CORE_ADDR struct_addr)
c906108c 1088{
7a292a7a 1089 int i;
c906108c
SS
1090 int accumulate_size = struct_return ? 8 : 0;
1091 int arg_regs_size = ALPHA_NUM_ARG_REGS * 8;
c5aa993b
JM
1092 struct alpha_arg
1093 {
1094 char *contents;
1095 int len;
1096 int offset;
1097 };
c906108c 1098 struct alpha_arg *alpha_args =
c5aa993b 1099 (struct alpha_arg *) alloca (nargs * sizeof (struct alpha_arg));
c906108c
SS
1100 register struct alpha_arg *m_arg;
1101 char raw_buffer[sizeof (CORE_ADDR)];
1102 int required_arg_regs;
1103
1104 for (i = 0, m_arg = alpha_args; i < nargs; i++, m_arg++)
1105 {
ea7c478f 1106 struct value *arg = args[i];
c906108c
SS
1107 struct type *arg_type = check_typedef (VALUE_TYPE (arg));
1108 /* Cast argument to long if necessary as the compiler does it too. */
1109 switch (TYPE_CODE (arg_type))
1110 {
1111 case TYPE_CODE_INT:
1112 case TYPE_CODE_BOOL:
1113 case TYPE_CODE_CHAR:
1114 case TYPE_CODE_RANGE:
1115 case TYPE_CODE_ENUM:
1116 if (TYPE_LENGTH (arg_type) < TYPE_LENGTH (builtin_type_long))
1117 {
1118 arg_type = builtin_type_long;
1119 arg = value_cast (arg_type, arg);
1120 }
1121 break;
1122 default:
1123 break;
1124 }
1125 m_arg->len = TYPE_LENGTH (arg_type);
1126 m_arg->offset = accumulate_size;
1127 accumulate_size = (accumulate_size + m_arg->len + 7) & ~7;
c5aa993b 1128 m_arg->contents = VALUE_CONTENTS (arg);
c906108c
SS
1129 }
1130
1131 /* Determine required argument register loads, loading an argument register
1132 is expensive as it uses three ptrace calls. */
1133 required_arg_regs = accumulate_size / 8;
1134 if (required_arg_regs > ALPHA_NUM_ARG_REGS)
1135 required_arg_regs = ALPHA_NUM_ARG_REGS;
1136
1137 /* Make room for the arguments on the stack. */
1138 if (accumulate_size < arg_regs_size)
c5aa993b 1139 accumulate_size = arg_regs_size;
c906108c
SS
1140 sp -= accumulate_size;
1141
1142 /* Keep sp aligned to a multiple of 16 as the compiler does it too. */
1143 sp &= ~15;
1144
1145 /* `Push' arguments on the stack. */
c5aa993b
JM
1146 for (i = nargs; m_arg--, --i >= 0;)
1147 write_memory (sp + m_arg->offset, m_arg->contents, m_arg->len);
c906108c
SS
1148 if (struct_return)
1149 {
1150 store_address (raw_buffer, sizeof (CORE_ADDR), struct_addr);
1151 write_memory (sp, raw_buffer, sizeof (CORE_ADDR));
1152 }
1153
1154 /* Load the argument registers. */
1155 for (i = 0; i < required_arg_regs; i++)
1156 {
1157 LONGEST val;
1158
1159 val = read_memory_integer (sp + i * 8, 8);
dc129d82
JT
1160 write_register (ALPHA_A0_REGNUM + i, val);
1161 write_register (ALPHA_FPA0_REGNUM + i, val);
c906108c
SS
1162 }
1163
1164 return sp + arg_regs_size;
1165}
1166
dc129d82 1167static void
fba45db2 1168alpha_push_dummy_frame (void)
c906108c
SS
1169{
1170 int ireg;
1171 struct linked_proc_info *link;
1172 alpha_extra_func_info_t proc_desc;
1173 CORE_ADDR sp = read_register (SP_REGNUM);
1174 CORE_ADDR save_address;
dc129d82 1175 char raw_buffer[ALPHA_MAX_REGISTER_RAW_SIZE];
c906108c
SS
1176 unsigned long mask;
1177
c5aa993b 1178 link = (struct linked_proc_info *) xmalloc (sizeof (struct linked_proc_info));
c906108c
SS
1179 link->next = linked_proc_desc_table;
1180 linked_proc_desc_table = link;
c5aa993b 1181
c906108c
SS
1182 proc_desc = &link->info;
1183
1184 /*
1185 * The registers we must save are all those not preserved across
1186 * procedure calls.
1187 * In addition, we must save the PC and RA.
1188 *
1189 * Dummy frame layout:
1190 * (high memory)
c5aa993b 1191 * Saved PC
c906108c
SS
1192 * Saved F30
1193 * ...
1194 * Saved F0
c5aa993b
JM
1195 * Saved R29
1196 * ...
1197 * Saved R0
1198 * Saved R26 (RA)
1199 * Parameter build area
c906108c
SS
1200 * (low memory)
1201 */
1202
1203/* MASK(i,j) == (1<<i) + (1<<(i+1)) + ... + (1<<j)). Assume i<=j<31. */
1204#define MASK(i,j) ((((LONGEST)1 << ((j)+1)) - 1) ^ (((LONGEST)1 << (i)) - 1))
1205#define GEN_REG_SAVE_MASK (MASK(0,8) | MASK(16,29))
1206#define GEN_REG_SAVE_COUNT 24
1207#define FLOAT_REG_SAVE_MASK (MASK(0,1) | MASK(10,30))
1208#define FLOAT_REG_SAVE_COUNT 23
1209 /* The special register is the PC as we have no bit for it in the save masks.
1210 alpha_frame_saved_pc knows where the pc is saved in a dummy frame. */
1211#define SPECIAL_REG_SAVE_COUNT 1
1212
c5aa993b
JM
1213 PROC_REG_MASK (proc_desc) = GEN_REG_SAVE_MASK;
1214 PROC_FREG_MASK (proc_desc) = FLOAT_REG_SAVE_MASK;
c906108c
SS
1215 /* PROC_REG_OFFSET is the offset from the dummy frame to the saved RA,
1216 but keep SP aligned to a multiple of 16. */
c5aa993b
JM
1217 PROC_REG_OFFSET (proc_desc) =
1218 -((8 * (SPECIAL_REG_SAVE_COUNT
c906108c
SS
1219 + GEN_REG_SAVE_COUNT
1220 + FLOAT_REG_SAVE_COUNT)
c5aa993b
JM
1221 + 15) & ~15);
1222 PROC_FREG_OFFSET (proc_desc) =
1223 PROC_REG_OFFSET (proc_desc) + 8 * GEN_REG_SAVE_COUNT;
c906108c
SS
1224
1225 /* Save general registers.
1226 The return address register is the first saved register, all other
1227 registers follow in ascending order.
1228 The PC is saved immediately below the SP. */
c5aa993b 1229 save_address = sp + PROC_REG_OFFSET (proc_desc);
dc129d82 1230 store_address (raw_buffer, 8, read_register (ALPHA_RA_REGNUM));
c906108c
SS
1231 write_memory (save_address, raw_buffer, 8);
1232 save_address += 8;
c5aa993b 1233 mask = PROC_REG_MASK (proc_desc) & 0xffffffffL;
c906108c
SS
1234 for (ireg = 0; mask; ireg++, mask >>= 1)
1235 if (mask & 1)
1236 {
dc129d82 1237 if (ireg == ALPHA_RA_REGNUM)
c906108c
SS
1238 continue;
1239 store_address (raw_buffer, 8, read_register (ireg));
1240 write_memory (save_address, raw_buffer, 8);
1241 save_address += 8;
1242 }
1243
1244 store_address (raw_buffer, 8, read_register (PC_REGNUM));
1245 write_memory (sp - 8, raw_buffer, 8);
1246
1247 /* Save floating point registers. */
c5aa993b
JM
1248 save_address = sp + PROC_FREG_OFFSET (proc_desc);
1249 mask = PROC_FREG_MASK (proc_desc) & 0xffffffffL;
c906108c
SS
1250 for (ireg = 0; mask; ireg++, mask >>= 1)
1251 if (mask & 1)
1252 {
1253 store_address (raw_buffer, 8, read_register (ireg + FP0_REGNUM));
1254 write_memory (save_address, raw_buffer, 8);
1255 save_address += 8;
1256 }
1257
1258 /* Set and save the frame address for the dummy.
1259 This is tricky. The only registers that are suitable for a frame save
1260 are those that are preserved across procedure calls (s0-s6). But if
1261 a read system call is interrupted and then a dummy call is made
1262 (see testsuite/gdb.t17/interrupt.exp) the dummy call hangs till the read
1263 is satisfied. Then it returns with the s0-s6 registers set to the values
1264 on entry to the read system call and our dummy frame pointer would be
1265 destroyed. So we save the dummy frame in the proc_desc and handle the
1266 retrieval of the frame pointer of a dummy specifically. The frame register
1267 is set to the virtual frame (pseudo) register, it's value will always
1268 be read as zero and will help us to catch any errors in the dummy frame
1269 retrieval code. */
c5aa993b
JM
1270 PROC_DUMMY_FRAME (proc_desc) = sp;
1271 PROC_FRAME_REG (proc_desc) = FP_REGNUM;
1272 PROC_FRAME_OFFSET (proc_desc) = 0;
1273 sp += PROC_REG_OFFSET (proc_desc);
c906108c
SS
1274 write_register (SP_REGNUM, sp);
1275
c5aa993b
JM
1276 PROC_LOW_ADDR (proc_desc) = CALL_DUMMY_ADDRESS ();
1277 PROC_HIGH_ADDR (proc_desc) = PROC_LOW_ADDR (proc_desc) + 4;
c906108c 1278
c5aa993b 1279 SET_PROC_DESC_IS_DUMMY (proc_desc);
dc129d82 1280 PROC_PC_REG (proc_desc) = ALPHA_RA_REGNUM;
c906108c
SS
1281}
1282
dc129d82 1283static void
fba45db2 1284alpha_pop_frame (void)
c906108c
SS
1285{
1286 register int regnum;
1287 struct frame_info *frame = get_current_frame ();
1288 CORE_ADDR new_sp = frame->frame;
1289
140f9984 1290 alpha_extra_func_info_t proc_desc = frame->extra_info->proc_desc;
c906108c 1291
9e0b60a8
JM
1292 /* we need proc_desc to know how to restore the registers;
1293 if it is NULL, construct (a temporary) one */
1294 if (proc_desc == NULL)
c5aa993b 1295 proc_desc = find_proc_desc (frame->pc, frame->next);
9e0b60a8
JM
1296
1297 /* Question: should we copy this proc_desc and save it in
1298 frame->proc_desc? If we do, who will free it?
1299 For now, we don't save a copy... */
1300
c5aa993b 1301 write_register (PC_REGNUM, FRAME_SAVED_PC (frame));
c906108c
SS
1302 if (frame->saved_regs == NULL)
1303 alpha_find_saved_regs (frame);
1304 if (proc_desc)
1305 {
c5aa993b
JM
1306 for (regnum = 32; --regnum >= 0;)
1307 if (PROC_REG_MASK (proc_desc) & (1 << regnum))
c906108c
SS
1308 write_register (regnum,
1309 read_memory_integer (frame->saved_regs[regnum],
1310 8));
c5aa993b
JM
1311 for (regnum = 32; --regnum >= 0;)
1312 if (PROC_FREG_MASK (proc_desc) & (1 << regnum))
c906108c 1313 write_register (regnum + FP0_REGNUM,
c5aa993b 1314 read_memory_integer (frame->saved_regs[regnum + FP0_REGNUM], 8));
c906108c
SS
1315 }
1316 write_register (SP_REGNUM, new_sp);
1317 flush_cached_frames ();
1318
c5aa993b 1319 if (proc_desc && (PROC_DESC_IS_DUMMY (proc_desc)
36a6271d 1320 || alpha_proc_desc_is_dyn_sigtramp (proc_desc)))
c906108c
SS
1321 {
1322 struct linked_proc_info *pi_ptr, *prev_ptr;
1323
1324 for (pi_ptr = linked_proc_desc_table, prev_ptr = NULL;
1325 pi_ptr != NULL;
1326 prev_ptr = pi_ptr, pi_ptr = pi_ptr->next)
1327 {
1328 if (&pi_ptr->info == proc_desc)
1329 break;
1330 }
1331
1332 if (pi_ptr == NULL)
1333 error ("Can't locate dummy extra frame info\n");
1334
1335 if (prev_ptr != NULL)
1336 prev_ptr->next = pi_ptr->next;
1337 else
1338 linked_proc_desc_table = pi_ptr->next;
1339
b8c9b27d 1340 xfree (pi_ptr);
c906108c
SS
1341 }
1342}
1343\f
1344/* To skip prologues, I use this predicate. Returns either PC itself
1345 if the code at PC does not look like a function prologue; otherwise
1346 returns an address that (if we're lucky) follows the prologue. If
1347 LENIENT, then we must skip everything which is involved in setting
1348 up the frame (it's OK to skip more, just so long as we don't skip
1349 anything which might clobber the registers which are being saved.
0fb34c3a
MS
1350 Currently we must not skip more on the alpha, but we might need the
1351 lenient stuff some day. */
c906108c 1352
f8453e34
JT
1353static CORE_ADDR
1354alpha_skip_prologue_internal (CORE_ADDR pc, int lenient)
c906108c 1355{
c5aa993b
JM
1356 unsigned long inst;
1357 int offset;
1358 CORE_ADDR post_prologue_pc;
1359 char buf[4];
c906108c
SS
1360
1361#ifdef GDB_TARGET_HAS_SHARED_LIBS
c5aa993b
JM
1362 /* Silently return the unaltered pc upon memory errors.
1363 This could happen on OSF/1 if decode_line_1 tries to skip the
1364 prologue for quickstarted shared library functions when the
1365 shared library is not yet mapped in.
1366 Reading target memory is slow over serial lines, so we perform
1367 this check only if the target has shared libraries. */
1368 if (target_read_memory (pc, buf, 4))
1369 return pc;
c906108c
SS
1370#endif
1371
c5aa993b
JM
1372 /* See if we can determine the end of the prologue via the symbol table.
1373 If so, then return either PC, or the PC after the prologue, whichever
1374 is greater. */
c906108c 1375
c5aa993b 1376 post_prologue_pc = after_prologue (pc, NULL);
c906108c 1377
c5aa993b
JM
1378 if (post_prologue_pc != 0)
1379 return max (pc, post_prologue_pc);
c906108c 1380
c5aa993b
JM
1381 /* Can't determine prologue from the symbol table, need to examine
1382 instructions. */
c906108c 1383
c5aa993b
JM
1384 /* Skip the typical prologue instructions. These are the stack adjustment
1385 instruction and the instructions that save registers on the stack
1386 or in the gcc frame. */
1387 for (offset = 0; offset < 100; offset += 4)
1388 {
1389 int status;
1390
1391 status = read_memory_nobpt (pc + offset, buf, 4);
1392 if (status)
1393 memory_error (status, pc + offset);
1394 inst = extract_unsigned_integer (buf, 4);
1395
1396 /* The alpha has no delay slots. But let's keep the lenient stuff,
1397 we might need it for something else in the future. */
1398 if (lenient && 0)
1399 continue;
1400
1401 if ((inst & 0xffff0000) == 0x27bb0000) /* ldah $gp,n($t12) */
1402 continue;
1403 if ((inst & 0xffff0000) == 0x23bd0000) /* lda $gp,n($gp) */
1404 continue;
1405 if ((inst & 0xffff0000) == 0x23de0000) /* lda $sp,n($sp) */
1406 continue;
1407 if ((inst & 0xffe01fff) == 0x43c0153e) /* subq $sp,n,$sp */
1408 continue;
1409
1410 if ((inst & 0xfc1f0000) == 0xb41e0000
1411 && (inst & 0xffff0000) != 0xb7fe0000)
1412 continue; /* stq reg,n($sp) */
1413 /* reg != $zero */
1414 if ((inst & 0xfc1f0000) == 0x9c1e0000
1415 && (inst & 0xffff0000) != 0x9ffe0000)
1416 continue; /* stt reg,n($sp) */
1417 /* reg != $zero */
1418 if (inst == 0x47de040f) /* bis sp,sp,fp */
1419 continue;
1420
1421 break;
c906108c 1422 }
c5aa993b 1423 return pc + offset;
c906108c
SS
1424}
1425
dc129d82 1426static CORE_ADDR
f8453e34
JT
1427alpha_skip_prologue (CORE_ADDR addr)
1428{
1429 return (alpha_skip_prologue_internal (addr, 0));
1430}
1431
c906108c
SS
1432#if 0
1433/* Is address PC in the prologue (loosely defined) for function at
1434 STARTADDR? */
1435
1436static int
fba45db2 1437alpha_in_lenient_prologue (CORE_ADDR startaddr, CORE_ADDR pc)
c906108c 1438{
f8453e34 1439 CORE_ADDR end_prologue = alpha_skip_prologue_internal (startaddr, 1);
c906108c
SS
1440 return pc >= startaddr && pc < end_prologue;
1441}
1442#endif
1443
1444/* The alpha needs a conversion between register and memory format if
1445 the register is a floating point register and
c5aa993b 1446 memory format is float, as the register format must be double
c906108c 1447 or
c5aa993b
JM
1448 memory format is an integer with 4 bytes or less, as the representation
1449 of integers in floating point registers is different. */
dc129d82 1450static void
fba45db2
KB
1451alpha_register_convert_to_virtual (int regnum, struct type *valtype,
1452 char *raw_buffer, char *virtual_buffer)
c906108c
SS
1453{
1454 if (TYPE_LENGTH (valtype) >= REGISTER_RAW_SIZE (regnum))
1455 {
1456 memcpy (virtual_buffer, raw_buffer, REGISTER_VIRTUAL_SIZE (regnum));
1457 return;
1458 }
1459
1460 if (TYPE_CODE (valtype) == TYPE_CODE_FLT)
1461 {
1462 double d = extract_floating (raw_buffer, REGISTER_RAW_SIZE (regnum));
1463 store_floating (virtual_buffer, TYPE_LENGTH (valtype), d);
1464 }
1465 else if (TYPE_CODE (valtype) == TYPE_CODE_INT && TYPE_LENGTH (valtype) <= 4)
1466 {
1467 ULONGEST l;
1468 l = extract_unsigned_integer (raw_buffer, REGISTER_RAW_SIZE (regnum));
1469 l = ((l >> 32) & 0xc0000000) | ((l >> 29) & 0x3fffffff);
1470 store_unsigned_integer (virtual_buffer, TYPE_LENGTH (valtype), l);
1471 }
1472 else
1473 error ("Cannot retrieve value from floating point register");
1474}
1475
dc129d82 1476static void
fba45db2
KB
1477alpha_register_convert_to_raw (struct type *valtype, int regnum,
1478 char *virtual_buffer, char *raw_buffer)
c906108c
SS
1479{
1480 if (TYPE_LENGTH (valtype) >= REGISTER_RAW_SIZE (regnum))
1481 {
1482 memcpy (raw_buffer, virtual_buffer, REGISTER_RAW_SIZE (regnum));
1483 return;
1484 }
1485
1486 if (TYPE_CODE (valtype) == TYPE_CODE_FLT)
1487 {
1488 double d = extract_floating (virtual_buffer, TYPE_LENGTH (valtype));
1489 store_floating (raw_buffer, REGISTER_RAW_SIZE (regnum), d);
1490 }
1491 else if (TYPE_CODE (valtype) == TYPE_CODE_INT && TYPE_LENGTH (valtype) <= 4)
1492 {
1493 ULONGEST l;
1494 if (TYPE_UNSIGNED (valtype))
1495 l = extract_unsigned_integer (virtual_buffer, TYPE_LENGTH (valtype));
1496 else
1497 l = extract_signed_integer (virtual_buffer, TYPE_LENGTH (valtype));
1498 l = ((l & 0xc0000000) << 32) | ((l & 0x3fffffff) << 29);
1499 store_unsigned_integer (raw_buffer, REGISTER_RAW_SIZE (regnum), l);
1500 }
1501 else
1502 error ("Cannot store value in floating point register");
1503}
1504
1505/* Given a return value in `regbuf' with a type `valtype',
1506 extract and copy its value into `valbuf'. */
1507
dc129d82 1508static void
732a6b2d
KB
1509alpha_extract_return_value (struct type *valtype,
1510 char regbuf[REGISTER_BYTES], char *valbuf)
c906108c
SS
1511{
1512 if (TYPE_CODE (valtype) == TYPE_CODE_FLT)
1513 alpha_register_convert_to_virtual (FP0_REGNUM, valtype,
1514 regbuf + REGISTER_BYTE (FP0_REGNUM),
1515 valbuf);
1516 else
dc129d82
JT
1517 memcpy (valbuf, regbuf + REGISTER_BYTE (ALPHA_V0_REGNUM),
1518 TYPE_LENGTH (valtype));
c906108c
SS
1519}
1520
1521/* Given a return value in `regbuf' with a type `valtype',
1522 write its value into the appropriate register. */
1523
dc129d82 1524static void
fba45db2 1525alpha_store_return_value (struct type *valtype, char *valbuf)
c906108c 1526{
dc129d82
JT
1527 char raw_buffer[ALPHA_MAX_REGISTER_RAW_SIZE];
1528 int regnum = ALPHA_V0_REGNUM;
c906108c 1529 int length = TYPE_LENGTH (valtype);
c5aa993b 1530
c906108c
SS
1531 if (TYPE_CODE (valtype) == TYPE_CODE_FLT)
1532 {
1533 regnum = FP0_REGNUM;
1534 length = REGISTER_RAW_SIZE (regnum);
1535 alpha_register_convert_to_raw (valtype, regnum, valbuf, raw_buffer);
1536 }
1537 else
1538 memcpy (raw_buffer, valbuf, length);
1539
1540 write_register_bytes (REGISTER_BYTE (regnum), raw_buffer, length);
1541}
1542
1543/* Just like reinit_frame_cache, but with the right arguments to be
1544 callable as an sfunc. */
1545
1546static void
fba45db2 1547reinit_frame_cache_sfunc (char *args, int from_tty, struct cmd_list_element *c)
c906108c
SS
1548{
1549 reinit_frame_cache ();
1550}
1551
1552/* This is the definition of CALL_DUMMY_ADDRESS. It's a heuristic that is used
1553 to find a convenient place in the text segment to stick a breakpoint to
1554 detect the completion of a target function call (ala call_function_by_hand).
1555 */
1556
1557CORE_ADDR
fba45db2 1558alpha_call_dummy_address (void)
c906108c
SS
1559{
1560 CORE_ADDR entry;
1561 struct minimal_symbol *sym;
1562
1563 entry = entry_point_address ();
1564
1565 if (entry != 0)
1566 return entry;
1567
1568 sym = lookup_minimal_symbol ("_Prelude", NULL, symfile_objfile);
1569
1570 if (!sym || MSYMBOL_TYPE (sym) != mst_text)
1571 return 0;
1572 else
1573 return SYMBOL_VALUE_ADDRESS (sym) + 4;
ec32e4be
JT
1574}
1575
dc129d82 1576static void
0d056799
JT
1577alpha_fix_call_dummy (char *dummy, CORE_ADDR pc, CORE_ADDR fun, int nargs,
1578 struct value **args, struct type *type, int gcc_p)
1579{
1580 CORE_ADDR bp_address = CALL_DUMMY_ADDRESS ();
1581
1582 if (bp_address == 0)
1583 error ("no place to put call");
dc129d82
JT
1584 write_register (ALPHA_RA_REGNUM, bp_address);
1585 write_register (ALPHA_T12_REGNUM, fun);
0d056799
JT
1586}
1587
ee1f65f0
JT
1588/* On the Alpha, the call dummy code is nevery copied to user space
1589 (see alpha_fix_call_dummy() above). The contents of this do not
1590 matter. */
1591LONGEST alpha_call_dummy_words[] = { 0 };
1592
dc129d82 1593static int
d734c450
JT
1594alpha_use_struct_convention (int gcc_p, struct type *type)
1595{
1596 /* Structures are returned by ref in extra arg0. */
1597 return 1;
1598}
1599
dc129d82 1600static void
0d056799
JT
1601alpha_store_struct_return (CORE_ADDR addr, CORE_ADDR sp)
1602{
1603 /* Store the address of the place in which to copy the structure the
1604 subroutine will return. Handled by alpha_push_arguments. */
1605}
1606
dc129d82 1607static CORE_ADDR
0d056799
JT
1608alpha_extract_struct_value_address (char *regbuf)
1609{
dc129d82
JT
1610 return (extract_address (regbuf + REGISTER_BYTE (ALPHA_V0_REGNUM),
1611 REGISTER_RAW_SIZE (ALPHA_V0_REGNUM)));
0d056799
JT
1612}
1613
ec32e4be
JT
1614/* alpha_software_single_step() is called just before we want to resume
1615 the inferior, if we want to single-step it but there is no hardware
1616 or kernel single-step support (NetBSD on Alpha, for example). We find
1617 the target of the coming instruction and breakpoint it.
1618
1619 single_step is also called just after the inferior stops. If we had
1620 set up a simulated single-step, we undo our damage. */
1621
1622static CORE_ADDR
1623alpha_next_pc (CORE_ADDR pc)
1624{
1625 unsigned int insn;
1626 unsigned int op;
1627 int offset;
1628 LONGEST rav;
1629
1630 insn = read_memory_unsigned_integer (pc, sizeof (insn));
1631
1632 /* Opcode is top 6 bits. */
1633 op = (insn >> 26) & 0x3f;
1634
1635 if (op == 0x1a)
1636 {
1637 /* Jump format: target PC is:
1638 RB & ~3 */
1639 return (read_register ((insn >> 16) & 0x1f) & ~3);
1640 }
1641
1642 if ((op & 0x30) == 0x30)
1643 {
1644 /* Branch format: target PC is:
1645 (new PC) + (4 * sext(displacement)) */
1646 if (op == 0x30 || /* BR */
1647 op == 0x34) /* BSR */
1648 {
1649 branch_taken:
1650 offset = (insn & 0x001fffff);
1651 if (offset & 0x00100000)
1652 offset |= 0xffe00000;
1653 offset *= 4;
1654 return (pc + 4 + offset);
1655 }
1656
1657 /* Need to determine if branch is taken; read RA. */
1658 rav = (LONGEST) read_register ((insn >> 21) & 0x1f);
1659 switch (op)
1660 {
1661 case 0x38: /* BLBC */
1662 if ((rav & 1) == 0)
1663 goto branch_taken;
1664 break;
1665 case 0x3c: /* BLBS */
1666 if (rav & 1)
1667 goto branch_taken;
1668 break;
1669 case 0x39: /* BEQ */
1670 if (rav == 0)
1671 goto branch_taken;
1672 break;
1673 case 0x3d: /* BNE */
1674 if (rav != 0)
1675 goto branch_taken;
1676 break;
1677 case 0x3a: /* BLT */
1678 if (rav < 0)
1679 goto branch_taken;
1680 break;
1681 case 0x3b: /* BLE */
1682 if (rav <= 0)
1683 goto branch_taken;
1684 break;
1685 case 0x3f: /* BGT */
1686 if (rav > 0)
1687 goto branch_taken;
1688 break;
1689 case 0x3e: /* BGE */
1690 if (rav >= 0)
1691 goto branch_taken;
1692 break;
1693 }
1694 }
1695
1696 /* Not a branch or branch not taken; target PC is:
1697 pc + 4 */
1698 return (pc + 4);
1699}
1700
1701void
1702alpha_software_single_step (enum target_signal sig, int insert_breakpoints_p)
1703{
1704 static CORE_ADDR next_pc;
1705 typedef char binsn_quantum[BREAKPOINT_MAX];
1706 static binsn_quantum break_mem;
1707 CORE_ADDR pc;
1708
1709 if (insert_breakpoints_p)
1710 {
1711 pc = read_pc ();
1712 next_pc = alpha_next_pc (pc);
1713
1714 target_insert_breakpoint (next_pc, break_mem);
1715 }
1716 else
1717 {
1718 target_remove_breakpoint (next_pc, break_mem);
1719 write_pc (next_pc);
1720 }
c906108c
SS
1721}
1722
dc129d82
JT
1723\f
1724/* This table matches the indices assigned to enum alpha_abi. Keep
1725 them in sync. */
1726static const char * const alpha_abi_names[] =
1727{
1728 "<unknown>",
1729 "OSF/1",
1730 "GNU/Linux",
1731 "FreeBSD",
1732 "NetBSD",
1733 NULL
1734};
1735
1736static void
1737process_note_abi_tag_sections (bfd *abfd, asection *sect, void *obj)
1738{
1739 enum alpha_abi *os_ident_ptr = obj;
1740 const char *name;
1741 unsigned int sectsize;
1742
1743 name = bfd_get_section_name (abfd, sect);
1744 sectsize = bfd_section_size (abfd, sect);
1745
1746 if (strcmp (name, ".note.ABI-tag") == 0 && sectsize > 0)
1747 {
1748 unsigned int name_length, data_length, note_type;
1749 char *note;
1750
1751 /* If the section is larger than this, it's probably not what we are
1752 looking for. */
1753 if (sectsize > 128)
1754 sectsize = 128;
1755
1756 note = alloca (sectsize);
1757
1758 bfd_get_section_contents (abfd, sect, note,
1759 (file_ptr) 0, (bfd_size_type) sectsize);
1760
1761 name_length = bfd_h_get_32 (abfd, note);
1762 data_length = bfd_h_get_32 (abfd, note + 4);
1763 note_type = bfd_h_get_32 (abfd, note + 8);
1764
1765 if (name_length == 4 && data_length == 16 && note_type == 1
1766 && strcmp (note + 12, "GNU") == 0)
1767 {
1768 int os_number = bfd_h_get_32 (abfd, note + 16);
1769
1770 /* The case numbers are from abi-tags in glibc. */
1771 switch (os_number)
1772 {
1773 case 0 :
1774 *os_ident_ptr = ALPHA_ABI_LINUX;
1775 break;
1776
1777 case 1 :
1778 internal_error
1779 (__FILE__, __LINE__,
1780 "process_note_abi_sections: Hurd objects not supported");
1781 break;
1782
1783 case 2 :
1784 internal_error
1785 (__FILE__, __LINE__,
1786 "process_note_abi_sections: Solaris objects not supported");
1787 break;
1788
1789 default :
1790 internal_error
1791 (__FILE__, __LINE__,
1792 "process_note_abi_sections: unknown OS number %d",
1793 os_number);
1794 break;
1795 }
1796 }
1797 }
1798 /* NetBSD uses a similar trick. */
1799 else if (strcmp (name, ".note.netbsd.ident") == 0 && sectsize > 0)
1800 {
1801 unsigned int name_length, desc_length, note_type;
1802 char *note;
1803
1804 /* If the section is larger than this, it's probably not what we are
1805 looking for. */
1806 if (sectsize > 128)
1807 sectsize = 128;
1808
1809 note = alloca (sectsize);
1810
1811 bfd_get_section_contents (abfd, sect, note,
1812 (file_ptr) 0, (bfd_size_type) sectsize);
1813
1814 name_length = bfd_h_get_32 (abfd, note);
1815 desc_length = bfd_h_get_32 (abfd, note + 4);
1816 note_type = bfd_h_get_32 (abfd, note + 8);
1817
1818 if (name_length == 7 && desc_length == 4 && note_type == 1
1819 && strcmp (note + 12, "NetBSD") == 0)
1820 /* XXX Should we check the version here?
1821 Probably not necessary yet. */
1822 *os_ident_ptr = ALPHA_ABI_NETBSD;
1823 }
1824}
1825
1826static int
1827get_elfosabi (bfd *abfd)
1828{
1829 int elfosabi;
1830 enum alpha_abi alpha_abi = ALPHA_ABI_UNKNOWN;
1831
1832 elfosabi = elf_elfheader (abfd)->e_ident[EI_OSABI];
1833
1834 /* When elfosabi is 0 (ELFOSABI_NONE), this is supposed to indicate
1835 what we're on a SYSV system. However, GNU/Linux uses a note section
1836 to record OS/ABI info, but leaves e_ident[EI_OSABI] zero. So we
1837 have to check the note sections too. */
1838 if (elfosabi == 0)
1839 {
1840 bfd_map_over_sections (abfd,
1841 process_note_abi_tag_sections,
1842 &alpha_abi);
1843 }
1844
1845 if (alpha_abi != ALPHA_ABI_UNKNOWN)
1846 return alpha_abi;
1847
1848 switch (elfosabi)
1849 {
1850 case ELFOSABI_NONE:
1851 /* Leave it as unknown. */
1852 break;
1853
1854 case ELFOSABI_NETBSD:
1855 return ALPHA_ABI_NETBSD;
1856
1857 case ELFOSABI_FREEBSD:
1858 return ALPHA_ABI_FREEBSD;
1859
1860 case ELFOSABI_LINUX:
1861 return ALPHA_ABI_LINUX;
1862 }
1863
1864 return ALPHA_ABI_UNKNOWN;
1865}
1866
44dffaac
JT
1867struct alpha_abi_handler
1868{
1869 struct alpha_abi_handler *next;
1870 enum alpha_abi abi;
1871 void (*init_abi)(struct gdbarch_info, struct gdbarch *);
1872};
1873
1874struct alpha_abi_handler *alpha_abi_handler_list = NULL;
1875
1876void
1877alpha_gdbarch_register_os_abi (enum alpha_abi abi,
1878 void (*init_abi)(struct gdbarch_info,
1879 struct gdbarch *))
1880{
1881 struct alpha_abi_handler **handler_p;
1882
1883 for (handler_p = &alpha_abi_handler_list; *handler_p != NULL;
1884 handler_p = &(*handler_p)->next)
1885 {
1886 if ((*handler_p)->abi == abi)
1887 {
1888 internal_error
1889 (__FILE__, __LINE__,
1890 "alpha_gdbarch_register_os_abi: A handler for this ABI variant "
1891 "(%d) has already been registered", (int) abi);
1892 /* If user wants to continue, override previous definition. */
1893 (*handler_p)->init_abi = init_abi;
1894 return;
1895 }
1896 }
1897
1898 (*handler_p)
1899 = (struct alpha_abi_handler *) xmalloc (sizeof (struct alpha_abi_handler));
1900 (*handler_p)->next = NULL;
1901 (*handler_p)->abi = abi;
1902 (*handler_p)->init_abi = init_abi;
1903}
1904
dc129d82
JT
1905/* Initialize the current architecture based on INFO. If possible, re-use an
1906 architecture from ARCHES, which is a list of architectures already created
1907 during this debugging session.
1908
1909 Called e.g. at program startup, when reading a core file, and when reading
1910 a binary file. */
1911
1912static struct gdbarch *
1913alpha_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
1914{
1915 struct gdbarch_tdep *tdep;
1916 struct gdbarch *gdbarch;
1917 enum alpha_abi alpha_abi = ALPHA_ABI_UNKNOWN;
44dffaac 1918 struct alpha_abi_handler *abi_handler;
dc129d82
JT
1919
1920 /* Try to determine the ABI of the object we are loading. */
1921
1922 if (info.abfd != NULL)
1923 {
1924 switch (bfd_get_flavour (info.abfd))
1925 {
1926 case bfd_target_elf_flavour:
1927 alpha_abi = get_elfosabi (info.abfd);
1928 break;
1929
1930 case bfd_target_ecoff_flavour:
1931 /* Assume it's OSF/1. */
1932 alpha_abi = ALPHA_ABI_OSF1;
1933 break;
1934
1935 default:
1936 /* Not sure what to do here, leave the ABI as unknown. */
1937 break;
1938 }
1939 }
1940
1941 /* Find a candidate among extant architectures. */
1942 for (arches = gdbarch_list_lookup_by_info (arches, &info);
1943 arches != NULL;
1944 arches = gdbarch_list_lookup_by_info (arches->next, &info))
1945 {
1946 /* Make sure the ABI selection matches. */
1947 tdep = gdbarch_tdep (arches->gdbarch);
1948 if (tdep && tdep->alpha_abi == alpha_abi)
1949 return arches->gdbarch;
1950 }
1951
1952 tdep = xmalloc (sizeof (struct gdbarch_tdep));
1953 gdbarch = gdbarch_alloc (&info, tdep);
1954
1955 tdep->alpha_abi = alpha_abi;
1956 if (alpha_abi < ALPHA_ABI_INVALID)
1957 tdep->abi_name = alpha_abi_names[alpha_abi];
1958 else
1959 {
1960 internal_error (__FILE__, __LINE__, "Invalid setting of alpha_abi %d",
1961 (int) alpha_abi);
1962 tdep->abi_name = "<invalid>";
1963 }
1964
d9b023cc
JT
1965 /* Lowest text address. This is used by heuristic_proc_start() to
1966 decide when to stop looking. */
1967 tdep->vm_min_address = (CORE_ADDR) 0x120000000;
1968
36a6271d
JT
1969 tdep->dynamic_sigtramp_offset = NULL;
1970 tdep->skip_sigtramp_frame = NULL;
1971
dc129d82
JT
1972 /* Type sizes */
1973 set_gdbarch_short_bit (gdbarch, 16);
1974 set_gdbarch_int_bit (gdbarch, 32);
1975 set_gdbarch_long_bit (gdbarch, 64);
1976 set_gdbarch_long_long_bit (gdbarch, 64);
1977 set_gdbarch_float_bit (gdbarch, 32);
1978 set_gdbarch_double_bit (gdbarch, 64);
1979 set_gdbarch_long_double_bit (gdbarch, 64);
1980 set_gdbarch_ptr_bit (gdbarch, 64);
1981
1982 /* Register info */
1983 set_gdbarch_num_regs (gdbarch, ALPHA_NUM_REGS);
1984 set_gdbarch_sp_regnum (gdbarch, ALPHA_SP_REGNUM);
1985 set_gdbarch_fp_regnum (gdbarch, ALPHA_FP_REGNUM);
1986 set_gdbarch_pc_regnum (gdbarch, ALPHA_PC_REGNUM);
1987 set_gdbarch_fp0_regnum (gdbarch, ALPHA_FP0_REGNUM);
1988
1989 set_gdbarch_register_name (gdbarch, alpha_register_name);
1990 set_gdbarch_register_size (gdbarch, ALPHA_REGISTER_SIZE);
1991 set_gdbarch_register_bytes (gdbarch, ALPHA_REGISTER_BYTES);
1992 set_gdbarch_register_byte (gdbarch, alpha_register_byte);
1993 set_gdbarch_register_raw_size (gdbarch, alpha_register_raw_size);
1994 set_gdbarch_max_register_raw_size (gdbarch, ALPHA_MAX_REGISTER_RAW_SIZE);
1995 set_gdbarch_register_virtual_size (gdbarch, alpha_register_virtual_size);
1996 set_gdbarch_max_register_virtual_size (gdbarch,
1997 ALPHA_MAX_REGISTER_VIRTUAL_SIZE);
1998 set_gdbarch_register_virtual_type (gdbarch, alpha_register_virtual_type);
1999
2000 set_gdbarch_cannot_fetch_register (gdbarch, alpha_cannot_fetch_register);
2001 set_gdbarch_cannot_store_register (gdbarch, alpha_cannot_store_register);
2002
2003 set_gdbarch_register_convertible (gdbarch, alpha_register_convertible);
2004 set_gdbarch_register_convert_to_virtual (gdbarch,
2005 alpha_register_convert_to_virtual);
2006 set_gdbarch_register_convert_to_raw (gdbarch, alpha_register_convert_to_raw);
2007
2008 set_gdbarch_skip_prologue (gdbarch, alpha_skip_prologue);
2009
2010 set_gdbarch_frame_num_args (gdbarch, frame_num_args_unknown);
2011 set_gdbarch_frameless_function_invocation (gdbarch,
2012 generic_frameless_function_invocation_not);
2013
2014 set_gdbarch_saved_pc_after_call (gdbarch, alpha_saved_pc_after_call);
2015
2016 set_gdbarch_frame_chain (gdbarch, alpha_frame_chain);
2017 set_gdbarch_frame_chain_valid (gdbarch, func_frame_chain_valid);
2018 set_gdbarch_frame_saved_pc (gdbarch, alpha_frame_saved_pc);
2019
2020 set_gdbarch_frame_init_saved_regs (gdbarch, alpha_frame_init_saved_regs);
2021 set_gdbarch_get_saved_register (gdbarch, alpha_get_saved_register);
2022
2023 set_gdbarch_use_struct_convention (gdbarch, alpha_use_struct_convention);
2024 set_gdbarch_extract_return_value (gdbarch, alpha_extract_return_value);
2025
2026 set_gdbarch_store_struct_return (gdbarch, alpha_store_struct_return);
2027 set_gdbarch_store_return_value (gdbarch, alpha_store_return_value);
2028 set_gdbarch_extract_struct_value_address (gdbarch,
2029 alpha_extract_struct_value_address);
2030
2031 /* Settings for calling functions in the inferior. */
2032 set_gdbarch_use_generic_dummy_frames (gdbarch, 0);
2033 set_gdbarch_call_dummy_length (gdbarch, 0);
2034 set_gdbarch_push_arguments (gdbarch, alpha_push_arguments);
2035 set_gdbarch_pop_frame (gdbarch, alpha_pop_frame);
2036
2037 /* On the Alpha, the call dummy code is never copied to user space,
2038 stopping the user call is achieved via a bp_call_dummy breakpoint.
2039 But we need a fake CALL_DUMMY definition to enable the proper
2040 call_function_by_hand and to avoid zero length array warnings. */
2041 set_gdbarch_call_dummy_p (gdbarch, 1);
2042 set_gdbarch_call_dummy_words (gdbarch, alpha_call_dummy_words);
2043 set_gdbarch_sizeof_call_dummy_words (gdbarch, 0);
2044 set_gdbarch_frame_args_address (gdbarch, alpha_frame_args_address);
2045 set_gdbarch_frame_locals_address (gdbarch, alpha_frame_locals_address);
2046 set_gdbarch_init_extra_frame_info (gdbarch, alpha_init_extra_frame_info);
2047
2048 /* Alpha OSF/1 inhibits execution of code on the stack. But there is
2049 no need for a dummy on the Alpha. PUSH_ARGUMENTS takes care of all
2050 argument handling and bp_call_dummy takes care of stopping the dummy. */
2051 set_gdbarch_call_dummy_location (gdbarch, AT_ENTRY_POINT);
2052 set_gdbarch_call_dummy_address (gdbarch, alpha_call_dummy_address);
2053 set_gdbarch_call_dummy_breakpoint_offset_p (gdbarch, 1);
2054 set_gdbarch_call_dummy_breakpoint_offset (gdbarch, 0);
2055 set_gdbarch_call_dummy_start_offset (gdbarch, 0);
2056 set_gdbarch_pc_in_call_dummy (gdbarch, pc_in_call_dummy_at_entry_point);
2057 set_gdbarch_call_dummy_stack_adjust_p (gdbarch, 0);
2058 set_gdbarch_push_dummy_frame (gdbarch, alpha_push_dummy_frame);
2059 set_gdbarch_fix_call_dummy (gdbarch, alpha_fix_call_dummy);
2060 set_gdbarch_init_frame_pc (gdbarch, init_frame_pc_noop);
2061 set_gdbarch_init_frame_pc_first (gdbarch, alpha_init_frame_pc_first);
2062
2063 set_gdbarch_inner_than (gdbarch, core_addr_lessthan);
36a6271d 2064 set_gdbarch_skip_trampoline_code (gdbarch, find_solib_trampoline_target);
dc129d82 2065
65585be4
JT
2066 /* Floats are always passed as doubles. */
2067 set_gdbarch_coerce_float_to_double (gdbarch,
2068 standard_coerce_float_to_double);
2069
dc129d82
JT
2070 set_gdbarch_decr_pc_after_break (gdbarch, 4);
2071 set_gdbarch_frame_args_skip (gdbarch, 0);
2072
44dffaac
JT
2073 /* Hook in ABI-specific overrides, if they have been registered. */
2074 if (alpha_abi == ALPHA_ABI_UNKNOWN)
2075 {
2076 /* Don't complain about not knowing the ABI variant if we don't
2077 have an inferior. */
2078 if (info.abfd)
2079 fprintf_filtered
2080 (gdb_stderr, "GDB doesn't recognize the ABI of the inferior. "
2081 "Attempting to continue with the default Alpha settings");
2082 }
2083 else
2084 {
2085 for (abi_handler = alpha_abi_handler_list; abi_handler != NULL;
2086 abi_handler = abi_handler->next)
2087 if (abi_handler->abi == alpha_abi)
2088 break;
2089
2090 if (abi_handler)
2091 abi_handler->init_abi (info, gdbarch);
2092 else
2093 {
2094 /* We assume that if GDB_MULTI_ARCH is less than
2095 GDB_MULTI_ARCH_TM that an ABI variant can be supported by
2096 overriding definitions in this file. */
2097 if (GDB_MULTI_ARCH > GDB_MULTI_ARCH_PARTIAL)
2098 fprintf_filtered
2099 (gdb_stderr,
2100 "A handler for the ABI variant \"%s\" is not built into this "
2101 "configuration of GDB. "
2102 "Attempting to continue with the default Alpha settings",
2103 alpha_abi_names[alpha_abi]);
2104 }
2105 }
2106
dc129d82
JT
2107 return gdbarch;
2108}
2109
2110static void
2111alpha_dump_tdep (struct gdbarch *current_gdbarch, struct ui_file *file)
2112{
2113 struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
2114
2115 if (tdep == NULL)
2116 return;
2117
2118 if (tdep->abi_name != NULL)
2119 fprintf_unfiltered (file, "alpha_dump_tdep: ABI = %s\n", tdep->abi_name);
2120 else
2121 internal_error (__FILE__, __LINE__,
2122 "alpha_dump_tdep: illegal setting of tdep->alpha_abi (%d)",
2123 (int) tdep->alpha_abi);
d9b023cc
JT
2124
2125 fprintf_unfiltered (file,
2126 "alpha_dump_tdep: vm_min_address = 0x%lx\n",
2127 (long) tdep->vm_min_address);
dc129d82
JT
2128}
2129
c906108c 2130void
fba45db2 2131_initialize_alpha_tdep (void)
c906108c
SS
2132{
2133 struct cmd_list_element *c;
2134
dc129d82
JT
2135 gdbarch_register (bfd_arch_alpha, alpha_gdbarch_init, alpha_dump_tdep);
2136
c906108c
SS
2137 tm_print_insn = print_insn_alpha;
2138
2139 /* Let the user set the fence post for heuristic_proc_start. */
2140
2141 /* We really would like to have both "0" and "unlimited" work, but
2142 command.c doesn't deal with that. So make it a var_zinteger
2143 because the user can always use "999999" or some such for unlimited. */
2144 c = add_set_cmd ("heuristic-fence-post", class_support, var_zinteger,
2145 (char *) &heuristic_fence_post,
2146 "\
2147Set the distance searched for the start of a function.\n\
2148If you are debugging a stripped executable, GDB needs to search through the\n\
2149program for the start of a function. This command sets the distance of the\n\
2150search. The only need to set it is when debugging a stripped executable.",
2151 &setlist);
2152 /* We need to throw away the frame cache when we set this, since it
2153 might change our ability to get backtraces. */
9f60d481 2154 set_cmd_sfunc (c, reinit_frame_cache_sfunc);
c906108c
SS
2155 add_show_from_set (c, &showlist);
2156}
This page took 0.236748 seconds and 4 git commands to generate.