1 /* Target-dependent code for the Fujitsu FR-V, for GDB, the GNU Debugger.
2 Copyright 2002, 2003, 2004 Free Software Foundation, Inc.
4 This file is part of GDB.
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.
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.
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. */
22 #include "gdb_string.h"
25 #include "arch-utils.h"
28 #include "frame-unwind.h"
29 #include "frame-base.h"
30 #include "trad-frame.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 */
42 extern void _initialize_frv_tdep (void);
44 static gdbarch_init_ftype frv_gdbarch_init;
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;
51 /* Register numbers. The order in which these appear define the
52 remote protocol, so take care in changing them. */
54 /* Register numbers 0 -- 63 are always reserved for general-purpose
55 registers. The chip at hand may have less. */
59 struct_return_regnum = 3,
62 /* Register numbers 64 -- 127 are always reserved for floating-point
63 registers. The chip at hand may have less. */
64 first_fpr_regnum = 64,
65 last_fpr_regnum = 127,
67 /* The PC register. */
70 /* Register numbers 129 on up are always reserved for special-purpose
72 first_spr_regnum = 129,
76 fdpic_loadmap_exec_regnum = 132,
77 fdpic_loadmap_interp_regnum = 133,
88 last_spr_regnum = 148,
90 /* The total number of registers we know exist. */
91 frv_num_regs = last_spr_regnum + 1,
93 /* Pseudo registers */
94 first_pseudo_regnum = frv_num_regs,
96 /* iacc0 - the 64-bit concatenation of iacc0h and iacc0l. */
97 iacc0_regnum = first_pseudo_regnum + 0,
99 last_pseudo_regnum = iacc0_regnum,
100 frv_num_pseudo_regs = last_pseudo_regnum - first_pseudo_regnum + 1,
103 static LONGEST frv_call_dummy_words[] =
107 struct frv_unwind_cache /* was struct frame_extra_info */
109 /* The previous frame's inner-most stack address. Used as this
110 frame ID's stack_addr. */
113 /* The frame's base, optionally used by the high-level debug info. */
116 /* Table indicating the location of each and every register. */
117 struct trad_frame_saved_reg *saved_regs;
121 /* A structure describing a particular variant of the FRV.
122 We allocate and initialize one of these structures when we create
123 the gdbarch object for a variant.
125 At the moment, all the FR variants we support differ only in which
126 registers are present; the portable code of GDB knows that
127 registers whose names are the empty string don't exist, so the
128 `register_names' array captures all the per-variant information we
131 in the future, if we need to have per-variant maps for raw size,
132 virtual type, etc., we should replace register_names with an array
133 of structures, each of which gives all the necessary info for one
134 register. Don't stick parallel arrays in here --- that's so
138 /* Which ABI is in use? */
139 enum frv_abi frv_abi;
141 /* How many general-purpose registers does this variant have? */
144 /* How many floating-point registers does this variant have? */
147 /* How many hardware watchpoints can it support? */
148 int num_hw_watchpoints;
150 /* How many hardware breakpoints can it support? */
151 int num_hw_breakpoints;
153 /* Register names. */
154 char **register_names;
157 #define CURRENT_VARIANT (gdbarch_tdep (current_gdbarch))
159 /* Return the FR-V ABI associated with GDBARCH. */
161 frv_abi (struct gdbarch *gdbarch)
163 return gdbarch_tdep (gdbarch)->frv_abi;
166 /* Fetch the interpreter and executable loadmap addresses (for shared
167 library support) for the FDPIC ABI. Return 0 if successful, -1 if
168 not. (E.g, -1 will be returned if the ABI isn't the FDPIC ABI.) */
170 frv_fdpic_loadmap_addresses (struct gdbarch *gdbarch, CORE_ADDR *interp_addr,
171 CORE_ADDR *exec_addr)
173 if (frv_abi (gdbarch) != FRV_ABI_FDPIC)
177 if (interp_addr != NULL)
180 regcache_cooked_read_unsigned (current_regcache,
181 fdpic_loadmap_interp_regnum, &val);
184 if (exec_addr != NULL)
187 regcache_cooked_read_unsigned (current_regcache,
188 fdpic_loadmap_exec_regnum, &val);
195 /* Allocate a new variant structure, and set up default values for all
197 static struct gdbarch_tdep *
200 struct gdbarch_tdep *var;
204 var = xmalloc (sizeof (*var));
205 memset (var, 0, sizeof (*var));
207 var->frv_abi = FRV_ABI_EABI;
210 var->num_hw_watchpoints = 0;
211 var->num_hw_breakpoints = 0;
213 /* By default, don't supply any general-purpose or floating-point
216 = (char **) xmalloc ((frv_num_regs + frv_num_pseudo_regs)
218 for (r = 0; r < frv_num_regs + frv_num_pseudo_regs; r++)
219 var->register_names[r] = "";
221 /* Do, however, supply default names for the known special-purpose
224 var->register_names[pc_regnum] = "pc";
225 var->register_names[lr_regnum] = "lr";
226 var->register_names[lcr_regnum] = "lcr";
228 var->register_names[psr_regnum] = "psr";
229 var->register_names[ccr_regnum] = "ccr";
230 var->register_names[cccr_regnum] = "cccr";
231 var->register_names[tbr_regnum] = "tbr";
233 /* Debug registers. */
234 var->register_names[brr_regnum] = "brr";
235 var->register_names[dbar0_regnum] = "dbar0";
236 var->register_names[dbar1_regnum] = "dbar1";
237 var->register_names[dbar2_regnum] = "dbar2";
238 var->register_names[dbar3_regnum] = "dbar3";
240 /* iacc0 (Only found on MB93405.) */
241 var->register_names[iacc0h_regnum] = "iacc0h";
242 var->register_names[iacc0l_regnum] = "iacc0l";
243 var->register_names[iacc0_regnum] = "iacc0";
249 /* Indicate that the variant VAR has NUM_GPRS general-purpose
250 registers, and fill in the names array appropriately. */
252 set_variant_num_gprs (struct gdbarch_tdep *var, int num_gprs)
256 var->num_gprs = num_gprs;
258 for (r = 0; r < num_gprs; ++r)
262 sprintf (buf, "gr%d", r);
263 var->register_names[first_gpr_regnum + r] = xstrdup (buf);
268 /* Indicate that the variant VAR has NUM_FPRS floating-point
269 registers, and fill in the names array appropriately. */
271 set_variant_num_fprs (struct gdbarch_tdep *var, int num_fprs)
275 var->num_fprs = num_fprs;
277 for (r = 0; r < num_fprs; ++r)
281 sprintf (buf, "fr%d", r);
282 var->register_names[first_fpr_regnum + r] = xstrdup (buf);
287 set_variant_abi_fdpic (struct gdbarch_tdep *var)
289 var->frv_abi = FRV_ABI_FDPIC;
290 var->register_names[fdpic_loadmap_exec_regnum] = xstrdup ("loadmap_exec");
291 var->register_names[fdpic_loadmap_interp_regnum] = xstrdup ("loadmap_interp");
295 frv_register_name (int reg)
299 if (reg >= frv_num_regs + frv_num_pseudo_regs)
302 return CURRENT_VARIANT->register_names[reg];
307 frv_register_type (struct gdbarch *gdbarch, int reg)
309 if (reg >= first_fpr_regnum && reg <= last_fpr_regnum)
310 return builtin_type_float;
311 else if (reg == iacc0_regnum)
312 return builtin_type_int64;
314 return builtin_type_int32;
318 frv_pseudo_register_read (struct gdbarch *gdbarch, struct regcache *regcache,
319 int reg, void *buffer)
321 if (reg == iacc0_regnum)
323 regcache_raw_read (regcache, iacc0h_regnum, buffer);
324 regcache_raw_read (regcache, iacc0l_regnum, (bfd_byte *) buffer + 4);
329 frv_pseudo_register_write (struct gdbarch *gdbarch, struct regcache *regcache,
330 int reg, const void *buffer)
332 if (reg == iacc0_regnum)
334 regcache_raw_write (regcache, iacc0h_regnum, buffer);
335 regcache_raw_write (regcache, iacc0l_regnum, (bfd_byte *) buffer + 4);
340 frv_register_sim_regno (int reg)
342 static const int spr_map[] =
344 H_SPR_PSR, /* psr_regnum */
345 H_SPR_CCR, /* ccr_regnum */
346 H_SPR_CCCR, /* cccr_regnum */
350 H_SPR_TBR, /* tbr_regnum */
351 H_SPR_BRR, /* brr_regnum */
352 H_SPR_DBAR0, /* dbar0_regnum */
353 H_SPR_DBAR1, /* dbar1_regnum */
354 H_SPR_DBAR2, /* dbar2_regnum */
355 H_SPR_DBAR3, /* dbar3_regnum */
360 H_SPR_LR, /* lr_regnum */
361 H_SPR_LCR, /* lcr_regnum */
362 H_SPR_IACC0H, /* iacc0h_regnum */
363 H_SPR_IACC0L /* iacc0l_regnum */
366 gdb_assert (reg >= 0 && reg < NUM_REGS);
368 if (first_gpr_regnum <= reg && reg <= last_gpr_regnum)
369 return reg - first_gpr_regnum + SIM_FRV_GR0_REGNUM;
370 else if (first_fpr_regnum <= reg && reg <= last_fpr_regnum)
371 return reg - first_fpr_regnum + SIM_FRV_FR0_REGNUM;
372 else if (pc_regnum == reg)
373 return SIM_FRV_PC_REGNUM;
374 else if (reg >= first_spr_regnum
375 && reg < first_spr_regnum + sizeof (spr_map) / sizeof (spr_map[0]))
377 int spr_reg_offset = spr_map[reg - first_spr_regnum];
379 if (spr_reg_offset < 0)
380 return SIM_REGNO_DOES_NOT_EXIST;
382 return SIM_FRV_SPR0_REGNUM + spr_reg_offset;
385 internal_error (__FILE__, __LINE__, "Bad register number %d", reg);
388 static const unsigned char *
389 frv_breakpoint_from_pc (CORE_ADDR *pcptr, int *lenp)
391 static unsigned char breakpoint[] = {0xc0, 0x70, 0x00, 0x01};
392 *lenp = sizeof (breakpoint);
396 /* Define the maximum number of instructions which may be packed into a
397 bundle (VLIW instruction). */
398 static const int max_instrs_per_bundle = 8;
400 /* Define the size (in bytes) of an FR-V instruction. */
401 static const int frv_instr_size = 4;
403 /* Adjust a breakpoint's address to account for the FR-V architecture's
404 constraint that a break instruction must not appear as any but the
405 first instruction in the bundle. */
407 frv_gdbarch_adjust_breakpoint_address (struct gdbarch *gdbarch, CORE_ADDR bpaddr)
409 int count = max_instrs_per_bundle;
410 CORE_ADDR addr = bpaddr - frv_instr_size;
411 CORE_ADDR func_start = get_pc_function_start (bpaddr);
413 /* Find the end of the previous packing sequence. This will be indicated
414 by either attempting to access some inaccessible memory or by finding
415 an instruction word whose packing bit is set to one. */
416 while (count-- > 0 && addr >= func_start)
418 char instr[frv_instr_size];
421 status = read_memory_nobpt (addr, instr, sizeof instr);
426 /* This is a big endian architecture, so byte zero will have most
427 significant byte. The most significant bit of this byte is the
432 addr -= frv_instr_size;
436 bpaddr = addr + frv_instr_size;
442 /* Return true if REG is a caller-saves ("scratch") register,
445 is_caller_saves_reg (int reg)
447 return ((4 <= reg && reg <= 7)
448 || (14 <= reg && reg <= 15)
449 || (32 <= reg && reg <= 47));
453 /* Return true if REG is a callee-saves register, false otherwise. */
455 is_callee_saves_reg (int reg)
457 return ((16 <= reg && reg <= 31)
458 || (48 <= reg && reg <= 63));
462 /* Return true if REG is an argument register, false otherwise. */
464 is_argument_reg (int reg)
466 return (8 <= reg && reg <= 13);
469 /* Scan an FR-V prologue, starting at PC, until frame->PC.
470 If FRAME is non-zero, fill in its saved_regs with appropriate addresses.
471 We assume FRAME's saved_regs array has already been allocated and cleared.
472 Return the first PC value after the prologue.
474 Note that, for unoptimized code, we almost don't need this function
475 at all; all arguments and locals live on the stack, so we just need
476 the FP to find everything. The catch: structures passed by value
477 have their addresses living in registers; they're never spilled to
478 the stack. So if you ever want to be able to get to these
479 arguments in any frame but the top, you'll need to do this serious
480 prologue analysis. */
482 frv_analyze_prologue (CORE_ADDR pc, struct frame_info *next_frame,
483 struct frv_unwind_cache *info)
485 /* When writing out instruction bitpatterns, we use the following
486 letters to label instruction fields:
487 P - The parallel bit. We don't use this.
488 J - The register number of GRj in the instruction description.
489 K - The register number of GRk in the instruction description.
490 I - The register number of GRi.
491 S - a signed imediate offset.
492 U - an unsigned immediate offset.
494 The dots below the numbers indicate where hex digit boundaries
495 fall, to make it easier to check the numbers. */
497 /* Non-zero iff we've seen the instruction that initializes the
498 frame pointer for this function's frame. */
501 /* If fp_set is non_zero, then this is the distance from
502 the stack pointer to frame pointer: fp = sp + fp_offset. */
505 /* Total size of frame prior to any alloca operations. */
508 /* Flag indicating if lr has been saved on the stack. */
509 int lr_saved_on_stack = 0;
511 /* The number of the general-purpose register we saved the return
512 address ("link register") in, or -1 if we haven't moved it yet. */
513 int lr_save_reg = -1;
515 /* Offset (from sp) at which lr has been saved on the stack. */
517 int lr_sp_offset = 0;
519 /* If gr_saved[i] is non-zero, then we've noticed that general
520 register i has been saved at gr_sp_offset[i] from the stack
523 int gr_sp_offset[64];
525 /* The address of the most recently scanned prologue instruction. */
526 CORE_ADDR last_prologue_pc;
528 /* The address of the next instruction. */
531 /* The upper bound to of the pc values to scan. */
534 memset (gr_saved, 0, sizeof (gr_saved));
536 last_prologue_pc = pc;
538 /* Try to compute an upper limit (on how far to scan) based on the
540 lim_pc = skip_prologue_using_sal (pc);
541 /* If there's no line number info, lim_pc will be 0. In that case,
542 set the limit to be 100 instructions away from pc. Hopefully, this
543 will be far enough away to account for the entire prologue. Don't
544 worry about overshooting the end of the function. The scan loop
545 below contains some checks to avoid scanning unreasonably far. */
549 /* If we have a frame, we don't want to scan past the frame's pc. This
550 will catch those cases where the pc is in the prologue. */
553 CORE_ADDR frame_pc = frame_pc_unwind (next_frame);
554 if (frame_pc < lim_pc)
558 /* Scan the prologue. */
561 LONGEST op = read_memory_integer (pc, 4);
564 /* The tests in this chain of ifs should be in order of
565 decreasing selectivity, so that more particular patterns get
566 to fire before less particular patterns. */
568 /* Some sort of control transfer instruction: stop scanning prologue.
569 Integer Conditional Branch:
570 X XXXX XX 0000110 XX XXXXXXXXXXXXXXXX
571 Floating-point / media Conditional Branch:
572 X XXXX XX 0000111 XX XXXXXXXXXXXXXXXX
573 LCR Conditional Branch to LR
574 X XXXX XX 0001110 XX XX 001 X XXXXXXXXXX
575 Integer conditional Branches to LR
576 X XXXX XX 0001110 XX XX 010 X XXXXXXXXXX
577 X XXXX XX 0001110 XX XX 011 X XXXXXXXXXX
578 Floating-point/Media Branches to LR
579 X XXXX XX 0001110 XX XX 110 X XXXXXXXXXX
580 X XXXX XX 0001110 XX XX 111 X XXXXXXXXXX
582 X XXXXX X 0001100 XXXXXX XXXXXX XXXXXX
583 X XXXXX X 0001101 XXXXXX XXXXXX XXXXXX
585 X XXXXXX 0001111 XXXXXXXXXXXXXXXXXX
587 X XXXXX X 0000101 XXXXXX XXXXXX XXXXXX
588 Integer Conditional Trap
589 X XXXX XX 0000100 XXXXXX XXXX 00 XXXXXX
590 X XXXX XX 0011100 XXXXXX XXXXXXXXXXXX
591 Floating-point /media Conditional Trap
592 X XXXX XX 0000100 XXXXXX XXXX 01 XXXXXX
593 X XXXX XX 0011101 XXXXXX XXXXXXXXXXXX
595 X XXXX XX 0000100 XXXXXX XXXX 11 XXXXXX
597 X XXXX XX 0000100 XXXXXX XXXX 10 XXXXXX */
598 if ((op & 0x01d80000) == 0x00180000 /* Conditional branches and Call */
599 || (op & 0x01f80000) == 0x00300000 /* Jump and Link */
600 || (op & 0x01f80000) == 0x00100000 /* Return from Trap, Trap */
601 || (op & 0x01f80000) == 0x00700000) /* Trap immediate */
603 /* Stop scanning; not in prologue any longer. */
607 /* Loading something from memory into fp probably means that
608 we're in the epilogue. Stop scanning the prologue.
610 X 000010 0000010 XXXXXX 000100 XXXXXX
612 X 000010 0110010 XXXXXX XXXXXXXXXXXX */
613 else if ((op & 0x7ffc0fc0) == 0x04080100
614 || (op & 0x7ffc0000) == 0x04c80000)
619 /* Setting the FP from the SP:
621 P 000010 0100010 000001 000000000000 = 0x04881000
622 0 111111 1111111 111111 111111111111 = 0x7fffffff
624 We treat this as part of the prologue. */
625 else if ((op & 0x7fffffff) == 0x04881000)
629 last_prologue_pc = next_pc;
632 /* Move the link register to the scratch register grJ, before saving:
634 P 000100 0000011 010000 000111 JJJJJJ = 0x080d01c0
635 0 111111 1111111 111111 111111 000000 = 0x7fffffc0
637 We treat this as part of the prologue. */
638 else if ((op & 0x7fffffc0) == 0x080d01c0)
640 int gr_j = op & 0x3f;
642 /* If we're moving it to a scratch register, that's fine. */
643 if (is_caller_saves_reg (gr_j))
646 last_prologue_pc = next_pc;
650 /* To save multiple callee-saves registers on the stack, at
654 P KKKKKK 0000011 000001 000011 000000 = 0x000c10c0
655 0 000000 1111111 111111 111111 111111 = 0x01ffffff
658 P KKKKKK 0000011 000001 000100 000000 = 0x000c1100
659 0 000000 1111111 111111 111111 111111 = 0x01ffffff
661 We treat this as part of the prologue, and record the register's
662 saved address in the frame structure. */
663 else if ((op & 0x01ffffff) == 0x000c10c0
664 || (op & 0x01ffffff) == 0x000c1100)
666 int gr_k = ((op >> 25) & 0x3f);
667 int ope = ((op >> 6) & 0x3f);
671 /* Is it an std or an stq? */
677 /* Is it really a callee-saves register? */
678 if (is_callee_saves_reg (gr_k))
680 for (i = 0; i < count; i++)
682 gr_saved[gr_k + i] = 1;
683 gr_sp_offset[gr_k + i] = 4 * i;
685 last_prologue_pc = next_pc;
689 /* Adjusting the stack pointer. (The stack pointer is GR1.)
691 P 000001 0010000 000001 SSSSSSSSSSSS = 0x02401000
692 0 111111 1111111 111111 000000000000 = 0x7ffff000
694 We treat this as part of the prologue. */
695 else if ((op & 0x7ffff000) == 0x02401000)
699 /* Sign-extend the twelve-bit field.
700 (Isn't there a better way to do this?) */
701 int s = (((op & 0xfff) - 0x800) & 0xfff) - 0x800;
704 last_prologue_pc = pc;
708 /* If the prologue is being adjusted again, we've
709 likely gone too far; i.e. we're probably in the
715 /* Setting the FP to a constant distance from the SP:
717 P 000010 0010000 000001 SSSSSSSSSSSS = 0x04401000
718 0 111111 1111111 111111 000000000000 = 0x7ffff000
720 We treat this as part of the prologue. */
721 else if ((op & 0x7ffff000) == 0x04401000)
723 /* Sign-extend the twelve-bit field.
724 (Isn't there a better way to do this?) */
725 int s = (((op & 0xfff) - 0x800) & 0xfff) - 0x800;
728 last_prologue_pc = pc;
731 /* To spill an argument register to a scratch register:
733 P KKKKKK 0100010 IIIIII 000000000000 = 0x00880000
734 0 000000 1111111 000000 111111111111 = 0x01fc0fff
736 For the time being, we treat this as a prologue instruction,
737 assuming that GRi is an argument register. This one's kind
738 of suspicious, because it seems like it could be part of a
739 legitimate body instruction. But we only come here when the
740 source info wasn't helpful, so we have to do the best we can.
741 Hopefully once GCC and GDB agree on how to emit line number
742 info for prologues, then this code will never come into play. */
743 else if ((op & 0x01fc0fff) == 0x00880000)
745 int gr_i = ((op >> 12) & 0x3f);
747 /* Make sure that the source is an arg register; if it is, we'll
748 treat it as a prologue instruction. */
749 if (is_argument_reg (gr_i))
750 last_prologue_pc = next_pc;
753 /* To spill 16-bit values to the stack:
755 P KKKKKK 1010001 000010 SSSSSSSSSSSS = 0x01442000
756 0 000000 1111111 111111 000000000000 = 0x01fff000
758 And for 8-bit values, we use STB instructions.
760 P KKKKKK 1010000 000010 SSSSSSSSSSSS = 0x01402000
761 0 000000 1111111 111111 000000000000 = 0x01fff000
763 We check that GRk is really an argument register, and treat
764 all such as part of the prologue. */
765 else if ( (op & 0x01fff000) == 0x01442000
766 || (op & 0x01fff000) == 0x01402000)
768 int gr_k = ((op >> 25) & 0x3f);
770 /* Make sure that GRk is really an argument register; treat
771 it as a prologue instruction if so. */
772 if (is_argument_reg (gr_k))
773 last_prologue_pc = next_pc;
776 /* To save multiple callee-saves register on the stack, at a
780 P KKKKKK 1010011 000001 SSSSSSSSSSSS = 0x014c1000
781 0 000000 1111111 111111 000000000000 = 0x01fff000
784 P KKKKKK 1010100 000001 SSSSSSSSSSSS = 0x01501000
785 0 000000 1111111 111111 000000000000 = 0x01fff000
787 We treat this as part of the prologue, and record the register's
788 saved address in the frame structure. */
789 else if ((op & 0x01fff000) == 0x014c1000
790 || (op & 0x01fff000) == 0x01501000)
792 int gr_k = ((op >> 25) & 0x3f);
796 /* Is it a stdi or a stqi? */
797 if ((op & 0x01fff000) == 0x014c1000)
802 /* Is it really a callee-saves register? */
803 if (is_callee_saves_reg (gr_k))
805 /* Sign-extend the twelve-bit field.
806 (Isn't there a better way to do this?) */
807 int s = (((op & 0xfff) - 0x800) & 0xfff) - 0x800;
809 for (i = 0; i < count; i++)
811 gr_saved[gr_k + i] = 1;
812 gr_sp_offset[gr_k + i] = s + (4 * i);
814 last_prologue_pc = next_pc;
818 /* Storing any kind of integer register at any constant offset
819 from any other register.
822 P KKKKKK 0000011 IIIIII 000010 000000 = 0x000c0080
823 0 000000 1111111 000000 111111 111111 = 0x01fc0fff
826 P KKKKKK 1010010 IIIIII SSSSSSSSSSSS = 0x01480000
827 0 000000 1111111 000000 000000000000 = 0x01fc0000
829 These could be almost anything, but a lot of prologue
830 instructions fall into this pattern, so let's decode the
831 instruction once, and then work at a higher level. */
832 else if (((op & 0x01fc0fff) == 0x000c0080)
833 || ((op & 0x01fc0000) == 0x01480000))
835 int gr_k = ((op >> 25) & 0x3f);
836 int gr_i = ((op >> 12) & 0x3f);
839 /* Are we storing with gr0 as an offset, or using an
841 if ((op & 0x01fc0fff) == 0x000c0080)
844 offset = (((op & 0xfff) - 0x800) & 0xfff) - 0x800;
846 /* If the address isn't relative to the SP or FP, it's not a
847 prologue instruction. */
848 if (gr_i != sp_regnum && gr_i != fp_regnum)
850 /* Do nothing; not a prologue instruction. */
853 /* Saving the old FP in the new frame (relative to the SP). */
854 else if (gr_k == fp_regnum && gr_i == sp_regnum)
856 gr_saved[fp_regnum] = 1;
857 gr_sp_offset[fp_regnum] = offset;
858 last_prologue_pc = next_pc;
861 /* Saving callee-saves register(s) on the stack, relative to
863 else if (gr_i == sp_regnum
864 && is_callee_saves_reg (gr_k))
867 if (gr_i == sp_regnum)
868 gr_sp_offset[gr_k] = offset;
870 gr_sp_offset[gr_k] = offset + fp_offset;
871 last_prologue_pc = next_pc;
874 /* Saving the scratch register holding the return address. */
875 else if (lr_save_reg != -1
876 && gr_k == lr_save_reg)
878 lr_saved_on_stack = 1;
879 if (gr_i == sp_regnum)
880 lr_sp_offset = offset;
882 lr_sp_offset = offset + fp_offset;
883 last_prologue_pc = next_pc;
886 /* Spilling int-sized arguments to the stack. */
887 else if (is_argument_reg (gr_k))
888 last_prologue_pc = next_pc;
893 if (next_frame && info)
898 /* If we know the relationship between the stack and frame
899 pointers, record the addresses of the registers we noticed.
900 Note that we have to do this as a separate step at the end,
901 because instructions may save relative to the SP, but we need
902 their addresses relative to the FP. */
904 frame_unwind_unsigned_register (next_frame, fp_regnum, &this_base);
906 frame_unwind_unsigned_register (next_frame, sp_regnum, &this_base);
908 for (i = 0; i < 64; i++)
910 info->saved_regs[i].addr = this_base - fp_offset + gr_sp_offset[i];
912 info->prev_sp = this_base - fp_offset + framesize;
913 info->base = this_base;
915 /* If LR was saved on the stack, record its location. */
916 if (lr_saved_on_stack)
917 info->saved_regs[lr_regnum].addr = this_base - fp_offset + lr_sp_offset;
919 /* The call instruction moves the caller's PC in the callee's LR.
920 Since this is an unwind, do the reverse. Copy the location of LR
921 into PC (the address / regnum) so that a request for PC will be
922 converted into a request for the LR. */
923 info->saved_regs[pc_regnum] = info->saved_regs[lr_regnum];
925 /* Save the previous frame's computed SP value. */
926 trad_frame_set_value (info->saved_regs, sp_regnum, info->prev_sp);
929 return last_prologue_pc;
934 frv_skip_prologue (CORE_ADDR pc)
936 CORE_ADDR func_addr, func_end, new_pc;
940 /* If the line table has entry for a line *within* the function
941 (i.e., not in the prologue, and not past the end), then that's
943 if (find_pc_partial_function (pc, NULL, &func_addr, &func_end))
945 struct symtab_and_line sal;
947 sal = find_pc_line (func_addr, 0);
949 if (sal.line != 0 && sal.end < func_end)
955 /* The FR-V prologue is at least five instructions long (twenty bytes).
956 If we didn't find a real source location past that, then
957 do a full analysis of the prologue. */
958 if (new_pc < pc + 20)
959 new_pc = frv_analyze_prologue (pc, 0, 0);
965 static struct frv_unwind_cache *
966 frv_frame_unwind_cache (struct frame_info *next_frame,
967 void **this_prologue_cache)
969 struct gdbarch *gdbarch = get_frame_arch (next_frame);
973 struct frv_unwind_cache *info;
975 if ((*this_prologue_cache))
976 return (*this_prologue_cache);
978 info = FRAME_OBSTACK_ZALLOC (struct frv_unwind_cache);
979 (*this_prologue_cache) = info;
980 info->saved_regs = trad_frame_alloc_saved_regs (next_frame);
982 /* Prologue analysis does the rest... */
983 frv_analyze_prologue (frame_func_unwind (next_frame), next_frame, info);
989 frv_extract_return_value (struct type *type, struct regcache *regcache,
992 int len = TYPE_LENGTH (type);
997 regcache_cooked_read_unsigned (regcache, 8, &gpr8_val);
998 store_unsigned_integer (valbuf, len, gpr8_val);
1003 regcache_cooked_read_unsigned (regcache, 8, ®val);
1004 store_unsigned_integer (valbuf, 4, regval);
1005 regcache_cooked_read_unsigned (regcache, 9, ®val);
1006 store_unsigned_integer ((bfd_byte *) valbuf + 4, 4, regval);
1009 internal_error (__FILE__, __LINE__, "Illegal return value length: %d", len);
1013 frv_extract_struct_value_address (struct regcache *regcache)
1016 regcache_cooked_read_unsigned (regcache, struct_return_regnum, &addr);
1021 frv_store_struct_return (CORE_ADDR addr, CORE_ADDR sp)
1023 write_register (struct_return_regnum, addr);
1027 frv_frameless_function_invocation (struct frame_info *frame)
1029 return legacy_frameless_look_for_prologue (frame);
1033 frv_frame_align (struct gdbarch *gdbarch, CORE_ADDR sp)
1035 /* Require dword alignment. */
1036 return align_down (sp, 8);
1040 frv_push_dummy_call (struct gdbarch *gdbarch, CORE_ADDR func_addr,
1041 struct regcache *regcache, CORE_ADDR bp_addr,
1042 int nargs, struct value **args, CORE_ADDR sp,
1043 int struct_return, CORE_ADDR struct_addr)
1050 struct type *arg_type;
1052 enum type_code typecode;
1058 printf("Push %d args at sp = %x, struct_return=%d (%x)\n",
1059 nargs, (int) sp, struct_return, struct_addr);
1063 for (argnum = 0; argnum < nargs; ++argnum)
1064 stack_space += align_up (TYPE_LENGTH (VALUE_TYPE (args[argnum])), 4);
1066 stack_space -= (6 * 4);
1067 if (stack_space > 0)
1070 /* Make sure stack is dword aligned. */
1071 sp = align_down (sp, 8);
1078 regcache_cooked_write_unsigned (regcache, struct_return_regnum,
1081 for (argnum = 0; argnum < nargs; ++argnum)
1084 arg_type = check_typedef (VALUE_TYPE (arg));
1085 len = TYPE_LENGTH (arg_type);
1086 typecode = TYPE_CODE (arg_type);
1088 if (typecode == TYPE_CODE_STRUCT || typecode == TYPE_CODE_UNION)
1090 store_unsigned_integer (valbuf, 4, VALUE_ADDRESS (arg));
1091 typecode = TYPE_CODE_PTR;
1097 val = (char *) VALUE_CONTENTS (arg);
1102 int partial_len = (len < 4 ? len : 4);
1106 regval = extract_unsigned_integer (val, partial_len);
1108 printf(" Argnum %d data %x -> reg %d\n",
1109 argnum, (int) regval, argreg);
1111 regcache_cooked_write_unsigned (regcache, argreg, regval);
1117 printf(" Argnum %d data %x -> offset %d (%x)\n",
1118 argnum, *((int *)val), stack_offset, (int) (sp + stack_offset));
1120 write_memory (sp + stack_offset, val, partial_len);
1121 stack_offset += align_up (partial_len, 4);
1128 /* Set the return address. For the frv, the return breakpoint is
1129 always at BP_ADDR. */
1130 regcache_cooked_write_unsigned (regcache, lr_regnum, bp_addr);
1132 /* Finally, update the SP register. */
1133 regcache_cooked_write_unsigned (regcache, sp_regnum, sp);
1139 frv_store_return_value (struct type *type, struct regcache *regcache,
1142 int len = TYPE_LENGTH (type);
1147 memset (val, 0, sizeof (val));
1148 memcpy (val + (4 - len), valbuf, len);
1149 regcache_cooked_write (regcache, 8, val);
1153 regcache_cooked_write (regcache, 8, valbuf);
1154 regcache_cooked_write (regcache, 9, (bfd_byte *) valbuf + 4);
1157 internal_error (__FILE__, __LINE__,
1158 "Don't know how to return a %d-byte value.", len);
1162 /* Hardware watchpoint / breakpoint support for the FR500
1166 frv_check_watch_resources (int type, int cnt, int ot)
1168 struct gdbarch_tdep *var = CURRENT_VARIANT;
1170 /* Watchpoints not supported on simulator. */
1171 if (strcmp (target_shortname, "sim") == 0)
1174 if (type == bp_hardware_breakpoint)
1176 if (var->num_hw_breakpoints == 0)
1178 else if (cnt <= var->num_hw_breakpoints)
1183 if (var->num_hw_watchpoints == 0)
1187 else if (cnt <= var->num_hw_watchpoints)
1195 frv_stopped_data_address (void)
1197 CORE_ADDR brr, dbar0, dbar1, dbar2, dbar3;
1199 brr = read_register (brr_regnum);
1200 dbar0 = read_register (dbar0_regnum);
1201 dbar1 = read_register (dbar1_regnum);
1202 dbar2 = read_register (dbar2_regnum);
1203 dbar3 = read_register (dbar3_regnum);
1207 else if (brr & (1<<10))
1209 else if (brr & (1<<9))
1211 else if (brr & (1<<8))
1218 frv_unwind_pc (struct gdbarch *gdbarch, struct frame_info *next_frame)
1220 return frame_unwind_register_unsigned (next_frame, pc_regnum);
1223 /* Given a GDB frame, determine the address of the calling function's
1224 frame. This will be used to create a new GDB frame struct. */
1227 frv_frame_this_id (struct frame_info *next_frame,
1228 void **this_prologue_cache, struct frame_id *this_id)
1230 struct frv_unwind_cache *info
1231 = frv_frame_unwind_cache (next_frame, this_prologue_cache);
1234 struct minimal_symbol *msym_stack;
1237 /* The FUNC is easy. */
1238 func = frame_func_unwind (next_frame);
1240 /* Check if the stack is empty. */
1241 msym_stack = lookup_minimal_symbol ("_stack", NULL, NULL);
1242 if (msym_stack && info->base == SYMBOL_VALUE_ADDRESS (msym_stack))
1245 /* Hopefully the prologue analysis either correctly determined the
1246 frame's base (which is the SP from the previous frame), or set
1247 that base to "NULL". */
1248 base = info->prev_sp;
1252 id = frame_id_build (base, func);
1254 /* Check that we're not going round in circles with the same frame
1255 ID (but avoid applying the test to sentinel frames which do go
1256 round in circles). Can't use frame_id_eq() as that doesn't yet
1257 compare the frame's PC value. */
1258 if (frame_relative_level (next_frame) >= 0
1259 && get_frame_type (next_frame) != DUMMY_FRAME
1260 && frame_id_eq (get_frame_id (next_frame), id))
1267 frv_frame_prev_register (struct frame_info *next_frame,
1268 void **this_prologue_cache,
1269 int regnum, int *optimizedp,
1270 enum lval_type *lvalp, CORE_ADDR *addrp,
1271 int *realnump, void *bufferp)
1273 struct frv_unwind_cache *info
1274 = frv_frame_unwind_cache (next_frame, this_prologue_cache);
1275 trad_frame_prev_register (next_frame, info->saved_regs, regnum,
1276 optimizedp, lvalp, addrp, realnump, bufferp);
1279 static const struct frame_unwind frv_frame_unwind = {
1282 frv_frame_prev_register
1285 static const struct frame_unwind *
1286 frv_frame_sniffer (struct frame_info *next_frame)
1288 return &frv_frame_unwind;
1292 frv_frame_base_address (struct frame_info *next_frame, void **this_cache)
1294 struct frv_unwind_cache *info
1295 = frv_frame_unwind_cache (next_frame, this_cache);
1299 static const struct frame_base frv_frame_base = {
1301 frv_frame_base_address,
1302 frv_frame_base_address,
1303 frv_frame_base_address
1307 frv_unwind_sp (struct gdbarch *gdbarch, struct frame_info *next_frame)
1309 return frame_unwind_register_unsigned (next_frame, sp_regnum);
1313 /* Assuming NEXT_FRAME->prev is a dummy, return the frame ID of that
1314 dummy frame. The frame ID's base needs to match the TOS value
1315 saved by save_dummy_frame_tos(), and the PC match the dummy frame's
1318 static struct frame_id
1319 frv_unwind_dummy_id (struct gdbarch *gdbarch, struct frame_info *next_frame)
1321 return frame_id_build (frv_unwind_sp (gdbarch, next_frame),
1322 frame_pc_unwind (next_frame));
1326 static struct gdbarch *
1327 frv_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
1329 struct gdbarch *gdbarch;
1330 struct gdbarch_tdep *var;
1333 /* Check to see if we've already built an appropriate architecture
1334 object for this executable. */
1335 arches = gdbarch_list_lookup_by_info (arches, &info);
1337 return arches->gdbarch;
1339 /* Select the right tdep structure for this variant. */
1340 var = new_variant ();
1341 switch (info.bfd_arch_info->mach)
1344 case bfd_mach_frvsimple:
1345 case bfd_mach_fr500:
1346 case bfd_mach_frvtomcat:
1347 case bfd_mach_fr550:
1348 set_variant_num_gprs (var, 64);
1349 set_variant_num_fprs (var, 64);
1352 case bfd_mach_fr400:
1353 set_variant_num_gprs (var, 32);
1354 set_variant_num_fprs (var, 32);
1358 /* Never heard of this variant. */
1362 /* Extract the ELF flags, if available. */
1363 if (info.abfd && bfd_get_flavour (info.abfd) == bfd_target_elf_flavour)
1364 elf_flags = elf_elfheader (info.abfd)->e_flags;
1366 if (elf_flags & EF_FRV_FDPIC)
1367 set_variant_abi_fdpic (var);
1369 gdbarch = gdbarch_alloc (&info, var);
1371 set_gdbarch_short_bit (gdbarch, 16);
1372 set_gdbarch_int_bit (gdbarch, 32);
1373 set_gdbarch_long_bit (gdbarch, 32);
1374 set_gdbarch_long_long_bit (gdbarch, 64);
1375 set_gdbarch_float_bit (gdbarch, 32);
1376 set_gdbarch_double_bit (gdbarch, 64);
1377 set_gdbarch_long_double_bit (gdbarch, 64);
1378 set_gdbarch_ptr_bit (gdbarch, 32);
1380 set_gdbarch_num_regs (gdbarch, frv_num_regs);
1381 set_gdbarch_num_pseudo_regs (gdbarch, frv_num_pseudo_regs);
1383 set_gdbarch_sp_regnum (gdbarch, sp_regnum);
1384 set_gdbarch_deprecated_fp_regnum (gdbarch, fp_regnum);
1385 set_gdbarch_pc_regnum (gdbarch, pc_regnum);
1387 set_gdbarch_register_name (gdbarch, frv_register_name);
1388 set_gdbarch_register_type (gdbarch, frv_register_type);
1389 set_gdbarch_register_sim_regno (gdbarch, frv_register_sim_regno);
1391 set_gdbarch_pseudo_register_read (gdbarch, frv_pseudo_register_read);
1392 set_gdbarch_pseudo_register_write (gdbarch, frv_pseudo_register_write);
1394 set_gdbarch_skip_prologue (gdbarch, frv_skip_prologue);
1395 set_gdbarch_breakpoint_from_pc (gdbarch, frv_breakpoint_from_pc);
1396 set_gdbarch_adjust_breakpoint_address (gdbarch, frv_gdbarch_adjust_breakpoint_address);
1398 set_gdbarch_deprecated_frameless_function_invocation (gdbarch, frv_frameless_function_invocation);
1400 set_gdbarch_use_struct_convention (gdbarch, always_use_struct_convention);
1401 set_gdbarch_extract_return_value (gdbarch, frv_extract_return_value);
1403 set_gdbarch_deprecated_store_struct_return (gdbarch, frv_store_struct_return);
1404 set_gdbarch_store_return_value (gdbarch, frv_store_return_value);
1405 set_gdbarch_deprecated_extract_struct_value_address (gdbarch, frv_extract_struct_value_address);
1408 set_gdbarch_unwind_pc (gdbarch, frv_unwind_pc);
1409 set_gdbarch_unwind_sp (gdbarch, frv_unwind_sp);
1410 set_gdbarch_frame_align (gdbarch, frv_frame_align);
1411 frame_unwind_append_sniffer (gdbarch, frv_frame_sniffer);
1412 frame_base_set_default (gdbarch, &frv_frame_base);
1414 /* Settings for calling functions in the inferior. */
1415 set_gdbarch_push_dummy_call (gdbarch, frv_push_dummy_call);
1416 set_gdbarch_unwind_dummy_id (gdbarch, frv_unwind_dummy_id);
1418 /* Settings that should be unnecessary. */
1419 set_gdbarch_inner_than (gdbarch, core_addr_lessthan);
1421 set_gdbarch_write_pc (gdbarch, generic_target_write_pc);
1423 set_gdbarch_remote_translate_xfer_address
1424 (gdbarch, generic_remote_translate_xfer_address);
1426 /* Hardware watchpoint / breakpoint support. */
1427 switch (info.bfd_arch_info->mach)
1430 case bfd_mach_frvsimple:
1431 case bfd_mach_fr500:
1432 case bfd_mach_frvtomcat:
1433 /* fr500-style hardware debugging support. */
1434 var->num_hw_watchpoints = 4;
1435 var->num_hw_breakpoints = 4;
1438 case bfd_mach_fr400:
1439 /* fr400-style hardware debugging support. */
1440 var->num_hw_watchpoints = 2;
1441 var->num_hw_breakpoints = 4;
1445 /* Otherwise, assume we don't have hardware debugging support. */
1446 var->num_hw_watchpoints = 0;
1447 var->num_hw_breakpoints = 0;
1451 set_gdbarch_print_insn (gdbarch, print_insn_frv);
1457 _initialize_frv_tdep (void)
1459 register_gdbarch_init (bfd_arch_frv, frv_gdbarch_init);