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