Add FR450 support.
[external/binutils.git] / gdb / frv-tdep.c
1 /* Target-dependent code for the Fujitsu FR-V, for GDB, the GNU Debugger.
2    Copyright 2002, 2003, 2004 Free Software Foundation, Inc.
3
4    This file is part of GDB.
5
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 2 of the License, or
9    (at your option) any later version.
10
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with this program; if not, write to the Free Software
18    Foundation, Inc., 59 Temple Place - Suite 330,
19    Boston, MA 02111-1307, USA.  */
20
21 #include "defs.h"
22 #include "gdb_string.h"
23 #include "inferior.h"
24 #include "gdbcore.h"
25 #include "arch-utils.h"
26 #include "regcache.h"
27 #include "frame.h"
28 #include "frame-unwind.h"
29 #include "frame-base.h"
30 #include "trad-frame.h"
31 #include "dis-asm.h"
32 #include "gdb_assert.h"
33 #include "sim-regno.h"
34 #include "gdb/sim-frv.h"
35 #include "opcodes/frv-desc.h"   /* for the H_SPR_... enums */
36 #include "symtab.h"
37 #include "elf-bfd.h"
38 #include "elf/frv.h"
39 #include "osabi.h"
40 #include "frv-tdep.h"
41
42 extern void _initialize_frv_tdep (void);
43
44 static gdbarch_init_ftype frv_gdbarch_init;
45
46 static gdbarch_register_name_ftype frv_register_name;
47 static gdbarch_breakpoint_from_pc_ftype frv_breakpoint_from_pc;
48 static gdbarch_adjust_breakpoint_address_ftype frv_gdbarch_adjust_breakpoint_address;
49 static gdbarch_skip_prologue_ftype frv_skip_prologue;
50
51 static LONGEST frv_call_dummy_words[] =
52 {0};
53
54
55 struct frv_unwind_cache         /* was struct frame_extra_info */
56   {
57     /* The previous frame's inner-most stack address.  Used as this
58        frame ID's stack_addr.  */
59     CORE_ADDR prev_sp;
60
61     /* The frame's base, optionally used by the high-level debug info.  */
62     CORE_ADDR base;
63
64     /* Table indicating the location of each and every register.  */
65     struct trad_frame_saved_reg *saved_regs;
66   };
67
68
69 /* A structure describing a particular variant of the FRV.
70    We allocate and initialize one of these structures when we create
71    the gdbarch object for a variant.
72
73    At the moment, all the FR variants we support differ only in which
74    registers are present; the portable code of GDB knows that
75    registers whose names are the empty string don't exist, so the
76    `register_names' array captures all the per-variant information we
77    need.
78
79    in the future, if we need to have per-variant maps for raw size,
80    virtual type, etc., we should replace register_names with an array
81    of structures, each of which gives all the necessary info for one
82    register.  Don't stick parallel arrays in here --- that's so
83    Fortran.  */
84 struct gdbarch_tdep
85 {
86   /* Which ABI is in use?  */
87   enum frv_abi frv_abi;
88
89   /* How many general-purpose registers does this variant have?  */
90   int num_gprs;
91
92   /* How many floating-point registers does this variant have?  */
93   int num_fprs;
94
95   /* How many hardware watchpoints can it support?  */
96   int num_hw_watchpoints;
97
98   /* How many hardware breakpoints can it support?  */
99   int num_hw_breakpoints;
100
101   /* Register names.  */
102   char **register_names;
103 };
104
105 #define CURRENT_VARIANT (gdbarch_tdep (current_gdbarch))
106
107 /* Return the FR-V ABI associated with GDBARCH.  */
108 enum frv_abi
109 frv_abi (struct gdbarch *gdbarch)
110 {
111   return gdbarch_tdep (gdbarch)->frv_abi;
112 }
113
114 /* Fetch the interpreter and executable loadmap addresses (for shared
115    library support) for the FDPIC ABI.  Return 0 if successful, -1 if
116    not.  (E.g, -1 will be returned if the ABI isn't the FDPIC ABI.)  */
117 int
118 frv_fdpic_loadmap_addresses (struct gdbarch *gdbarch, CORE_ADDR *interp_addr,
119                              CORE_ADDR *exec_addr)
120 {
121   if (frv_abi (gdbarch) != FRV_ABI_FDPIC)
122     return -1;
123   else
124     {
125       if (interp_addr != NULL)
126         {
127           ULONGEST val;
128           regcache_cooked_read_unsigned (current_regcache,
129                                          fdpic_loadmap_interp_regnum, &val);
130           *interp_addr = val;
131         }
132       if (exec_addr != NULL)
133         {
134           ULONGEST val;
135           regcache_cooked_read_unsigned (current_regcache,
136                                          fdpic_loadmap_exec_regnum, &val);
137           *exec_addr = val;
138         }
139       return 0;
140     }
141 }
142
143 /* Allocate a new variant structure, and set up default values for all
144    the fields.  */
145 static struct gdbarch_tdep *
146 new_variant (void)
147 {
148   struct gdbarch_tdep *var;
149   int r;
150   char buf[20];
151
152   var = xmalloc (sizeof (*var));
153   memset (var, 0, sizeof (*var));
154   
155   var->frv_abi = FRV_ABI_EABI;
156   var->num_gprs = 64;
157   var->num_fprs = 64;
158   var->num_hw_watchpoints = 0;
159   var->num_hw_breakpoints = 0;
160
161   /* By default, don't supply any general-purpose or floating-point
162      register names.  */
163   var->register_names 
164     = (char **) xmalloc ((frv_num_regs + frv_num_pseudo_regs)
165                          * sizeof (char *));
166   for (r = 0; r < frv_num_regs + frv_num_pseudo_regs; r++)
167     var->register_names[r] = "";
168
169   /* Do, however, supply default names for the known special-purpose
170      registers.  */
171
172   var->register_names[pc_regnum] = "pc";
173   var->register_names[lr_regnum] = "lr";
174   var->register_names[lcr_regnum] = "lcr";
175      
176   var->register_names[psr_regnum] = "psr";
177   var->register_names[ccr_regnum] = "ccr";
178   var->register_names[cccr_regnum] = "cccr";
179   var->register_names[tbr_regnum] = "tbr";
180
181   /* Debug registers.  */
182   var->register_names[brr_regnum] = "brr";
183   var->register_names[dbar0_regnum] = "dbar0";
184   var->register_names[dbar1_regnum] = "dbar1";
185   var->register_names[dbar2_regnum] = "dbar2";
186   var->register_names[dbar3_regnum] = "dbar3";
187
188   /* iacc0 (Only found on MB93405.)  */
189   var->register_names[iacc0h_regnum] = "iacc0h";
190   var->register_names[iacc0l_regnum] = "iacc0l";
191   var->register_names[iacc0_regnum] = "iacc0";
192
193   return var;
194 }
195
196
197 /* Indicate that the variant VAR has NUM_GPRS general-purpose
198    registers, and fill in the names array appropriately.  */
199 static void
200 set_variant_num_gprs (struct gdbarch_tdep *var, int num_gprs)
201 {
202   int r;
203
204   var->num_gprs = num_gprs;
205
206   for (r = 0; r < num_gprs; ++r)
207     {
208       char buf[20];
209
210       sprintf (buf, "gr%d", r);
211       var->register_names[first_gpr_regnum + r] = xstrdup (buf);
212     }
213 }
214
215
216 /* Indicate that the variant VAR has NUM_FPRS floating-point
217    registers, and fill in the names array appropriately.  */
218 static void
219 set_variant_num_fprs (struct gdbarch_tdep *var, int num_fprs)
220 {
221   int r;
222
223   var->num_fprs = num_fprs;
224
225   for (r = 0; r < num_fprs; ++r)
226     {
227       char buf[20];
228
229       sprintf (buf, "fr%d", r);
230       var->register_names[first_fpr_regnum + r] = xstrdup (buf);
231     }
232 }
233
234 static void
235 set_variant_abi_fdpic (struct gdbarch_tdep *var)
236 {
237   var->frv_abi = FRV_ABI_FDPIC;
238   var->register_names[fdpic_loadmap_exec_regnum] = xstrdup ("loadmap_exec");
239   var->register_names[fdpic_loadmap_interp_regnum] = xstrdup ("loadmap_interp");
240 }
241
242 static void
243 set_variant_scratch_registers (struct gdbarch_tdep *var)
244 {
245   var->register_names[scr0_regnum] = xstrdup ("scr0");
246   var->register_names[scr1_regnum] = xstrdup ("scr1");
247   var->register_names[scr2_regnum] = xstrdup ("scr2");
248   var->register_names[scr3_regnum] = xstrdup ("scr3");
249 }
250
251 static const char *
252 frv_register_name (int reg)
253 {
254   if (reg < 0)
255     return "?toosmall?";
256   if (reg >= frv_num_regs + frv_num_pseudo_regs)
257     return "?toolarge?";
258
259   return CURRENT_VARIANT->register_names[reg];
260 }
261
262
263 static struct type *
264 frv_register_type (struct gdbarch *gdbarch, int reg)
265 {
266   if (reg >= first_fpr_regnum && reg <= last_fpr_regnum)
267     return builtin_type_float;
268   else if (reg == iacc0_regnum)
269     return builtin_type_int64;
270   else
271     return builtin_type_int32;
272 }
273
274 static void
275 frv_pseudo_register_read (struct gdbarch *gdbarch, struct regcache *regcache,
276                           int reg, void *buffer)
277 {
278   if (reg == iacc0_regnum)
279     {
280       regcache_raw_read (regcache, iacc0h_regnum, buffer);
281       regcache_raw_read (regcache, iacc0l_regnum, (bfd_byte *) buffer + 4);
282     }
283 }
284
285 static void
286 frv_pseudo_register_write (struct gdbarch *gdbarch, struct regcache *regcache,
287                           int reg, const void *buffer)
288 {
289   if (reg == iacc0_regnum)
290     {
291       regcache_raw_write (regcache, iacc0h_regnum, buffer);
292       regcache_raw_write (regcache, iacc0l_regnum, (bfd_byte *) buffer + 4);
293     }
294 }
295
296 static int
297 frv_register_sim_regno (int reg)
298 {
299   static const int spr_map[] =
300     {
301       H_SPR_PSR,                /* psr_regnum */
302       H_SPR_CCR,                /* ccr_regnum */
303       H_SPR_CCCR,               /* cccr_regnum */
304       -1,                       /* 132 */
305       -1,                       /* 133 */
306       -1,                       /* 134 */
307       H_SPR_TBR,                /* tbr_regnum */
308       H_SPR_BRR,                /* brr_regnum */
309       H_SPR_DBAR0,              /* dbar0_regnum */
310       H_SPR_DBAR1,              /* dbar1_regnum */
311       H_SPR_DBAR2,              /* dbar2_regnum */
312       H_SPR_DBAR3,              /* dbar3_regnum */
313       -1,                       /* 141 */
314       -1,                       /* 142 */
315       -1,                       /* 143 */
316       -1,                       /* 144 */
317       H_SPR_LR,                 /* lr_regnum */
318       H_SPR_LCR,                /* lcr_regnum */
319       H_SPR_IACC0H,             /* iacc0h_regnum */
320       H_SPR_IACC0L              /* iacc0l_regnum */
321     };
322
323   gdb_assert (reg >= 0 && reg < NUM_REGS);
324
325   if (first_gpr_regnum <= reg && reg <= last_gpr_regnum)
326     return reg - first_gpr_regnum + SIM_FRV_GR0_REGNUM;
327   else if (first_fpr_regnum <= reg && reg <= last_fpr_regnum)
328     return reg - first_fpr_regnum + SIM_FRV_FR0_REGNUM;
329   else if (pc_regnum == reg)
330     return SIM_FRV_PC_REGNUM;
331   else if (reg >= first_spr_regnum
332            && reg < first_spr_regnum + sizeof (spr_map) / sizeof (spr_map[0]))
333     {
334       int spr_reg_offset = spr_map[reg - first_spr_regnum];
335
336       if (spr_reg_offset < 0)
337         return SIM_REGNO_DOES_NOT_EXIST;
338       else
339         return SIM_FRV_SPR0_REGNUM + spr_reg_offset;
340     }
341
342   internal_error (__FILE__, __LINE__, "Bad register number %d", reg);
343 }
344
345 static const unsigned char *
346 frv_breakpoint_from_pc (CORE_ADDR *pcptr, int *lenp)
347 {
348   static unsigned char breakpoint[] = {0xc0, 0x70, 0x00, 0x01};
349   *lenp = sizeof (breakpoint);
350   return breakpoint;
351 }
352
353 /* Define the maximum number of instructions which may be packed into a
354    bundle (VLIW instruction).  */
355 static const int max_instrs_per_bundle = 8;
356
357 /* Define the size (in bytes) of an FR-V instruction.  */
358 static const int frv_instr_size = 4;
359
360 /* Adjust a breakpoint's address to account for the FR-V architecture's
361    constraint that a break instruction must not appear as any but the
362    first instruction in the bundle.  */
363 static CORE_ADDR
364 frv_gdbarch_adjust_breakpoint_address (struct gdbarch *gdbarch, CORE_ADDR bpaddr)
365 {
366   int count = max_instrs_per_bundle;
367   CORE_ADDR addr = bpaddr - frv_instr_size;
368   CORE_ADDR func_start = get_pc_function_start (bpaddr);
369
370   /* Find the end of the previous packing sequence.  This will be indicated
371      by either attempting to access some inaccessible memory or by finding
372      an instruction word whose packing bit is set to one. */
373   while (count-- > 0 && addr >= func_start)
374     {
375       char instr[frv_instr_size];
376       int status;
377
378       status = read_memory_nobpt (addr, instr, sizeof instr);
379
380       if (status != 0)
381         break;
382
383       /* This is a big endian architecture, so byte zero will have most
384          significant byte.  The most significant bit of this byte is the
385          packing bit.  */
386       if (instr[0] & 0x80)
387         break;
388
389       addr -= frv_instr_size;
390     }
391
392   if (count > 0)
393     bpaddr = addr + frv_instr_size;
394
395   return bpaddr;
396 }
397
398
399 /* Return true if REG is a caller-saves ("scratch") register,
400    false otherwise.  */
401 static int
402 is_caller_saves_reg (int reg)
403 {
404   return ((4 <= reg && reg <= 7)
405           || (14 <= reg && reg <= 15)
406           || (32 <= reg && reg <= 47));
407 }
408
409
410 /* Return true if REG is a callee-saves register, false otherwise.  */
411 static int
412 is_callee_saves_reg (int reg)
413 {
414   return ((16 <= reg && reg <= 31)
415           || (48 <= reg && reg <= 63));
416 }
417
418
419 /* Return true if REG is an argument register, false otherwise.  */
420 static int
421 is_argument_reg (int reg)
422 {
423   return (8 <= reg && reg <= 13);
424 }
425
426 /* Scan an FR-V prologue, starting at PC, until frame->PC.
427    If FRAME is non-zero, fill in its saved_regs with appropriate addresses.
428    We assume FRAME's saved_regs array has already been allocated and cleared.
429    Return the first PC value after the prologue.
430
431    Note that, for unoptimized code, we almost don't need this function
432    at all; all arguments and locals live on the stack, so we just need
433    the FP to find everything.  The catch: structures passed by value
434    have their addresses living in registers; they're never spilled to
435    the stack.  So if you ever want to be able to get to these
436    arguments in any frame but the top, you'll need to do this serious
437    prologue analysis.  */
438 static CORE_ADDR
439 frv_analyze_prologue (CORE_ADDR pc, struct frame_info *next_frame,
440                       struct frv_unwind_cache *info)
441 {
442   /* When writing out instruction bitpatterns, we use the following
443      letters to label instruction fields:
444      P - The parallel bit.  We don't use this.
445      J - The register number of GRj in the instruction description.
446      K - The register number of GRk in the instruction description.
447      I - The register number of GRi.
448      S - a signed imediate offset.
449      U - an unsigned immediate offset.
450
451      The dots below the numbers indicate where hex digit boundaries
452      fall, to make it easier to check the numbers.  */
453
454   /* Non-zero iff we've seen the instruction that initializes the
455      frame pointer for this function's frame.  */
456   int fp_set = 0;
457
458   /* If fp_set is non_zero, then this is the distance from
459      the stack pointer to frame pointer: fp = sp + fp_offset.  */
460   int fp_offset = 0;
461
462   /* Total size of frame prior to any alloca operations. */
463   int framesize = 0;
464
465   /* Flag indicating if lr has been saved on the stack.  */
466   int lr_saved_on_stack = 0;
467
468   /* The number of the general-purpose register we saved the return
469      address ("link register") in, or -1 if we haven't moved it yet.  */
470   int lr_save_reg = -1;
471
472   /* Offset (from sp) at which lr has been saved on the stack.  */
473
474   int lr_sp_offset = 0;
475
476   /* If gr_saved[i] is non-zero, then we've noticed that general
477      register i has been saved at gr_sp_offset[i] from the stack
478      pointer.  */
479   char gr_saved[64];
480   int gr_sp_offset[64];
481
482   /* The address of the most recently scanned prologue instruction.  */
483   CORE_ADDR last_prologue_pc;
484
485   /* The address of the next instruction. */
486   CORE_ADDR next_pc;
487
488   /* The upper bound to of the pc values to scan.  */
489   CORE_ADDR lim_pc;
490
491   memset (gr_saved, 0, sizeof (gr_saved));
492
493   last_prologue_pc = pc;
494
495   /* Try to compute an upper limit (on how far to scan) based on the
496      line number info.  */
497   lim_pc = skip_prologue_using_sal (pc);
498   /* If there's no line number info, lim_pc will be 0.  In that case,
499      set the limit to be 100 instructions away from pc.  Hopefully, this
500      will be far enough away to account for the entire prologue.  Don't
501      worry about overshooting the end of the function.  The scan loop
502      below contains some checks to avoid scanning unreasonably far.  */
503   if (lim_pc == 0)
504     lim_pc = pc + 400;
505
506   /* If we have a frame, we don't want to scan past the frame's pc.  This
507      will catch those cases where the pc is in the prologue.  */
508   if (next_frame)
509     {
510       CORE_ADDR frame_pc = frame_pc_unwind (next_frame);
511       if (frame_pc < lim_pc)
512         lim_pc = frame_pc;
513     }
514
515   /* Scan the prologue.  */
516   while (pc < lim_pc)
517     {
518       LONGEST op = read_memory_integer (pc, 4);
519       next_pc = pc + 4;
520
521       /* The tests in this chain of ifs should be in order of
522          decreasing selectivity, so that more particular patterns get
523          to fire before less particular patterns.  */
524
525       /* Some sort of control transfer instruction: stop scanning prologue.
526          Integer Conditional Branch:
527           X XXXX XX 0000110 XX XXXXXXXXXXXXXXXX
528          Floating-point / media Conditional Branch:
529           X XXXX XX 0000111 XX XXXXXXXXXXXXXXXX
530          LCR Conditional Branch to LR
531           X XXXX XX 0001110 XX XX 001 X XXXXXXXXXX
532          Integer conditional Branches to LR
533           X XXXX XX 0001110 XX XX 010 X XXXXXXXXXX
534           X XXXX XX 0001110 XX XX 011 X XXXXXXXXXX
535          Floating-point/Media Branches to LR
536           X XXXX XX 0001110 XX XX 110 X XXXXXXXXXX
537           X XXXX XX 0001110 XX XX 111 X XXXXXXXXXX
538          Jump and Link
539           X XXXXX X 0001100 XXXXXX XXXXXX XXXXXX
540           X XXXXX X 0001101 XXXXXX XXXXXX XXXXXX
541          Call
542           X XXXXXX 0001111 XXXXXXXXXXXXXXXXXX
543          Return from Trap
544           X XXXXX X 0000101 XXXXXX XXXXXX XXXXXX
545          Integer Conditional Trap
546           X XXXX XX 0000100 XXXXXX XXXX 00 XXXXXX
547           X XXXX XX 0011100 XXXXXX XXXXXXXXXXXX
548          Floating-point /media Conditional Trap
549           X XXXX XX 0000100 XXXXXX XXXX 01 XXXXXX
550           X XXXX XX 0011101 XXXXXX XXXXXXXXXXXX
551          Break
552           X XXXX XX 0000100 XXXXXX XXXX 11 XXXXXX
553          Media Trap
554           X XXXX XX 0000100 XXXXXX XXXX 10 XXXXXX */
555       if ((op & 0x01d80000) == 0x00180000 /* Conditional branches and Call */
556           || (op & 0x01f80000) == 0x00300000  /* Jump and Link */
557           || (op & 0x01f80000) == 0x00100000  /* Return from Trap, Trap */
558           || (op & 0x01f80000) == 0x00700000) /* Trap immediate */
559         {
560           /* Stop scanning; not in prologue any longer.  */
561           break;
562         }
563
564       /* Loading something from memory into fp probably means that
565          we're in the epilogue.  Stop scanning the prologue.
566          ld @(GRi, GRk), fp
567          X 000010 0000010 XXXXXX 000100 XXXXXX
568          ldi @(GRi, d12), fp
569          X 000010 0110010 XXXXXX XXXXXXXXXXXX */
570       else if ((op & 0x7ffc0fc0) == 0x04080100
571                || (op & 0x7ffc0000) == 0x04c80000)
572         {
573           break;
574         }
575
576       /* Setting the FP from the SP:
577          ori sp, 0, fp
578          P 000010 0100010 000001 000000000000 = 0x04881000
579          0 111111 1111111 111111 111111111111 = 0x7fffffff
580              .    .   .    .   .    .   .   .
581          We treat this as part of the prologue.  */
582       else if ((op & 0x7fffffff) == 0x04881000)
583         {
584           fp_set = 1;
585           fp_offset = 0;
586           last_prologue_pc = next_pc;
587         }
588
589       /* Move the link register to the scratch register grJ, before saving:
590          movsg lr, grJ
591          P 000100 0000011 010000 000111 JJJJJJ = 0x080d01c0
592          0 111111 1111111 111111 111111 000000 = 0x7fffffc0
593              .    .   .    .   .    .    .   .
594          We treat this as part of the prologue.  */
595       else if ((op & 0x7fffffc0) == 0x080d01c0)
596         {
597           int gr_j = op & 0x3f;
598
599           /* If we're moving it to a scratch register, that's fine.  */
600           if (is_caller_saves_reg (gr_j))
601             {
602               lr_save_reg = gr_j;
603               last_prologue_pc = next_pc;
604             }
605         }
606
607       /* To save multiple callee-saves registers on the stack, at
608          offset zero:
609
610          std grK,@(sp,gr0)
611          P KKKKKK 0000011 000001 000011 000000 = 0x000c10c0
612          0 000000 1111111 111111 111111 111111 = 0x01ffffff
613
614          stq grK,@(sp,gr0)
615          P KKKKKK 0000011 000001 000100 000000 = 0x000c1100
616          0 000000 1111111 111111 111111 111111 = 0x01ffffff
617              .    .   .    .   .    .    .   .
618          We treat this as part of the prologue, and record the register's
619          saved address in the frame structure.  */
620       else if ((op & 0x01ffffff) == 0x000c10c0
621             || (op & 0x01ffffff) == 0x000c1100)
622         {
623           int gr_k = ((op >> 25) & 0x3f);
624           int ope  = ((op >> 6)  & 0x3f);
625           int count;
626           int i;
627
628           /* Is it an std or an stq?  */
629           if (ope == 0x03)
630             count = 2;
631           else
632             count = 4;
633
634           /* Is it really a callee-saves register?  */
635           if (is_callee_saves_reg (gr_k))
636             {
637               for (i = 0; i < count; i++)
638                 {
639                   gr_saved[gr_k + i] = 1;
640                   gr_sp_offset[gr_k + i] = 4 * i;
641                 }
642               last_prologue_pc = next_pc;
643             }
644         }
645
646       /* Adjusting the stack pointer.  (The stack pointer is GR1.)
647          addi sp, S, sp
648          P 000001 0010000 000001 SSSSSSSSSSSS = 0x02401000
649          0 111111 1111111 111111 000000000000 = 0x7ffff000
650              .    .   .    .   .    .   .   .
651          We treat this as part of the prologue.  */
652       else if ((op & 0x7ffff000) == 0x02401000)
653         {
654           if (framesize == 0)
655             {
656               /* Sign-extend the twelve-bit field.
657                  (Isn't there a better way to do this?)  */
658               int s = (((op & 0xfff) - 0x800) & 0xfff) - 0x800;
659
660               framesize -= s;
661               last_prologue_pc = pc;
662             }
663           else
664             {
665               /* If the prologue is being adjusted again, we've
666                  likely gone too far; i.e. we're probably in the
667                  epilogue.  */
668               break;
669             }
670         }
671
672       /* Setting the FP to a constant distance from the SP:
673          addi sp, S, fp
674          P 000010 0010000 000001 SSSSSSSSSSSS = 0x04401000
675          0 111111 1111111 111111 000000000000 = 0x7ffff000
676              .    .   .    .   .    .   .   .
677          We treat this as part of the prologue.  */
678       else if ((op & 0x7ffff000) == 0x04401000)
679         {
680           /* Sign-extend the twelve-bit field.
681              (Isn't there a better way to do this?)  */
682           int s = (((op & 0xfff) - 0x800) & 0xfff) - 0x800;
683           fp_set = 1;
684           fp_offset = s;
685           last_prologue_pc = pc;
686         }
687
688       /* To spill an argument register to a scratch register:
689             ori GRi, 0, GRk
690          P KKKKKK 0100010 IIIIII 000000000000 = 0x00880000
691          0 000000 1111111 000000 111111111111 = 0x01fc0fff
692              .    .   .    .   .    .   .   .
693          For the time being, we treat this as a prologue instruction,
694          assuming that GRi is an argument register.  This one's kind
695          of suspicious, because it seems like it could be part of a
696          legitimate body instruction.  But we only come here when the
697          source info wasn't helpful, so we have to do the best we can.
698          Hopefully once GCC and GDB agree on how to emit line number
699          info for prologues, then this code will never come into play.  */
700       else if ((op & 0x01fc0fff) == 0x00880000)
701         {
702           int gr_i = ((op >> 12) & 0x3f);
703
704           /* Make sure that the source is an arg register; if it is, we'll
705              treat it as a prologue instruction.  */
706           if (is_argument_reg (gr_i))
707             last_prologue_pc = next_pc;
708         }
709
710       /* To spill 16-bit values to the stack:
711              sthi GRk, @(fp, s)
712          P KKKKKK 1010001 000010 SSSSSSSSSSSS = 0x01442000
713          0 000000 1111111 111111 000000000000 = 0x01fff000
714              .    .   .    .   .    .   .   . 
715          And for 8-bit values, we use STB instructions.
716              stbi GRk, @(fp, s)
717          P KKKKKK 1010000 000010 SSSSSSSSSSSS = 0x01402000
718          0 000000 1111111 111111 000000000000 = 0x01fff000
719              .    .   .    .   .    .   .   .
720          We check that GRk is really an argument register, and treat
721          all such as part of the prologue.  */
722       else if (   (op & 0x01fff000) == 0x01442000
723                || (op & 0x01fff000) == 0x01402000)
724         {
725           int gr_k = ((op >> 25) & 0x3f);
726
727           /* Make sure that GRk is really an argument register; treat
728              it as a prologue instruction if so.  */
729           if (is_argument_reg (gr_k))
730             last_prologue_pc = next_pc;
731         }
732
733       /* To save multiple callee-saves register on the stack, at a
734          non-zero offset:
735
736          stdi GRk, @(sp, s)
737          P KKKKKK 1010011 000001 SSSSSSSSSSSS = 0x014c1000
738          0 000000 1111111 111111 000000000000 = 0x01fff000
739              .    .   .    .   .    .   .   .
740          stqi GRk, @(sp, s)
741          P KKKKKK 1010100 000001 SSSSSSSSSSSS = 0x01501000
742          0 000000 1111111 111111 000000000000 = 0x01fff000
743              .    .   .    .   .    .   .   .
744          We treat this as part of the prologue, and record the register's
745          saved address in the frame structure.  */
746       else if ((op & 0x01fff000) == 0x014c1000
747             || (op & 0x01fff000) == 0x01501000)
748         {
749           int gr_k = ((op >> 25) & 0x3f);
750           int count;
751           int i;
752
753           /* Is it a stdi or a stqi?  */
754           if ((op & 0x01fff000) == 0x014c1000)
755             count = 2;
756           else
757             count = 4;
758
759           /* Is it really a callee-saves register?  */
760           if (is_callee_saves_reg (gr_k))
761             {
762               /* Sign-extend the twelve-bit field.
763                  (Isn't there a better way to do this?)  */
764               int s = (((op & 0xfff) - 0x800) & 0xfff) - 0x800;
765
766               for (i = 0; i < count; i++)
767                 {
768                   gr_saved[gr_k + i] = 1;
769                   gr_sp_offset[gr_k + i] = s + (4 * i);
770                 }
771               last_prologue_pc = next_pc;
772             }
773         }
774
775       /* Storing any kind of integer register at any constant offset
776          from any other register.
777
778          st GRk, @(GRi, gr0)
779          P KKKKKK 0000011 IIIIII 000010 000000 = 0x000c0080
780          0 000000 1111111 000000 111111 111111 = 0x01fc0fff
781              .    .   .    .   .    .    .   .
782          sti GRk, @(GRi, d12)
783          P KKKKKK 1010010 IIIIII SSSSSSSSSSSS = 0x01480000
784          0 000000 1111111 000000 000000000000 = 0x01fc0000
785              .    .   .    .   .    .   .   .
786          These could be almost anything, but a lot of prologue
787          instructions fall into this pattern, so let's decode the
788          instruction once, and then work at a higher level.  */
789       else if (((op & 0x01fc0fff) == 0x000c0080)
790             || ((op & 0x01fc0000) == 0x01480000))
791         {
792           int gr_k = ((op >> 25) & 0x3f);
793           int gr_i = ((op >> 12) & 0x3f);
794           int offset;
795
796           /* Are we storing with gr0 as an offset, or using an
797              immediate value?  */
798           if ((op & 0x01fc0fff) == 0x000c0080)
799             offset = 0;
800           else
801             offset = (((op & 0xfff) - 0x800) & 0xfff) - 0x800;
802
803           /* If the address isn't relative to the SP or FP, it's not a
804              prologue instruction.  */
805           if (gr_i != sp_regnum && gr_i != fp_regnum)
806             {
807               /* Do nothing; not a prologue instruction.  */
808             }
809
810           /* Saving the old FP in the new frame (relative to the SP).  */
811           else if (gr_k == fp_regnum && gr_i == sp_regnum)
812             {
813               gr_saved[fp_regnum] = 1;
814               gr_sp_offset[fp_regnum] = offset;
815               last_prologue_pc = next_pc;
816             }
817
818           /* Saving callee-saves register(s) on the stack, relative to
819              the SP.  */
820           else if (gr_i == sp_regnum
821                    && is_callee_saves_reg (gr_k))
822             {
823               gr_saved[gr_k] = 1;
824               if (gr_i == sp_regnum)
825                 gr_sp_offset[gr_k] = offset;
826               else
827                 gr_sp_offset[gr_k] = offset + fp_offset;
828               last_prologue_pc = next_pc;
829             }
830
831           /* Saving the scratch register holding the return address.  */
832           else if (lr_save_reg != -1
833                    && gr_k == lr_save_reg)
834             {
835               lr_saved_on_stack = 1;
836               if (gr_i == sp_regnum)
837                 lr_sp_offset = offset;
838               else
839                 lr_sp_offset = offset + fp_offset;
840               last_prologue_pc = next_pc;
841             }
842
843           /* Spilling int-sized arguments to the stack.  */
844           else if (is_argument_reg (gr_k))
845             last_prologue_pc = next_pc;
846         }
847       pc = next_pc;
848     }
849
850   if (next_frame && info)
851     {
852       int i;
853       ULONGEST this_base;
854
855       /* If we know the relationship between the stack and frame
856          pointers, record the addresses of the registers we noticed.
857          Note that we have to do this as a separate step at the end,
858          because instructions may save relative to the SP, but we need
859          their addresses relative to the FP.  */
860       if (fp_set)
861           frame_unwind_unsigned_register (next_frame, fp_regnum, &this_base);
862       else
863           frame_unwind_unsigned_register (next_frame, sp_regnum, &this_base);
864
865       for (i = 0; i < 64; i++)
866         if (gr_saved[i])
867           info->saved_regs[i].addr = this_base - fp_offset + gr_sp_offset[i];
868
869       info->prev_sp = this_base - fp_offset + framesize;
870       info->base = this_base;
871
872       /* If LR was saved on the stack, record its location.  */
873       if (lr_saved_on_stack)
874         info->saved_regs[lr_regnum].addr = this_base - fp_offset + lr_sp_offset;
875
876       /* The call instruction moves the caller's PC in the callee's LR.
877          Since this is an unwind, do the reverse.  Copy the location of LR
878          into PC (the address / regnum) so that a request for PC will be
879          converted into a request for the LR.  */
880       info->saved_regs[pc_regnum] = info->saved_regs[lr_regnum];
881
882       /* Save the previous frame's computed SP value.  */
883       trad_frame_set_value (info->saved_regs, sp_regnum, info->prev_sp);
884     }
885
886   return last_prologue_pc;
887 }
888
889
890 static CORE_ADDR
891 frv_skip_prologue (CORE_ADDR pc)
892 {
893   CORE_ADDR func_addr, func_end, new_pc;
894
895   new_pc = pc;
896
897   /* If the line table has entry for a line *within* the function
898      (i.e., not in the prologue, and not past the end), then that's
899      our location.  */
900   if (find_pc_partial_function (pc, NULL, &func_addr, &func_end))
901     {
902       struct symtab_and_line sal;
903
904       sal = find_pc_line (func_addr, 0);
905
906       if (sal.line != 0 && sal.end < func_end)
907         {
908           new_pc = sal.end;
909         }
910     }
911
912   /* The FR-V prologue is at least five instructions long (twenty bytes).
913      If we didn't find a real source location past that, then
914      do a full analysis of the prologue.  */
915   if (new_pc < pc + 20)
916     new_pc = frv_analyze_prologue (pc, 0, 0);
917
918   return new_pc;
919 }
920
921
922 static struct frv_unwind_cache *
923 frv_frame_unwind_cache (struct frame_info *next_frame,
924                          void **this_prologue_cache)
925 {
926   struct gdbarch *gdbarch = get_frame_arch (next_frame);
927   CORE_ADDR pc;
928   ULONGEST prev_sp;
929   ULONGEST this_base;
930   struct frv_unwind_cache *info;
931
932   if ((*this_prologue_cache))
933     return (*this_prologue_cache);
934
935   info = FRAME_OBSTACK_ZALLOC (struct frv_unwind_cache);
936   (*this_prologue_cache) = info;
937   info->saved_regs = trad_frame_alloc_saved_regs (next_frame);
938
939   /* Prologue analysis does the rest...  */
940   frv_analyze_prologue (frame_func_unwind (next_frame), next_frame, info);
941
942   return info;
943 }
944
945 static void
946 frv_extract_return_value (struct type *type, struct regcache *regcache,
947                           void *valbuf)
948 {
949   int len = TYPE_LENGTH (type);
950
951   if (len <= 4)
952     {
953       ULONGEST gpr8_val;
954       regcache_cooked_read_unsigned (regcache, 8, &gpr8_val);
955       store_unsigned_integer (valbuf, len, gpr8_val);
956     }
957   else if (len == 8)
958     {
959       ULONGEST regval;
960       regcache_cooked_read_unsigned (regcache, 8, &regval);
961       store_unsigned_integer (valbuf, 4, regval);
962       regcache_cooked_read_unsigned (regcache, 9, &regval);
963       store_unsigned_integer ((bfd_byte *) valbuf + 4, 4, regval);
964     }
965   else
966     internal_error (__FILE__, __LINE__, "Illegal return value length: %d", len);
967 }
968
969 static CORE_ADDR
970 frv_extract_struct_value_address (struct regcache *regcache)
971 {
972   ULONGEST addr;
973   regcache_cooked_read_unsigned (regcache, struct_return_regnum, &addr);
974   return addr;
975 }
976
977 static void
978 frv_store_struct_return (CORE_ADDR addr, CORE_ADDR sp)
979 {
980   write_register (struct_return_regnum, addr);
981 }
982
983 static int
984 frv_frameless_function_invocation (struct frame_info *frame)
985 {
986   return legacy_frameless_look_for_prologue (frame);
987 }
988
989 static CORE_ADDR
990 frv_frame_align (struct gdbarch *gdbarch, CORE_ADDR sp)
991 {
992   /* Require dword alignment.  */
993   return align_down (sp, 8);
994 }
995
996 static CORE_ADDR
997 find_func_descr (struct gdbarch *gdbarch, CORE_ADDR entry_point)
998 {
999   CORE_ADDR descr;
1000   char valbuf[4];
1001
1002   descr = frv_fdpic_find_canonical_descriptor (entry_point);
1003
1004   if (descr != 0)
1005     return descr;
1006
1007   /* Construct a non-canonical descriptor from space allocated on
1008      the stack.  */
1009
1010   descr = value_as_long (value_allocate_space_in_inferior (8));
1011   store_unsigned_integer (valbuf, 4, entry_point);
1012   write_memory (descr, valbuf, 4);
1013   store_unsigned_integer (valbuf, 4,
1014                           frv_fdpic_find_global_pointer (entry_point));
1015   write_memory (descr + 4, valbuf, 4);
1016   return descr;
1017 }
1018
1019 static CORE_ADDR
1020 frv_convert_from_func_ptr_addr (struct gdbarch *gdbarch, CORE_ADDR addr,
1021                                 struct target_ops *targ)
1022 {
1023   CORE_ADDR entry_point;
1024   CORE_ADDR got_address;
1025
1026   entry_point = get_target_memory_unsigned (targ, addr, 4);
1027   got_address = get_target_memory_unsigned (targ, addr + 4, 4);
1028
1029   if (got_address == frv_fdpic_find_global_pointer (entry_point))
1030     return entry_point;
1031   else
1032     return addr;
1033 }
1034
1035 static CORE_ADDR
1036 frv_push_dummy_call (struct gdbarch *gdbarch, CORE_ADDR func_addr,
1037                      struct regcache *regcache, CORE_ADDR bp_addr,
1038                      int nargs, struct value **args, CORE_ADDR sp,
1039                      int struct_return, CORE_ADDR struct_addr)
1040 {
1041   int argreg;
1042   int argnum;
1043   char *val;
1044   char valbuf[4];
1045   struct value *arg;
1046   struct type *arg_type;
1047   int len;
1048   enum type_code typecode;
1049   CORE_ADDR regval;
1050   int stack_space;
1051   int stack_offset;
1052   enum frv_abi abi = frv_abi (gdbarch);
1053
1054 #if 0
1055   printf("Push %d args at sp = %x, struct_return=%d (%x)\n",
1056          nargs, (int) sp, struct_return, struct_addr);
1057 #endif
1058
1059   stack_space = 0;
1060   for (argnum = 0; argnum < nargs; ++argnum)
1061     stack_space += align_up (TYPE_LENGTH (VALUE_TYPE (args[argnum])), 4);
1062
1063   stack_space -= (6 * 4);
1064   if (stack_space > 0)
1065     sp -= stack_space;
1066
1067   /* Make sure stack is dword aligned. */
1068   sp = align_down (sp, 8);
1069
1070   stack_offset = 0;
1071
1072   argreg = 8;
1073
1074   if (struct_return)
1075     regcache_cooked_write_unsigned (regcache, struct_return_regnum,
1076                                     struct_addr);
1077
1078   for (argnum = 0; argnum < nargs; ++argnum)
1079     {
1080       arg = args[argnum];
1081       arg_type = check_typedef (VALUE_TYPE (arg));
1082       len = TYPE_LENGTH (arg_type);
1083       typecode = TYPE_CODE (arg_type);
1084
1085       if (typecode == TYPE_CODE_STRUCT || typecode == TYPE_CODE_UNION)
1086         {
1087           store_unsigned_integer (valbuf, 4, VALUE_ADDRESS (arg));
1088           typecode = TYPE_CODE_PTR;
1089           len = 4;
1090           val = valbuf;
1091         }
1092       else if (abi == FRV_ABI_FDPIC
1093                && len == 4
1094                && typecode == TYPE_CODE_PTR
1095                && TYPE_CODE (TYPE_TARGET_TYPE (arg_type)) == TYPE_CODE_FUNC)
1096         {
1097           /* The FDPIC ABI requires function descriptors to be passed instead
1098              of entry points.  */
1099           store_unsigned_integer
1100             (valbuf, 4,
1101              find_func_descr (gdbarch,
1102                               extract_unsigned_integer (VALUE_CONTENTS (arg),
1103                                                         4)));
1104           typecode = TYPE_CODE_PTR;
1105           len = 4;
1106           val = valbuf;
1107         }
1108       else
1109         {
1110           val = (char *) VALUE_CONTENTS (arg);
1111         }
1112
1113       while (len > 0)
1114         {
1115           int partial_len = (len < 4 ? len : 4);
1116
1117           if (argreg < 14)
1118             {
1119               regval = extract_unsigned_integer (val, partial_len);
1120 #if 0
1121               printf("  Argnum %d data %x -> reg %d\n",
1122                      argnum, (int) regval, argreg);
1123 #endif
1124               regcache_cooked_write_unsigned (regcache, argreg, regval);
1125               ++argreg;
1126             }
1127           else
1128             {
1129 #if 0
1130               printf("  Argnum %d data %x -> offset %d (%x)\n",
1131                      argnum, *((int *)val), stack_offset, (int) (sp + stack_offset));
1132 #endif
1133               write_memory (sp + stack_offset, val, partial_len);
1134               stack_offset += align_up (partial_len, 4);
1135             }
1136           len -= partial_len;
1137           val += partial_len;
1138         }
1139     }
1140
1141   /* Set the return address.  For the frv, the return breakpoint is
1142      always at BP_ADDR.  */
1143   regcache_cooked_write_unsigned (regcache, lr_regnum, bp_addr);
1144
1145   if (abi == FRV_ABI_FDPIC)
1146     {
1147       /* Set the GOT register for the FDPIC ABI.  */
1148       regcache_cooked_write_unsigned
1149         (regcache, first_gpr_regnum + 15,
1150          frv_fdpic_find_global_pointer (func_addr));
1151     }
1152
1153   /* Finally, update the SP register.  */
1154   regcache_cooked_write_unsigned (regcache, sp_regnum, sp);
1155
1156   return sp;
1157 }
1158
1159 static void
1160 frv_store_return_value (struct type *type, struct regcache *regcache,
1161                         const void *valbuf)
1162 {
1163   int len = TYPE_LENGTH (type);
1164
1165   if (len <= 4)
1166     {
1167       bfd_byte val[4];
1168       memset (val, 0, sizeof (val));
1169       memcpy (val + (4 - len), valbuf, len);
1170       regcache_cooked_write (regcache, 8, val);
1171     }
1172   else if (len == 8)
1173     {
1174       regcache_cooked_write (regcache, 8, valbuf);
1175       regcache_cooked_write (regcache, 9, (bfd_byte *) valbuf + 4);
1176     }
1177   else
1178     internal_error (__FILE__, __LINE__,
1179                     "Don't know how to return a %d-byte value.", len);
1180 }
1181
1182
1183 /* Hardware watchpoint / breakpoint support for the FR500
1184    and FR400.  */
1185
1186 int
1187 frv_check_watch_resources (int type, int cnt, int ot)
1188 {
1189   struct gdbarch_tdep *var = CURRENT_VARIANT;
1190
1191   /* Watchpoints not supported on simulator.  */
1192   if (strcmp (target_shortname, "sim") == 0)
1193     return 0;
1194
1195   if (type == bp_hardware_breakpoint)
1196     {
1197       if (var->num_hw_breakpoints == 0)
1198         return 0;
1199       else if (cnt <= var->num_hw_breakpoints)
1200         return 1;
1201     }
1202   else
1203     {
1204       if (var->num_hw_watchpoints == 0)
1205         return 0;
1206       else if (ot)
1207         return -1;
1208       else if (cnt <= var->num_hw_watchpoints)
1209         return 1;
1210     }
1211   return -1;
1212 }
1213
1214
1215 CORE_ADDR
1216 frv_stopped_data_address (void)
1217 {
1218   CORE_ADDR brr, dbar0, dbar1, dbar2, dbar3;
1219
1220   brr = read_register (brr_regnum);
1221   dbar0 = read_register (dbar0_regnum);
1222   dbar1 = read_register (dbar1_regnum);
1223   dbar2 = read_register (dbar2_regnum);
1224   dbar3 = read_register (dbar3_regnum);
1225
1226   if (brr & (1<<11))
1227     return dbar0;
1228   else if (brr & (1<<10))
1229     return dbar1;
1230   else if (brr & (1<<9))
1231     return dbar2;
1232   else if (brr & (1<<8))
1233     return dbar3;
1234   else
1235     return 0;
1236 }
1237
1238 static CORE_ADDR
1239 frv_unwind_pc (struct gdbarch *gdbarch, struct frame_info *next_frame)
1240 {
1241   return frame_unwind_register_unsigned (next_frame, pc_regnum);
1242 }
1243
1244 /* Given a GDB frame, determine the address of the calling function's
1245    frame.  This will be used to create a new GDB frame struct.  */
1246
1247 static void
1248 frv_frame_this_id (struct frame_info *next_frame,
1249                     void **this_prologue_cache, struct frame_id *this_id)
1250 {
1251   struct frv_unwind_cache *info
1252     = frv_frame_unwind_cache (next_frame, this_prologue_cache);
1253   CORE_ADDR base;
1254   CORE_ADDR func;
1255   struct minimal_symbol *msym_stack;
1256   struct frame_id id;
1257
1258   /* The FUNC is easy.  */
1259   func = frame_func_unwind (next_frame);
1260
1261   /* Check if the stack is empty.  */
1262   msym_stack = lookup_minimal_symbol ("_stack", NULL, NULL);
1263   if (msym_stack && info->base == SYMBOL_VALUE_ADDRESS (msym_stack))
1264     return;
1265
1266   /* Hopefully the prologue analysis either correctly determined the
1267      frame's base (which is the SP from the previous frame), or set
1268      that base to "NULL".  */
1269   base = info->prev_sp;
1270   if (base == 0)
1271     return;
1272
1273   id = frame_id_build (base, func);
1274
1275   /* Check that we're not going round in circles with the same frame
1276      ID (but avoid applying the test to sentinel frames which do go
1277      round in circles).  Can't use frame_id_eq() as that doesn't yet
1278      compare the frame's PC value.  */
1279   if (frame_relative_level (next_frame) >= 0
1280       && get_frame_type (next_frame) != DUMMY_FRAME
1281       && frame_id_eq (get_frame_id (next_frame), id))
1282     return;
1283
1284   (*this_id) = id;
1285 }
1286
1287 static void
1288 frv_frame_prev_register (struct frame_info *next_frame,
1289                           void **this_prologue_cache,
1290                           int regnum, int *optimizedp,
1291                           enum lval_type *lvalp, CORE_ADDR *addrp,
1292                           int *realnump, void *bufferp)
1293 {
1294   struct frv_unwind_cache *info
1295     = frv_frame_unwind_cache (next_frame, this_prologue_cache);
1296   trad_frame_prev_register (next_frame, info->saved_regs, regnum,
1297                             optimizedp, lvalp, addrp, realnump, bufferp);
1298 }
1299
1300 static const struct frame_unwind frv_frame_unwind = {
1301   NORMAL_FRAME,
1302   frv_frame_this_id,
1303   frv_frame_prev_register
1304 };
1305
1306 static const struct frame_unwind *
1307 frv_frame_sniffer (struct frame_info *next_frame)
1308 {
1309   return &frv_frame_unwind;
1310 }
1311
1312 static CORE_ADDR
1313 frv_frame_base_address (struct frame_info *next_frame, void **this_cache)
1314 {
1315   struct frv_unwind_cache *info
1316     = frv_frame_unwind_cache (next_frame, this_cache);
1317   return info->base;
1318 }
1319
1320 static const struct frame_base frv_frame_base = {
1321   &frv_frame_unwind,
1322   frv_frame_base_address,
1323   frv_frame_base_address,
1324   frv_frame_base_address
1325 };
1326
1327 static CORE_ADDR
1328 frv_unwind_sp (struct gdbarch *gdbarch, struct frame_info *next_frame)
1329 {
1330   return frame_unwind_register_unsigned (next_frame, sp_regnum);
1331 }
1332
1333
1334 /* Assuming NEXT_FRAME->prev is a dummy, return the frame ID of that
1335    dummy frame.  The frame ID's base needs to match the TOS value
1336    saved by save_dummy_frame_tos(), and the PC match the dummy frame's
1337    breakpoint.  */
1338
1339 static struct frame_id
1340 frv_unwind_dummy_id (struct gdbarch *gdbarch, struct frame_info *next_frame)
1341 {
1342   return frame_id_build (frv_unwind_sp (gdbarch, next_frame),
1343                          frame_pc_unwind (next_frame));
1344 }
1345
1346
1347 static struct gdbarch *
1348 frv_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
1349 {
1350   struct gdbarch *gdbarch;
1351   struct gdbarch_tdep *var;
1352   int elf_flags = 0;
1353
1354   /* Check to see if we've already built an appropriate architecture
1355      object for this executable.  */
1356   arches = gdbarch_list_lookup_by_info (arches, &info);
1357   if (arches)
1358     return arches->gdbarch;
1359
1360   /* Select the right tdep structure for this variant.  */
1361   var = new_variant ();
1362   switch (info.bfd_arch_info->mach)
1363     {
1364     case bfd_mach_frv:
1365     case bfd_mach_frvsimple:
1366     case bfd_mach_fr500:
1367     case bfd_mach_frvtomcat:
1368     case bfd_mach_fr550:
1369       set_variant_num_gprs (var, 64);
1370       set_variant_num_fprs (var, 64);
1371       break;
1372
1373     case bfd_mach_fr400:
1374     case bfd_mach_fr450:
1375       set_variant_num_gprs (var, 32);
1376       set_variant_num_fprs (var, 32);
1377       break;
1378
1379     default:
1380       /* Never heard of this variant.  */
1381       return 0;
1382     }
1383
1384   /* Extract the ELF flags, if available.  */
1385   if (info.abfd && bfd_get_flavour (info.abfd) == bfd_target_elf_flavour)
1386     elf_flags = elf_elfheader (info.abfd)->e_flags;
1387
1388   if (elf_flags & EF_FRV_FDPIC)
1389     set_variant_abi_fdpic (var);
1390
1391   if (elf_flags & EF_FRV_CPU_FR450)
1392     set_variant_scratch_registers (var);
1393
1394   gdbarch = gdbarch_alloc (&info, var);
1395
1396   set_gdbarch_short_bit (gdbarch, 16);
1397   set_gdbarch_int_bit (gdbarch, 32);
1398   set_gdbarch_long_bit (gdbarch, 32);
1399   set_gdbarch_long_long_bit (gdbarch, 64);
1400   set_gdbarch_float_bit (gdbarch, 32);
1401   set_gdbarch_double_bit (gdbarch, 64);
1402   set_gdbarch_long_double_bit (gdbarch, 64);
1403   set_gdbarch_ptr_bit (gdbarch, 32);
1404
1405   set_gdbarch_num_regs (gdbarch, frv_num_regs);
1406   set_gdbarch_num_pseudo_regs (gdbarch, frv_num_pseudo_regs);
1407
1408   set_gdbarch_sp_regnum (gdbarch, sp_regnum);
1409   set_gdbarch_deprecated_fp_regnum (gdbarch, fp_regnum);
1410   set_gdbarch_pc_regnum (gdbarch, pc_regnum);
1411
1412   set_gdbarch_register_name (gdbarch, frv_register_name);
1413   set_gdbarch_register_type (gdbarch, frv_register_type);
1414   set_gdbarch_register_sim_regno (gdbarch, frv_register_sim_regno);
1415
1416   set_gdbarch_pseudo_register_read (gdbarch, frv_pseudo_register_read);
1417   set_gdbarch_pseudo_register_write (gdbarch, frv_pseudo_register_write);
1418
1419   set_gdbarch_skip_prologue (gdbarch, frv_skip_prologue);
1420   set_gdbarch_breakpoint_from_pc (gdbarch, frv_breakpoint_from_pc);
1421   set_gdbarch_adjust_breakpoint_address (gdbarch, frv_gdbarch_adjust_breakpoint_address);
1422
1423   set_gdbarch_deprecated_frameless_function_invocation (gdbarch, frv_frameless_function_invocation);
1424
1425   set_gdbarch_use_struct_convention (gdbarch, always_use_struct_convention);
1426   set_gdbarch_extract_return_value (gdbarch, frv_extract_return_value);
1427
1428   set_gdbarch_deprecated_store_struct_return (gdbarch, frv_store_struct_return);
1429   set_gdbarch_store_return_value (gdbarch, frv_store_return_value);
1430   set_gdbarch_deprecated_extract_struct_value_address (gdbarch, frv_extract_struct_value_address);
1431
1432   /* Frame stuff.  */
1433   set_gdbarch_unwind_pc (gdbarch, frv_unwind_pc);
1434   set_gdbarch_unwind_sp (gdbarch, frv_unwind_sp);
1435   set_gdbarch_frame_align (gdbarch, frv_frame_align);
1436   frame_unwind_append_sniffer (gdbarch, frv_frame_sniffer);
1437   frame_base_set_default (gdbarch, &frv_frame_base);
1438
1439   /* Settings for calling functions in the inferior.  */
1440   set_gdbarch_push_dummy_call (gdbarch, frv_push_dummy_call);
1441   set_gdbarch_unwind_dummy_id (gdbarch, frv_unwind_dummy_id);
1442
1443   /* Settings that should be unnecessary.  */
1444   set_gdbarch_inner_than (gdbarch, core_addr_lessthan);
1445
1446   set_gdbarch_write_pc (gdbarch, generic_target_write_pc);
1447
1448   set_gdbarch_remote_translate_xfer_address
1449     (gdbarch, generic_remote_translate_xfer_address);
1450
1451   /* Hardware watchpoint / breakpoint support.  */
1452   switch (info.bfd_arch_info->mach)
1453     {
1454     case bfd_mach_frv:
1455     case bfd_mach_frvsimple:
1456     case bfd_mach_fr500:
1457     case bfd_mach_frvtomcat:
1458       /* fr500-style hardware debugging support.  */
1459       var->num_hw_watchpoints = 4;
1460       var->num_hw_breakpoints = 4;
1461       break;
1462
1463     case bfd_mach_fr400:
1464     case bfd_mach_fr450:
1465       /* fr400-style hardware debugging support.  */
1466       var->num_hw_watchpoints = 2;
1467       var->num_hw_breakpoints = 4;
1468       break;
1469
1470     default:
1471       /* Otherwise, assume we don't have hardware debugging support.  */
1472       var->num_hw_watchpoints = 0;
1473       var->num_hw_breakpoints = 0;
1474       break;
1475     }
1476
1477   set_gdbarch_print_insn (gdbarch, print_insn_frv);
1478   if (frv_abi (gdbarch) == FRV_ABI_FDPIC)
1479     set_gdbarch_convert_from_func_ptr_addr (gdbarch,
1480                                             frv_convert_from_func_ptr_addr);
1481
1482   return gdbarch;
1483 }
1484
1485 void
1486 _initialize_frv_tdep (void)
1487 {
1488   register_gdbarch_init (bfd_arch_frv, frv_gdbarch_init);
1489 }